/* ===== Design tokens ===== */
:root {
  --primary: #1f8a3d;
  --primary-dark: #146b2e;
  --accent: #f5a623;
  --dark: #0f2418;
  --dark-2: #163a24;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --bg: #ffffff;
  --radius-xs: 8px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 48px;
  --space-9: 64px;
  --container: 1160px;
  --shadow: 0 10px 30px rgba(13, 21, 38, 0.08);
  --shadow-lg: 0 25px 60px rgba(13, 21, 38, 0.16);
  --focus-ring: 0 0 0 3px rgba(31, 138, 61, 0.35);
  font-size: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--gray-900);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: var(--gray-700); }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(31, 138, 61, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.section-tag-light { background: rgba(255,255,255,0.12); color: #fff; }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin-top: 12px; }

.card-link { color: var(--primary); font-weight: 600; font-size: 0.92rem; white-space: nowrap; }
.card-link:hover { color: var(--primary-dark); }

/* ===== Focus states (keyboard accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
  box-shadow: var(--focus-ring);
}

/* ===== Placeholder / to-be-determined markers ===== */
.tbd {
  font-style: italic;
  color: #b06a0e;
  border-bottom: 1px dashed var(--accent);
  padding-bottom: 1px;
}
.small-note { font-size: 0.82rem; margin-bottom: 0; }
.pill-tbd { cursor: default; }
.footer-tbd { display: block; margin-bottom: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.3); }
/* tbd needs a lighter treatment on dark or accent-colored backgrounds */
.about-badge .tbd { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-7);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--gray-200); color: var(--gray-900); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-dark { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--gray-100); transform: translateY(-2px); }

/* ===== Header =====
   Plain/transparent over the hero at rest (like the Goodhope reference); sticky, and only
   gains a solid translucent background once scrolled a bit (.scrolled, via JS). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: -96px; /* pulls the hero up to sit behind the header at rest */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--gray-200);
}
.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.logo { display: inline-flex; align-items: center; gap: 8px; font-size: 1.3rem; font-weight: 800; color: var(--primary); }
/* Logo centers on the header via absolute positioning so it never fights the nav for space
   (scoped to the header only — .logo is reused as a plain inline mark in the footer). */
.nav-wrap .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.logo-img { height: 68px; width: 68px; object-fit: contain; border-radius: var(--radius-sm); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.logo-footer .logo-img { height: 40px; width: 40px; filter: none; }

/* nav-panel dissolves on desktop (display:contents) so nav-left/nav-right become direct
   flex children of nav-wrap, landing left and right of the absolutely-centered logo. */
.nav-panel { display: contents; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-weight: 500; color: #fff; font-size: 0.92rem; transition: color 0.3s ease; }
.nav > a:hover, .nav-item.has-dropdown:hover > a { color: var(--accent); }
.site-header.scrolled .nav a { color: var(--gray-700); }
.site-header.scrolled .nav > a:hover, .site-header.scrolled .nav-item.has-dropdown:hover > a { color: var(--primary); }

.nav-item { position: relative; }
.nav-item.has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-item.has-dropdown > a::after { content: "▾"; font-size: 0.65em; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.dropdown a { display: block; padding: var(--space-3) var(--space-4); border-radius: var(--radius-xs); font-size: 0.9rem; color: var(--gray-700) !important; font-weight: 500; }
.dropdown a:hover { background: var(--gray-100); color: var(--primary) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; transition: background-color 0.3s ease; }
.site-header.scrolled .hamburger span { background: var(--gray-900); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 166, 35, 0.35), transparent 42%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 55%, var(--primary) 150%);
  color: #fff;
  text-align: center;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 166, 35, 0.35), transparent 42%),
    linear-gradient(160deg, rgba(15, 36, 24, 0.82) 0%, rgba(22, 58, 36, 0.78) 55%, rgba(31, 138, 61, 0.55) 150%);
  pointer-events: none;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.hero-blob-1 { width: 380px; height: 380px; background: rgba(31, 138, 61, 0.55); top: -120px; left: -100px; }
.hero-blob-2 { width: 320px; height: 320px; background: rgba(245, 166, 35, 0.25); bottom: -100px; right: -60px; }

/* Full IAM logo watermark, fixed to the viewport so it stays in the bottom-right corner through scroll. */
.logo-watermark {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 150px;
  pointer-events: none;
  opacity: 0.15;
  z-index: 40;
}
.logo-watermark img { display: block; width: 100%; height: auto; }

