/* ============================================================
   NAVAM BROADBAND – style.css
   Color palette from logo:
     Primary Blue  : #1565a0
     Dark Blue     : #0d3b6e
     Accent Red    : #e53935
     Sky Blue      : #4db6e6
   ============================================================ */

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

:root {
  --blue-dark: #0d3b6e;
  --blue-mid: #1565a0;
  --blue-light: #4db6e6;
  --blue-pale: #e8f4fd;
  --red: #e53935;
  --red-dark: #b71c1c;
  --white: #ffffff;
  --grey-1: #f4f8fc;
  --grey-2: #e0ecf8;
  --text-dark: #0f1e35;
  --text-mid: #3a5570;
  --text-light: #7a9ab5;
  --section-bg: #071828;
  --card-bg: #0f2944;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 8px 32px rgba(13, 59, 110, .18);
  --shadow-lg: 0 20px 60px rgba(13, 59, 110, .28);
  --transition: .3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

/* ─── Reveal animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

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

/* ─── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 24, 40, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .4);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  color: rgba(255, 255, 255, .85);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-light);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a: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);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO / BANNER ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #020e1c 0%, #071828 40%, #0d2d4a 75%, #0a1f38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

/* Animated orbs */
.hero-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: #1565a0;
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: #e53935;
  bottom: -100px;
  right: -80px;
  animation-delay: -3s;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: #4db6e6;
  top: 40%;
  left: 55%;
  animation-delay: -5s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.08);
  }
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 182, 230, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 182, 230, .06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

/* Badge pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(77, 182, 230, .12);
  border: 1px solid rgba(77, 182, 230, .3);
  color: var(--blue-light);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(229, 57, 53, .7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(229, 57, 53, 0);
  }
}

.hero-logo-wrap {
  margin-bottom: 24px;
}

.hero-logo {
  height: 100px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(77, 182, 230, .4));
  animation: heroFloat 4s ease-in-out infinite;
  display: block;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #4db6e6, #74d7ff, #e53935);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 400;
}

/* Countdown */
.countdown-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.count-block {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(77, 182, 230, .2);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  min-width: 90px;
}

.count-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.count-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-light);
  font-weight: 600;
}

.count-sep {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  margin-top: -20px;
}

/* Notify form */
.notify-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 14px;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.notify-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(77, 182, 230, .2);
  border-right: none;
  border-radius: 50px 0 0 50px;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.notify-form button {
  padding: 16px 28px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 0 50px 50px 0;
  transition: background var(--transition);
}

.notify-form button:hover {
  background: var(--red-dark);
}

.notify-msg {
  font-size: .9rem;
  min-height: 20px;
  margin-top: 4px;
  font-weight: 500;
}

.launched-text {
  font-size: 1.5rem;
  color: var(--blue-light);
  font-weight: 700;
}

.scroll-hint {
  margin-top: 48px;
  color: rgba(255, 255, 255, .4);
  font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ─── SECTION SHARED ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.section-header.light p {
  color: rgba(255, 255, 255, .65);
}

.section-header.light .section-tag {
  background: rgba(77, 182, 230, .15);
  color: var(--blue-light);
}

.text-red {
  color: var(--red);
}

.text-blue {
  color: var(--blue-light);
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.features {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 101, 160, .04), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.feature-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(21, 101, 160, .35);
  transition: transform var(--transition);
}

.feature-card:hover .feat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── PRICING ───────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--section-bg) 0%, #0d2d4a 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 160, .15) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-slider-wrap {
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: start;
}

/* Carousel dots – hidden on desktop */
.pricing-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.dot.active {
  background: var(--blue-light);
  width: 24px;
  border-radius: 4px;
  transform: none;
}

.price-card {
  background: var(--card-bg);
  border: 1.5px solid rgba(77, 182, 230, .15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  border-color: rgba(77, 182, 230, .4);
}

.price-card:hover::after {
  opacity: 1;
}

.price-card.popular {
  background: linear-gradient(155deg, #0a1f38 0%, #12305a 40%, #1a1030 100%);
  border: 1.5px solid rgba(229, 57, 53, .55);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(229, 57, 53, .25), 0 0 0 1px rgba(229, 57, 53, .18), inset 0 1px 0 rgba(255, 255, 255, .06);
  position: relative;
}

.price-card.popular::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 60% 0%, rgba(229, 57, 53, .12) 0%, transparent 65%);
  pointer-events: none;
}

