/* index.css — refined UI, alignment fixes, improved zones & packages (updated buttons & CTA alignment)
   Generated: 2025-11-23
*/
:root {
  --bg: #fbfbfb;
  --text: #0f2320;
  --muted: #55606a;
  --primary: #38ff9f;
  --primary-2: #1fdc88;
  --accent: #652d96;
  --card: #ffffff;
  --panel: #f6fff8;
  --shadow: 0 18px 60px rgba(8, 12, 10, 0.12);
  --hero-height: 640px;
  --container: 1200px;
  --notice-height: 40px;
}

/* base */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}

/* container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 140;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(16, 32, 33, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-thumb {
  width: 72px;
  height: 42px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(10, 16, 12, 0.06);
}
.brand-name {
  font-weight: 800;
  font-size: 1.02rem;
}
.brand-sub {
  font-size: 0.78rem;
  color: var(--muted);
}
.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--text);
  transition: background 0.12s ease;
}
.nav a:hover {
  background: rgba(6, 18, 14, 0.03);
}
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
}

/* ======================================================
   BUTTONS — consistent, accessible, responsive (updated)
   ======================================================
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px; /* consistent tappable area */
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  border: 0;
  box-sizing: border-box;
}

/* Primary solid */
.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #02231d;
  box-shadow: 0 10px 30px rgba(56, 255, 159, 0.12);
}

/* Outline / secondary */
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(6, 18, 14, 0.08);
  color: var(--text);
  backdrop-filter: blur(4px);
}

/* Ghost / small variants (kept for compatibility) */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
}
.btn-min {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 700;
}
.btn-cta {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #02231d;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 1rem;
  box-shadow: 0 20px 50px rgba(56, 255, 159, 0.12);
  transition: transform 0.16s ease;
}

/* Hover, active, focus states */
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary:active,
.btn-outline:active {
  transform: translateY(-1px);
}
.btn:focus-visible {
  outline: 3px solid rgba(101, 45, 150, 0.14);
  outline-offset: 3px;
  box-shadow: 0 8px 30px rgba(101, 45, 150, 0.06);
}

/* ensure icons/text don't wrap inside button */
.btn > * {
  white-space: nowrap;
}

/* small helper — equalize line height */
.btn {
  line-height: 1;
}

