/* =====================================================
   ChallanFree – style.css
   Theme: Electric Blue · Vivid Orange · Bright White
   ===================================================== */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Bright vibrant theme */
  --bg:        #f0f6ff;          /* Light sky-blue background */
  --surface:   #ffffff;           /* Pure white cards */
  --surface2:  #e8f1ff;           /* Soft blue tint */
  --border:    #1a6eff22;
  --border2:   #ff6a0022;

  --accent:    #1a6eff;           /* Electric blue primary */
  --accent2:   #0052d4;           /* Blue hover */
  --accent3:   #3d8bff;           /* Bright blue */
  --accent-light: #d0e5ff;        /* Light blue tint */

  --orange:    #ff6a00;           /* Vivid orange accent */
  --orange2:   #e55a00;           /* Orange hover */
  --orange-light: #fff0e5;        /* Soft orange bg */

  --yellow:    #ffcc00;           /* Bright yellow */
  --yellow2:   #fff3b0;           /* Soft yellow */

  --green-ok:  #00a96e;
  --red:       #e5252a;

  --text:      #0a1628;           /* Deep navy text */
  --muted:     #4a6080;           /* Muted blue-grey */
  --white:     #ffffff;

  --wa-green:  #25d366;
  --wa-dark:   #128c7e;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --radius:   16px;
  --radius-sm: 10px;
  --shadow:   0 6px 36px #1a6eff18;
  --shadow-lg: 0 16px 56px #1a6eff22;
  --transition: 0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---------- Utility ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 20px #1a6eff35;
}
.btn-primary:hover {
  background: var(--accent2);
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #1a6eff45;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
  box-shadow: 0 4px 20px #25d36630;
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #25d36640;
}

.btn.full { width: 100%; }