.hero-inner { position: relative; max-width: 720px; margin: 0 auto; padding-bottom: 90px; }
.hero-inner h1 { color: #fff; }
.hero-inner p { margin: 22px auto 32px; font-size: 1.1rem; max-width: 560px; color: rgba(255,255,255,0.8); }
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; justify-content: center; }

/* Overlapping stats card */
.stats-float {
  position: relative;
  transform: translateY(50%);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  z-index: 5;
}
.stat-float-item { padding: var(--space-7) var(--space-4); text-align: center; border-right: 1px solid var(--gray-200); }
.stat-float-item:last-child { border-right: none; }
.stat-float-item .stat-number { display: block; font-size: 2.1rem; font-weight: 800; color: var(--primary); }
.stat-float-item .stat-number.stat-text { font-size: 1.2rem; }
.stat-float-item .stat-label { display: block; margin-top: 6px; font-size: 0.85rem; color: var(--gray-500); }

/* ===== Trusted ===== */
.trusted { padding: 130px 0 40px; border-bottom: 1px solid var(--gray-200); }
.trusted-label { text-align: center; color: var(--gray-500); font-size: 0.85rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.06em; }
.logo-strip { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.logo-strip span { font-weight: 700; letter-spacing: 0.04em; }
.cert-item { max-width: 220px; text-align: center; }
.cert-logo { height: 64px; width: auto; object-fit: contain; margin: 0 auto; }
.cert-desc { margin-top: 10px; font-size: 0.8rem; color: var(--gray-500); }

/* ===== About ===== */
.about { padding: 100px 0; }
.about-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.about-media { position: relative; }
.about-shape { display: block; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; object-fit: cover; }
.about-video { cursor: pointer; }
.play-hint {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(15, 36, 24, 0.55);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.play-hint svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.about-media:hover .play-hint { opacity: 0; }
.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  max-width: 168px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.about-badge span { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1; }
.about-badge span.about-badge-text { font-size: 1.3rem; }
.about-badge small { display: block; font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.85; }
.about-badge small.about-badge-address { margin-top: 4px; font-size: 0.58rem; font-weight: 500; text-transform: none; letter-spacing: normal; line-height: 1.3; opacity: 0.9; }
.about-text p { margin: 16px 0 24px; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 12px; color: var(--gray-700); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ===== Services ===== */
.services { padding: 100px 0; background: var(--gray-100); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.services-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin: 0 auto; }
.service-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-thumb {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s ease;
}
.service-card:hover .service-thumb { transform: scale(1.06); }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-icon { width: 64px; height: 64px; fill: #fff; }
.thumb-1 { background: linear-gradient(135deg, #1f8a3d, #3fbf5f); }
.thumb-2 { background: linear-gradient(135deg, #146b2e, #1f8a3d); }
.service-body { padding: 24px; }
.service-body h3 { margin-bottom: 10px; }
.service-body p { font-size: 0.92rem; margin-bottom: 16px; }
.status-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 166, 35, 0.12);
  color: #b06a0e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ===== Plantation Statistic table ===== */
.plantation-stats { max-width: 900px; margin: 56px auto 0; }
.plantation-stats-title { text-align: center; margin-bottom: 20px; font-size: 1.1rem; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.stats-table { width: 100%; min-width: 480px; border-collapse: collapse; background: #fff; }
.stats-table th, .stats-table td { padding: 14px 20px; text-align: right; font-size: 0.92rem; }
.stats-table th:first-child, .stats-table td:first-child { text-align: left; font-weight: 600; }
.stats-table th:nth-child(2), .stats-table td:nth-child(2) { text-align: left; padding-left: 0; color: var(--gray-500); font-weight: 500; }
.stats-table thead th { background: var(--dark); color: #fff; font-weight: 700; }
.stats-table tbody tr:nth-child(even) { background: rgba(31, 138, 61, 0.08); }
.stats-table tr.total-row td { font-weight: 800; border-top: 2px solid var(--primary); }

/* ===== Proses Perkebunan ===== */
.process { padding: 100px 0; background: var(--gray-100); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.process-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.process-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.process-body { padding: 24px; }
.process-step {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-body h3 { margin-bottom: 8px; }
.process-body p { font-size: 0.92rem; }

/* ===== Sustainability ===== */
.sustainability { position: relative; overflow: hidden; padding: 90px 0; background: linear-gradient(135deg, rgba(31,138,61,0.06), rgba(245,166,35,0.06)); }
.sustainability-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.report-tabs { margin-top: 36px; }
.report-label { display: block; margin-bottom: 16px; font-weight: 600; font-size: 0.9rem; color: var(--gray-700); }
.report-pills { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.pill {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 2px dashed var(--gray-200);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* ===== Why Us ===== */
.why-us { padding: 100px 0; background: var(--dark); color: #fff; }
.why-us h2 { color: #fff; }
.why-us p { color: rgba(255,255,255,0.7); }
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-item { padding: 24px; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); }
.feature-item h4 { color: #fff; margin-bottom: 6px; }

/* ===== News ===== */
.news { padding: 100px 0; }
.news-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: padding-left 0.2s ease;
}
.news-item:hover { padding-left: 8px; }
.news-date { flex-shrink: 0; width: 150px; font-size: 0.85rem; font-weight: 600; }
.news-item h4 { font-size: 1.05rem; font-weight: 600; }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: var(--gray-100); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
}
.quote-mark { position: absolute; top: 8px; right: 20px; font-size: 3.5rem; font-weight: 800; color: rgba(31,138,61,0.12); line-height: 1; font-family: Georgia, serif; }
.testimonial-card p { margin-bottom: 22px; font-style: italic; position: relative; }
.testimonial-card p.tbd { font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--gray-500); }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-200); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}

/* ===== Leadership ===== */
.leadership { padding: 100px 0; background: var(--gray-100); }
.leadership-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
.leadership-card { text-align: center; }
.leadership-avatar {
  width: 96px; height: 96px; margin: 0 auto var(--space-4);
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
}
.leadership-avatar svg { width: 46px; height: 46px; fill: currentColor; }
.leadership-name { font-weight: 700; margin-bottom: 2px; }
.leadership-role { font-size: 0.85rem; color: var(--gray-500); }
.leadership-note { text-align: center; margin-top: var(--space-7); font-size: 0.85rem; }

/* ===== CTA Banner ===== */
.cta-banner { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 70px 0; }
.cta-wrap { text-align: center; color: #fff; }
.cta-wrap h2 { color: #fff; }
.cta-wrap p { color: rgba(255,255,255,0.85); margin: 14px 0 28px; }

/* ===== Contact ===== */
.contact { padding: 100px 0; }
.contact-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-info p { margin: 16px 0 24px; }
.contact-list li { padding: 10px 0; border-bottom: 1px solid var(--gray-200); font-size: 0.95rem; color: var(--gray-700); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: var(--space-4);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form input:focus:not(:focus-visible), .contact-form textarea:focus:not(:focus-visible) { outline: none; }
.contact-form .btn { align-self: flex-start; border: none; }
.form-note { font-size: 0.88rem; color: var(--primary); min-height: 1.2em; }

/* ===== Footer ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 14px; color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ===== Responsive ===== */
/* Below this width the 2-left/3-right nav split no longer has room beside the centered
   logo, so it tucks behind the hamburger as a single stacked panel instead. */
@media (max-width: 860px) {
  .nav-panel { display: none; }
  .hamburger { display: flex; }
  .site-header.open .nav-panel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 96px; left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    gap: 8px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 60;
  }
  .site-header.open .nav-panel .nav { flex-direction: column; align-items: flex-start; gap: 10px; width: 100%; }
  .site-header.open .nav-panel .nav a { color: var(--gray-700); }
  .site-header.open .nav-panel .nav-item { width: 100%; }
  .site-header.open .nav-panel .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: none;
    padding: 4px 0 0 12px;
    display: none;
  }
  .site-header.open .nav-panel .nav-item.has-dropdown.open .dropdown { display: block; }
}

@media (max-width: 900px) {
  .about-wrap, .why-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .about-media { order: -1; margin-bottom: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr 1fr; }
  .stats-float { grid-template-columns: repeat(2, 1fr); }
  .stat-float-item:nth-child(2) { border-right: none; }
  .stat-float-item:nth-child(1), .stat-float-item:nth-child(2) { border-bottom: 1px solid var(--gray-200); }
}


@media (max-width: 720px) {
  .news-item { flex-direction: column; gap: 6px; }
  .news-date { width: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-wrap { grid-template-columns: 1fr; text-align: left; }
  .stats-float { grid-template-columns: 1fr 1fr; transform: translateY(30%); }
  .hero { padding-top: 100px; }
  .about-badge { left: 12px; bottom: -18px; padding: 14px 18px; }
}