.price-card.popular::after {
  opacity: 1;
  height: 3px;
  background: linear-gradient(90deg, #e53935, #ff8a80, #e53935);
  background-size: 200% 100%;
  animation: shimmerBar 2.5s linear infinite;
}

@keyframes shimmerBar {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.price-card.popular:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 28px 72px rgba(229, 57, 53, .35), 0 0 0 1px rgba(229, 57, 53, .28);
}

/* ── Combo card ── */
.price-card.combo {
  background: linear-gradient(150deg, #0a181e 0%, #0f2c33 50%, #072128 100%);
  border: 1.5px solid rgba(74, 180, 222, 0.35);
  box-shadow: 0 16px 48px rgba(74, 200, 222, 0.12), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.price-card.combo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 30% 0%, rgba(74, 183, 222, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.price-card.combo::after {
  opacity: 1;
  background: linear-gradient(90deg, #4db6e6, #4db6e6, #4db6e6);
  background-size: 200% 100%;
  animation: shimmerBar 2.8s linear infinite;
}

.price-card.combo:hover {
  border-color: rgba(74, 207, 224, 0.65);
  box-shadow: 0 24px 60px rgba(74, 222, 128, .2);
}

.price-card.combo .popular-badge {
  background: linear-gradient(135deg, #319ed1, #4db6e6);
  color: #052e16;
  font-weight: 800;
  letter-spacing: .08em;
}

.price-card.combo .plan-icon {
  background: rgba(74, 175, 222, 0.15);
  color: #4db6e6;
  box-shadow: 0 4px 20px rgba(74, 183, 222, 0.2);
}

.price-card.combo .currency,
.price-card.combo .amount {
  color: #4db6e6;
}

.price-card.combo .plan-btn {
  border-color: rgba(59, 174, 246, 0.543);
  color: #4db6e6;
}

.price-card.combo .plan-btn:hover {
  background: rgba(74, 200, 222, 0.12);
  border-color: #4db6e6;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.price-top {
  margin-bottom: 20px;
}

.plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--blue-light);
  margin-bottom: 14px;
}

.popular .plan-icon {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 8px;
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.period {
  font-size: .9rem;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 6px;
}

.popular .currency {
  color: var(--white);
}

.popular .amount {
  color: var(--white);
}

.plan-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: rgba(255, 255, 255, .8);
}

.plan-features li i {
  font-size: .75rem;
}

.plan-features li i.fa-check {
  color: #4ade80;
}

.plan-features li i.fa-times {
  color: rgba(255, 255, 255, .3);
}

.plan-features li.disabled {
  color: rgba(255, 255, 255, .3);
}

.plan-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(77, 182, 230, .35);
  color: var(--blue-light);
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  font-family: inherit;
  cursor: pointer;
}

.plan-btn:hover {
  background: rgba(77, 182, 230, .12);
  border-color: var(--blue-light);
}

.popular-btn {
  background: linear-gradient(135deg, #e53935, #c62828);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229, 57, 53, .45);
  font-size: 1rem;
  letter-spacing: .02em;
}

.popular-btn:hover {
  background: linear-gradient(135deg, #ef5350, #e53935);
  box-shadow: 0 6px 28px rgba(229, 57, 53, .6);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

/* ─── ENQUIRY ───────────────────────────────────────────────── */
.enquiry {
  padding: 100px 0;
  background: var(--grey-1);
}

.enquiry .section-tag {
  background: rgba(229, 57, 53, .1);
  color: var(--red);
}

.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

/* Info column */
.enquiry-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.enq-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.enq-perks li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.enq-perks li i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  margin-top: 2px;
}

.enq-perks li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.enq-perks li strong {
  font-size: .95rem;
  color: var(--text-dark);
}

.enq-perks li span {
  font-size: .85rem;
  color: var(--text-mid);
}

.contact-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-mini p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-mid);
}

.contact-mini i {
  color: var(--blue-mid);
  width: 16px;
}

.contact-mini a {
  color: var(--blue-mid);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-mini a:hover {
  color: var(--red);
}

/* Form */
.enquiry-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-2);
}

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

.form-row {
  display: contents;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--grey-2);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--grey-1);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(21, 101, 160, .12);
  background: var(--white);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  grid-column: 1 / -1;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(21, 101, 160, .35);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(21, 101, 160, .5);
}

.submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 0;
}

.success-icon {
  font-size: 4rem;
  color: #16a34a;
  animation: popIn .5s ease;
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
}

.form-success p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 340px;
  line-height: 1.6;
}

.form-success button {
  padding: 12px 30px;
  background: var(--blue-mid);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}

.form-success button:hover {
  background: var(--blue-dark);
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--section-bg);
  color: rgba(255, 255, 255, .75);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a,
