/* =========================
   GLOBAL RESET & BASE
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(97, 145, 44, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(106, 153, 53, 0.356),
      transparent 50%
    ),
    linear-gradient(180deg, #5b822f 0%, #0c5e23 70%);
  color: #e0e1e2;
  line-height: 1.6;
}

p {
  line-height: 1.8;
  font-weight: 400;
  font-size: 20px;
  color: #d7e2cf;
}

h1, h3 {
  color: #f1f5f1;
}

h2 {
  font-family: 'Inter', sans-serif;
  color: #f1f5f1;
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 26px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #2d5524, #053a23);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #e0e1e2;
  letter-spacing: 0.5px;
}

nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #e0e1e2;
  font-size: 20px;
}

nav a:hover {
  color: #5b822f;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 52px;
  width: auto;
}

/* =========================
   SECTIONS (GENERAL)
========================= */
section {
  padding: 140px 100px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
  min-height: 90vh;
}

section:nth-of-type(even) {
  background: rgba(0, 0, 0, 0.28);
}

section h2 {
  font-size: 34px;
  margin-bottom: 22px;
  color: #ececec;
}

section > p {
  max-width: 900px;
  margin-top: 10px;
  margin-bottom: 50px;
  color: #d7e2cf;
}

/* =========================
   VISION & MISSION SPLIT
========================= */

/* Playfair Display for VM headings only */

#vision-mission {
  position: relative;
  padding: 100px 100px;
  overflow: hidden;
  min-height: unset;
}

/* Subtle grid texture */
#vision-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 180, 80, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 180, 80, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.vm-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Divider line between columns */
.vm-inner::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(140, 195, 90, 0.4) 20%,
    rgba(140, 195, 90, 0.4) 80%,
    transparent
  );
  transform: translateX(-50%);
}

/* ── VISION PANEL ── */
.vm-vision {
  padding: 60px 70px 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(-30px);
  animation: vmSlideIn 0.8s ease forwards 0.2s;
}

/* ── MISSION PANEL ── */
.vm-mission {
  padding: 60px 20px 60px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  animation: vmSlideIn 0.8s ease forwards 0.45s;
}

@keyframes vmSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

/* Eye-line label */
.vm-label {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8dc45a;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vm-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #8dc45a;
  flex-shrink: 0;
}

.vm-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: #f0f7f0;
  margin-bottom: 28px;
}

.vm-body {
  font-size: 18px;
  line-height: 1.85;
  color: #d7e2cf;
  font-weight: 400;
}

/* Mission list */
.mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  line-height: 1.65;
  color: #d7e2cf;
  font-weight: 400;
  opacity: 0;
  animation: vmFadeUp 0.5s ease forwards;
}

.mission-list li:nth-child(1) { animation-delay: 0.6s; }
.mission-list li:nth-child(2) { animation-delay: 0.72s; }
.mission-list li:nth-child(3) { animation-delay: 0.84s; }
.mission-list li:nth-child(4) { animation-delay: 0.96s; }
.mission-list li:nth-child(5) { animation-delay: 1.08s; }

@keyframes vmFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mission-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(140, 195, 90, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.mission-icon svg {
  width: 9px;
  height: 9px;
  stroke: #8dc45a;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Decorative background glow blobs */
.glow-left {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(60, 120, 40, 0.22), transparent 70%);
  top: -80px;
  left: -100px;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.glow-right {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(80, 150, 50, 0.18), transparent 70%);
  bottom: -60px;
  right: -80px;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 900px) {
  .vm-inner {
    grid-template-columns: 1fr;
  }
  .vm-inner::after { display: none; }
  .vm-vision, .vm-mission {
    padding: 40px 20px;
  }
}

/* =========================
   HERO SECTION
========================= */
.hero {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
}

.hero h2 {
  font-size: 48px;
  font-weight: 700;
  color: #e0e1e2;
  margin-bottom: 24px;
  position: relative;
}

.hero h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 80px;
  height: 4px;
  background: #5b822f;
  border-radius: 2px;
}

.hero p {
  font-size: 16px;
  color: #e0e1e2;
  max-width: 520px;
}

.hero button {
  margin-top: 32px;
  padding: 14px 32px;
  background: #5b822f;
  color: #e0e1e2;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(91, 130, 47, 0.3);
}

.hero button:hover {
  background: #4a6e26;
}