/* ======================================================
   HERO
   ======================================================
*/
.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  padding: 56px 20px;
  min-height: var(--hero-height);
  max-width: var(--container);
  margin: 0 auto;
  z-index: 10;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  z-index: 2;
}
.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 5, 0.28), rgba(3, 4, 3, 0.52));
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 3;
}
.super-hero {
  position: relative;
  overflow: visible;
  padding-bottom: 24px;
}
.hero-left {
  z-index: 10;
  color: #fff;
  padding: 28px 12px;
}
.eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #02231d;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 14px;
  font-size: 0.82rem;
}
.hero-title {
  font-size: 2.4rem;
  line-height: 1.02;
  margin: 8px 0 12px;
  font-weight: 900;
  letter-spacing: -0.3px;
  color: #fff;
}
.highlight {
  padding: 3px 8px;
  border-radius: 8px;
  background: linear-gradient(
    90deg,
    rgba(56, 255, 159, 0.09),
    rgba(101, 45, 150, 0.03)
  );
  color: var(--primary);
}
.hero-lead {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.02rem;
  margin-bottom: 18px;
  max-width: 56ch;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.btn-min {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* hero meta badges */
.hero-meta {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.meta-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  padding: 10px 12px;
  border-radius: 10px;
  min-width: 92px;
  text-align: left;
  backdrop-filter: blur(0px);
}
.meta-value {
  font-weight: 900;
  color: var(--primary);
  font-size: 1.05rem;
}
.meta-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
}

/* hero right */
.hero-right {
  position: relative;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
}
.accent-blob {
  position: absolute;
  right: 8px;
  top: -28px;
  width: 220px;
  height: 220px;
  border-radius: 36px;
  background: linear-gradient(
    135deg,
    rgba(56, 255, 159, 0.12),
    rgba(101, 45, 150, 0.06)
  );
  filter: blur(8px);
  transform: rotate(12deg);
  animation: float 8s ease-in-out infinite;
  z-index: 11;
  pointer-events: none;
}
@keyframes float {
  0% {
    transform: translateY(0) rotate(12deg);
  }
  50% {
    transform: translateY(-10px) rotate(12deg);
  }
  100% {
    transform: translateY(0) rotate(12deg);
  }
}
.lead-panel {
  background: linear-gradient(180deg, var(--panel), #fff);
  padding: 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 20;
}
.tally-wrapper iframe {
  border-radius: 10px;
  border: 0;
}

/* wave */
.hero-wave {
  position: relative;
  z-index: 6;
  margin-top: -6px;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* sections baseline */
.section-title {
  font-size: 2rem;
  margin: 28px 0 14px;
  color: var(--text);
}
.muted {
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 600;
}

/* ======================================================
   CARDS — general
   ======================================================
*/
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.card {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(8, 14, 12, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.card-media {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(8, 14, 12, 0.1);
}
/* ensure actions are pushed to bottom */
.card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
}

/* outline btn (kept for compatibility but using .btn-outline above) */
.btn-outline {
  background: transparent;
  border: 1px solid rgba(6, 18, 14, 0.06);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(8, 14, 12, 0.06);
}

/* footer baseline */
.site-footer {
  background: linear-gradient(180deg, #07151a, #061218);
  color: #cfeee6;
  padding: 36px 0;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}
.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-grid .col {
  flex: 1;
  min-width: 200px;
}
.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 18px;
  margin-top: 18px;
}

/* whatsapp */
.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #02231d;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(56, 255, 159, 0.12);
}
.whatsapp:hover {
  transform: translateY(-3px);
  transition: transform 0.14s;
}

/* responsive header */
@media (max-width: 900px) {
  /* ================= MOBILE NAV ================= */

  @media (max-width: 900px) {
    .mobile-toggle {
      display: block;
      z-index: 300;
    }

    .nav {
      position: fixed;
      top: calc(var(--notice-height) + 60px);
      left: 12px;
      right: 12px;
      background: #ffffff;
      border-radius: 14px;
      padding: 16px;
      display: none;
      flex-direction: column;
      gap: 12px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
      z-index: 250;
    }

    .nav.open {
      display: flex;
    }

    .nav a {
      font-size: 1.05rem;
      padding: 12px;
      border-radius: 10px;
      font-weight: 800;
    }

    body.nav-locked {
      overflow: hidden;
    }
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 16px;
  }
  .hero-right {
    order: 2;
    width: 100%;
  }
  .hero-left {
    order: 1;
    padding: 12px 6px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ===== REPLACE: WHY section (drop-in) ===== */
#why {
  padding: 36px 20px 28px;
  background: linear-gradient(180deg, #fbfff9, #f7fffb);
  border-radius: 12px;
  margin-top: 18px;
  border: 1px solid rgba(6, 12, 8, 0.02);
  max-width: 1300px;
  margin-inline: auto;
}

/* layout: left = card grid, right = copy/CTA (keeps your existing 3fr / 340px layout on wide screens) */
#why .why-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: start;
}

/* the card grid — NOTE: this is the 3xN grid container */
#why .why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3 columns */
  grid-auto-rows: 1fr; /* make rows equal height (cards stretch) */
  gap: 18px;
  width: 100%;
}

/* card sizing & behaviour */
#why .why-card {
  background: linear-gradient(180deg, #fff, #f3fff8);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 14px 36px rgba(12, 26, 18, 0.06);
  border: 1px solid rgba(7, 18, 14, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px; /* ensures visual balance in the 3x3 grid */
  align-items: flex-start;
}

/* top row (icon + kicker) */
#why .why-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
#why .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(56, 255, 159, 0.06),
    rgba(101, 45, 150, 0.02)
  );
  color: #1b3b33;
  font-weight: 900;
  font-size: 1.15rem;
}
#why .why-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  color: #2b4a42;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* title & description */
#why .why-title {
  margin: 6px 0 8px;
  font-size: 1.02rem;
  color: #072b23;
  font-weight: 900;
}
#why .why-desc {
  margin: 0;
  color: #3b5a50;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}

/* ensure card actions (if any) sit at bottom */
#why .why-card > * {
  flex-shrink: 0;
}
#why .why-card .card-actions,
#why .why-card .why-footer {
  margin-top: auto;
}

