/* ========================================================
   NUSUK UMRAH VISA – Global Design System
   Brand Palette:
   • Primary / Headings / Dark surfaces: Deep Navy (#062B4C)
   • Secondary / Accents: Emerald Green (#009B72)
   • Accent / Highlights / Calculator: Gold (#D6A21E)
   • Page Background: Off White (#F7F9FA)
   • Cards / Navigation Surface: White (#FFFFFF)
   • Body & Heading Text: Dark Blue Text (#092B4A / #244360)
   • Borders / Subtle UI: Light Gray (#E5E8EC)
   • WhatsApp Floating: WhatsApp Green (#25D366)
   Typography: Outfit (Headings) + Inter (Body)
======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────── */
:root {
  /* Brand Palette Core */
  --primary:        #062B4C; /* Deep Navy */
  --primary-dark:   #041E35;
  --primary-light:  #0C3C66;
  --secondary:      #009B72; /* Emerald Green */
  --secondary-dark: #007A59;
  --secondary-light:#00B383;
  --secondary-soft: #E0F7F1;
  --accent:         #D6A21E; /* Gold */
  --accent-dark:    #B58414;
  --accent-light:   #F0CA68;
  --accent-soft:    #FBF4E0;

  /* Theme Color Variables */
  --navy-900:  #041E35;
  --navy-800:  #062B4C;
  --navy-700:  #0B3B66;
  --navy-600:  #104B80;
  --navy-100:  #E6EEF5;

  --green-900: #062B4C; /* Deep Navy for dark sections/nav/footer */
  --green-800: #062B4C; /* Deep Navy for main headings */
  --green-700: #009B72; /* Emerald Green for accents/buttons/links */
  --green-600: #008763;
  --green-500: #009B72;
  --green-100: #E0F7F1; /* Emerald subtle tint */

  --gold-700:  #B58414;
  --gold-500:  #D6A21E; /* Gold */
  --gold-300:  #F0CA68; /* Light Gold */
  --gold-100:  #FBF4E0; /* Soft Gold Tint */

  --cream:     #F7F9FA; /* Off White Page Background */
  --cream-dark:#E5E8EC; /* Light Gray Borders/Subtle UI */
  --white:     #FFFFFF; /* White */

  --gray-900:  #092B4A; /* Dark Blue Text (headings) */
  --gray-700:  #244360; /* Dark Blue Text (body) */
  --gray-500:  #607890; /* Muted Slate */
  --gray-300:  #D2D9E2; /* Subtle border */
  --gray-200:  #E5E8EC; /* Light Gray border */
  --gray-100:  #F0F3F7; /* Subtle surface */

  --whatsapp:  #25D366; /* WhatsApp Green */

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm:   0 2px 10px rgba(6, 43, 76, 0.05);
  --shadow-md:   0 8px 26px rgba(6, 43, 76, 0.09);
  --shadow-lg:   0 20px 50px rgba(6, 43, 76, 0.14);
  --shadow-gold: 0 8px 28px rgba(214, 162, 30, 0.35);
  --shadow-navy: 0 8px 28px rgba(6, 43, 76, 0.32);
  --shadow-green:0 8px 28px rgba(0, 155, 114, 0.32);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--gray-700); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: var(--gold-100);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(214, 162, 30, 0.25);
}
.section-title { margin-bottom: 12px; }
.section-desc { color: var(--gray-500); max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── Layout ─────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(214, 162, 30, 0.5);
  filter: brightness(1.05);
}
.btn-green, .btn-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-green:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 155, 114, 0.45);
  filter: brightness(1.05);
}
.btn-navy {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(6, 43, 76, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn-outline-green:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--cream);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ── Navbar (White Background Strip) ─────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(6, 43, 76, 0.08);
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(6, 43, 76, 0.12);
  border-bottom: 1px solid var(--gray-200);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-logo img { height: 44px; width: auto; border-radius: var(--radius-sm); }
.navbar-logo-text { display: flex; flex-direction: column; }
.navbar-logo-text .brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.navbar-logo-text .brand-tag {
  font-size: 0.68rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary);
  background: var(--green-100);
}
.nav-link .chevron { font-size: 0.65rem; transition: var(--transition); color: var(--gray-500); }
.nav-item:hover .chevron { transform: rotate(180deg); color: var(--secondary); }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 8px;
  min-width: 220px;
  border-top: 3px solid var(--secondary);
  border-bottom: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  animation: dropFade 0.2s ease;
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 16px;
  color: var(--gray-700);
  font-size: 0.88rem;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown a:hover {
  background: var(--green-100);
  color: var(--primary);
  padding-left: 22px;
  font-weight: 600;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.navbar-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
  padding: 6px 12px;
  border-radius: 50px;
  background: var(--gray-100);
}
.nav-phone:hover {
  color: var(--secondary);
  background: var(--green-100);
}
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-login-btn:hover {
  background: var(--green-100);
  color: var(--secondary-dark);
  border-color: rgba(0, 155, 114, 0.3);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:hover {
  background: var(--green-100);
  color: var(--secondary);
}
.mobile-nav .mobile-section-label {
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 16px 6px;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 10s ease-out;
}
.hero:hover .hero-bg {
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 43, 76, 0.88) 0%, rgba(6, 43, 76, 0.70) 50%, rgba(6, 43, 76, 0.25) 100%),
              linear-gradient(180deg, rgba(6, 43, 76, 0.3) 0%, transparent 60%, rgba(6, 43, 76, 0.7) 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 50%, rgba(214, 162, 30, 0.12) 0%, transparent 50%), radial-gradient(circle at 85% 30%, rgba(0, 155, 114, 0.1) 0%, transparent 40%);
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
  padding: 40px 0 60px;
}
.hero-content { position: relative; z-index: 10; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 162, 30, 0.18);
  border: 1px solid rgba(214, 162, 30, 0.55);
  color: var(--gold-300);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  text-transform: none;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold-300);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold-300); }
