/* ─────────────────────────────────────────
   CAREHAVEN – style.css
   Brand: #0486BC  ·  #013054
───────────────────────────────────────── */

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

:root {
  --blue:    #0486BC;
  --navy:    #013054;
  --grad:    linear-gradient(135deg, #0486BC 0%, #013054 100%);
  --grad-r:  linear-gradient(135deg, #013054 0%, #0486BC 100%);
  --light-bg:#f0f7fd;
  --white:   #ffffff;
  --text:    #1e293b;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --radius:  16px;
  --shadow:  0 4px 24px rgba(4,134,188,.12);
  --shadow-lg: 0 16px 48px rgba(4,134,188,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GRADIENT UTILITIES ── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(4,134,188,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(4,134,188,.45);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(4,134,188,.35);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: rgba(4,134,188,.06);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: 10px 20px; font-size: 13px; margin-top: 16px; }

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 16px;
  color: var(--navy);
}
.section-header p {
  color: var(--muted);
  font-size: 17px;
}
.section-header.light h2,
.section-header.light p { color: rgba(255,255,255,.9); }
.section-header.light p { color: rgba(255,255,255,.7); }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(4,134,188,.1);
  color: var(--blue);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.section-tag.light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(1,48,84,.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  transition: filter var(--transition);
}
.logo-wordmark-img {
  height: 22px;
  width: auto;
  object-fit: contain;
  transition: filter var(--transition);
}

/* White logos on blue (un-scrolled) navbar */
.navbar:not(.scrolled) .logo-icon-img,
.navbar:not(.scrolled) .logo-wordmark-img {
  filter: brightness(0) invert(1);
}

/* Blue gradient logos on white (scrolled) navbar — no filter needed */
.navbar.scrolled .logo-icon-img,
.navbar.scrolled .logo-wordmark-img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav-links a:hover { background: rgba(4,134,188,.08); color: var(--blue); }
.nav-cta {
  background: var(--grad) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(4,134,188,.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(4,134,188,.4) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--grad);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}
.hero-blob-1 { width: 600px; height: 600px; background: #7dd3fc; top: -200px; right: -150px; }
.hero-blob-2 { width: 400px; height: 400px; background: #0486BC; bottom: -100px; left: -100px; }

.hero-circles { position: absolute; inset: 0; }
.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}
.c1 { width: 300px; height: 300px; top: 10%; left: -5%; }
.c2 { width: 200px; height: 200px; bottom: 20%; left: 5%; opacity: .6; }
.c3 { width: 150px; height: 150px; top: 60%; right: 5%; opacity: .4; }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: .3px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #7dd3fc, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero .btn-primary {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero .btn-primary:hover { background: #f0f9ff; }
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.hero .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}

/* Hero Visual – Orbital rings */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-ring {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
}
.ring-outer  { inset: 0; }
.ring-mid    { inset: 40px; border-width: 2px; border-color: rgba(255,255,255,.3); }
.ring-inner  { inset: 80px; border-width: 2px; }

.hero-center-logo {
  width: 120px; height: 120px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: heartbeat 1.5s ease-in-out infinite;
}
.hero-logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.orbit-icon {
  position: absolute;
  width: 52px; height: 52px;
  top: 50%; left: 50%;
  margin: -26px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: orbit-icon-spin 18s linear infinite;
}
.orbit-icon svg { width: 22px; height: 22px; }

/* Each icon starts 90° apart; negative delays phase them into position */
.oi-1 { animation-delay: -13.5s; } /* top    (270°) */
.oi-2 { animation-delay:     0s; } /* right  (  0°) */
.oi-3 { animation-delay:  -4.5s; } /* bottom ( 90°) */
.oi-4 { animation-delay:    -9s; } /* left   (180°) */

/* Animate rings rotation */
@keyframes orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ring-outer { animation: orbit 20s linear infinite; }
.ring-mid   { animation: orbit 15s linear infinite reverse; }

/* Heartbeat: double-pump scale + glow ring */
@keyframes heartbeat {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255,255,255,.55); }
  14%  { transform: scale(1.13); box-shadow: 0 0 0 12px rgba(255,255,255,.2);  }
  28%  { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255,255,255,.0);  }
  42%  { transform: scale(1.07); box-shadow: 0 0 0 7px  rgba(255,255,255,.12); }
  65%  { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255,255,255,.0);  }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(255,255,255,.0);  }
}

/* Orbit icons: rotate around center, counter-rotate to stay upright */
@keyframes orbit-icon-spin {
  from { transform: rotate(0deg)   translateX(144px) rotate(0deg);    }
  to   { transform: rotate(360deg) translateX(144px) rotate(-360deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .5px;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ═══════════════════════════════════════
   HIGHLIGHTS
═══════════════════════════════════════ */
.highlights {
  padding: 100px 0;
  background: var(--light-bg);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlight-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(4,134,188,.2);
}
.hc-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(4,134,188,.12), rgba(1,48,84,.08));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hc-icon svg { width: 32px; height: 32px; color: var(--blue); }
.highlight-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}
.highlight-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background: var(--grad);
  z-index: -1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 26px;
  color: #fff;
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.3);
}
.sc-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.sc-icon svg { width: 26px; height: 26px; color: #7dd3fc; }
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  line-height: 1.6;
}
.sc-list { padding-left: 0; }
.sc-list li {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  padding: 4px 0 4px 18px;
  position: relative;
}
.sc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7dd3fc;
  font-weight: 700;
}