/* responsive: at medium widths, convert grid to 2 columns inside the left area to keep cards readable */
@media (max-width: 1100px) {
  #why .why-inner {
    grid-template-columns: 1fr;
  } /* stack head + grid vertically */
  #why .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  #why .why-card {
    min-height: 200px;
    padding: 16px;
  }
}

/* small screens: single column */
@media (max-width: 700px) {
  #why .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #why .why-card {
    min-height: unset;
    padding: 14px;
  }
  #why .why-inner {
    gap: 14px;
  }
}

/* ZONES */
.zones {
  padding: 36px 0 48px;
  background: linear-gradient(
    180deg,
    rgba(247, 255, 250, 0.95),
    rgba(240, 255, 245, 0.9)
  );
  border-radius: 12px;
  margin-top: 16px;
  border: 1px solid rgba(30, 60, 40, 0.04);
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.zone-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  align-items: center;
  background: linear-gradient(180deg, #fff, #f6fff8);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 18px 48px rgba(6, 18, 10, 0.06);
  border: 1px solid rgba(20, 60, 35, 0.06);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.zone-card-media {
  height: 180px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 34px rgba(6, 18, 12, 0.08);
  border: 1px solid rgba(8, 18, 12, 0.06);
}
.zone-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 18, 0.04),
    rgba(10, 30, 18, 0.02)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}
.zone-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 120px;
  z-index: 2;
}
.zone-card-content h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #062a22;
  font-weight: 900;
}
.zone-card-content p {
  margin: 0;
  color: #2f4f44;
  line-height: 1.45;
  font-weight: 600;
}
.zone-card-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 120px;
}
.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(7, 21, 12, 0.12);
}
@media (max-width: 980px) {
  .zones-grid {
    grid-template-columns: 1fr;
  }
  .zone-card {
    grid-template-columns: 1fr;
    padding: 10px;
  }
  .zone-card-media {
    width: 100%;
    height: 220px;
  }
  .zone-card-body {
    flex-direction: column;
    align-items: flex-start;
  }
  .zone-card-cta {
    width: 100%;
    justify-content: flex-start;
  }
}

/* PACKAGES */
.packages {
  padding: 28px 0 36px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pkg {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  background: linear-gradient(180deg, #fff, #f7fff8);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 12px 36px rgba(8, 14, 12, 0.05);
  border: 1px solid rgba(6, 12, 8, 0.03);
  align-items: center;
  transition: transform 0.18s ease;
}
.pkg-media {
  height: 200px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 28px rgba(6, 18, 12, 0.06);
}
.pkg-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
}
.pkg .muted {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}
.pkg:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 68px rgba(8, 14, 12, 0.08);
}
@media (max-width: 980px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .pkg {
    grid-template-columns: 120px 1fr;
  }
  .pkg-media {
    height: 96px;
  }
}
@media (max-width: 520px) {
  #dhikala,
  .bp-grid {
    padding: 8px 10px;
  }
  .pkg {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
  .pkg-media {
    height: 160px;
    width: 100%;
  }
  .pkg-body .btn {
    width: 100%;
    text-align: center;
  }
}

/* ABOUT */
.about {
  padding: 28px 0 36px;
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 20px;
  align-items: center;
}
.about-media {
  height: 260px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 48px rgba(8, 14, 12, 0.06);
  border: 1px solid rgba(6, 12, 8, 0.03);
}
.about-text p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}
@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    height: 200px;
  }
}

