

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #2e2e2e;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.orange-text { color: #D7AA42; }

/* ── BUTTONS ── */
.btn-orange {
  background: #D7AA42;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 6px;
  cursor: pointer;
  transition: background .3s;
}
.btn-orange:hover { background: #C4972F; }
.btn-orange.full-w { width: 100%; }
.btn-orange.flex-1 { flex: 1; }
.btn-back {
  background: #f0f0f0;
  color: #666;
  border: 1px solid #ddd;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-back:hover { background: #e5e5e5; }
.btn-outline-orange {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent;
  color: #D7AA42;
  border: 2px solid #D7AA42;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-outline-orange:hover { background: #D7AA42; color: #fff; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}
.btn-whatsapp:hover { background: #1fba59; }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-size: 24px; font-weight: 800; color: #2e2e2e; }
.logo span { color: #D7AA42; }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: 13px; color: #555; font-weight: 500; }
.header-phone:hover { color: #D7AA42; }
.countdown-box {
  display: flex; align-items: center; gap: 6px;
  background: #D7AA42;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px; font-weight: 600;
}
.countdown-timer {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  min-width: 44px;
}

/* ════════════════════════════════════════
   HERO BANNER
════════════════════════════════════════ */
.hero-banner {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f0e 40%, #0f3460 100%);
  min-height: 420px;
}
.banner-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.banner-mobile { display: none; }

/* Fallback hero — always rendered behind images */
.banner-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background:
    linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(45,31,14,0.9) 40%, rgba(15,52,96,0.95) 100%);
}
/* When image loads, it covers the fallback */
.banner-img[src] { position: relative; }

.banner-fallback-content {
  max-width: 680px;
}
.bf-badge {
  display: inline-block;
  background: rgba(236,141,46,0.2);
  color: #D7AA42;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(236,141,46,0.3);
  margin-bottom: 24px;
}
.banner-fallback h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.banner-fallback h1 span { color: #D7AA42; }
.banner-fallback p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}
.bf-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bf-stat {
  color: #fff;
  font-size: 14px;
}
.bf-stat strong {
  display: block;
  color: #D7AA42;
  font-size: 20px;
  font-weight: 800;
}
.bf-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
.btn-lg { padding: 14px 36px; font-size: 15px; }

/* ════════════════════════════════════════
   SHARED SECTION UTILITIES
════════════════════════════════════════ */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-badge {
  display: inline-block;
  background: rgba(236,141,46,0.12);
  color: #D7AA42;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(236,141,46,0.2);
  margin-bottom: 16px;
}
.section-title {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-title.dark { color: #1a1a2e; }
.section-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  max-width: 550px;
}
.section-subtitle.dark { color: #777; }

/* ════════════════════════════════════════
   STAT STRIP
════════════════════════════════════════ */
.stat-strip {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  padding: 0;
  border-bottom: 3px solid #D7AA42;
}
.stat-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 28px 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: #D7AA42;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ════════════════════════════════════════
   WHY RAJ NIWAS PALACE — Configuration Cards
════════════════════════════════════════ */
.why-section {
  background: linear-gradient(170deg, #fdfaf4 0%, #f7f2ea 50%, #ffffff 100%);
  padding: 90px 20px;
  text-align: center;
}
.why-section .section-title { color: #1a1a2e; }
.why-section .section-subtitle { color: #555; margin-bottom: 56px; }

.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.config-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all .4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.config-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(215,170,66,0.15);
  border-color: rgba(215,170,66,0.3);
}
.config-card--featured {
  border-color: #D7AA42;
  box-shadow: 0 8px 30px rgba(215,170,66,0.15);
}

/* Card image */
.config-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.config-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.config-card:hover .config-img {
  transform: scale(1.08);
}
.config-badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(26,26,46,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.config-badge-overlay--gold {
  background: rgba(215,170,66,0.92);
}

/* Card body */
.config-body {
  padding: 28px 24px;
  text-align: left;
}
.config-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.config-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
}
.config-price-btn {
  background: linear-gradient(135deg, #D7AA42, #C4972F);
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(215,170,66,0.3);
}
.config-price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(215,170,66,0.4);
}

/* Area info */
.config-area {
  background: linear-gradient(135deg, rgba(215,170,66,0.08), rgba(215,170,66,0.04));
  border: 1px solid rgba(215,170,66,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.config-area-num {
  font-size: 18px;
  font-weight: 700;
  color: #D7AA42;
}
.config-area-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features list */
.config-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.config-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f3f3f3;
}
.config-features li:last-child { border-bottom: none; }
.config-features li svg { flex-shrink: 0; }

/* Smart Layout & Floor Plan tags */
.config-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.config-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,26,46,0.06);
  color: #1a1a2e;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
}
.config-tag--gold {
  background: rgba(215,170,66,0.1);
  color: #C4972F;
  border-color: rgba(215,170,66,0.25);
}

@media (max-width: 768px) {
  .config-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .config-img-wrap { height: 200px; }
}

/* ════════════════════════════════════════
   PRICING CARDS
════════════════════════════════════════ */
.pricing-section {
  background: #f8f9fc;
  padding: 80px 20px;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid #e8e8ef;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all .4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.price-card.featured {
  border-color: #D7AA42;
  box-shadow: 0 8px 30px rgba(236,141,46,0.15);
}
.price-card-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #f0f0f5;
  color: #666;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}
.price-card-ribbon {
  position: absolute;
  top: -1px; right: 24px;
  background: #D7AA42;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
}
.price-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-top: 8px;
  margin-bottom: 8px;
}
.price-area {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}
.price-amount {
  font-size: 38px;
  font-weight: 800;
  color: #D7AA42;
  line-height: 1;
}
.price-note {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.price-features li {
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f3f3f3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '';
  width: 20px; height: 20px;
  background: #D7AA42;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ════════════════════════════════════════
   AMENITIES SHOWCASE
════════════════════════════════════════ */
.amenities-section {
  background: linear-gradient(170deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 80px 20px;
  text-align: center;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.amenity-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: all .3s ease;
}
.amenity-item:hover {
  background: rgba(236,141,46,0.1);
  border-color: rgba(236,141,46,0.3);
  transform: translateY(-3px);
}
.amenity-icon {
  color: #D7AA42;
  margin-bottom: 12px;
}
.amenity-item span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  display: block;
}

/* ════════════════════════════════════════
   LOCATION ADVANTAGES
════════════════════════════════════════ */
.location-section {
  background: #f8f9fc;
  padding: 80px 20px;
  text-align: center;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.loc-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  transition: all .3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.loc-card:hover {
  border-color: #D7AA42;
  box-shadow: 0 8px 25px rgba(236,141,46,0.1);
  transform: translateY(-3px);
}
.loc-time {
  background: linear-gradient(135deg, #D7AA42, #C4972F);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  min-width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-detail strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 2px;
}
.loc-detail span {
  font-size: 13px;
  color: #888;
}

/* ════════════════════════════════════════
   DEVELOPER TRUST
════════════════════════════════════════ */
.trust-section {
  background: linear-gradient(170deg, #fdfaf4 0%, #f7f2ea 50%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.trust-stat {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 30px 20px;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-stat:hover {
  background: rgba(215,170,66,0.06);
  border-color: rgba(215,170,66,0.3);
}
.trust-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #D7AA42;
  margin-bottom: 6px;
}
.trust-stat-label {
  font-size: 13px;
  color: #555;
}
.trust-section .section-title { color: #1a1a2e; }
.trust-section .section-subtitle { color: #555; }
.trust-section .section-badge { background: #D7AA42; color: #fff; }

/* ════════════════════════════════════════
   LEAD CAPTURE FORM
════════════════════════════════════════ */
.lead-section {
  background: linear-gradient(170deg, #0f0f1a 0%, #1a1a2e 100%);
  padding: 80px 20px;
}
.lead-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.lead-left h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}
.lead-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.lead-left p strong {
  color: #D7AA42;
}
.lead-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.lead-benefit-item::before {
  content: '';
  width: 24px; height: 24px;
  background: #D7AA42;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}
.lead-form-box {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}
.lead-form-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.lead-form-box > p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.lead-form-box .form-group input,
.lead-form-box .form-group select {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
}
.lead-form-box .form-group input::placeholder,
.lead-form-box .form-group select {
  color: rgba(255,255,255,0.4);
}
.lead-form-box .form-group input:focus,
.lead-form-box .form-group select:focus {
  border-color: #D7AA42;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(215,170,66,0.15);
}
.lead-form-box .form-group select option {
  background: #1a1a2e;
  color: #fff;
}
.lead-form-box .form-note {
  color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════
   CONTACT US
════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(170deg, #fdfaf4 0%, #f7f2ea 50%, #ffffff 100%);
  padding: 80px 20px;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.contact-heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 14px;
}
.contact-subtext {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 380px;
}
.contact-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215,170,66,0.08);
  border: 1px solid rgba(215,170,66,0.2);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: #666;
}
.contact-section .section-badge {
  background: #D7AA42;
  color: #fff;
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-card:hover {
  background: #fff;
  border-color: rgba(215,170,66,0.3);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.contact-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon--orange {
  background: linear-gradient(135deg, #D7AA42, #C4972F);
  box-shadow: 0 4px 14px rgba(236,141,46,0.25);
}
.contact-card__icon--dark {
  background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.contact-card__icon--green {
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.contact-card__info {
  flex: 1;
}
.contact-card__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 3px;
}
.contact-card__info strong {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}
.contact-card__arrow {
  color: #ccc;
  flex-shrink: 0;
  transition: all .3s;
}
.contact-card:hover .contact-card__arrow {
  color: #D7AA42;
  transform: translateX(4px);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #2e2e2e;
  padding: 24px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-top-link { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-top-link:hover { color: #D7AA42; }

/* ════════════════════════════════════════
   FLOATING HANGING BUTTONS
════════════════════════════════════════ */
.callUsFix {
  position: fixed;
  z-index: 9999;
  bottom: 50px !important;
  top: auto !important;
  right: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.callUsFix.callus img {
  animation: phoneSpin 2s linear infinite;
}
.callUsFix.callus:hover img {
  animation: none;
}

/* Phone number text */
.PhoneNo {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

/* "Click Here To Call Us" text */
.PhoneText {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* Phone continuous round spin */
@keyframes phoneSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* WhatsApp — bottom left */
.callUsFix.whatsApp {
  left: 10px;
  right: auto;
  bottom: 50px !important;
  top: auto !important;
}
.callUsFix.whatsApp img {
  animation: none;
  background-color: #25D366;
  padding: 10px;
  border-radius: 5px;
  width: 52px;
  height: 52px;
}

@media (max-width: 768px) {
  .PhoneNo, .PhoneText, br.PhoneText { display: none !important; }
}

/* ════════════════════════════════════════
   NEW MODAL SYSTEM
════════════════════════════════════════ */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(10,10,26,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 16px;
}
.modal-backdrop.active { display: flex; }
.modal-backdrop--dark {
  background: rgba(0,0,0,0.92);
  backdrop-filter: none;
}

/* Card */
.modal-card {
  background: #fff;
  border-radius: 24px;
  max-width: 460px; width: 100%;
  position: relative;
  animation: modalSlide .45s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
}
.modal-card--phone { max-width: 440px; }
.modal-card--steps { max-width: 500px; padding: 36px 36px 32px; }
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Accent bar at top */
.modal-card__accent-bar {
  height: 5px;
  background: linear-gradient(90deg, #25D366, #1EBE5D, #25D366);
  border-radius: 24px 24px 0 0;
}
.modal-card__accent-bar--orange {
  background: linear-gradient(90deg, #D7AA42, #C4972F, #D7AA42);
}

/* Close button */
.modal-x {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: #f5f5f5;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  color: #999;
  transition: all .25s;
}
.modal-x:hover { background: #eee; color: #333; transform: rotate(90deg); }
.modal-x--disabled { opacity: 0.3; cursor: default; }
.modal-x--disabled:hover { background: #f5f5f5; color: #999; transform: none; }

/* Body */
.modal-card__body {
  padding: 32px 32px 28px;
  text-align: center;
}

/* Icon ring */
.modal-card__icon-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(37,211,102,0.08);
  border: 2px solid rgba(37,211,102,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-card__icon-ring--orange {
  background: rgba(236,141,46,0.08);
  border-color: rgba(236,141,46,0.2);
}

/* Title */
.modal-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.35;
}
.text-green { color: #25D366; }
.modal-card__sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.5;
}
.modal-card__note {
  font-size: 11px;
  color: #bbb;
  margin-top: 16px;
}

/* Phone input with prefix */
.modal-card__phone-wrap {
  display: flex;
  align-items: center;
  border: 2px solid #e8e8ef;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  transition: border .3s;
}
.modal-card__phone-wrap:focus-within {
  border-color: #25D366;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.08);
}
.modal-card__phone-prefix {
  padding: 16px 14px 16px 18px;
  font-size: 16px;
  font-weight: 600;
  color: #555;
  background: #f9f9fc;
  border-right: 1px solid #e8e8ef;
  user-select: none;
}
.modal-card__phone-input {
  flex: 1;
  border: none;
  padding: 16px 14px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.5px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  background: transparent;
}
.modal-card__phone-input::placeholder { color: #ccc; letter-spacing: 0; font-weight: 400; font-size: 15px; }

/* Buttons */
.modal-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 15px 28px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all .3s ease;
  margin-top: 6px;
}
.modal-btn--green {
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
.modal-btn--green:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.4); }
.modal-btn--orange {
  background: linear-gradient(135deg, #D7AA42, #C4972F);
  color: #fff;
  box-shadow: 0 6px 24px rgba(236,141,46,0.3);
}
.modal-btn--orange:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(236,141,46,0.4); }
.modal-btn--ghost {
  background: transparent;
  color: #999;
  font-weight: 500;
  padding: 12px;
  margin-top: 4px;
}
.modal-btn--ghost:hover { color: #555; }

/* ── Step Progress Dots ── */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}
.step-progress__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  transition: all .4s ease;
  flex-shrink: 0;
}
.step-progress__dot.active {
  background: #D7AA42;
  box-shadow: 0 0 0 4px rgba(236,141,46,0.15);
}
.step-progress__dot.done {
  background: #25D366;
}
.step-progress__line {
  width: 50px; height: 3px;
  background: #e8e8ef;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.step-progress__fill {
  position: absolute; left: 0; top: 0;
  height: 100%; width: 0;
  background: linear-gradient(90deg, #25D366, #D7AA42);
  border-radius: 3px;
  transition: width .4s ease;
}

/* ── Step Content ── */
.step-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(236,141,46,0.08), rgba(236,141,46,0.04));
  border: 1.5px solid rgba(236,141,46,0.15);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.35;
}

/* Step options (radio) */
.step-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.step-options--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.step-opt { cursor: pointer; }
.step-opt input[type="radio"] { display: none; }
.step-opt__box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 2px solid #eef0f5;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  transition: all .25s ease;
  background: #fafbfd;
}
.step-opt__box--compact {
  justify-content: center;
  padding: 14px 12px;
  font-size: 14px;
}
.step-opt__box svg { color: #ccc; flex-shrink: 0; transition: color .25s; }
.step-opt:hover .step-opt__box {
  border-color: #D7AA42;
  background: #fffaf5;
}
.step-opt input:checked + .step-opt__box {
  border-color: #D7AA42;
  background: linear-gradient(135deg, #fffaf5, #fff7ee);
  color: #1a1a2e;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(236,141,46,0.1);
}
.step-opt input:checked + .step-opt__box svg { color: #D7AA42; }

/* Step input fields (icon + input) */
.step-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #eef0f5;
  border-radius: 14px;
  padding: 4px 16px;
  margin-bottom: 14px;
  background: #fafbfd;
  transition: all .3s;
}
.step-field:focus-within {
  border-color: #D7AA42;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(236,141,46,0.06);
}
.step-field svg { flex-shrink: 0; }
.step-field input {
  flex: 1;
  border: none;
  padding: 13px 0;
  font-size: 15px;
  outline: none;
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  background: transparent;
}
.step-field input::placeholder { color: #bbb; }
.step-field input.error { color: #e74c3c; }
.step-field:has(input.error) { border-color: #e74c3c; background: #fff5f5; }

/* Offer list in popup3 */
.modal-offer-list {
  background: #fffaf5;
  border: 1px solid rgba(236,141,46,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  text-align: left;
}
.modal-offer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  padding: 5px 0;
}
.modal-offer-item svg { flex-shrink: 0; }

/* Form */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: #f9f9f9;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 13px 16px;
  color: #2e2e2e;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all .3s;
}
.form-group input:focus,
.form-group select:focus { border-color: #D7AA42; background: #fff; box-shadow: 0 0 0 3px rgba(236,141,46,0.1); }
.form-group input.error { border-color: #e74c3c; background: #ffdede; }
.form-note { font-size: 11px; color: #aaa; text-align: center; margin-top: 10px; }
.field-error { display: block; font-size: 11px; color: #e74c3c; margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Offer Box */
.offer-box {
  background: linear-gradient(135deg, #fdf6ee, #fff9f0);
  border: 1px solid rgba(236,141,46,0.2);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.offer-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #D7AA42; margin-bottom: 10px; }
.offer-item {
  font-size: 13px; color: #555; padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
}
.offer-item::before {
  content: '';
  width: 16px; height: 16px;
  background: #D7AA42;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Survey Steps (Popup 2) */
.survey-progress {
  height: 4px;
  background: #f0f0f0;
  border-radius: 4px;
  margin-bottom: 22px;
  overflow: hidden;
}
.survey-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #D7AA42, #C4972F);
  border-radius: 4px;
  width: 33%;
  transition: width .4s ease;
}
.survey-step { display: none; }
.survey-step.active { display: block; }
.survey-q { font-size: 16px; font-weight: 600; color: #1a1a2e; margin-bottom: 18px; text-align: center; }
.survey-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.survey-opt {
  padding: 14px 18px;
  border: 1.5px solid #e8e8ef;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #444;
  text-align: center;
  transition: all .3s;
  font-weight: 500;
}
.survey-opt:hover { border-color: #D7AA42; background: #fdf6ee; }
.survey-opt.selected { border-color: #D7AA42; background: linear-gradient(135deg, #D7AA42, #C4972F); color: #fff; }
.survey-btns { display: flex; gap: 10px; }

/* Lead step animation */
.lead-step { animation: modalSlide .35s ease-out; }

@keyframes shake {
  0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)}
}

/* ════════════════════════════════════════
   THANK YOU PAGE (Creative Overlay)
════════════════════════════════════════ */
.ty-overlay {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: linear-gradient(170deg, #0f0f1a 0%, #1a1a2e 50%, #0f3460 100%);
  align-items: center; justify-content: center;
  padding: 24px;
  overflow-y: auto;
}
.ty-overlay.active { display: flex; }
#confettiCanvas {
  position: fixed; inset: 0; z-index: 601;
  pointer-events: none;
  width: 100%; height: 100%;
}

.ty-card {
  text-align: center;
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 602;
  animation: tySlideUp .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes tySlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Animated checkmark */
.ty-anim-ring {
  width: 90px; height: 90px;
  margin: 0 auto 24px;
}
.ty-checkmark {
  width: 90px; height: 90px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #D7AA42;
  stroke-miterlimit: 10;
}
.ty-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke: #D7AA42;
  animation: tyStroke .6s cubic-bezier(0.65,0,0.45,1) .3s forwards;
}
.ty-checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #D7AA42;
  stroke-width: 3;
  animation: tyStroke .4s cubic-bezier(0.65,0,0.45,1) .7s forwards;
}
@keyframes tyStroke { to { stroke-dashoffset: 0; } }

.ty-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.ty-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 30px;
}

/* Countdown timer box */
.ty-timer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(236,141,46,0.1);
  border: 1px solid rgba(236,141,46,0.25);
  border-radius: 14px;
  padding: 16px 24px;
  margin-bottom: 28px;
}
.ty-timer-text {
  text-align: left;
}
.ty-timer-text span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.ty-timer-text strong {
  font-size: 22px;
  font-weight: 800;
  color: #D7AA42;
  letter-spacing: 2px;
}

/* Action buttons */
.ty-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
}
.ty-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all .3s ease;
  text-decoration: none;
}
.ty-btn-wa {
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.ty-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.4); }
.ty-btn-call {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(236,141,46,0.4);
  color: #D7AA42;
}
.ty-btn-call:hover { background: rgba(236,141,46,0.1); transform: translateY(-2px); }

/* Steps timeline */
.ty-steps {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}
.ty-steps-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D7AA42;
  margin-bottom: 18px;
}
.ty-step-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ty-step-item:last-child { border-bottom: none; }
.ty-step-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #D7AA42, #C4972F);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.ty-step-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.ty-step-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.ty-back-btn {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  transition: color .3s;
}
.ty-back-btn:hover { color: #D7AA42; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .banner-desktop { display: none; }
  .banner-mobile { display: block; }
  .hero-banner { min-height: auto; }
  .banner-fallback { display: none; }
  .banner-fallback h1 { font-size: 34px; }
  .banner-fallback p { font-size: 14px; }
  .bf-stats { gap: 14px; }
  .bf-stat strong { font-size: 17px; }
  .bf-stat { font-size: 12px; }
  .bf-sep { height: 28px; }
  .btn-lg { padding: 12px 28px; font-size: 14px; }
  .header-phone { display: none; }

  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 14px; margin-bottom: 32px; }

  /* Stat strip — 2x2 grid on tablet */
  .stat-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 28px 20px;
  }
  .stat-divider { display: none; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 11px; }

  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 22px; }
  .why-section { padding: 60px 20px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-section { padding: 60px 20px; }
  .price-amount { font-size: 32px; }

  .amenities-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .amenities-section { padding: 60px 20px; }

  .location-grid { grid-template-columns: 1fr; gap: 14px; }
  .location-section { padding: 60px 20px; }

  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-section { padding: 60px 20px; }

  .lead-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .lead-section { padding: 60px 20px; }
  .lead-left h2 { font-size: 24px; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; gap: 36px; }
  .contact-heading { font-size: 26px; }
  .contact-left { text-align: center; }
  .contact-subtext { max-width: 100%; }
  .contact-hours { justify-content: center; }

  /* Modals */
  .modal-card--steps { padding: 28px 24px 24px; }
  .step-title { font-size: 18px; }
  .step-options--grid { grid-template-columns: 1fr 1fr; }
  .modal-card__title { font-size: 20px; }
}
@media (max-width: 480px) {
  /* Hero mobile */
  .hero-banner { min-height: auto; }
  .banner-mobile { display: block; width: 100%; height: auto; }
  .bf-badge { font-size: 11px; padding: 6px 16px; margin-bottom: 16px; }
  .banner-fallback h1 { font-size: 26px; }
  .banner-fallback p { font-size: 13px; margin-bottom: 20px; }
  .bf-stats { gap: 10px; margin-bottom: 20px; }
  .bf-stat strong { font-size: 15px; }
  .bf-stat { font-size: 11px; }
  .bf-sep { height: 24px; }
  .btn-lg { padding: 11px 24px; font-size: 13px; }

  /* Header */
  .logo { font-size: 20px; }
  .countdown-box { padding: 5px 10px; font-size: 12px; }
  .countdown-timer { font-size: 14px; min-width: 36px; }

  .section-title { font-size: 22px; }
  .section-badge { font-size: 11px; padding: 5px 14px; letter-spacing: 1.5px; }

  /* Stat strip — stacked 2x2 */
  .stat-strip-inner { gap: 16px; padding: 22px 16px; }
  .stat-number { font-size: 20px; }

  .why-card h3 { font-size: 16px; }
  .why-card p { font-size: 13px; }

  .pricing-grid { max-width: 100%; }
  .price-card { padding: 32px 22px; }
  .price-card h3 { font-size: 24px; }
  .price-amount { font-size: 28px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .amenity-item { padding: 18px 12px; }
  .amenity-item span { font-size: 12px; }

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

  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-stat-num { font-size: 24px; }

  .lead-form-box { padding: 28px 20px; }
  .lead-left h2 { font-size: 22px; }

  .popup-head { padding: 20px 20px 18px; }
  .popup-body { padding: 18px 20px 22px; }
  .popup-head h2 { font-size: 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* Fixed CTA smaller on mobile */
  .cta-call { font-size: 13px; padding: 12px; }
  .cta-whatsapp { padding: 12px 16px; }

  /* Modals 480px */
  .modal-card { border-radius: 20px; }
  .modal-card--steps { padding: 24px 20px 20px; }
  .modal-card__body { padding: 24px 20px 22px; }
  .modal-card__title { font-size: 18px; }
  .modal-card__phone-prefix { padding: 14px 10px 14px 14px; font-size: 14px; }
  .modal-card__phone-input { font-size: 16px; padding: 14px 10px; }
  .step-title { font-size: 17px; margin-bottom: 18px; }
  .step-icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px; }
  .step-icon svg { width: 26px; height: 26px; }
  .step-opt__box { padding: 13px 14px; font-size: 14px; }
  .step-opt__box--compact { padding: 12px 10px; font-size: 13px; }
  .step-options--grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .step-field { padding: 2px 12px; }
  .step-field input { padding: 11px 0; font-size: 14px; }
  .modal-btn { padding: 13px 20px; font-size: 14px; border-radius: 12px; }
  .step-progress { margin-bottom: 20px; }
}

/* Add padding at bottom for fixed CTA */
body { padding-bottom: 56px; }