.btn-wa-small {
  display: inline-block;
  margin-top: 12px;
  color: var(--wa-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 8px;
  border: 1.5px solid var(--wa-green);
  border-radius: 50px;
  transition: var(--transition);
}
.btn-wa-small:hover {
  background: var(--wa-green);
  color: white;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
  background: #f0f6fff2;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 #1a6eff18, 0 4px 24px #1a6eff10;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
}
.logo-icon { font-size: 22px; }
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
}
.nav-links .nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }
.nav-links .nav-whatsapp {
  background: var(--wa-green) !important;
}
.nav-links .nav-whatsapp:hover { background: var(--wa-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 120px 48px 60px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.hero-bg-text {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(100px, 16vw, 240px);
  font-weight: 900;
  color: #1a6eff05;
  letter-spacing: 16px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.hero-content { position: relative; z-index: 1; max-width: 580px; }

.hero-eyebrow {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--accent-light);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 74px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-heading em {
  font-style: italic;
  color: var(--orange);
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat span { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--accent); }
.stat p { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 2px; }
.stat-divider { width: 1px; height: 48px; background: #1a6eff25; }

/* Car Card */
.hero-visual { position: relative; z-index: 1; flex-shrink: 0; }

.car-card {
  background: var(--white);
  border: 1.5px solid #1a6eff18;
  border-radius: var(--radius);
  padding: 28px;
  width: 320px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.car-card-top {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.challan-badge {
  background: var(--orange);
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 50px;
}

.plate {
  background: #fff9c4;
  color: #1a1a1a;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 4px;
  border: 2px solid #d4b800;
}

.challan-list {
  list-style: none;
  border-top: 1.5px solid #e8f1ff;
  border-bottom: 1.5px solid #e8f1ff;
  padding: 12px 0;
  margin-bottom: 12px;
}
.challan-list li {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: 13px; color: var(--muted);
}

.fine { font-weight: 600; }
.strike { text-decoration: line-through; color: var(--red); opacity: 0.7; }

.challan-footer {
  display: flex; justify-content: space-between;
  font-size: 14px; font-weight: 600;
  margin-bottom: 16px; color: var(--text);
}

.challan-resolved {
  background: #d0fff0;
  border: 1.5px solid #6ee7c2;
  border-radius: var(--radius-sm);
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; font-size: 12px; font-weight: 700; color: var(--green-ok);
}
.resolved-amount { font-family: var(--font-display); font-size: 22px; font-weight: 700; }

/* ---------- TICKER ---------- */
.ticker-wrap {
  background: linear-gradient(90deg, var(--accent), var(--orange));
  overflow: hidden;
  padding: 11px 0;
}

.ticker {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker-scroll 26s linear infinite;
}

.ticker span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SERVICES ---------- */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
  box-shadow: 0 2px 16px #1a6eff08;
}
.service-card.in-view { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-color: #1a6eff40;
  box-shadow: 0 12px 40px #1a6eff15;
  transform: translateY(-4px);
}
.service-card.featured {
  background: linear-gradient(135deg, #e8f2ff, #ffffff);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px #1a6eff20, var(--shadow);
}

.service-badge {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--orange);
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.service-icon { font-size: 30px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.65; margin-bottom: 20px;
}
.service-tag {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light);
  padding: 4px 12px; border-radius: 50px;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works { background: var(--surface2); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}

.step {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 24px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 900;
  color: #1a6eff14;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}
.step:hover .step-num { color: var(--orange); }
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.step-connector {
  width: 80px; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--orange));
  margin-top: 52px; flex-shrink: 0;
}

/* ---------- PRICING ---------- */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: var(--radius);
  padding: 32px 22px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 16px #1a6eff08;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.plan-card.featured-plan {
  background: linear-gradient(160deg, #e8f2ff, #ffffff);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px #1a6eff25, 0 20px 60px #1a6eff18;
  transform: scale(1.03);
}
.plan-card.featured-plan:hover { transform: scale(1.03) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--orange));
  color: white;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-slab {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.4;
}

.plan-price {
  font-family: var(--font-serif);
  font-size: 52px; font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}

.plan-features {
  list-style: none;
  margin-bottom: 20px;
}
.plan-features li {
  font-size: 13px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid #e8f1ff;
  line-height: 1.5;
}

.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--muted);
}
.pricing-note a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- APPLICATION FORM ---------- */
.apply-section { background: var(--surface2); }

.apply-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

/* Info sidebar */
.apply-info { display: flex; flex-direction: column; gap: 20px; }

.apply-info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.apply-info-block:hover { border-color: #1a6eff40; box-shadow: 0 4px 20px #1a6eff10; }

.apply-info-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.apply-info-block h4 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.apply-info-block p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* WhatsApp CTA in sidebar */
.whatsapp-cta-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #e8fdf4;
  border: 2px solid #6ee7c2;
  border-radius: var(--radius-sm);
}
.wa-icon { font-size: 28px; flex-shrink: 0; }
.whatsapp-cta-box h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.whatsapp-cta-box p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.wa-btn-full { width: 100% !important; }

/* Fee reference table */
.fee-reference {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: var(--radius-sm);
  padding: 20px;
}
.fee-reference h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fee-table { display: flex; flex-direction: column; gap: 4px; }
.fee-row {
  display: flex; justify-content: space-between;
  padding: 9px 12px;
  background: var(--surface2);
  border-radius: 6px;
  font-size: 13px; color: var(--muted);
}
.fee-row strong { color: var(--orange); font-family: var(--font-display); font-size: 16px; font-weight: 700; }

/* Form wrap */
.apply-form-wrap {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  box-shadow: 0 4px 32px #1a6eff10;
}
.apply-form-wrap::before {
  content: '';
  position: absolute;
  top: -1.5px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--orange));
  border-radius: var(--radius) var(--radius) 0 0;
}

/* No payment banner */
.form-no-payment-banner {
  background: linear-gradient(135deg, #fff8e1, #fffde7);
  border: 1.5px solid var(--yellow);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 6px;
}
.form-no-payment-banner span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #b35a00;
}
.form-no-payment-banner span:last-child {
  font-size: 12px;
  color: var(--muted);
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #e8f1ff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex; flex-direction: column; gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1.5px solid #c8dcf8;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #8aa8cc; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #1a6eff15;
  background: white;
}
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-group select { cursor: pointer; }
.form-group select option { background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }

.apply-submit-btn {
  margin-top: 20px;
  font-size: 15px;
  padding: 16px 32px;
}