/* FOOTER */
.footer-grid h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #cfeee6;
  font-weight: 900;
}
.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* CTA Button */
/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Aligns vertically */
}

/* CTA Base Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
}

/* Call Button */
.call-btn {
  background: #38ff9f;
  color: #0c2a15;
  box-shadow: 0 4px 10px rgba(56, 255, 159, 0.3);
}

.call-btn:hover {
  background: #38ff9f;
  transform: translateY(-2px);
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #38ff9f;
  color: white;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/* ------------------- Contact section styles (added) ------------------- */
.contact {
  padding: 18px 0;
}
.contact-inner {
  gap: 20px;
}

/* Contact panel already uses .contact-panel inline styles, but provide fallback */
.contact-panel {
  border-radius: 12px;
  padding: 14px;
  background: linear-gradient(180deg, var(--panel), #fff);
  box-shadow: var(--shadow);
}

/* Make Tally iframes responsive */
.tally-iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

/* Smaller screens: stack contact area */
@media (max-width: 900px) {
  .contact-inner {
    display: block;
  }
  .contact-panel {
    margin-top: 12px;
  }
  .tally-iframe {
    height: 600px !important;
  }
}

/* slightly reduce height on very small screens */
@media (max-width: 420px) {
  .tally-iframe {
    height: 520px !important;
  }
}

/* ===== About Us: polished layout ===== */
.about-us {
  padding: 22px 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fff9);
  box-shadow: 0 18px 60px rgba(6, 12, 8, 0.04);
  border: 1px solid rgba(6, 18, 14, 0.03);
}
.about-us-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 28px;
  align-items: start;
}

/* media / hero image */
.about-us-media {
  position: relative;
  height: 600px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(6, 18, 14, 0.06);
  overflow: hidden;
}
.about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(56, 255, 159, 0.12),
    rgba(101, 45, 150, 0.06)
  );
  padding: 10px 14px;
  border-radius: 12px;
  backdrop-filter: blur(4px);
}
.badge-star {
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #02231d;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(56, 255, 159, 0.12);
}
.badge-text .b-title {
  font-weight: 900;
  font-size: 0.95rem;
  color: #04231a;
}
.badge-text .b-sub {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

/* content */
.about-us-body {
  padding: 6px 2px;
}
.about-lead {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 700;
}
.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

/* lists */
.feature-list,
.checks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  font-weight: 700;
  color: #0a2d25;
  line-height: 1.5;
  padding-left: 6px;
}
.checks-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
  color: #163f35;
  line-height: 1.45;
}
.checks-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

/* mini title */
.mini-title {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--accent);
}

/* CTAs */
.about-ctas {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.about-ctas .btn-outline {
  background: transparent;
  border: 1px solid rgba(6, 18, 14, 0.06);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
}
.about-ctas .btn-primary {
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}

/* disclaimer */
.about-us .disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}

/* responsive */
@media (max-width: 1100px) {
  .about-us-grid {
    grid-template-columns: 1fr;
  }
  .about-us-media {
    height: 320px;
  }
  .about-columns {
    grid-template-columns: 1fr;
  }
  .about-ctas {
    justify-content: flex-start;
  }
}
@media (max-width: 520px) {
  .about-us-media {
    height: 220px;
    border-radius: 12px;
  }
  .badge-text .b-title {
    font-size: 0.9rem;
  }
  .mini-title {
    font-size: 0.92rem;
  }
  .about-lead {
    font-size: 0.98rem;
  }
}

/* ===================== DHIKALA SECTION ====================== */
.dhikala-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #ffffff, #f7fff9);
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
  text-align: center; /* CENTER ALIGN THE WHOLE SECTION */
}

/* chips */
.assist-chip {
  display: inline-block;
  background: #e9fff4;
  color: #043625;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(56, 255, 159, 0.22);
  font-size: 0.9rem;
}

