/* ============================================================
   ALEXANDRITE — Design System & Styles (Optimized & Polished)
   Based on UI/UX Handoff: Glassmorphism Modern & Segar
   ============================================================ */

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Brand Greens */
  --green-500: #18bd3c;
  --green-600: #0a9b2b;
  --green-700: #087d22;
  --green-800: #075d20;
  --green-900: #064319;
  --green-950: #052d13;

  /* Mint Backgrounds */
  --mint-50:  #f3fbf2;
  --mint-100: #e6f6e7;

  /* Neutrals & Text */
  --ink:    #102016;
  --muted:  #637267;
  --line:   #dce8dd;
  --white:  #ffffff;
  --bg:     #f0f5f0;

  /* Semantic Status */
  --gold-100:  #fff2cc;
  --gold-text: #8a5a00;
  --cyan-50:   #edfafa;
  --cyan-text: #075985;
  --rose-100:  #ffe4e6;
  --rose-text: #9f1239;

  /* WhatsApp */
  --wa-green: #25D366;
  --wa-dark:  #128C7E;

  /* Spacing & Radius */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --gap: 16px;
  --max-width: 1120px;

  /* Typography */
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* GPU-Accelerated Background Layer (Prevents UI lag & scroll repaints) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('background.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: -2;
  pointer-events: none;
  transform: translateZ(0);
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-800);
}

ul, ol {
  list-style: none;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 700;
}

h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

h3 {
  font-size: clamp(18px, 2.5vw, 22px);
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-700);
  margin-bottom: 12px;
  display: inline-block;
}

.text-muted {
  color: var(--muted);
}

.text-mono {
  font-family: var(--font-mono);
}

/* ── Layout & Stacking Context ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* ── Glassmorphism Panels ───────────────────────────────────── */
.panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 232, 221, 0.9);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(8, 65, 24, 0.12);
}

.panel-soft {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(220, 232, 221, 0.65);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(8, 65, 24, 0.06);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 24px;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background-color: var(--green-700);
  color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--green-800);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 125, 34, 0.25);
}

.btn-secondary {
  background-color: var(--mint-100);
  color: var(--green-800) !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #d4edd6;
  color: var(--green-900) !important;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--green-800) !important;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background-color: var(--mint-50);
  border-color: var(--green-600);
  color: var(--green-900) !important;
}

.btn-danger {
  background-color: var(--rose-100);
  color: var(--rose-text) !important;
}

.btn-wa {
  background-color: var(--wa-green);
  color: var(--white) !important;
}