/* Success state */
.form-success-state {
  text-align: center;
  padding: 48px 24px;
}
.success-icon-big { font-size: 56px; margin-bottom: 20px; }
.form-success-state h3 {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 900;
  color: var(--text); margin-bottom: 12px;
}
.form-success-state p { color: var(--muted); font-size: 15px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--bg); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 2px 16px #1a6eff06;
}
.testimonial-card:hover {
  border-color: #1a6eff30;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #1a6eff12;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 16px; font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  color: var(--white); flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 14px; color: var(--text); font-weight: 700; }
.testimonial-author span  { font-size: 12px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--surface2); }

.faq-list {
  margin-top: 48px;
  max-width: 760px;
  display: flex; flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius:8px;
  overflow: hidden;
}

.faq-question {
  width: 100%; background: none; border: none;
  padding: 20px 24px; text-align: left;
  color: #1a1a2e; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-question::after {
  content: '+';
  font-size: 22px; color: #ff6b35; line-height: 1;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] { color: #0066ff;; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { color: #6b7280; font-size: 15px; line-height: 1.7; }

/* ---------- CONTACT / CTA ---------- */
.contact-cta { background: var(--bg); }

.cta-box {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 48px #1a6eff12;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, #ff6a0008, transparent 70%);
  pointer-events: none;
}

.cta-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 900;
  color: var(--text); line-height: 1.1; margin-bottom: 16px;
}
.cta-left p { color: var(--muted); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }

.cta-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.cta-bullets li { font-size: 14px; font-weight: 500; color: var(--text); }

/* Form in CTA */
.challan-form { display: flex; flex-direction: column; gap: 10px; }

.challan-form label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}

.challan-form input,
.challan-form select {
  background: var(--surface2);
  border: 1.5px solid #c8dcf8;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.challan-form input::placeholder { color: #8aa8cc; }
.challan-form input:focus,
.challan-form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px #1a6eff15; }
.challan-form select option { background: white; }

.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 4px; }

.form-success { display: none; text-align: center; padding: 40px 24px; }
.form-success.show { display: block; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 900;
  color: var(--text); margin-bottom: 10px;
}
.form-success p { color: var(--muted); font-size: 15px; }

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: var(--wa-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 32px #25d36650;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  gap: 0;
}
.wa-float:hover {
  width: 160px;
  border-radius: 50px;
  gap: 8px;
  box-shadow: 0 12px 40px #25d36660;
}
.wa-float-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.28s ease;
}
.wa-float:hover .wa-float-label { max-width: 100px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--text);
  border-top: 1.5px solid #1a6eff20;
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px; display: block;
  color: white;
}
.footer .logo-accent { color: var(--orange); }

.footer-brand p {
  font-size: 14px; color: #7a9cc0;
  max-width: 280px; margin-bottom: 16px; line-height: 1.65;
}

.footer-wa-number {
  font-size: 14px;
  color: var(--wa-green) !important;
  margin-top: 8px !important;
}

.footer-social { display: flex; gap: 12px; margin-bottom: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1.5px solid #1a6eff40;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--transition);
}
.footer-social a:hover { border-color: var(--accent-light); transform: scale(1.1); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: #d0e5ff; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: #7a9cc0; margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid #1a6eff20;
  padding-top: 20px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: #7a9cc0; }

/* ─────────── RAZORPAY MODAL ─────────── */
.rzp-modal-overlay {
  position: fixed; inset: 0;
  background: #0a162899;
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.rzp-modal-overlay.active { opacity: 1; pointer-events: all; }

.rzp-modal {
  background: var(--white);
  border: 1.5px solid #d0e5ff;
  border-radius: 24px;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 32px 80px #0a162840;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.rzp-modal::before {
  content: '';
  position: absolute;
  top: -1.5px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--orange));
  border-radius: 24px 24px 0 0;
}
.rzp-modal-overlay.active .rzp-modal { transform: scale(1) translateY(0); }