/* Grid – 3 columns */
.dhikala-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

/* Card Styles */
.dhikala-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
  text-align: left; /* content inside card left-aligned */
}

.dhikala-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

/* Image */
.dhikala-media {
  height: 210px;
  background-size: cover;
  background-position: center;
}

/* Card Body */
.dhikala-body {
  padding: 18px 20px;
}

.dhikala-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
}

.dh-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: #173d33;
  line-height: 1.5;
}

/* ==================== DHIKALA NOTES (beautiful frosted style) ===================== */
.dhikala-notes {
  margin-top: 20px;
  padding: 30px 0;
}

.dhikala-notes-inner {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 24px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06), 0 0 60px rgba(56, 255, 159, 0.06); /* soft green glow */
  border: 1px solid rgba(0, 0, 0, 0.03);
  max-width: 1350px;
  margin: 0 auto;
}

/* Heading */
.dhikala-notes h3 {
  text-align: center;
  margin-bottom: 26px;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent); /* purple */
}

/* grid */
.dh-notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* individual note cards */
.note-card {
  background: linear-gradient(180deg, #ffffff, #f5fff7);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 0 40px rgba(56, 255, 159, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  width: 100%;
}

.note-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f2320;
}

.note-card p {
  margin: 0;
  color: #4d5b57;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 600;
}

/* responsive */
@media (max-width: 980px) {
  .dh-notes-grid {
    grid-template-columns: 1fr;
  }
}

/* Buttons Row */
.dh-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .dhikala-grid {
    grid-template-columns: 1fr;
  }
  .dhikala-body {
    text-align: center;
  }
  .dh-actions {
    justify-content: center;
  }
}

/* ===== Tour Packages (cards) ===== */
.tour-packages {
  padding: 28px 0;
}
.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 12px;
  align-items: stretch;
}

/* card */
.tp-card {
  background: linear-gradient(180deg, #fff, #f8fffb);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(6, 12, 8, 0.06);
  border: 1px solid rgba(8, 18, 14, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.22s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.tp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 100px rgba(6, 12, 8, 0.12);
}

/* media */
.tp-media {
  height: 180px;
  background-size: cover;
  background-position: center;
  filter: contrast(0.98);
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.tp-card:hover .tp-media {
  transform: scale(1.03);
}

/* body */
.tp-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  text-align: left;
}
.tp-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--text);
}
.tp-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: #163f35;
}

/* actions */
.tp-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
.tp-actions .btn-primary {
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}
.tp-actions .btn-outline {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
}

/* responsive */
@media (max-width: 1100px) {
  .tp-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}
@media (max-width: 700px) {
  .tp-grid {
    grid-template-columns: 1fr;
  }
  .tp-body {
    text-align: center;
  }
  .tp-actions {
    justify-content: center;
  }
}

/* ===== Bestselling Packages ===== */
.best-packages {
  padding: 10px 0 20px;
}

.bp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 20px;
}

/* card */
.bp-card {
  background: linear-gradient(180deg, #fff, #f6fff8);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(8, 14, 12, 0.06);
  border: 1px solid rgba(7, 18, 14, 0.04);
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.bp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(8, 14, 12, 0.08);
}

.bp-media {
  height: 160px;
  background-size: cover;
  background-position: center;
}

/* content */
.bp-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bp-body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 900;
  color: #08231a;
}

.bp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: #173f33;
}

.bp-price {
  font-weight: 800;
  color: var(--accent);
  margin-top: -4px;
}

.bp-small {
  font-size: 0.85rem;
  color: var(--muted);
}

/* actions */
.bp-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.bp-actions .btn-primary {
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}

.bp-actions .btn-outline {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
}

/* responsive */
@media (max-width: 1100px) {
  .bp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .bp-grid {
    grid-template-columns: 1fr;
  }
  .bp-body {
    text-align: center;
  }
  .bp-actions {
    justify-content: center;
  }
}

