/* ===== Jaloshiri — palette + font + shape overrides ===== */

:root {
  --site-primary: #224a03;
  --site-primary-light: #63913b;
  --site-primary-dark: #002d00;
  --site-secondary: #72775b;
  --site-accent: #b93c5f;
  --site-surface: #fffaf3;
  --bs-body-bg: #f1f1f1;
  --bs-body-color: #091602;
  --bs-body-font-family: 'IBM Plex Sans', sans-serif;
  --bs-link-color: #224a03;
  --bs-link-hover-color: #002d00;
}

body {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Serif', serif;
}

a { color: var(--site-primary); }
a:hover { color: var(--site-primary-dark); }

.btn-primary { background-color: var(--site-primary); border-color: var(--site-primary); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background-color: var(--site-primary-dark); border-color: var(--site-primary-dark); color: #fff; }

.btn-outline-primary { color: var(--site-primary); border-color: var(--site-primary); background-color: transparent; }
.btn-outline-primary:hover, .btn-outline-primary:focus { background-color: var(--site-primary); border-color: var(--site-primary); color: #fff; }

.bg-primary { background-color: var(--site-primary) !important; }
.text-primary { color: var(--site-primary) !important; }
.border-primary { border-color: var(--site-primary) !important; }

/* ===== Border-radius family: sharp-no-radius ===== */
* { border-radius: 0 !important; }

/* ===== Shadow family: hard-offset (brutalist) ===== */
.btn {
  border-radius: 0;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-width: 1.5px;
  box-shadow: 2px 2px 0 currentColor;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 currentColor;
}
.btn:active {
  transform: translate(0, 0);
  box-shadow: 1px 1px 0 currentColor;
}

.card {
  border: 1.5px solid var(--site-primary);
  box-shadow: 4px 4px 0 var(--site-accent);
  background-color: var(--site-surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--site-accent);
}

.form-control, .form-select {
  border: 1.5px solid var(--site-primary);
  border-radius: 0;
  background-color: var(--site-surface);
}
.form-control:focus, .form-select:focus {
  border-color: var(--site-primary);
  box-shadow: 3px 3px 0 var(--site-primary-light);
}

/* ===== Section rhythm: generous-whitespace-no-dividers ===== */
.section-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
section { background-color: var(--bs-body-bg); }

/* ===== Navbar ===== */
.navbar {
  background-color: var(--site-surface);
  border-bottom: 1.5px solid var(--site-primary);
}
.navbar-brand-text {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--bs-body-color);
}
.nav-link {
  color: var(--bs-body-color);
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link:focus {
  color: var(--site-primary);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background-color: var(--site-accent);
  transition: width 0.2s ease;
}
.nav-link:hover::after {
  width: 100%;
}
.logo-mark {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

/* ===== Hero ===== */
.hero-split {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--site-accent);
  font-weight: 600;
  font-size: 0.85rem;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1.5px solid var(--site-primary);
  box-shadow: 6px 6px 0 var(--site-primary-dark);
}

/* ===== Process steps ===== */
.process-step {
  border-left: 3px solid var(--site-primary);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.process-step .step-number {
  font-family: 'IBM Plex Serif', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--site-accent);
  line-height: 1;
}

/* ===== Section internal layout: visual-above-text-below ===== */
.section-visual {
  width: 100%;
  object-fit: cover;
  border: 1.5px solid var(--site-primary);
  margin-bottom: 2rem;
}

/* ===== Trust / why-us cards ===== */
.trust-card {
  padding: 1.75rem;
  height: 100%;
}

/* ===== Asymmetric grid helper ===== */
.asym-grid-offset {
  margin-top: 2.5rem;
}

/* ===== Footer ===== */
.footer-big {
  background-color: var(--site-surface);
  border-top: 1.5px solid var(--site-primary);
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-logo {
  height: 6rem;
  width: 6rem;
  object-fit: contain;
}
.footer-tagline {
  color: var(--site-secondary);
  font-style: italic;
}
.footer-link {
  color: var(--bs-body-color);
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-link:hover {
  color: var(--site-accent);
  padding-left: 4px;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--site-primary-dark);
  color: #fff;
  padding: 1.25rem;
  z-index: 1050;
  border-top: 1.5px solid var(--site-accent);
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner .btn-light {
  border-radius: 0;
}

/* ===== Misc micro-interactions ===== */
.hover-lift {
  transition: transform 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
}

.confirmation-box {
  border: 1.5px solid var(--site-primary);
  background-color: var(--site-surface);
  padding: 2rem;
  box-shadow: 4px 4px 0 var(--site-primary-light);
  display: none;
}
.confirmation-box.show {
  display: block;
}

@media (max-width: 767px) {
  .section-pad { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