.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Interactive Quick Visa Booking Card in Hero */
.hero-card-col {
  display: flex;
  justify-content: center;
}
.hero-quick-calc-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 24px 50px rgba(6, 43, 76, 0.35), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 232, 236, 0.8);
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 12;
  color: var(--primary);
}
.quick-card-header {
  text-align: center;
  margin-bottom: 18px;
}
.quick-card-header .header-pill {
  display: inline-block;
  background: #EBF3FA;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid #D2E2F0;
}
.quick-card-field {
  margin-bottom: 16px;
}
.quick-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--primary);
  background: #FAFCFD;
  transition: var(--transition);
  outline: none;
}
.quick-input:focus {
  border-color: var(--secondary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0, 155, 114, 0.15);
}
.quick-stepper-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #F4F7F9;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #E2E8EE;
}
.stepper-label-wrap strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 700;
}
.stepper-label-wrap .unit-price {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
}
.quick-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
}
.q-step-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background: #E5E8EC;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.q-step-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
}
.q-step-val {
  font-size: 1rem;
  font-weight: 800;
  min-width: 28px;
  text-align: center;
  color: var(--primary);
  font-family: var(--font-heading);
}
.quick-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6px;
  border-top: 1px dashed var(--gray-300);
  border-bottom: 1px dashed var(--gray-300);
  margin-bottom: 18px;
  font-size: 1.1rem;
}
.quick-total-row span {
  font-weight: 700;
  color: var(--gray-700);
}
.quick-total-row strong {
  font-size: 1.45rem;
  color: var(--secondary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}
.quick-apply-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 14px 20px;
  box-shadow: 0 6px 18px rgba(0, 155, 114, 0.3);
  margin-bottom: 16px;
}
.quick-alt-actions {
  text-align: center;
}
.quick-alt-actions > span {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.quick-contact-icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.quick-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  border-radius: 8px;
  background: #F7F9FA;
  border: 1px solid var(--gray-200);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  transition: var(--transition);
}
.quick-icon-btn .q-icon {
  font-size: 1.25rem;
  margin-bottom: 3px;
}
.quick-icon-btn:hover {
  background: var(--green-100);
  color: var(--secondary-dark);
  border-color: rgba(0, 155, 114, 0.3);
  transform: translateY(-2px);
}
.quick-icon-btn.whatsapp:hover {
  background: #E8F8EE;
  color: #128C7E;
}
.quick-card-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 0.74rem;
  color: var(--gray-500);
}

.hero-stats { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  font-weight: 500;
}
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}
.trust-badge .icon { color: var(--gold-300); font-size: 1rem; }

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 20px;
  }
  .hero-quick-calc-card {
    max-width: 100%;
  }
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #041E35 0%, #062B4C 55%, #007A59 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 162, 30, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 155, 114, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; }
.breadcrumb a { color: var(--gold-300); }
.breadcrumb span { color: rgba(255, 255, 255, 0.5); }
.breadcrumb .current { color: var(--white); }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 155, 114, 0.3);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-100), var(--gold-100));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; font-size: 1.15rem; color: var(--primary); }
.card p { font-size: 0.93rem; }
.card-green, .card-navy {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
}
.card-green h3, .card-navy h3 { color: var(--gold-300); }
.card-green p, .card-navy p { color: rgba(255, 255, 255, 0.85); }
.card-green .card-icon, .card-navy .card-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
}