.rzp-modal::-webkit-scrollbar { width: 4px; }
.rzp-modal::-webkit-scrollbar-track { background: transparent; }
.rzp-modal::-webkit-scrollbar-thumb { background: #c8dcf8; border-radius: 4px; }

.rzp-modal-close {
  position: absolute; top: 16px; right: 20px;
  background: #e8f1ff; border: none;
  color: var(--muted); font-size: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; line-height: 1;
}
.rzp-modal-close:hover { background: var(--accent); color: white; }

.rzp-modal-header { margin-bottom: 24px; text-align: center; }

.rzp-plan-badge {
  display: inline-block;
  background: var(--accent-light); border: 1.5px solid #90c0ff;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 12px;
}

.rzp-modal-title {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 900;
  color: var(--text); margin-bottom: 6px;
}
.rzp-modal-sub { font-size: 13px; color: var(--muted); line-height: 1.6; }

.rzp-plan-summary {
  background: var(--surface2);
  border: 1.5px solid #c8dcf8;
  border-radius: var(--radius-sm);
  padding: 16px 20px; margin-bottom: 24px;
}

.rzp-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--muted); padding: 5px 0;
}
.rzp-summary-total {
  border-top: 1px solid #c8dcf8;
  margin-top: 8px; padding-top: 12px !important;
  font-size: 15px; font-weight: 700; color: var(--text);
}
.rzp-summary-total span:last-child {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
}

.rzp-field-group {
  display: flex; flex-direction: column;
  gap: 6px; margin-bottom: 14px;
}
.rzp-field-group label {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.rzp-field-group input {
  background: var(--surface2);
  border: 1.5px solid #c8dcf8;
  border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--text);
  font-family: var(--font-body); font-size: 14px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.rzp-field-group input::placeholder { color: #8aa8cc; }
.rzp-field-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #1a6eff15;
  background: white;
}
.rzp-field-group input.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px #e5252a15;
}

.rzp-field-error { font-size: 12px; color: var(--red); margin-top: 2px; }

.rzp-pay-btn {
  margin-top: 8px;
  font-size: 15px; padding: 16px 32px;
  gap: 10px;
}
.rzp-btn-icon { font-size: 17px; }
.rzp-pay-btn.loading { opacity: 0.7; pointer-events: none; }
.rzp-pay-btn.loading::after {
  content: '';
  width: 15px; height: 15px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: rzp-spin 0.7s linear infinite;
  display: inline-block; margin-left: 8px;
}
@keyframes rzp-spin { to { transform: rotate(360deg); } }

.rzp-trust-strip {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid #e8f1ff; flex-wrap: wrap;
}
.rzp-trust-strip span { font-size: 11px; color: var(--muted); font-weight: 500; }

.rzp-whatsapp-alt {
  text-align: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e8f1ff;
}
.rzp-whatsapp-alt p { font-size: 12px; color: var(--muted); margin-bottom: 8px; }

.rzp-hidden { display: none !important; }

.rzp-success-anim { text-align: center; margin-bottom: 16px; }
.rzp-checkmark {
  font-size: 64px;
  animation: rzp-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes rzp-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.rzp-success-title {
  font-family: var(--font-serif);
  font-size: 30px; font-weight: 900;
  color: var(--green-ok); text-align: center;
  margin-bottom: 8px;
}
.rzp-success-sub { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 24px; line-height: 1.65; }

.rzp-receipt {
  background: var(--surface2);
  border: 1.5px solid #c8dcf8;
  border-radius: var(--radius-sm);
  padding: 16px 20px; margin-bottom: 20px;
}
.rzp-receipt-row {
  display: flex; justify-content: space-between;
  font-size: 13px; padding: 7px 0;
  border-bottom: 1px solid #e8f1ff;
  color: var(--muted);
}
.rzp-receipt-row:last-child { border-bottom: none; }
.rzp-receipt-row span:last-child { color: var(--text); font-weight: 600; }

.rzp-fail-icon { font-size: 56px; text-align: center; margin-bottom: 16px; }
.rzp-fail-title {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 900;
  color: var(--red); text-align: center; margin-bottom: 10px;
}
.rzp-fail-sub { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 24px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.featured-plan { transform: scale(1); }
  .apply-wrapper { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 120px 24px 60px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 500px; margin: 48px auto 0; }
  .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}


  