/* ========================= helpers to ensure actions align ========================= */
/* make sure all card inner bodies are flex columns so .*-actions can be pushed down */
.card,
.dhikala-card,
.tp-card,
.bp-card {
  display: flex;
  flex-direction: column;
}
.card-body,
.dhikala-body,
.tp-body,
.bp-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  justify-content: flex-start;
}
.card-actions,
.dh-actions,
.tp-actions,
.bp-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
/* make primary slightly wider */
.card .btn-primary,
.dhikala-card .btn-primary,
.tp-card .btn-primary,
.bp-card .btn-primary {
  min-width: 140px;
  padding: 10px 16px;
}
.card .btn-outline,
.dhikala-card .btn-outline,
.tp-card .btn-outline,
.bp-card .btn-outline {
  min-width: 120px;
  padding: 10px 14px;
}
/* on small screens stack */
@media (max-width: 700px) {
  .card-actions,
  .dh-actions,
  .tp-actions,
  .bp-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .card-actions .btn,
  .dh-actions .btn,
  .tp-actions .btn,
  .bp-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .card-body,
  .dhikala-body,
  .tp-body,
  .bp-body {
    text-align: center;
  }
}

/* ===================== TERMS & CONDITIONS ===================== */

.terms {
  padding: 36px 0 48px;
  margin-top: 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fff9);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 20px 58px rgba(6, 18, 12, 0.04);
}

.terms-box {
  background: #ffffff;
  padding: 28px 26px;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(8, 14, 12, 0.06);
  border: 1px solid rgba(10, 22, 18, 0.04);
  max-width: 1100px;
  margin: 0 auto;
}

.terms h2.section-title {
  text-align: center;
}

.terms-box h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--accent); /* Purple heading */
}

.terms-box p {
  margin: 0 0 12px;
  color: #304b45;
  font-weight: 600;
  line-height: 1.55;
  font-size: 0.98rem;
}

.terms-box ul {
  margin: 0 0 14px 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.terms-box ul li {
  font-size: 0.96rem;
  font-weight: 700;
  color: #203d36;
  line-height: 1.45;
  position: relative;
}

/* bullet style (green dot) */
.terms-box ul li::before {
  content: "•";
  position: absolute;
  left: -14px;
  top: 0;
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 900;
}

/* responsive */
@media (max-width: 820px) {
  .terms-box {
    padding: 22px 18px;
  }
  .terms-box h3 {
    font-size: 1.05rem;
  }
  .terms-box ul li {
    font-size: 0.94rem;
  }
}

@media (max-width: 520px) {
  .terms {
    padding: 28px 0 38px;
  }
  .terms-box {
    padding: 20px 16px;
  }
}

/* GRID LAYOUT: left 50%, right 50% */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* LEFT COLUMN */
.left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* MAP styling */
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(6, 12, 8, 0.04);
  box-shadow: 0 12px 36px rgba(8, 14, 12, 0.06);
}

/* FORM styling */
.form-iframe {
  border-radius: 12px;
  border: 1px solid rgba(6, 12, 8, 0.04);
  box-shadow: 0 12px 36px rgba(8, 14, 12, 0.06);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr; /* stack vertically */
  }

  .form-iframe {
    height: 600px !important;
  }

  .map-wrap iframe {
    height: 300px !important;
  }
}

@media (max-width: 520px) {
  .form-iframe {
    height: 520px !important;
  }

  .map-wrap iframe {
    height: 240px !important;
  }
}

/* ===== FAQ - inspired card design (CSS only) ===== */

