/* ═══════════════════════════════════════════════════════════════
   CareToIndia.com — Premium Design System
   Colors: Deep Navy (#0B1F3A), Teal (#0D4A6B / #0A7B8E), Gold (#C9923E)
   ═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #112840;
  --navy-light:  #1a3a5c;
  --teal:        #0A7B8E;
  --teal-light:  #12a0b8;
  --teal-pale:   #e8f6f8;
  --gold:        #C9923E;
  --gold-light:  #e8b86d;
  --gold-pale:   #fdf3e3;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --text-dark:   #0d1b2a;
  --text-mid:    #3a5068;
  --text-light:  #6b8299;
  --border:      rgba(10,123,142,0.15);
  --glass-bg:    rgba(255,255,255,0.06);
  --glass-border:rgba(255,255,255,0.12);
  --shadow-md:   0 8px 32px rgba(11,31,58,0.16);
  --shadow-lg:   0 20px 60px rgba(11,31,58,0.22);
  --shadow-gold: 0 8px 32px rgba(201,146,62,0.25);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --transition:  0.3s 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: 'Inter', -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

strong { font-weight: 600; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201,146,62,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(201,146,62,0.15);
  border-color: rgba(201,146,62,0.25);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 16px;
}

.section-body.light { color: rgba(255,255,255,0.8); }

.section-body.centered { text-align: center; margin: 0 auto 16px; }

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

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,146,62,0.4);
}

.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 11px 22px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(201,146,62,0.3);
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201,146,62,0.4);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  box-shadow: 0 12px 40px rgba(10,123,142,0.35);
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
  max-width: 1300px;
  margin: 0 auto;
  transition: padding 0.3s;
}

.navbar.scrolled .nav-container { padding-top: 14px; padding-bottom: 14px; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.3rem;
  animation: spin-once 1s ease;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--gold); }

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.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(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(11,31,58,0.98);
  backdrop-filter: blur(20px);
  padding: 16px 5% 24px;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  margin-top: 16px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white) !important;
  border-radius: 100px;
  padding: 14px;
  border-bottom: none;
  font-weight: 600;
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,58,0.88) 0%,
    rgba(10,123,142,0.55) 60%,
    rgba(11,31,58,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 5% 100px;
  max-width: 780px;
  margin: 0 0 0 5%;
  animation: fade-up 0.9s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4cefb0;
  border-radius: 50%;
  box-shadow: 0 0 8px #4cefb0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-accent {
  color: var(--gold);
  display: block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-subtitle strong { color: var(--gold-light); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  animation: fade-up 1s 0.5s ease both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-strip-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.trust-badge:hover {
  background: rgba(201,146,62,0.12);
  border-color: rgba(201,146,62,0.3);
  color: var(--gold-light);
}

.badge-family {
  background: rgba(201,146,62,0.12);
  border-color: rgba(201,146,62,0.35);
  color: var(--gold-light);
  font-weight: 600;
}

.trust-icon { font-size: 1rem; }

/* ─── PROBLEM SECTION ────────────────────────────────────────── */
.problem-section {
  padding: 100px 0;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-image-wrap {
  position: relative;
}

.problem-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.problem-image-wrap:hover .problem-img {
  transform: scale(1.02);
}

.problem-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.pib-icon { font-size: 1.5rem; }

.problem-img-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.problem-img-badge span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.cost-compare {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.cost-item {
  flex: 1;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-sm);
}

.cost-us {
  background: rgba(220,53,69,0.05);
  border: 1px solid rgba(220,53,69,0.15);
}

.cost-india {
  background: rgba(10,123,142,0.06);
  border: 1px solid rgba(10,123,142,0.2);
}

.cost-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.cost-price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cost-us .cost-price { color: #c0392b; }
.cost-india .cost-price { color: var(--teal); }

.cost-sub {
  font-size: 0.75rem;
  color: var(--text-light);
}

.cost-arrow {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(201,146,62,0.3);
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-section {
  padding: 100px 0;
  background: var(--off-white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
}

.step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(11,31,58,0.07);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,123,142,0.2);
}

.step-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(10,123,142,0.3), rgba(10,123,142,0.1));
  margin-top: 72px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(10,123,142,0.4);
  border-right: 2px solid rgba(10,123,142,0.4);
  transform: rotate(45deg);
}

.step-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--teal-pale);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── WHY INDIA ──────────────────────────────────────────────── */
.why-india {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0a3d55 50%, var(--navy-mid) 100%);
  z-index: 0;
}

.why-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='%230A7B8E' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.why-points { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-point:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,146,62,0.3);
  transform: translateX(4px);
}

.wp-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.why-point strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.why-image-wrap {
  position: relative;
}

.why-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.why-img-float {
  position: absolute;
  top: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(11,31,58,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}

.wif-icon { font-size: 1.5rem; }

.why-img-float strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.why-img-float span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  padding: 32px 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  background: var(--white);
  border-color: rgba(10,123,142,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.svc-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(11,31,58,0.06);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
  background: var(--navy);
  border-color: transparent;
  position: relative;
  top: -20px;
}

.testimonial-card.featured .testi-quote {
  color: rgba(255,255,255,0.85);
}

.testimonial-card.featured .testi-author strong {
  color: var(--white);
}

.testimonial-card.featured .testi-author span {
  color: rgba(255,255,255,0.5);
}

.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(10,123,142,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ─── CONTACT FORM ────────────────────────────────────────────── */
.contact-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(10,123,142,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,123,142,0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b8299' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--off-white);
  border: 1px solid rgba(10,123,142,0.2);
  border-radius: var(--radius-xl);
}

.form-success.show { display: block; }

.success-icon { font-size: 3rem; margin-bottom: 16px; }

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-mid);
  font-size: 1rem;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo .logo-text { font-size: 1.35rem; }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links-col a,
.footer-links-col span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-links-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal { font-style: italic; max-width: 480px; text-align: right; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-wrap: wrap; justify-content: center; }
  .step { min-width: 180px; }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero-content { margin: 0; padding: 120px 5% 80px; }
  .hero-title { font-size: 2.8rem; }

  .hero-stats {
    gap: 20px;
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-divider { display: none; }

  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-img-badge { right: 0; bottom: -16px; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-wrap { order: -1; }
  .why-img-float { top: auto; bottom: -16px; left: 16px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { top: 0; }

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

  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .contact-form { padding: 32px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; }

  .steps-grid { flex-direction: column; }
  .step { width: 100%; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .cost-compare { flex-direction: column; }
  .cost-arrow { transform: rotate(90deg); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── FLOATING WHATSAPP BUTTON ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  animation: wa-enter 0.6s 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
  max-width: 56px; /* collapsed by default — icon only */
}

@keyframes wa-enter {
  from { opacity: 0; transform: translateY(40px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-float:hover {
  max-width: 200px;
  padding: 14px 22px;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
  background: #1ebe5d;
  transform: translateY(-2px);
}

.wa-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.wa-label {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.3s ease, opacity 0.25s ease;
}

.wa-float:hover .wa-label {
  max-width: 120px;
  opacity: 1;
}

/* Pulsing green ring to draw attention */
.wa-ping {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid #25D366;
  animation: wa-ping 2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-ping {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-float {
    bottom: 20px;
    right: 16px;
    padding: 13px 16px;
  }
}