/* ── Feature Grid ───────────────────────────────────── */
.features-section { background: var(--white); }
.feature-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(0, 155, 114, 0.25);
}
.feature-icon {
  width: 68px;
  height: 68px;
  background: #FFFFFF;
  border: 1.5px solid #E5E8EC;
  box-shadow: 0 4px 14px rgba(6, 43, 76, 0.07);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.feature-icon svg {
  transition: var(--transition);
  stroke: var(--secondary);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 155, 114, 0.28);
  transform: translateY(-4px) scale(1.06);
}
.feature-card:hover .feature-icon svg {
  stroke: #FFFFFF;
}

/* ── Steps ───────────────────────────────────────────── */
.steps-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card { text-align: center; position: relative; }
.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(6, 43, 76, 0.25);
}
.step-card::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), transparent);
}
.step-card:last-child::after { display: none; }
.step-card h3 { margin-bottom: 10px; color: var(--primary); }

/* ── Timeline ────────────────────────────────────────── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}
.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--secondary);
}
.timeline-content h4 { color: var(--primary); margin-bottom: 8px; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #062B4C 0%, #041E35 100%);
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(6, 43, 76, 0.35);
}
.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  padding: 6px 40px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(45deg);
  transform-origin: right;
  letter-spacing: 0.06em;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 12px 0 4px;
}
.pricing-card.featured .pricing-price { color: var(--gold-300); }
.pricing-period { font-size: 0.9rem; color: var(--gray-500); }
.pricing-card.featured .pricing-period { color: rgba(255, 255, 255, 0.65); }
.pricing-features { margin: 28px 0; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
  color: var(--gray-700);
}
.pricing-card.featured .pricing-feature {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
}
.pricing-feature .check { color: var(--secondary); font-size: 1.1rem; font-weight: bold; }
.pricing-card.featured .pricing-feature .check { color: var(--gold-300); }

/* ── Forms ───────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 155, 114, 0.15);
}
.form-control::placeholder { color: var(--gray-500); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.file-upload {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.file-upload:hover {
  border-color: var(--secondary);
  background: var(--green-100);
}
.file-upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.file-upload p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 4px; }

/* Multi-Passenger Elements */
.passenger-selector-box {
  background: #F0F5F9;
  border: 1.5px solid #D6E4EE;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 24px;
}
.passenger-count-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.btn-stepper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.btn-stepper:hover {
  background: var(--secondary);
}
.btn-stepper:disabled {
  background: var(--gray-300);
  cursor: not-allowed;
}
.passenger-count-display {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  min-width: 20px;
  text-align: center;
}
.passenger-card {
  background: #FAFCFD;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition);
}
.passenger-card:hover {
  border-color: rgba(0, 155, 114, 0.4);
}
.passenger-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.passenger-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-remove-passenger {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-remove-passenger:hover {
  background: #EF4444;
  color: #FFFFFF;
}

/* Form Step State */
.form-step {
  display: none;
  animation: fadeInStep 0.35s ease-in-out;
}
.form-step.active {
  display: block;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Progress Steps */
.progress-steps {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.progress-step { display: flex; align-items: center; flex: 1; }
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--transition);
}
.step-circle.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.step-circle.done {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}
.step-line { flex: 1; height: 2px; background: var(--gray-300); }
.step-line.done { background: var(--secondary); }

/* ── Checklist ───────────────────────────────────────── */
.checklist { display: grid; gap: 14px; }
.checklist-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.checklist-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}
.checklist-icon {
  width: 38px;
  height: 38px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--secondary);
}
.checklist-text h4 { font-size: 1rem; margin-bottom: 4px; color: var(--primary); }
.checklist-text p { font-size: 0.88rem; }

/* ── Stats ───────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #062B4C, #041E35);
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}
.stat-item .label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 155, 114, 0.3);
}
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { font-style: italic; color: var(--gray-700); margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.author-info .name { font-weight: 700; font-size: 0.95rem; color: var(--gray-900); }
.author-info .city { font-size: 0.82rem; color: var(--gray-500); }

/* ── CTA Banner ──────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #062B4C 0%, #041E35 60%, #007A59 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214, 162, 30, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 155, 114, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255, 255, 255, 0.85); margin-bottom: 36px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.faq-item.open { border-color: var(--secondary); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--gray-900);
  gap: 12px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { background: var(--green-100); color: var(--primary); }
.faq-icon { flex-shrink: 0; transition: var(--transition); color: var(--secondary); font-size: 1.2rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; background: var(--white); }
.faq-answer.open { max-height: 800px; }
.faq-answer p { padding: 0 24px 20px; color: var(--gray-700); line-height: 1.75; }

/* ── Contact ─────────────────────────────────────────── */
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-card:hover {
  transform: translateX(4px);
  border-color: var(--secondary);
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-100), var(--gold-100));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-info h4 { color: var(--primary); margin-bottom: 4px; font-size: 0.95rem; }
.contact-info a, .contact-info p { font-size: 0.92rem; color: var(--gray-700); }
.contact-info a:hover { color: var(--secondary); }

