/* ===================================================
   AYODHYA CITY – Premium Real Estate Landing Page CSS
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #C9972A;
  --gold-light: #F0C04A;
  --gold-dark: #A07820;
  --deep-navy: #0B1A35;
  --navy: #132244;
  --navy-light: #1E3260;
  --white: #FFFFFF;
  --off-white: #F9F7F2;
  --cream: #FDF8EE;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #8888AA;
  --border: rgba(201,151,42,0.2);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(201,151,42,0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  padding-bottom: 80px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== SECTION SHARED ===== */
.section { padding: 80px 0; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(201,151,42,0.2);
  color: var(--gold-light);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,26,53,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: var(--transition);
}
.top-nav.scrolled {
  background: rgba(11,26,53,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img-nav {
  height: 70px;
  width: auto;
  transition: var(--transition);
  background: transparent;
  border: none;
}
.logo-img-nav:hover {
  transform: scale(1.05);
}
.nav-ctas { display: flex; gap: 12px; align-items: center; }
.nav-btn {
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}
.nav-btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}
.nav-btn-outline:hover { background: var(--gold); color: var(--deep-navy); }
.nav-btn-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-navy);
  font-weight: 700;
}
.nav-btn-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
  background: var(--deep-navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}
.hero-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35, #FF9F1C);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
  margin-bottom: 24px;
  animation: offerPulse 2s ease-in-out infinite;
}
@keyframes offerPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); box-shadow: 0 4px 25px rgba(255,107,53,0.6); }
}
.hero-content {
  flex: 1;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.97);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,151,42,0.1);
}
.hero-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 32px;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.highlight-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(11, 26, 53, 0.05);
  border: 1.5px solid var(--gold);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.highlight-badge:hover { background: rgba(201,151,42,0.25); }
.pulse-badge { animation: badgePulse 2.5s ease-in-out infinite; }
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,151,42,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201,151,42,0); }
}
.hb-icon { font-size: 16px; }
.hero-btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* CTA BUTTONS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}
.cta-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.cta-secondary {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  transition: var(--transition);
  white-space: nowrap;
}
.cta-secondary:hover { background: var(--gold); color: var(--deep-navy); transform: translateY(-3px); }

/* HERO FORM WRAP */
.hero-form-wrap {
  width: 380px;
  flex-shrink: 0;
}
.hero-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}
.form-top-label {
  background: linear-gradient(135deg, #FF6B35, #FF9F1C);
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
  text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E0E0E8;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,42,0.15);
}
.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--deep-navy);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 24px;
}
.success-icon { font-size: 40px; margin-bottom: 12px; }
.form-success h4 { font-size: 20px; font-weight: 700; color: #2ECC71; margin-bottom: 8px; }
.form-success p { color: var(--text-mid); font-size: 14px; }

/* ===== HIGHLIGHTS STRIP ===== */
.highlights-strip {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 48px;
}
.strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.strip-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  white-space: nowrap;
}
.strip-divider {
  width: 1px;
  height: 50px;
  background: rgba(201,151,42,0.3);
}

/* ===== PROJECT HIGHLIGHTS ===== */
.project-highlights { background: var(--off-white); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.hc-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.highlight-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.highlight-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== AMENITIES ===== */
.amenities-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.amenities-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.amenities-bg-img { width: 100%; height: 100%; object-fit: cover; }
.amenities-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,26,53,0.93), rgba(30,50,96,0.90));
}
.amenities-content {
  position: relative;
  z-index: 2;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenity-item {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,151,42,0.25);
  backdrop-filter: blur(8px);
  padding: 28px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.amenity-item:hover {
  background: rgba(201,151,42,0.15);
  border-color: var(--gold);
  transform: translateY(-5px);
}
.amenity-item span { font-size: 36px; display: block; margin-bottom: 10px; }
.amenity-item p { font-size: 13px; color: var(--white); font-weight: 500; }

/* ===== PRICING ===== */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pricing-card-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--deep-navy) 0%, var(--navy) 100%);
  color: white;
}
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
}
.featured-badge { background: linear-gradient(135deg, #FF6B35, #FF9F1C); color: white; }
.pricing-type {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.pricing-area {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.pricing-card-featured .pricing-area { color: rgba(255,255,255,0.7); }
.pricing-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-price { color: var(--gold-light); border-color: rgba(201,151,42,0.3); }
.pricing-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid #F0F0F8;
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.1); }
.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  background: var(--off-white);
  color: var(--gold-dark);
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.pricing-cta:hover { background: var(--gold); color: var(--deep-navy); }
.pricing-cta-featured {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-navy);
  border-color: var(--gold-light);
}
.pricing-cta-featured:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.pricing-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 24px;
}