.contact-list li {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a:hover {
  color: var(--blue-light);
}

.contact-list li i {
  color: var(--blue-light);
  width: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* Desktop pricing grid layout */
@media (min-width: 769px) {
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .price-card.combo {
    grid-column: span 3;
    grid-row: 1;
  }

  .price-card.popular {
    grid-column: span 3;
    grid-row: 1;
    transform: scale(1.035);
  }

  .price-card.popular:hover {
    transform: scale(1.035) translateY(-8px);
  }

  .pricing-grid>.price-card:nth-child(2) {
    grid-column: span 2;
    grid-row: 2;
  }

  .pricing-grid>.price-card:nth-child(4) {
    grid-column: span 2;
    grid-row: 2;
  }

  .pricing-grid>.price-card:nth-child(5) {
    grid-column: span 2;
    grid-row: 2;
  }
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {

  .navbar.menu-open,
  .navbar.scrolled.menu-open {
    height: 100% !important;
    background: rgba(7, 24, 40, .98) !important;
    backdrop-filter: blur(20px);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(7, 24, 40, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .count-num {
    font-size: 2rem;
  }

  .count-block {
    padding: 16px 20px;
    min-width: 72px;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 14px;
    overflow: visible;
    gap: 10px;
  }

  .notify-form input {
    border-radius: 10px;
    border: 1px solid rgba(77, 182, 230, .2);
  }

  .notify-form button {
    border-radius: 10px;
  }

  .enquiry-wrapper {
    grid-template-columns: 1fr;
  }

  .enquiry-form-wrap {
    padding: 28px 20px;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }

  /* Mobile pricing carousel */
  .pricing-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 8px 4px 16px;
    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid .price-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
  }

  .price-card.popular {
    transform: none;
  }

  .price-card.popular:hover {
    transform: translateY(-8px);
  }

  .pricing-dots {
    display: flex;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .countdown-wrap {
    gap: 8px;
  }

  .count-sep {
    font-size: 1.8rem;
  }

  .count-block {
    min-width: 60px;
    padding: 12px 14px;
  }

  .count-num {
    font-size: 1.6rem;
  }
}

/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */

.about-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #020e1c 0%, #071828 40%, #0d2d4a 75%, #0a1f38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
}

.about-hero .hero-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 182, 230, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 182, 230, .06) 1px, transparent 1px);
  background-size: 50px 50px;
}

.about-content-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

/* Timeline Layout */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 20px 0;
}

/* Vertical line */
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--blue-pale);
  background: linear-gradient(to bottom, var(--blue-pale) 0%, var(--blue-light) 50%, var(--red) 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 4px;
}

/* Timeline items */
.timeline-item {
  padding: 20px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

/* Alternating sides */
.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

/* Timeline dots */
.timeline-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  right: -24px;
  top: 24px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  border: 4px solid var(--white);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(13, 59, 110, 0.2);
  transition: transform var(--transition);
}

.timeline-item.right .timeline-icon {
  left: -24px;
  right: auto;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1) rotate(-8deg);
}

.timeline-item.right:hover .timeline-icon {
  transform: scale(1.1) rotate(8deg);
}

/* Timeline Card */
.timeline-card {
  padding: 32px;
  background: var(--white);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.timeline-item:hover .timeline-card {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}

.timeline-date {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--red);
  background: rgba(229, 57, 53, 0.08);
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.timeline-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.timeline-card p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  text-align: justify;
}

/* Stats Section */
.about-stats {
  padding: 80px 0;
  background: var(--grey-1);
  border-top: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card:nth-child(2) .stat-number {
  background: linear-gradient(90deg, var(--red), #ff6961);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
}

/* About Intro Section */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.about-intro h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.about-intro p {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Responsive styles for Timeline */
@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-icon {
    left: 8px;
    right: auto;
  }

  .timeline-item.right .timeline-icon {
    left: 8px;
  }
}

/* ============================================================
   TERMS & CONDITIONS PAGE STYLES
   ============================================================ */

.terms-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, #020e1c 0%, #071828 40%, #0d2d4a 75%, #0a1f38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 60px;
}

.terms-container {
  padding: 80px 0;
  background: var(--grey-1);
}

.terms-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar navigation */
.terms-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.terms-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--blue-pale);
  padding-bottom: 10px;
}

.terms-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terms-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-nav-link i {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}

.terms-nav-link:hover {
  background: var(--blue-pale);
  color: var(--blue-mid);
}

.terms-nav-link:hover i {
  color: var(--blue-mid);
}

.terms-nav-link.active {
  background: var(--blue-mid);
  color: var(--white);
}

.terms-nav-link.active i {
  color: var(--white);
}

/* Content Column */
.terms-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.terms-section-card {
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.terms-section-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--blue-pale);
  padding-bottom: 12px;
}