.btn-wa:hover,
.btn-wa:focus {
  background-color: var(--wa-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-sm {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 14px;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 16px 0;
  transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 232, 221, 0.8);
  box-shadow: 0 4px 24px rgba(8, 65, 24, 0.08);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1002;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-brand-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:not(.btn) {
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--green-700);
  background-color: var(--mint-100);
}

.nav-cta {
  margin-left: 8px;
  color: var(--white) !important;
}

.nav-cta:hover,
.nav-cta:focus {
  color: var(--white) !important;
  background-color: var(--green-800) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 29, 14, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1030;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(243, 251, 242, 0.94) 0%,
    rgba(230, 246, 231, 0.88) 40%,
    rgba(240, 245, 240, 0.75) 100%
  );
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--green-950);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 232, 221, 0.8);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-mono);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ── About Section ──────────────────────────────────────────── */
.about {
  background: rgba(243, 251, 242, 0.6);
  border-top: 1px solid rgba(220, 232, 221, 0.5);
  border-bottom: 1px solid rgba(220, 232, 221, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.65;
}

.about-content p:last-of-type {
  margin-bottom: 28px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-highlight-item {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(220, 232, 221, 0.7);
  box-shadow: 0 4px 16px rgba(8, 65, 24, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(8, 65, 24, 0.08);
}

.about-highlight-item .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.about-highlight-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.about-highlight-item p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ── Features Section ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8, 65, 24, 0.12);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover .feature-icon {
  background: var(--green-700);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Facilities Section ─────────────────────────────────────── */
.facilities {
  background: rgba(243, 251, 242, 0.6);
  border-top: 1px solid rgba(220, 232, 221, 0.5);
  border-bottom: 1px solid rgba(220, 232, 221, 0.5);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.facility-item {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(220, 232, 221, 0.7);
}

.facility-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(8, 65, 24, 0.08);
}

.facility-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint-100), var(--mint-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
  transition: transform 0.25s ease;
}

.facility-item:hover .facility-icon {
  transform: scale(1.1) rotate(4deg);
}

.facility-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.facility-item p {
  font-size: 13px;
  color: var(--muted);
}

/* ── Location Section ───────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.location-info {
  padding: 36px;
}

.location-info h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.location-address {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.location-address-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--mint-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.location-address-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.location-address-text strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.location-landmarks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.landmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.landmark-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

.location-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  background: #e5e9e5;
  border: 1px solid rgba(220, 232, 221, 0.8);
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* Interactive Map Shield (prevents mobile touch trap until activated) */
.map-shield {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 22, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.map-shield.hidden {
  opacity: 0;
  pointer-events: none;
}

.map-shield-btn {
  background: var(--white);
  color: var(--green-800);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Verification Section ───────────────────────────────────── */
.verification {
  background: rgba(243, 251, 242, 0.6);
  border-top: 1px solid rgba(220, 232, 221, 0.5);
  border-bottom: 1px solid rgba(220, 232, 221, 0.5);
}

.verification-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
}

.verification-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verification-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.verification-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(8, 65, 24, 0.05);
}

.verification-item.verified {
  border-color: rgba(10, 155, 43, 0.35);
  background: rgba(230, 246, 231, 0.45);
}

.verification-item.pending {
  border-color: rgba(138, 90, 0, 0.25);
  background: rgba(255, 242, 204, 0.45);
}

.verification-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.verified .verification-check {
  background: var(--green-700);
  color: var(--white);
}

.pending .verification-check {
  background: var(--gold-100);
  color: var(--gold-text);
}

.verification-detail {
  flex: 1;
}

.verification-detail h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.verification-detail p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-verified {
  background: var(--mint-100);
  color: var(--green-800);
}

.badge-pending {
  background: var(--gold-100);
  color: var(--gold-text);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.badge-verified .badge-dot {
  background: var(--green-500);
  box-shadow: 0 0 6px rgba(24, 189, 60, 0.5);
}

.badge-pending .badge-dot {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}

/* ── Contact Section ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info-card {
  padding: 36px;
}

.contact-info-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--mint-50);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-channel:hover {
  background: var(--mint-100);
  transform: translateX(4px);
}

.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-channel-info {
  display: flex;
  flex-direction: column;
}

.contact-channel-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.contact-channel-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form-card {
  padding: 36px;
}

.contact-form-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #cadccb;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(10, 155, 43, 0.16);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0b0a3;
}

.form-submit-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 30px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.footer-brand-logo strong {
  font-size: 20px;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--green-500);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal strong {
  color: rgba(255, 255, 255, 0.75);
}

/* ── WhatsApp Floating Widget ───────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  animation: waPulse 2s infinite;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-fab.active {
  animation: none;
  background: var(--rose-text);
  transform: rotate(90deg);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0.14); }
}

.wa-popup {
  position: fixed;
  bottom: 94px;
  right: 24px;
  z-index: 1099;
  width: 360px;
  max-width: calc(100vw - 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.wa-popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wa-popup-header {
  background: linear-gradient(135deg, var(--wa-dark), var(--wa-green));
  color: var(--white);
  padding: 18px 22px;
}

.wa-popup-header h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}

.wa-popup-header p {
  font-size: 12px;
  opacity: 0.9;
}

.wa-popup-body {
  padding: 18px 22px;
  background: var(--white);
}

.wa-popup-body .form-group {
  margin-bottom: 12px;
}

.wa-popup-body .form-input,
.wa-popup-body .form-textarea {
  min-height: 40px;
  font-size: 14px;
}

.wa-popup-body .form-textarea {
  min-height: 70px;
}

.wa-popup-footer {
  padding: 10px 22px 18px;
  background: var(--white);
}

.wa-send-status {
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius);
  margin-top: 8px;
  display: none;
}

.wa-send-status.success {
  display: block;
  background: var(--mint-100);
  color: var(--green-800);
}

.wa-send-status.error {
  display: block;
  background: var(--rose-100);
  color: var(--rose-text);
}

/* ── Scroll Reveal Animations (Optimized: prevents trapping pointer events) ── */
.reveal {
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Remove reveal delays on touch devices to make rendering snappy */
@media (hover: hover) and (pointer: fine) {
  .reveal-delay-1 { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }
  .reveal-delay-3 { transition-delay: 0.24s; }
  .reveal-delay-4 { transition-delay: 0.32s; }
  .reveal-delay-5 { transition-delay: 0.40s; }
  .reveal-delay-6 { transition-delay: 0.48s; }
}

/* ── Mobile Bottom Navigation (Hidden on Desktop) ───────────── */
.bottom-nav {
  display: none;
}

/* ── Responsive Layout & Mobile Optimizations ───────────────── */
@media (max-width: 900px) {
  /* Prevent iOS input zoom by forcing font-size: 16px on form elements */
  .form-input,
  .form-textarea,
  .wa-popup-body .form-input,
  .wa-popup-body .form-textarea {
    font-size: 16px !important;
  }

  /* Hide top navbar hamburger because menu burger is placed far right on bottom nav */
  .navbar .hamburger {
    display: none !important;
  }

  /* Native App Bottom Navigation Bar */
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(66px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(220, 232, 221, 0.9);
    box-shadow: 0 -6px 25px rgba(8, 65, 24, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1050;
    justify-content: space-around;
    align-items: center;
    padding-top: 6px;
  }

  .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    height: 100%;
    color: var(--muted);
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .bottom-nav-item svg {
    width: 22px;
    height: 22px;
    transition: transform 0.2s ease, stroke 0.2s ease;
  }

  .bottom-nav-item:hover,
  .bottom-nav-item.active {
    color: var(--green-700);
  }

  .bottom-nav-item.active svg {
    transform: scale(1.15);
    stroke: var(--green-700);
    stroke-width: 2.5;
  }

  /* Burger icon inside bottom nav rightmost */
  .bottom-nav-burger .burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    margin-bottom: 3px;
  }

  .bottom-nav-burger .burger-icon span {
    display: block;
    width: 100%;
    height: 2.2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .bottom-nav-burger.active .burger-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .bottom-nav-burger.active .burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .bottom-nav-burger.active .burger-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 24px calc(86px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    align-items: stretch;
    z-index: 1060;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a:not(.btn) {
    padding: 12px 16px;
    font-size: 16px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    color: var(--white) !important;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 22px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .wa-popup {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: calc(158px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .wa-fab {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px)) !important;
    right: 18px !important;
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .facility-item {
    padding: 20px 12px;
  }

  .verification-card {
    padding: 24px 18px;
  }

  .verification-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