/* page background in that tiny mockup — adapt to your page or omit */
#faqs {
  margin: 40px auto;
  display: flex;
  justify-content: center;
}
.faq-shell {
  width: 100%;
  max-width: 420px; /* card width from the image */
  background: linear-gradient(180deg, #ffffff, #f7fff9);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 40px 90px rgba(3, 35, 22, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

/* headline inside card (visual) */
.faq-shell::before {
  content: "FAQ";
  display: block;
  text-align: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: #0b5f36;
  margin-bottom: 12px;
}

/* search bar (visual only) */
.faq-search {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.faq-search input[type="search"] {
  flex: 1;
  height: 40px;
  border-radius: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(6, 12, 8, 0.06);
  font-weight: 700;
  outline: none;
  background: #f3fff6;
  color: #06402f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.faq-search input::placeholder {
  color: rgba(6, 12, 8, 0.3);
  font-weight: 700;
}
.faq-search .search-btn {
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  background: linear-gradient(180deg, #0b5f36, #087a46);
  color: #fff;
  font-weight: 900;
  cursor: default; /* visual-only */
  display: inline-grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(11, 95, 54, 0.12);
}

/* list container */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* each row - uses details/summary */
.faq-row {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #f7fff6;
  border: 1px solid rgba(11, 95, 54, 0.06);
  transition: box-shadow 0.22s ease, transform 0.18s ease;
}

/* question row (summary) */
.faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  font-weight: 900;
  color: #06402f;
}

/* question text larger */
.faq-q .q-text {
  display: block;
  font-size: 1.02rem;
  text-align: left;
  line-height: 1.2;
  max-width: calc(100% - 40px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* arrow on right */
.faq-q .q-arrow {
  color: rgba(6, 12, 8, 0.5);
  font-weight: 900;
  transform: translateX(0);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1), color 0.18s ease;
}

/* answer panel — hidden by default using max-height trick */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.46s cubic-bezier(0.2, 0.9, 0.2, 1),
    padding 0.28s ease, background 0.2s;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 12px;
  background: transparent;
}

/* when open: highlight with green, show image */
.faq-row[open] {
  background: linear-gradient(180deg, #e9fff4, #e1fbef);
  border: 1px solid rgba(11, 95, 54, 0.12);
  box-shadow: 0 10px 30px rgba(11, 95, 54, 0.06);
}
.faq-row[open] .q-arrow {
  transform: rotate(90deg) translateX(2px);
  color: #0b5f36;
}

/* expand .faq-a when open */
.faq-row[open] .faq-a {
  max-height: 420px; /* generous */
  padding: 12px;
  background: linear-gradient(180deg, #e7fff3, #dffcea);
}

/* answer text styling (green) */
.faq-row .faq-a p {
  margin: 0;
  color: #0b5f36;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
  flex: 1;
}

/* thumbnail on right */
.faq-row .a-thumb {
  width: 64px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(180deg, #c6f5d9, #9fe6b9);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(6, 12, 8, 0.06);
}
.faq-row .a-thumb img {
  width: 48px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

/* small hover */
.faq-row:hover {
  transform: translateY(-3px);
}

/* responsive tweaks */
@media (max-width: 460px) {
  .faq-shell {
    padding: 14px;
    max-width: 340px;
  }
  .faq-q {
    padding: 10px;
    font-size: 0.98rem;
  }
  .faq-search input {
    height: 36px;
  }
  .faq-search .search-btn {
    width: 40px;
    height: 36px;
  }
  .faq-row .a-thumb {
    width: 54px;
    height: 44px;
  }
}

/* Accessibility: ensure keyboard focus visible on summary */
.faq-q:focus {
  outline: 3px solid rgba(11, 95, 54, 0.12);
  outline-offset: 3px;
  border-radius: 8px;
}

/* hide sr-only heading visually */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ---------- Mobile nav panel styles (append to Index.css) ---------- */

/* body lock when menu open */
.no-scroll {
  overflow: hidden;
  height: 100%;
}

/* Hamburger lines */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle .hamburger {
  display: inline-block;
  width: 22px;
  height: 16px;
  position: relative;
}
.mobile-toggle .hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #062a22;
  display: block;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.mobile-toggle .hamburger span:nth-child(1) {
  top: 0;
}
.mobile-toggle .hamburger span:nth-child(2) {
  top: 7px;
}
.mobile-toggle .hamburger span:nth-child(3) {
  top: 14px;
}

/* Mobile menu panel (hidden by default) */
.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 240;
  pointer-events: none;
}
.mobile-menu[aria-hidden="false"] {
  display: block;
  pointer-events: auto;
}

/* inner sliding panel */
.mobile-menu-inner {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 420px);
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 60px rgba(6, 18, 14, 0.12);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 245;
  display: flex;
  flex-direction: column;
  padding: 18px;
  gap: 14px;
}

/* when open, slide in */
.mobile-menu[aria-hidden="false"] .mobile-menu-inner {
  transform: translateX(0);
}

/* backdrop for dim + close */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 4, 0.42);
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: 235;
}
.mobile-menu[aria-hidden="false"] .mobile-backdrop {
  opacity: 1;
}

/* mobile header inside panel */
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(6, 18, 14, 0.04);
}
.mobile-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.mobile-brand .logo-thumb {
  width: 56px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(8, 14, 12, 0.06);
}

/* close button */
.mobile-close {
  background: transparent;
  border: 0;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
}

/* mobile nav links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 2px;
  overflow: auto;
}
.mobile-nav .mobile-link {
  padding: 12px 12px;
  border-radius: 10px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: background 0.12s ease;
}
.mobile-nav .mobile-link:hover {
  background: rgba(6, 18, 14, 0.03);
}

/* CTAs in menu */
.mobile-cta {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding-top: 12px;
}
.mobile-cta .cta-phone,
.mobile-cta .cta-wa {
  width: 100%;
  justify-content: center;
}

/* show mobile toggle & hide desktop nav at small widths */
@media (max-width: 900px) {
  .nav-desktop {
    display: none !important;
  }
  .mobile-toggle {
    display: inline-block;
  }
}

/* Accessibility: focus state */
.mobile-menu .mobile-link:focus,
.mobile-menu .mobile-close:focus,
.mobile-toggle:focus {
  outline: 3px solid rgba(101, 45, 150, 0.12);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Slight visual transform for the hamburger when menu is open (we toggle .open on toggle button) */
.mobile-toggle.open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* small tweaks */
.mobile-nav .mobile-link {
  padding-left: 14px;
  padding-right: 14px;
  font-size: 1.05rem;
}

/* ================= TOP INFO BAR (FINAL) ================= */

.top-info-bar {
  background: #86a833;
  color: #fff;
  font-size: 0.85rem;
}

.top-info-inner {
  display: flex;
  justify-content: center; /* CENTER EVERYTHING */
  align-items: center;
  padding: 8px 0;
}

/* Content */
.top-info-left {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.top-info-left span {
  white-space: nowrap;
}

.top-info-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-info-left .gst {
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ================= MOBILE BEHAVIOR ================= */

/* On mobile → ONLY phone + GST, centered */
@media (max-width: 768px) {
  .top-info-left {
    width: 100%;
    justify-content: space-between;
    font-size: 0.8rem;
  }

  .top-info-left .email {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 420px) {
  .top-info-left {
    gap: 16px;
  }
}

.info-block {
  margin-bottom: 36px;
}

.info-block h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.info-list {
  padding-left: 18px;
  margin: 12px 0;
}

.info-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.info-steps {
  padding-left: 20px;
  margin: 12px 0;
}

.info-steps li {
  margin-bottom: 8px;
  font-weight: 600;
}

/* ================= SCROLLING NOTICE BAR ================= */

.scroll-notice {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--notice-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, #38ff9f, #1fdc88);
  color: #062a22;
  font-weight: 800;
  font-size: 0.9rem;
}

/* scrolling container */
.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 18s linear infinite;
}

/* text items */
.scroll-track span {
  padding: 10px 40px;
  white-space: nowrap;
  display: inline-block;
}

/* animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* pause on hover (desktop UX) */
.scroll-notice:hover .scroll-track {
  animation-play-state: paused;
}

/* Mobile speed adjustment */
@media (max-width: 768px) {
  .scroll-track {
    animation-duration: 14s;
  }
}