/* ── Table ───────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.93rem; }
.data-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}
.data-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); color: var(--gray-700); }
.data-table tr:hover td { background: var(--cream); }
.data-table tr:last-child td { border-bottom: none; }
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.badge-green { background: var(--green-100); color: var(--secondary-dark); border: 1px solid rgba(0, 155, 114, 0.2); }
.badge-gold { background: var(--gold-100); color: var(--gold-700); border: 1px solid rgba(214, 162, 30, 0.2); }
.badge-navy { background: var(--navy-100); color: var(--primary); border: 1px solid rgba(6, 43, 76, 0.15); }

/* ── Info Box ─────────────────────────────────────────── */
.info-box {
  background: var(--green-100);
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
  border-top: 1px solid rgba(0, 155, 114, 0.15);
  border-right: 1px solid rgba(0, 155, 114, 0.15);
  border-bottom: 1px solid rgba(0, 155, 114, 0.15);
}
.info-box.gold {
  background: var(--gold-100);
  border-color: var(--accent);
  border-top: 1px solid rgba(214, 162, 30, 0.2);
  border-right: 1px solid rgba(214, 162, 30, 0.2);
  border-bottom: 1px solid rgba(214, 162, 30, 0.2);
}
.info-box h4 { color: var(--primary); margin-bottom: 6px; font-size: 0.95rem; }
.info-box.gold h4 { color: var(--gold-700); }
.info-box p { font-size: 0.9rem; margin: 0; color: var(--gray-700); }

/* ── Blog Cards ───────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0, 155, 114, 0.3); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  background: var(--green-100);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 155, 114, 0.2);
}
.blog-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; color: var(--gray-900); }
.blog-body p { font-size: 0.88rem; margin-bottom: 18px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--gray-500); }

/* ── WhatsApp Float ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  animation: floatBounce 3s ease-in-out infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  animation: none;
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.whatsapp-tooltip {
  background: var(--white);
  color: var(--gray-900);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--gray-200);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #062B4C 0%, #031526 100%);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 40px; border-radius: var(--radius-sm); }
.footer-logo-text .name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-logo-text .tag { font-size: 0.72rem; color: var(--gold-300); letter-spacing: 0.08em; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255, 255, 255, 0.8); }
.footer-gstin {
  display: inline-block;
  background: rgba(214, 162, 30, 0.12);
  border: 1px solid rgba(214, 162, 30, 0.35);
  color: var(--gold-300);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--secondary); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.1rem; }
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.87rem; }
.footer-contact-item .icon { color: var(--accent); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.55); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-300); }

/* ── Scroll Animations ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Utilities ─────────────────────────────────────────── */
.mb-0{margin-bottom:0}.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}.mb-48{margin-bottom:48px}
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.flex{display:flex}.flex-center{display:flex;align-items:center;justify-content:center}.flex-between{display:flex;align-items:center;justify-content:space-between}.flex-wrap{flex-wrap:wrap}
.text-navy{color:var(--primary)}.text-green{color:var(--secondary)}.text-gold{color:var(--accent)}.text-white{color:var(--white)}.text-gray{color:var(--gray-500)}
.bg-cream{background:var(--cream)}.bg-white{background:var(--white)}.bg-navy{background:var(--primary)}.bg-green{background:var(--secondary)}

/* ── Responsive ─────────────────────────────────────────── */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px}
}
@media(max-width:768px){
  .section{padding:64px 0}
  .grid-2,.grid-3,.steps-grid,.form-row{grid-template-columns:1fr}
  .navbar-nav,.nav-phone{display:none}
  .navbar-cta .btn{display:none}
  .hamburger{display:flex}
  .step-card::after{display:none}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;text-align:center}
  .pricing-card.featured{transform:scale(1)}
  .hero-stats{gap:24px}
}
@media(max-width:480px){
  .container{padding:0 16px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn-lg{padding:16px 28px;font-size:1rem}
  .grid-4{grid-template-columns:1fr}
}