/* =========================
   CARDS
========================= */
.card {
  background: linear-gradient(
    180deg,
    rgba(30, 54, 27, 0.95),
    rgba(10, 20, 12, 0.95)
  );
  border: 1px solid rgba(91, 130, 47, 0.35);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 20px 50px rgba(91, 130, 47, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #5b822f;
}

.card ul {
  font-size: 20px;
  margin-bottom: 10px;
  color: #eef4ea;
}
/* =========================
   ABOUT SPLIT LAYOUT
========================= */
.about-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* =========================
   GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* =========================
   VISUAL SECTIONS
========================= */
.visual-section {
  padding: 120px 80px;
  text-align: center;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 20px;
  color: #e0e1e2;
}

.image-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* =========================
   LOCATION SECTION
========================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: start;
}

.location-desc {
  margin: 20px 0;
  font-size: 18px;
  color: #d7e2cf;
  line-height: 1.8;
}

.location-address {
  margin-bottom: 30px;
  font-size: 18px;
  color: #eef4ea;
}

.location-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.location-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(91, 130, 47, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* =========================
   PARTNERS SECTION (LOGO-ONLY)
========================= */
.partners-grid {
  max-width: 1500px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
}

.partner-logo {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 32px;
  height: 200px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.partner-logo img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;

  filter: none;
  opacity: 1;

  transition: transform 0.3s ease;
}

/* =========================
   EXPANDABLE SOLUTIONS
========================= */

.solutions {
  display: grid;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.solution-card {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.solution-header {
  width: 100%;
  padding: 28px;
  font-size: 28px;
  font-weight: 700;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  margin-bottom: 40px;
  padding: 0;
}

.solution-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 28px;
}

.solution-card.active .solution-content {
  max-height: 800px;
  padding-bottom: 28px;
}

.service-group {
  margin-bottom: 50px;
}

.service-group h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #9fd26a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-group p {
  font-size: 16px;
  color: #d7e2cf;
}

.solution-section {
  padding: 120px 100px;
}

.solution-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.solution-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.slider-content {
  position: relative;
  background: linear-gradient(180deg, #0f2a0f, #071a07);
  padding: 60px 80px;
  border-radius: 24px;

  width: 1000px;
  height: 650px; 

  overflow: hidden;
}

.slider-content h4 {
  position: absolute;
  top: 40px; /* distance from top */
  left: 50%;
  transform: translateX(-50%);

  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #9fd26a;

  text-align: center;
  width: 100%;
}

.arrow {
  background: none;
  border: none;
  font-size: 40px;
  color: #cbd5e1;
  cursor: pointer;

  width: 60px;
  height: 60px; 

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.arrow:hover {
  color: #5b822f;
}

/* =========================
   SERVICE LOGO GRID
========================= */

.logo-grid {
  margin-top: 120px; 

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
}

.logo-grid img {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;

  height: 160px;
  width: 240px;

  object-fit: contain;

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logo-grid img:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(91, 130, 47, 0.35);
}


/* CONTACT PAGE */
    /* ── SECTION ─────────────────────────────────────────────────── */
    .contact-section {
      padding: 64px 80px 80px;
      min-height: calc(100vh - 104px);
      background: rgba(0,0,0,0.18);
      backdrop-filter: blur(2px);
    }

    /* ── PAGE HEADER ─────────────────────────────────────────────── */
    .contact-page-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 44px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .contact-page-header h2 {
      font-family: 'Inter', sans-serif;
      font-size: 40px;
      font-weight: 700;
      color: #f1f5f1;
      letter-spacing: 0.5px;
      position: relative;
      display: inline-block;
      line-height: 1;
    }

    .contact-page-header h2::after {
      content: '';
      position: absolute;
      left: 0; bottom: -10px;
      width: 56px; height: 4px;
      background: #5b822f;
      border-radius: 2px;
    }

    .contact-page-header p {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      font-weight: 300;
      text-align: right;
      max-width: 340px;
      line-height: 1.6;
    }

    /* ── TWO-COLUMN GRID ─────────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 28px;
      align-items: start;
    }

    /* ── SHARED CARD STYLE ───────────────────────────────────────── */
    .c-card {
      background: linear-gradient(145deg, rgba(42,90,35,0.65), rgba(18,41,23,0.88));
      border: 1px solid rgba(91,130,47,0.28);
      border-radius: 20px;
      backdrop-filter: blur(8px);
    }

    .card-label {
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 16px;
    }

    /* ── LEFT COLUMN ─────────────────────────────────────────────── */
    .contact-left {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Contact info card */
    .info-card {
      padding: 26px 28px;
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      padding: 11px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .contact-detail:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .detail-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(91,130,47,0.14);
      border: 1px solid rgba(91,130,47,0.24);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .detail-icon svg {
      width: 17px; height: 17px;
      fill: #5b822f;
    }

    .detail-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.38);
      font-family: 'Inter', sans-serif;
      margin-bottom: 2px;
    }

    .detail-value {
      font-size: 13.5px;
      color: #eef4ea;
      font-weight: 400;
      line-height: 1.55;
      font-family: 'Inter', sans-serif;
    }

    .detail-value a {
      color: #eef4ea;
      text-decoration: none;
      transition: color 0.2s;
    }

    .detail-value a:hover { color: #8ab84a; }

    /* Hours card */
    .hours-card {
      padding: 24px 28px;
    }

    .hours-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 11px;
      border-radius: 20px;
      font-size: 10.5px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      margin-bottom: 14px;
    }

    .hours-badge.open {
      background: rgba(91,130,47,0.18);
      color: #8ab84a;
      border: 1px solid rgba(91,130,47,0.32);
    }

    .hours-badge.closed {
      background: rgba(255,100,100,0.1);
      color: #f08080;
      border: 1px solid rgba(255,100,100,0.22);
    }

    .hours-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
    }

    .open .hours-dot {
      background: #8ab84a;
      animation: blinkDot 1.5s ease-in-out infinite;
    }

    .closed .hours-dot { background: #f08080; }

    @keyframes blinkDot {
      0%,100% { opacity: 1; }
      50%      { opacity: 0.25; }
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 13px;
      font-family: 'Inter', sans-serif;
    }

    .hours-row:last-child { border-bottom: none; }
    .hours-day   { color: rgba(255,255,255,0.55); }
    .hours-time  { color: #eef4ea; font-weight: 500; }
    .hours-closed { color: rgba(255,255,255,0.28); font-style: italic; }

    /* ── RIGHT COLUMN ────────────────────────────────────────────── */
    .contact-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Map card — tall */
    .map-card {
      overflow: hidden;
    }

    .map-card-header {
      padding: 18px 24px 14px;
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .map-card-header svg {
      width: 16px; height: 16px;
      fill: #5b822f;
      flex-shrink: 0;
    }

    .map-card-header span {
      font-family: 'Inter', sans-serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-transform: uppercase;
      color: #ffffff;
    }

    .map-card iframe {
      width: 100%;
      height: 300px;
      border: none;
      display: block;
      filter: hue-rotate(80deg) saturate(0.55) brightness(0.82);
    }

    /* Gallery card — 4 photos in a row */
    .gallery-card {
      padding: 22px 24px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 14px;
    }

    .gallery-grid img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid rgba(91,130,47,0.22);
      box-shadow: 0 6px 18px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: zoom-in;
    }

    .gallery-grid img:hover {
      transform: scale(1.04);
      box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    }

    /* ── LIGHTBOX ────────────────────────────────────────────────── */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
    }

    #lightbox.active { display: flex; }

    #lightbox img {
      max-width: 88vw;
      max-height: 82vh;
      border-radius: 14px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      object-fit: contain;
    }

    #lightbox-close {
      position: fixed;
      top: 22px; right: 28px;
      font-size: 32px;
      color: rgba(255,255,255,0.7);
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
      background: none;
      border: none;
    }

    #lightbox-close:hover { color: #fff; }

    /* ── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .contact-section { padding: 50px 40px 60px; }
      .contact-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid img { height: 150px; }
      .map-card iframe { height: 260px; }
    }

    @media (max-width: 600px) {
      .contact-section { padding: 32px 18px 48px; }
      .contact-page-header { flex-direction: column; align-items: flex-start; }
      .contact-page-header p { text-align: left; }
      .contact-page-header h2 { font-size: 30px; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }



/* =========================
   FOOTER
========================= */

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  header,
  .hero,
  section,
  .site-footer {
    padding: 40px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .visual-section {
    padding: 80px 24px;
  }

  .image-wrapper {
    padding: 12px;
  }
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .location-gallery {
    grid-template-columns: 1fr;
  }
}
/* =========================
   HAMBURGER MENU (MOBILE)
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #e0e1e2;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 768px) {
  header {
    padding: 16px 20px !important;
    position: relative;
  }
  header h1 { font-size: 16px !important; }
  .brand img { height: 34px !important; }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: linear-gradient(180deg, #2d5524, #053a23);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding: 8px 0;
    z-index: 1099;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .main-nav.open { display: flex; }

  .main-nav a {
    margin: 0 !important;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .main-nav a:last-child { border-bottom: none; }
  .main-nav a:hover { background: rgba(91,130,47,0.18); color: #8dc45a; }
}
/* =========================
   MOBILE HERO FIX
========================= */
@media (max-width: 768px) {
  .hero {
    padding: 40px 24px !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .hero h2 {
    font-size: 28px !important;
    margin-bottom: 16px !important;
  }

  .hero p {
    font-size: 14px !important;
  }

  .hero button {
    margin-top: 20px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
  }

  .card {
    padding: 24px !important;
  }

  .card h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .card ul {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }

  section {
    padding: 48px 24px !important;
    min-height: unset !important;
  }
}