/* ===== FLOOR PLAN ===== */
.floor-plan-section { background: var(--white); }
.fp-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 40px;
}
.fp-tab {
  padding: 13px 48px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  background: var(--off-white);
  color: var(--text-mid);
  transition: var(--transition);
}
.fp-tab-active { background: var(--gold); color: var(--deep-navy); }
.fp-tab:hover:not(.fp-tab-active) { background: var(--cream); }
.fp-hidden { display: none !important; }
.fp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fp-image {
    border-radius: 16px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
.fp-image img { width: 100%; height: auto; max-height: 450px; object-fit: contain; }
.fp-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.fp-area { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; }
.fp-rooms { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.fp-rooms li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: 10px;
}
.room-icon { font-size: 20px; }
.fp-download-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--deep-navy);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
}
.fp-download-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

/* ===== LOCATION ===== */
.location-section { background: var(--off-white); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.loc-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.loc-point:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.loc-icon { font-size: 22px; flex-shrink: 0; }
.loc-point strong { font-size: 15px; color: var(--text-dark); font-weight: 600; }
.loc-point p { font-size: 13px; color: var(--text-mid); margin-top: 2px; }
.loc-cta { margin-top: 8px; }
.location-map-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.location-map-img { width: 100%; height: 420px; object-fit: cover; }
.map-pin-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11,26,53,0.9);
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* ===== GUDI PADWA ===== */
.gudi-padwa-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.gudi-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #8B0000, #C0392B, #E74C3C, #C0392B, #8B0000);
  z-index: 0;
}
.gudi-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,215,0,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255,215,0,0.12) 0%, transparent 50%);
}
.gudi-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.gudi-emoji { font-size: 40px; margin-bottom: 16px; }
.gudi-tag {
  display: inline-block;
  background: rgba(255,215,0,0.2);
  border: 1px solid rgba(255,215,0,0.5);
  color: #FFD700;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.gudi-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.gudi-sub { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 48px; line-height: 1.7; }
.gudi-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.gudi-offer-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: var(--transition);
}
.gudi-offer-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-5px); }
.gudi-featured {
  background: rgba(255,215,0,0.15);
  border-color: rgba(255,215,0,0.5);
}
.goc-icon { font-size: 36px; margin-bottom: 10px; }
.gudi-offer-card h4 { font-size: 17px; font-weight: 700; color: #FFD700; margin-bottom: 8px; }
.gudi-offer-card p { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.gudi-countdown { margin-bottom: 36px; }
.countdown-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cd-unit {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 70px;
  text-align: center;
  border: 1px solid rgba(255,215,0,0.3);
}
.cd-unit span {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #FFD700;
  display: block;
  line-height: 1;
}
.cd-unit small { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.cd-colon { font-size: 28px; font-weight: 800; color: #FFD700; margin-top: -10px; }
.gudi-cta {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #8B0000;
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(255,215,0,0.4);
}
.gudi-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255,215,0,0.5); }

/* ===== SITE VISIT FORM ===== */
.site-visit-section { background: var(--white); }
.sv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sv-perks { display: flex; flex-direction: column; gap: 14px; }
.sv-perk {
  background: var(--off-white);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-left: 3px solid var(--gold);
}
.sv-form-wrap {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.sv-form .form-submit-btn {
  background: linear-gradient(135deg, #132244, #1E3260);
  color: var(--gold-light);
}
.sv-form .form-submit-btn:hover { box-shadow: 0 8px 30px rgba(19,34,68,0.4); }
.sv-submit-btn { color: var(--gold-light) !important; }

/* ===== TRUST SECTION ===== */
.trust-section { background: var(--off-white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.trust-card {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.trust-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.tb-item:hover { border-color: var(--gold); box-shadow: 0 4px 15px rgba(201,151,42,0.15); }
.tb-icon { font-size: 18px; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-stars { font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { font-size: 13px; font-weight: 600; color: var(--gold-dark); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  padding: 80px 0;
  text-align: center;
}
.cta-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 48px; }
.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-big-btn {
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  white-space: nowrap;
}
.cta-big-btn:hover { transform: translateY(-4px); }
.cta-price { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--deep-navy); }
.cta-brochure { background: #2ECC71; color: white; }
.cta-floor { background: #3498DB; color: white; }
.cta-visit { background: #E74C3C; color: white; }
.cta-avail { background: #9B59B6; color: white; }
.cta-big-btn:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #060E1C, var(--deep-navy));
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  margin-bottom: 20px;
}
.logo-img-footer {
  height: 85px;
  width: auto;
  background: transparent;
  border: none;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-rera {
  font-size: 11px;
  color: var(--gold);
  background: rgba(201,151,42,0.1);
  border: 1px solid rgba(201,151,42,0.2);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 6px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-contact a { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--deep-navy); }
.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  background: linear-gradient(135deg, var(--deep-navy), var(--navy));
  border-top: 1px solid rgba(201,151,42,0.3);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}
.sbb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  color: white;
  transition: var(--transition);
  gap: 4px;
}
.sbb-icon { font-size: 22px; }
.sbb-call { background: rgba(46,204,113,0.15); border-right: 1px solid rgba(255,255,255,0.08); }
.sbb-call:hover { background: #2ECC71; }
.sbb-whatsapp { background: rgba(37,211,102,0.15); border-right: 1px solid rgba(255,255,255,0.08); }
.sbb-whatsapp:hover { background: #25D366; }
.sbb-brochure { background: rgba(201,151,42,0.15); }
.sbb-brochure:hover { background: var(--gold); color: var(--deep-navy); }

/* ===== STICKY SIDE CTA ===== */
.sticky-side-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
}
.side-cta-btn {
  display: block;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: var(--deep-navy);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 20px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0 10px 10px 0;
  transition: var(--transition);
  box-shadow: -4px 0 20px rgba(201,151,42,0.4);
}
.side-cta-btn:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: -6px 0 30px rgba(201,151,42,0.6);
}

/* ===== RESPONSIVE & MOBILE OPTIMIZATION ===== */

/* Desktop & Large Screens Revisions */
@media (max-width: 1200px) {
  .hero-content { padding-left: 40px; }
  .hero-form-wrap { padding-right: 40px; }
  .strip-item { padding: 10px 30px; }
}

/* Tablets (landscape) and smaller laptops */
@media (max-width: 1024px) {
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-container { flex-direction: column; text-align: center; gap: 60px; }
  .hero-content { max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-highlights { justify-content: center; }
  .hero-btn-group { justify-content: center; }
  .hero-form-wrap { width: 100%; max-width: 450px; }
  .offer-badge { margin-left: auto; margin-right: auto; }
  
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }

  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .sv-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* Regular Tablets and Large Phones */
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .top-nav { padding: 8px 0; }
  .nav-btn-outline { display: none; }
  .nav-logo { font-size: 18px; }
  .logo-img-nav { height: 55px; }
  
  .highlights-strip { padding: 15px 0; }
  .strip-inner { gap: 10px; }
  .strip-divider { display: none; }
  .strip-item { padding: 5px 15px; }
  .strip-num { font-size: 20px; }
  .strip-label { font-size: 10px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
  .fp-layout { grid-template-columns: 1fr; }
  .fp-image img { max-height: 350px; }
  .fp-tab { padding: 12px 25px; font-size: 14px; }
  
  .gudi-offers { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 30px; }
  .cd-unit { padding: 12px 10px; min-width: 60px; }
  .cd-unit span { font-size: 24px; }
  
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .tb-item { padding: 8px 16px; font-size: 12px; }
  
  .cta-section-title { font-size: 28px; }
  .sticky-side-cta { display: none; } /* Hide side CTA on smaller tablets to avoid clutter */
}

/* Small Phones */
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .logo-img-nav { height: 45px; }
  .hero-sub { font-size: 15px; }
  .hero-btn-group { flex-direction: column; width: 100%; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
  
  .section-title { font-size: 24px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-item { padding: 20px 10px; }
  .amenity-item span { font-size: 28px; }
  

  
  .trust-grid { grid-template-columns: 1fr; }
  .trust-num { font-size: 32px; }
  
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-contact p { font-size: 13px; }
  
  .sbb-label { font-size: 10px; }
  .sbb-icon { font-size: 18px; }
  
  .countdown-timer { gap: 4px; }
  .cd-unit { min-width: 50px; }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--bg-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.pc-header {
  padding: 32px;
  background: linear-gradient(135deg, var(--navy), #0a1e3d);
  color: var(--white);
  text-align: center;
  position: relative;
}

.pc-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.pc-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pc-subtitle {
  font-size: 14px;
  opacity: 0.8;
}

.pc-body {
  padding: 32px;
  flex: 1;
}

.pc-price-wrap {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.pc-price-label {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.pc-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
}

.pc-price span {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 600;
}

.pc-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.spec-label {
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-value {
  font-weight: 700;
  color: var(--text-dark);
}

.pc-footer {
  padding: 0 32px 32px;
}

.pc-cta {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}

.pc-cta-primary {
  background: var(--gold);
  color: var(--navy);
}

.pc-cta-primary:hover {
  background: var(--navy);
  color: var(--white);
}

.pricing-footer-info {
  text-align: center;
  margin-top: 40px;
  color: var(--text-mid);
  font-size: 14px;
}

@media (max-width: 768px) {
  .pricing-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