.terms-section-card h2 i {
  color: var(--blue-mid);
}

/* Clause styling */
.terms-clause {
  margin-bottom: 28px;
}

.terms-clause:last-child {
  margin-bottom: 0;
}

.terms-clause h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.terms-clause h3 span.clause-num {
  color: var(--red);
  font-weight: 800;
}

.terms-clause p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.terms-clause p:last-child {
  margin-bottom: 0;
}

/* Bullet list inside clause */
.clause-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  margin-left: 20px;
}

.clause-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}

.clause-list li::before {
  content: '•';
  color: var(--red);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Service conditions layout */
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.condition-item {
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition), border-color var(--transition);
}

.condition-item:hover {
  transform: translateX(5px);
  border-color: var(--blue-light);
}

.condition-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(21, 101, 160, 0.1);
  color: var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.condition-text {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Escalation Flow Matrix */
.escalation-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.escalation-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.escalation-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue-mid);
}

.escalation-step.level-2::before {
  background: var(--blue-light);
}

.escalation-step.level-3::before {
  background: var(--red);
}

.escalation-step.level-4::before {
  background: #16a34a;
}

.step-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  height: 80px;
  width: 80px;
  text-align: center;
  box-shadow: var(--shadow);
}

.step-badge .level {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.step-badge .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-mid);
}

.escalation-step.level-3 .step-badge .num {
  color: var(--red);
}

.step-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-details p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.mediation-box {
  background: rgba(21, 101, 160, 0.05);
  border: 1.5px dashed var(--blue-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
}

.mediation-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mediation-box p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.map-section {
  padding: 100px 0;
}

/* Responsiveness for terms layout */
@media (max-width: 992px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .terms-section-card {
    padding: 24px;
  }

  .escalation-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .step-badge {
    height: 60px;
    width: 100%;
    flex-direction: row;
    gap: 10px;
  }

  .step-badge .num {
    font-size: 1.4rem;
  }
}

/* ─── PINCODE CHECKER ───────────────────────────────────────── */
.pincode-checker {
  padding: 80px 0 60px;
  background: var(--white);
  position: relative;
}

.checker-card {
  background: var(--grey-1);
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checker-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
}

.checker-info {
  flex: 1;
  max-width: 500px;
}

.checker-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.checker-info p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.checker-form-wrap {
  flex: 1;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checker-form {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(13, 59, 110, 0.08);
  border: 1.5px solid var(--grey-2);
  background: var(--white);
  transition: border-color var(--transition);
}

.checker-form:focus-within {
  border-color: var(--blue-mid);
}

.checker-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.checker-form input::placeholder {
  color: var(--text-light);
}

.checker-form button {
  padding: 14px 24px;
  background: var(--blue-mid);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition);
}

.checker-form button:hover {
  background: var(--blue-dark);
}

.checker-result {
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checker-result i {
  margin-right: 6px;
}

.checker-result.success {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #2e7d32;
  padding: 16px;
}

.checker-result.success a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
}

.checker-result.error {
  background: rgba(229, 57, 53, 0.06);
  border: 1px solid rgba(229, 57, 53, 0.2);
  color: var(--red-dark);
  padding: 16px;
}

.checker-result.error a {
  color: var(--blue-mid);
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 991px) {
  .checker-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 30px;
  }

  .checker-info {
    max-width: none;
  }

  .checker-form-wrap {
    width: 100%;
    max-width: none;
  }
}

/* ─── Pincode Gate (enquiry form gate) ──────────────────────── */
.pincode-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 36px;
  background: linear-gradient(135deg, #0d3b6e 0%, #1565a0 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(13, 59, 110, .35);
  animation: fadeInUp .4s ease;
}

.gate-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, .12);
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #7dd6f8;
  margin-bottom: 6px;
}

.pincode-gate h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
}

.pincode-gate>p {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, .75);
  max-width: 360px;
  line-height: 1.6;
}

.gate-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 380px;
  margin-top: 6px;
}

.gate-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  outline: none;
  transition: border-color .25s, background .25s;
}

.gate-form input::placeholder {
  color: rgba(255, 255, 255, .4);
  letter-spacing: 0;
  font-weight: 400;
}

.gate-form input:focus {
  border-color: #4db6e6;
  background: rgba(255, 255, 255, .18);
}

.gate-form button {
  padding: 14px 22px;
  background: linear-gradient(135deg, #e53935, #ff6b35);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}

.gate-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, .45);
}

.gate-error {
  background: rgba(229, 57, 53, .18);
  border: 1px solid rgba(229, 57, 53, .4);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.88rem;
  color: #ffc5c5;
  max-width: 420px;
  line-height: 1.5;
}