/* ═══════════════════════════════════════
   TRAVEL SUPPORT
═══════════════════════════════════════ */
.travel {
  padding: 100px 0;
  background: #fff;
}
.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.travel-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.travel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.travel-card:hover::before { transform: scaleX(1); }
.travel-card:hover {
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(4,134,188,.2);
}
.travel-card-feature {
  background: linear-gradient(135deg, rgba(4,134,188,.05), rgba(1,48,84,.08));
  border-color: rgba(4,134,188,.2);
}
.tc-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(4,134,188,.1);
  line-height: 1;
  margin-bottom: 12px;
  position: absolute;
  top: 16px; right: 20px;
}
.tc-icon {
  width: 48px; height: 48px;
  background: var(--grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tc-icon svg { width: 22px; height: 22px; color: #fff; }
.travel-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.travel-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   COVERAGE
═══════════════════════════════════════ */
.coverage {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.coverage-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: -1;
}
.coverage-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230486BC' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 12px 0 16px;
}
.coverage-text p {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  margin-bottom: 32px;
}
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.city-badge svg { width: 14px; height: 14px; fill: rgba(255,255,255,.5); }
.city-badge:hover, .city-badge.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.city-badge.active { box-shadow: 0 0 16px rgba(4,134,188,.5); }
.city-badge.active svg, .city-badge:hover svg { fill: #fff; }

.map-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.india-png {
  width: 100%;
  max-width: 360px;
  display: block;
  filter: drop-shadow(0 8px 40px rgba(4,134,188,.4));
}
.india-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.map-dot { animation: pulse-dot 2s ease-in-out infinite; }
.map-dot.pulse { animation: pulse-dot 1.2s ease-in-out infinite; }
@keyframes pulse-dot {
  0%,100% { r: 6; opacity: 1; }
  50% { r: 9; opacity: .7; }
}
.map-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(4,134,188,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--light-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  perspective: 1000px;
  height: 220px;
  cursor: pointer;
}
.wc-front, .wc-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 28px 20px;
  backface-visibility: hidden;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wc-front {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.wc-back {
  background: var(--grad);
  transform: rotateY(180deg);
  color: #fff;
}
.why-card:hover .wc-front { transform: rotateY(-180deg); }
.why-card:hover .wc-back  { transform: rotateY(0deg); }

.wc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(4,134,188,.12), rgba(1,48,84,.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.wc-icon svg { width: 26px; height: 26px; color: var(--blue); }
.wc-front h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.wc-back p {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.process-bg {
  position: absolute; inset: 0;
  background: var(--grad);
  z-index: -1;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  margin-bottom: 20px;
  transition: var(--transition);
}
.step:hover .step-num {
  background: rgba(255,255,255,.95);
  color: var(--blue);
  transform: scale(1.1);
}
.step-connector {
  position: absolute;
  top: 28px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: rgba(255,255,255,.2);
  z-index: 1;
}
.step:last-child .step-connector { display: none; }
.step-content { padding: 0 12px; }
.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-content p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; display: inline-block; }
.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info > p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--light-bg);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(4,134,188,.3);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.ci-icon {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 20px; height: 20px; color: #fff; }
.ci-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 2px;
}
.ci-val {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.contact-form-wrap {
  background: var(--light-bg);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(4,134,188,.1);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}
.footer-bg {
  position: absolute; inset: 0;
  background: var(--navy);
  z-index: -1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-logo-img { filter: brightness(0) invert(1); }
.footer-wordmark-img { filter: brightness(0) invert(1); }
.footer-brand > p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 280px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--blue); color: #fff; }

.footer-links h4, .footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-links ul li a:hover { color: #7dd3fc; padding-left: 4px; }

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.footer-contact p strong { color: rgba(255,255,255,.85); }
.footer-contact .btn-primary { background: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════
   FAB (WhatsApp)
═══════════════════════════════════════ */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  z-index: 999;
}
.fab svg { width: 28px; height: 28px; }
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos="zoom-in"]    { transform: scale(.9); }
[data-aos="flip-left"]  { transform: perspective(600px) rotateY(-20deg); }
[data-aos].aos-animate  { opacity: 1; transform: none; }
[data-aos][data-aos-delay="100"].aos-animate { transition-delay: .1s; }
[data-aos][data-aos-delay="200"].aos-animate { transition-delay: .2s; }
[data-aos][data-aos-delay="300"].aos-animate { transition-delay: .3s; }
[data-aos][data-aos-delay="400"].aos-animate { transition-delay: .4s; }
[data-aos][data-aos-delay="500"].aos-animate { transition-delay: .5s; }
[data-aos][data-aos-delay="600"].aos-animate { transition-delay: .6s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: #fff !important; font-size: 18px !important; padding: 12px 24px !important; }
  .hamburger { display: flex; z-index: 1000; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }

  .highlights-grid    { grid-template-columns: 1fr; }
  .services-grid      { grid-template-columns: 1fr; }
  .travel-grid        { grid-template-columns: 1fr; }
  .coverage-inner     { grid-template-columns: 1fr; }
  .india-map          { display: none; }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
  .process-steps      { flex-direction: column; align-items: center; gap: 28px; }
  .step-connector     { display: none; }
  .contact-grid       { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr; }
  .why-card           { height: 200px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-title { font-size: 2.4rem; }
  .highlights, .services, .travel, .coverage, .why, .process, .contact { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
