/* ═══════════════════════════════
   VisaEdge — Clean Redesign
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0b1120;
  --navy2:   #162035;
  --blue:    #1e3a8a;
  --blue2:   #2563eb;
  --gold:    #f59e0b;
  --gold2:   #fbbf24;
  --white:   #ffffff;
  --off:     #f8fafc;
  --border:  #e2e8f0;
  --text:    #1e293b;
  --muted:   #64748b;
  --green:   #25d366;
  --green2:  #1da851;
  --radius:  12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.logo { font-size: 1.4rem; font-weight: 800; text-decoration: none; color: var(--navy); letter-spacing: -0.5px; display: flex; align-items: center; gap: 9px; }
.logo-name span { color: var(--gold); }
.logo-icon { flex-shrink: 0; display: block; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

/* ── BUTTONS ── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem; border-radius: 50px;
  background: var(--green); color: #fff;
  font-weight: 600; font-size: 0.82rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-wa:hover { background: var(--green2); transform: translateY(-1px); }
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 1.1rem; border-radius: 50px;
  background: var(--navy); color: #fff;
  font-weight: 600; font-size: 0.82rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav-cta:hover { background: var(--navy2); transform: translateY(-1px); }

/* Primary / Secondary page buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1.5px solid var(--border); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--text); background: var(--off); }
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }

/* ── HAMBURGER / MOBILE MENU ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.5rem 5%; z-index: 999;
  flex-direction: column; gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none; font-weight: 500;
  font-size: 1rem; padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu-cta {
  margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem;
}

/* ── SECTION BASE ── */
section { position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 80px 5%; }
.section-tag {
  display: inline-block; padding: 0.25rem 0.9rem; border-radius: 50px;
  background: #fef3c7; color: #92400e;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.8rem;
}
.section-tag.blue { background: #dbeafe; color: #1e40af; }
.section-tag.green { background: #dcfce7; color: #166534; }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2; color: var(--navy);
  margin-bottom: 0.8rem;
}
h2 .gold { color: var(--gold); }
h2 .blue { color: var(--blue2); }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 520px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); color: var(--white);
  padding: 130px 5% 70px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero .section-tag { background: rgba(245,159,11,0.15); color: var(--gold2); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800; margin-bottom: 1rem; color: var(--white);
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

/* ── FEATURE CARDS ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.feature-card {
  padding: 1.6rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: #fcd34d; }
.feature-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.feature-card:hover .feature-icon { transform: scale(1.25) rotate(-6deg); }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.feature-card p { color: var(--muted); font-size: 0.83rem; line-height: 1.6; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.service-card {
  padding: 1.8rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); border-color: #fcd34d; }
.service-icon { font-size: 2rem; margin-bottom: 1rem; display: block; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.service-card:hover .service-icon { transform: scale(1.25) rotate(-6deg); }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.65; }
.service-card .service-note { font-size: 0.75rem; color: #94a3b8; margin-top: 0.6rem; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; gap: 0; margin-top: 3rem; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 5%; right: 5%;
  height: 1px; background: var(--border);
}
.step { flex: 1; text-align: center; padding: 0 1rem; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin: 0 auto 1rem; z-index: 2; position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.step:hover .step-num { border-color: var(--gold); box-shadow: 0 0 0 4px #fef3c7; }
.step h3 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.step p { color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.testimonial-card {
  padding: 1.6rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 1px; }
.testimonial-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.7rem; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.author-role { color: var(--muted); font-size: 0.75rem; }

/* ── TRUSTED BY ── */
.companies-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.companies-track { display: flex; gap: 1.5rem; align-items: center; animation: marquee 22s linear infinite; width: max-content; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.company-logo {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem; border-radius: 50px;
  background: var(--off); border: 1px solid var(--border);
  white-space: nowrap; font-weight: 600; font-size: 0.82rem; color: var(--muted);
  transition: border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.company-logo:hover {
  border-color: var(--navy); color: var(--navy);
  transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.companies-wrap:hover .companies-track { animation-play-state: paused; }

/* ── PRICING ── */
.pricing-center { display: flex; justify-content: center; margin-top: 2.5rem; }
.pricing-card {
  width: 100%; max-width: 480px; border-radius: 20px;
  padding: 2.5rem; background: var(--navy);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(11,17,32,0.3); }
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.plan-badge {
  display: inline-block; padding: 0.25rem 1rem; border-radius: 50px;
  background: rgba(245,159,11,0.15); color: var(--gold2);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 1.2rem;
}
.plan-price { font-size: 3.2rem; font-weight: 900; line-height: 1; }
.plan-price .currency { font-size: 1.8rem; font-weight: 700; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.plan-price .per { font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.5); }
.plan-desc { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin: 0.8rem 0 2rem; }
.plan-features { list-style: none; margin-bottom: 2rem; text-align: left; }
.plan-features li {
  padding: 0.7rem 0; font-size: 0.875rem; color: rgba(255,255,255,0.8);
  display: flex; gap: 0.75rem; align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.plan-features li:last-child { border: none; }
.plan-features li .check { color: #4ade80; font-weight: 700; flex-shrink: 0; }
.plan-cta {
  display: block; width: 100%; padding: 1rem; border-radius: 50px;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.plan-cta:hover { background: var(--green2); transform: translateY(-2px); }

/* ── FAQ ── */
.faq-list { margin-top: 2.5rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--border); margin-bottom: 0.75rem;
  overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  padding: 1.1rem 1.4rem; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; font-weight: 600;
  font-size: 0.9rem; gap: 1rem; color: var(--navy);
}
.faq-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--off); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s; font-size: 1rem; color: var(--muted);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); background: #fef3c7; border-color: var(--gold); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 1.4rem 1.1rem; color: var(--muted); font-size: 0.85rem; line-height: 1.7; }

/* ── CONTACT ── */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 2.5rem; align-items: start; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; color: var(--navy); }
.contact-info p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.1rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
  text-decoration: none; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-item:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.contact-item-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--off); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text .label { font-size: 0.72rem; color: var(--muted); }
.contact-item-text .value { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.contact-item-cta { font-size: 0.78rem; font-weight: 600; color: var(--green2); margin-top: 0.2rem; }
.contact-form { background: var(--off); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 0.9rem; border-radius: 9px;
  background: var(--white); border: 1px solid var(--border);
  color: var(--text); font-size: 0.85rem; font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue2); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; padding: 0.9rem; border-radius: 50px;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.form-submit:hover { background: var(--green2); transform: translateY(-1px); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); }
.cta-banner-inner {
  max-width: 1100px; margin: 0 auto; padding: 5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-banner-inner h2 { color: var(--white); margin-bottom: 0.4rem; }
.cta-banner-inner p { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float-tooltip {
  position: absolute; right: 62px; background: var(--navy);
  color: #fff; padding: 0.4rem 0.8rem; border-radius: 8px;
  font-size: 0.75rem; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 3.5rem 5% 2.5rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 0.8rem; display: flex; font-size: 1.3rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 { font-weight: 700; font-size: 0.82rem; color: var(--white); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding: 1.5rem 5%;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem; font-size: 0.78rem;
}
.payment-badges { display: flex; gap: 0.4rem; }
.payment-badge {
  padding: 0.2rem 0.6rem; border-radius: 5px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.4);
}

/* ── SLOT SCHEDULING ── */
.slot-live-bar {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 2rem; padding: 0.9rem 1.4rem; border-radius: 50px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
}
.slot-live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #16a34a;
  flex-shrink: 0; animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(22,163,74,0.5)} 70%{box-shadow:0 0 0 8px rgba(22,163,74,0)} 100%{box-shadow:0 0 0 0 rgba(22,163,74,0)} }
.slot-live-text { font-size: 0.8rem; font-weight: 600; color: #16a34a; }
.slot-live-count { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.slot-live-sep { flex: 1; min-width: 16px; height: 1px; background: #bbf7d0; }
.slot-live-scan { font-size: 0.78rem; color: var(--muted); }

.slot-city-card {
  border-radius: var(--radius); padding: 1.4rem;
  background: var(--white); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.slot-city-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }
.slot-dropbox-card { border-color: #bbf7d0; background: #f0fdf4; }
.slot-city-header { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.slot-city-name { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.slot-status { font-size: 0.68rem; font-weight: 700; padding: 0.22rem 0.65rem; border-radius: 50px; white-space: nowrap; }
.slot-status-fast { background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0; }
.slot-status-limited { background: #fef9c3; color: #92400e; border: 1px solid #fde68a; }
.slot-calendar { background: var(--off); border-radius: 9px; padding: 0.8rem; }
.slot-week-label { font-size: 0.68rem; color: var(--muted); margin-bottom: 0.5rem; font-weight: 500; }
.slot-days { display: flex; gap: 0.3rem; }
.slot-day { flex: 1; text-align: center; padding: 0.38rem 0; border-radius: 7px; font-size: 0.68rem; font-weight: 600; }
.slot-day-avail { background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0; }
.slot-day-taken { background: var(--white); color: #cbd5e1; border: 1px solid var(--border); }
.slot-meta { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.slot-badge { font-size: 0.68rem; font-weight: 600; padding: 0.22rem 0.6rem; border-radius: 50px; }
.slot-badge-green { background: #dcfce7; color: #16a34a; border: 1px solid #bbf7d0; }
.slot-badge-orange { background: #fef9c3; color: #92400e; border: 1px solid #fde68a; }
.slot-badge-gray { background: var(--off); color: var(--muted); border: 1px solid var(--border); }
.slot-cta {
  display: block; text-align: center; padding: 0.65rem 1rem; border-radius: 50px;
  background: var(--green); color: #fff;
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transition: background 0.2s; margin-top: auto;
}
.slot-cta:hover { background: var(--green2); }
.slot-urgency-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 2rem; border-radius: var(--radius);
  background: var(--off); border: 1px solid var(--border); overflow: hidden;
}
.urgency-item { display: flex; align-items: center; gap: 0.8rem; padding: 1.2rem; border-right: 1px solid var(--border); }
.urgency-item:last-child { border-right: none; }
.urgency-icon { font-size: 1.4rem; flex-shrink: 0; }
.urgency-title { font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.urgency-desc { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }

.india-section {
  margin-top: 2rem; border-radius: 16px;
  background: var(--off); border: 1px solid var(--border); padding: 1.6rem;
}
.india-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; flex-wrap: wrap; gap: 0.7rem; }
.india-label { display: flex; align-items: center; gap: 0.7rem; }
.india-title { font-size: 1rem; font-weight: 800; color: var(--navy); }
.india-sub { font-size: 0.75rem; color: var(--muted); margin-top: 0.1rem; }
.india-cities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

.global-divider { display: flex; align-items: center; gap: 1rem; margin: 2rem 0 0; }
.global-divider-line { flex: 1; height: 1px; background: var(--border); }
.global-divider-label {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  white-space: nowrap; padding: 0.35rem 1rem; border-radius: 50px;
  background: var(--off); border: 1px solid var(--border);
}

.global-stats {
  display: flex; align-items: center; justify-content: center;
  margin-top: 1.5rem; border-radius: var(--radius);
  background: var(--off); border: 1px solid var(--border);
  overflow: hidden; flex-wrap: wrap;
}
.gstat { flex: 1; min-width: 110px; text-align: center; padding: 1.4rem 1rem; transition: background 0.2s; }
.gstat:hover { background: rgba(245,158,11,0.05); }
.gstat:hover .gstat-num { color: var(--gold); transform: scale(1.08); }
.gstat-num { font-size: 1.8rem; font-weight: 900; color: var(--navy); line-height: 1; transition: color 0.2s, transform 0.2s; display: inline-block; }
.gstat-label { font-size: 0.73rem; color: var(--muted); margin-top: 0.25rem; }
.gstat-div { width: 1px; background: var(--border); align-self: stretch; }

.regions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 1.5rem; }
.region-card {
  border-radius: var(--radius); padding: 1.4rem;
  background: var(--white); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.region-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.region-header { display: flex; align-items: center; gap: 0.7rem; }
.region-icon { font-size: 1.6rem; }
.region-name { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.region-count { font-size: 0.72rem; color: var(--muted); }
.region-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.rtag { font-size: 0.7rem; font-weight: 500; padding: 0.2rem 0.55rem; border-radius: 5px; white-space: nowrap; background: var(--off); color: var(--muted); border: 1px solid var(--border); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.rtag:hover { border-color: var(--gold); color: var(--navy); background: #fef3c7; }

.countries-marquee-wrap { margin-top: 1.5rem; }
.countries-marquee-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-align: center; margin-bottom: 0.7rem; }
.countries-marquee-mask { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.countries-marquee-track { display: flex; gap: 1.2rem; width: max-content; animation: marquee 40s linear infinite; }
.countries-marquee-track span {
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
  white-space: nowrap; padding: 0.35rem 0.7rem;
  border-radius: 6px; background: var(--off); border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.countries-marquee-track span:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }
.countries-marquee-mask:hover .countries-marquee-track { animation-play-state: paused; }

.counter { display: inline-block; }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── MOBILE STICKY WHATSAPP BAR ── */
.mobile-wa-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-wa-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.85rem;
  border-radius: 50px; background: var(--green); color: #fff;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
}
.mobile-wa-bar a:active { background: var(--green2); }

/* ── GRADIENT TEXT ── */
.grad-text {
  background: linear-gradient(110deg, var(--gold2) 20%, #fde68a 45%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── HERO LIVE STRIP ── */
.hero-live-strip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.6rem; padding: 0.5rem 1rem; border-radius: 50px;
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25);
  font-size: 0.8rem; font-weight: 600; color: #4ade80;
  text-decoration: none; transition: background 0.2s;
}
.hero-live-strip:hover { background: rgba(37,211,102,0.16); }
.hero-live-strip .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  flex-shrink: 0; animation: livePulse 1.8s ease-in-out infinite;
}

/* ── REDUCED MOTION (keep content visible, keep brand motion) ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 1.5rem; }
  .process-steps::before { display: none; }
  .india-cities-grid { grid-template-columns: repeat(2,1fr); }
  .regions-grid { grid-template-columns: 1fr 1fr; }
  .slot-urgency-strip { grid-template-columns: 1fr 1fr; }
  .urgency-item { border-bottom: 1px solid var(--border); }
  .urgency-item:nth-child(2n) { border-right: none; }
  .urgency-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 640px) {
  /* Sticky WhatsApp bar replaces float bubble on phones */
  .mobile-wa-bar { display: block; }
  .wa-float { display: none; }
  body { padding-bottom: 70px; }
  footer { padding-bottom: 1rem; }

  .section-inner { padding: 55px 4%; }
  .page-hero { padding: 105px 4% 50px; }
  h2 { font-size: 1.65rem; }
  .section-sub { font-size: 0.875rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .india-cities-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .slot-urgency-strip { grid-template-columns: 1fr; }
  .urgency-item { border-right: none !important; }
  .slot-live-sep, .slot-live-scan { display: none; }
  .gstat-div { display: none; }
  .global-stats { grid-template-columns: repeat(2,1fr); display: grid; }
  .cta-banner-inner { flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-secondary { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .payment-badges { justify-content: center; }
}