.gate-error a {
  color: #7dd6f8;
  font-weight: 700;
  text-decoration: underline;
}

.gate-error strong {
  color: #fff;
}

/* Gate input error shake animation */
@keyframes shakeX {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-6px);
  }

  40%,
  80% {
    transform: translateX(6px);
  }
}

.gate-input-error {
  animation: shakeX .5s ease;
  border-color: #e53935 !important;
}

/* ─── Customer Type Toggle ───────────────────────────────────── */
.customer-type-toggle {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.ctype-option {
  flex: 1;
  cursor: pointer;
}

.ctype-option input[type="radio"] {
  display: none;
}

.ctype-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 2px solid var(--grey-2);
  border-radius: 10px;
  background: var(--grey-1);
  color: var(--text-mid);
  font-size: 0.97rem;
  font-weight: 600;
  transition: all .25s;
}

.ctype-option input[type="radio"]:checked+span {
  border-color: var(--blue-mid);
  background: var(--blue-pale);
  color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(21, 101, 160, .12);
}

.ctype-option span:hover {
  border-color: var(--blue-light);
  background: var(--blue-pale);
}

/* ─── Enhanced Popular & Combo Pricing Cards ─────────────────── */
.price-card.popular {
  background: linear-gradient(145deg, #0d3b6e 0%, #1565a0 60%, #1976d2 100%);
  border: 2px solid #4db6e6;
  transform: translateY(0);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(77, 182, 230, .3), 0 24px 64px rgba(13, 59, 110, .55);
  z-index: 2;
}

.price-card.popular .plan-name,
.price-card.popular .plan-desc,
.price-card.popular .amount,
.price-card.popular .currency,
.price-card.popular .period,
.price-card.popular .plan-features li {
  color: #fff !important;
}

.price-card.popular .plan-features li.disabled {
  color: rgba(255, 255, 255, .45) !important;
}

.popular-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(77, 182, 230, .25) 0%, transparent 70%);
  pointer-events: none;
}

.price-card.combo {
  background: linear-gradient(145deg, #1b3a1a 0%, #2e7d32 60%, #388e3c 100%);
  border: 2px solid #66bb6a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(102, 187, 106, .3), 0 18px 50px rgba(46, 125, 50, .45);
}

.price-card.combo .plan-name,
.price-card.combo .plan-desc,
.price-card.combo .amount,
.price-card.combo .currency,
.price-card.combo .period,
.price-card.combo .plan-features li {
  color: #fff !important;
}

.price-card.combo .plan-features li.disabled {
  color: rgba(255, 255, 255, .45) !important;
}

.combo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(102, 187, 106, .25) 0%, transparent 70%);
  pointer-events: none;
}

/* Override badge colors for the two special cards */
.price-card.popular .popular-badge {
  background: linear-gradient(135deg, #ff6b35, #e53935);
  color: #fff;
  box-shadow: 0 4px 16px rgba(229, 57, 53, .5);
  border: none;
}

.price-card.combo .popular-badge {
  background: linear-gradient(135deg, #66bb6a, #2e7d32);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 125, 50, .5);
  border: none;
}

/* Enquiry form display as grid when visible (overrides inline display:none) */
.enquiry-form {
  display: grid;
}

/* Reset media adjustment for gate on mobile */
@media (max-width: 600px) {
  .checker-form {
    flex-direction: column;
    border-radius: 14px;
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
    gap: 10px;
  }

  .checker-form input {
    border-radius: 10px;
    border: 1.5px solid var(--grey-2);
    width: 100%;
  }

  .checker-form button {
    border-radius: 10px;
    width: 100%;
  }

  .gate-form {
    flex-direction: column;
  }

  .gate-form button {
    width: 100%;
  }

  .customer-type-toggle {
    flex-direction: column;
  }
}

/* ─── SMTP & Countdown Timer Live Mode Styles ─── */
.pulse-dot.live {
  background: #4caf50;
  animation: pulse-live 1.4s ease-in-out infinite;
}

@keyframes pulse-live {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
  }
}

.hero-cta-btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.6);
  background: linear-gradient(135deg, var(--red-dark) 0%, #900c0a 100%);
}

.hero-cta-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

.whatsapp-btn i {
  font-size: 1.75rem;
  color: #ffffff;
  line-height: 1;
}

/* Pulse ring animation */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Tooltip label */
.whatsapp-tooltip {
  background: #1a1a2e;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  order: -1;
  /* tooltip appears to the left of the button */
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: #1a1a2e;
  border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-btn {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
  }

  .whatsapp-btn i {
    font-size: 1.5rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}