:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --color-dark-btn: #1f242b;
  --color-dark-hover: #0f1318;
  --color-text-main: #111827;
  --color-text-muted: #374151;
  --color-gold: #c59b27;
  --color-gold-hover: #b38918;

  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(0, 0, 0, 0.65);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);

  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: #0f172a;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

section {
  scroll-margin-top: 80px;
}

/* Top Navigation Bar */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 32px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-fast);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Mobile Navigation Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #111827;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 10005;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  pointer-events: auto !important;
}

.mobile-nav-toggle:focus {
  outline: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-height: 52px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-links a.active,
.nav-links a:hover {
  color: #000;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link i {
  color: #111827;
}

.btn-nav-enquire {
  padding: 10px 22px;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.btn-nav-enquire:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.partner-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  margin-left: 4px;
  flex-shrink: 0;
}

.partner-logo-img {
  height: 28px;
  width: auto;
  max-height: 32px;
  object-fit: contain;
  display: block;
}

.partner-rera-no {
  font-size: 8.5px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin-top: 2px;
  white-space: nowrap;
}

/* Intermediate Screen Adjustments for Zoom / Narrow Laptops */
@media (min-width: 1025px) and (max-width: 1380px) {
  .nav-container {
    gap: 8px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-actions {
    gap: 10px;
  }

  .phone-link {
    font-size: 12px;
  }

  .btn-nav-enquire {
    padding: 8px 16px;
    font-size: 12px;
  }

  .partner-logo-box {
    padding: 4px 6px;
    margin-left: 2px;
  }

  .partner-logo-img {
    height: 24px;
  }

  .partner-rera-no {
    font-size: 8px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8% 60px 8%;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-container-main {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.hero-form-col {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 410px;
  margin-top: 120px;
}

.tan-form-card.hero-form {
  background: linear-gradient(145deg, rgba(216, 188, 143, 0.4) 0%, rgba(250, 249, 246, 0.45) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  padding: 18px 20px;
}

.tan-form-card.hero-form .tan-card-header h3 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 18px;
}

.tan-form-card.hero-form .tan-card-form {
  gap: 10px;
}

.tan-form-card.hero-form .tan-input-group input {
  padding: 10px 14px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.9);
}

.tan-form-card.hero-form .btn-tan-submit {
  padding: 10px 36px;
  font-size: 14px;
}

.tan-form-card.hero-form .tan-consent-label {
  color: #111827;
  font-weight: 600;
  font-size: 10px;
}

/* Campaign Badge Top Right */
.campaign-badge {
  position: absolute;
  top: 100px;
  right: 8%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #111827;
  user-select: none;
}

.badge-sun-icon {
  width: 65px;
  height: 35px;
  color: #111827;
  margin-bottom: 2px;
}

.sun-svg {
  width: 100%;
  height: 100%;
}

.badge-brand {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.1;
  color: #111827;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.1;
  color: #111827;
  margin-top: 1px;
}

.badge-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.badge-sub .line {
  display: inline-block;
  width: 14px;
  height: 1.5px;
  background-color: #374151;
}

/* Hero Content Area */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 580px;
  margin-top: 20px;
}

/* Main Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: #111827;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Offer Card Box */
.offer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.8px solid #1f2937;
  border-radius: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  max-width: 540px;
}

.offer-col {
  flex: 1;
  text-align: center;
}

.offer-value {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 800;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.offer-label {
  font-size: 11px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-transform: uppercase;
}

.offer-divider {
  width: 1.5px;
  height: 38px;
  background-color: #1f2937;
  opacity: 0.85;
}

/* Price Subtitle */
.price-tagline-luxury {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  background: rgba(31, 41, 55, 0.35);
  /* Translucent charcoal grey glassmorphism */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /*Glowing frosted border */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.price-lbl {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffd275;
  /* Highly visible warm gold */
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.price-val {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  color: #ffffff;
  /* Contrast white price amount */
  letter-spacing: -0.5px;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.onwards-text {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 500;
  color: #e5e7eb;
  /* Soft white onwards text */
  text-transform: lowercase;
  font-style: italic;
  letter-spacing: 0;
}

/* Action CTA Group */
.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background-color: var(--color-dark-btn);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary-dark:hover {
  background-color: var(--color-dark-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 11px;
}

.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.35);
  color: #111827;
  border: 1.8px solid #1f2937;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-hand {
  font-size: 16px;
}

/* Disclaimer Text */
.disclaimer-text {
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.2px;
}

/* Modal Windows */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.92) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  font-size: 16px;
  color: #4b5563;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #e5e7eb;
  color: #111827;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.modal-badge.gold {
  background: #fef3c7;
  color: #b45309;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

/* Floor Plan Tabs */
.floor-plan-preview {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
}

.preview-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;

}

.tab-btn {
  flex: 1;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.preview-details h4 {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.preview-details p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.price-highlight {
  font-size: 14px;
  font-weight: 800;
  color: #2563eb;
}

/* Form Styles */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #111827;
  background: #ffffff;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.btn-submit-modal {
  width: 100%;
  padding: 14px;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-fast);
  margin-top: 8px;
}

.btn-submit-modal:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-submit-modal.gold-btn {
  background: #b45309;
}

.btn-submit-modal.gold-btn:hover {
  background: #92400e;
}

/* Success Messages */
.download-success,
.enquire-success {
  text-align: center;
  padding: 20px 10px;
}

.success-icon {
  width: 56px;
  height: 56px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.success-icon.gold-icon {
  background: #fef3c7;
  color: #b45309;
}

.download-success h3,
.enquire-success h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.download-success p,
.enquire-success p {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-download-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition-fast);
}

.btn-download-direct:hover {
  background: #1d4ed8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-actions {
    margin-left: auto;
    margin-right: 12px;
    gap: 12px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    gap: 24px;
    padding: 100px 32px 32px 32px;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.12);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    z-index: 10000;
    visibility: hidden;
  }

  .nav-links.active {
    right: 0;
    visibility: visible;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    display: block;
    padding: 6px 0;
  }

  .nav-links a.active::after {
    bottom: -2px;
    height: 2px;
  }

  .partner-logo-box {
    display: none !important;
  }

  .hero-section {
    padding: 120px 6% 60px 6%;
    align-items: flex-start;
  }

  .hero-container-main {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .hero-form-col {
    justify-content: center;
    max-width: 460px;
    margin-top: 0;
  }

  .campaign-badge {
    position: relative;
    top: auto;
    right: auto;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 24px;
  }

  .badge-sub {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .phone-link {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .top-nav {
    padding: 12px 16px;
  }

  .btn-nav-enquire {
    padding: 8px 16px;
    font-size: 12px;
  }

  .hero-section {
    padding: 100px 20px 40px 20px;
  }

  .hero-headline {
    font-size: 26px;
  }

  .offer-card {
    padding: 14px 10px;
  }

  .offer-col {
    padding: 0 4px;
  }

  .offer-value {
    font-size: 16px;
  }

  .offer-label {
    font-size: 8.5px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-dark,
  .btn-secondary-glass {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================================================
   ABOUT US SECTION STYLES
   ========================================================================== */
.about-section {
  position: relative;
  background-color: #ffffff;
  padding: 100px 8%;
  overflow: hidden;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-content {
  flex: 1.1;
  max-width: 540px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ab8646;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.2vw, 42px);
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.about-paragraph {
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 32px;
}

.btn-bronze {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: #ab8646;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 8px 20px rgba(171, 134, 70, 0.22);
}

.btn-bronze:hover {
  background-color: #927036;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(171, 134, 70, 0.35);
}

/* Image Collage Container */
.about-image-collage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 520px;
  padding-right: 20px;
}

.img-main-wrapper {
  position: relative;
  width: 380px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img-main-wrapper:hover .img-main {
  transform: scale(1.03);
}

.img-overlap-wrapper {
  position: absolute;
  bottom: 30px;
  left: 20px;
  width: 260px;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

.img-overlap {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.img-overlap-wrapper:hover .img-overlap {
  transform: scale(1.04);
}

/* Responsive Overrides for About Us Section */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-image-collage {
    width: 100%;
    justify-content: center;
    padding-right: 0;
    min-height: 440px;
  }

  .img-main-wrapper {
    width: 320px;
    height: 400px;
  }

  .img-overlap-wrapper {
    width: 220px;
    height: 220px;
    left: calc(50% - 220px);
    bottom: 20px;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 60px 20px;
  }

  .img-main-wrapper {
    width: 100%;
    height: 320px;
  }

  .img-overlap-wrapper {
    width: 180px;
    height: 180px;
    left: 10px;
    bottom: -10px;
  }
}

/* ==========================================================================
   HIGHLIGHTS SECTION STYLES
   ========================================================================== */
.highlights-section {
  position: relative;
  background-color: #faf9f6;
  padding: 100px 8%;
  overflow: hidden;
}

.highlights-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.highlights-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.clubhouse-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.highlights-image:hover .clubhouse-img {
  transform: scale(1.03);
}

.highlights-content {
  flex: 1.1;
  max-width: 560px;
}

.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ab8646;
  background: rgba(171, 134, 70, 0.08);
  border-radius: 12px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.highlight-item:hover .highlight-icon {
  background: #ab8646;
  color: #ffffff;
  transform: translateY(-2px);
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
}

.highlight-text {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  line-height: 1.4;
}

/* Responsive Overrides for Highlights Section */
@media (max-width: 1024px) {
  .highlights-container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }

  .highlights-content {
    max-width: 100%;
  }

  .highlights-image {
    width: 100%;
  }

  .clubhouse-img {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .highlights-section {
    padding: 60px 20px;
  }

  .clubhouse-img {
    height: 280px;
  }

  .highlight-text {
    font-size: 14px;
  }

  .highlight-icon {
    width: 38px;
    height: 38px;
  }

  .highlight-icon svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   FLOOR PLAN SECTION STYLES
   ========================================================================== */
.floorplan-section {
  position: relative;
  background-color: #ffffff;
  padding: 90px 8%;
  overflow: hidden;
}

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

.section-header-center {
  text-align: center;
  margin-bottom: 44px;
}

.subtitle-note {
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  color: #4b5563;
  margin-top: 8px;
}

.floorplan-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}

.floorplan-card {
  width: calc(33.333% - 20px);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.floorplan-card:hover {
  transform: translateY(-6px);
  border-color: #ab8646;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.blur-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
}

.blurred-plan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) contrast(1.1);
  transition: filter 0.3s ease;
}

.floorplan-card:hover .blurred-plan-img {
  filter: blur(5px) contrast(1.15);
}

.blur-overlay-prompt {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.blur-overlay-prompt i {
  font-size: 20px;
  color: #ebd054;
}

.floorplan-card:hover .blur-overlay-prompt {
  background: rgba(17, 24, 39, 0.6);
}

.plan-details {
  text-align: center;
  margin-top: 16px;
}

.plan-type {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #1f2937;
  font-style: italic;
}

.plan-area {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin: 4px 0;
}

.plan-price {
  font-size: 14px;
  font-weight: 800;
  color: #034275;
  font-style: italic;
}

.schedule-visit-box {
  text-align: center;
}

.btn-schedule {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background-color: #ebd054;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(235, 208, 84, 0.35);
  transition: var(--transition-fast);
}

.btn-schedule:hover {
  background-color: #d6bb3c;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(235, 208, 84, 0.5);
}

/* Floorplan Unlock Modal Popup (Luxury Gold & Dark Slate Theme) */
.fp-modal-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: scale(0.94);
  transition: var(--transition-smooth);
  border-top: 5px solid #ab8646;
  /* Top luxury gold accent border */
}

.modal-backdrop.active .fp-modal-card {
  transform: scale(1);
}

.fp-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #0f172a;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.fp-modal-close:hover {
  background: #ab8646;
  color: #ffffff;
  transform: scale(1.1);
}

.fp-modal-split {
  display: flex;
  min-height: 440px;
}

.fp-modal-left {
  display: none;
}

.fp-tower-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fp-modal-right {
  flex: 1;
  padding: 36px 32px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.fp-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fp-partner-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.partner-title {
  font-size: 11px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.5px;
}

.partner-sub {
  font-size: 9px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 1px;
}

.fp-main-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}

.stellaris-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #111827;
}

.stellaris-sub {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #4b5563;
}

.fp-form-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 24px;
}

.fp-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fp-form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #111827;
  transition: all 0.2s ease;
}

.fp-form-group input:focus {
  outline: none;
  border-color: #ab8646;
  box-shadow: 0 0 0 3px rgba(171, 132, 67, 0.15);
}

.fp-form-row {
  display: flex;
  gap: 12px;
}

.fp-country-code select {
  padding: 14px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #ffffff;
  color: #111827;
  transition: all 0.2s ease;
}

.fp-country-code select:focus {
  outline: none;
  border-color: #ab8646;
  box-shadow: 0 0 0 3px rgba(171, 132, 67, 0.15);
}

.flex-1 {
  flex: 1;
}

.btn-fp-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #caa355 0%, #ab8646 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(171, 134, 70, 0.3);
}

.btn-fp-submit:hover {
  background: linear-gradient(135deg, #ab8646 0%, #8c6721 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(171, 134, 70, 0.45);
}

.fp-success-msg {
  text-align: center;
  padding: 16px 10px;
}

.fp-success-msg h4 {
  font-size: 18px;
  font-weight: 800;
  color: #ab8646;
  margin-bottom: 6px;
}

.fp-success-msg p {
  font-size: 13px;
  color: #4b5563;
}

.fp-gold-phone-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0f172a;
  color: #ffffff;
  padding: 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  text-decoration: none;
  margin-left: -32px;
  margin-right: -32px;
  margin-top: 28px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: background-color 0.2s ease;
}

.fp-gold-phone-bar:hover {
  background: #1e293b;
}

/* Responsive Overrides for Floor Plan & Modal */
@media (max-width: 900px) {
  .floorplan-card {
    width: calc(50% - 14px);
  }

  .fp-modal-left {
    display: none;
  }

  .fp-modal-right {
    flex: 1;
    padding: 24px 20px 0 20px;
  }

  .fp-gold-phone-bar {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (max-width: 600px) {
  .floorplan-card {
    width: 100%;
    max-width: 100%;
  }

  .floorplan-section {
    padding: 60px 20px;
  }
}

/* ==========================================================================
   LOCATION ADVANTAGES SECTION STYLES
   ========================================================================== */
.location-section {
  position: relative;
  background-color: #faf9f6;
  padding: 100px 8%;
  overflow: hidden;
}

.location-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.location-content {
  flex: 1;
  max-width: 520px;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-icon {
  font-size: 18px;
  color: #ab8646;
  margin-top: 3px;
  flex-shrink: 0;
}

.location-text {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.location-text strong {
  color: #1f2937;
  font-weight: 700;
}

.location-map-wrapper {
  flex: 1.35;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.map-frame-luxury {
  position: relative;
  width: 100%;
  max-width: 720px;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ffffff 0%, #faf6ee 100%);
  border: 1.5px solid rgba(202, 163, 85, 0.45);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
}

.map-frame-luxury:hover {
  transform: translateY(-6px);
  border-color: #caa355;
  box-shadow: 0 30px 65px rgba(202, 163, 85, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.map-img-luxury {
  width: 100%;
  height: 440px;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.map-frame-luxury:hover .map-img-luxury {
  transform: scale(1.02);
}

.map-expand-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(202, 163, 85, 0.5);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.map-frame-luxury:hover .map-expand-badge {
  background: #caa355;
  color: #111827;
  border-color: #caa355;
  transform: scale(1.05);
}

/* Responsive Overrides for Location Section */
@media (max-width: 1024px) {
  .location-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .location-content {
    max-width: 100%;
  }

  .location-map-wrapper {
    width: 100%;
    justify-content: center;
  }

  .map-frame {
    max-width: 100%;
  }

  .map-iframe {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .location-section {
    padding: 60px 20px;
  }

  .location-text {
    font-size: 14px;
  }
}

/* ==========================================================================
   GALLERY CAROUSEL SECTION STYLES
   ========================================================================== */
.gallery-section {
  position: relative;
  background-color: #f8f9fa;
  padding: 80px 0 100px 0;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 36px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.carousel-track-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 30px 0;
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  width: max-content;
}

.carousel-slide {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.4s ease, width 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
  opacity: 0.55;
  width: clamp(220px, 24vw, 320px);
  height: clamp(280px, 30vw, 400px);
  position: relative;
}

.carousel-slide.active {
  opacity: 1;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  width: clamp(480px, 50vw, 720px);
  height: clamp(320px, 34vw, 440px);
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.carousel-slide:hover .slide-img {
  transform: scale(1.04);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  color: #111827;
  font-size: 16px;
  cursor: pointer;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* ==========================================================================
   SITE PLAN SECTION STYLES
   ========================================================================== */
.siteplan-section {
  position: relative;
  background-color: #faf9f6;
  padding: 90px 8%;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.siteplan-container {
  max-width: 1350px;
  margin: 0 auto;
}

.siteplan-flex-split {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
}

.siteplan-map-col {
  flex: 1.4;
  width: 100%;
}

.siteplan-legend-col {
  flex: 1;
  width: 100%;
}

.siteplan-frame-luxury {
  position: relative;
  width: 100%;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #faf6ee 100%);
  border: 1.5px solid rgba(202, 163, 85, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  cursor: pointer;
}

.siteplan-frame-luxury:hover {
  transform: translateY(-6px);
  border-color: #caa355;
  box-shadow: 0 30px 70px rgba(202, 163, 85, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.siteplan-img-luxury {
  width: 100%;
  height: auto;
  max-height: 750px;
  border-radius: 20px;
  display: block;
  object-fit: contain;
  background: #ffffff;
  transition: transform 0.5s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.siteplan-frame-luxury:hover .siteplan-img-luxury {
  transform: scale(1.015);
}

.siteplan-expand-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  padding: 10px 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  border: 1px solid rgba(202, 163, 85, 0.5);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.siteplan-frame-luxury:hover .siteplan-expand-badge {
  background: #caa355;
  color: #111827;
  border-color: #caa355;
  transform: scale(1.05);
}

.siteplan-legend-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  border: 1.5px solid rgba(202, 163, 85, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.legend-card-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #f3f4f6;
}

.legend-card-header h3 i {
  color: #caa355;
}

.legend-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
}

.legend-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #caa355;
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(202, 163, 85, 0.3);
}

.legend-osr-footer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1.5px dashed #caa355;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #374151;
}

.osr-line-indicator {
  width: 24px;
  height: 3px;
  background: #ba5aa3;
  border-radius: 2px;
  display: inline-block;
}

@media (max-width: 1024px) {
  .siteplan-flex-split {
    flex-direction: column;
    gap: 32px;
  }
}

/* Lightbox Modal */
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  background: #ffffff;
  transform: scale(0.92) translateY(20px);
  transition: var(--transition-smooth);
}

.modal-backdrop.active .lightbox-content {
  transform: scale(1) translateY(0);
}

#lightboxImg {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  background: #ffffff;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: #111827;
  color: #ffffff;
  transform: scale(1.1);
}

/* Responsive Overrides for Gallery Carousel */
@media (max-width: 900px) {
  .carousel-track {
    padding: 0 20vw;
    gap: 16px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .carousel-slide {
    width: 65vw;
    height: 250px;
    opacity: 0.5;
  }

  .carousel-slide.active {
    width: 80vw;
    height: 280px;
    opacity: 1;
  }
}

.calculator-sec {
  background-color: #faf9f6 !important;
}

/* Glassmorphism for EMI Calculator Box */
.glass-gold-card {
  background: linear-gradient(135deg, rgba(202, 163, 85, 0.4) 0%, rgba(15, 23, 42, 0.55) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   LEGAL RERA & DISCLAIMER FOOTER STYLES
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #080b12;
  background-image: linear-gradient(rgba(8, 11, 18, 0.94), rgba(8, 11, 18, 0.97)), url('images/hero_bg.webp');
  background-size: cover;
  background-position: center;
  color: #d1d5db;
  padding: 32px 8% 24px 8%;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1050px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.rera-numbers {
  margin-bottom: 10px;
}

.rera-item {
  font-size: 12.5px;
  font-weight: 600;
  color: #e5e7eb;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.disclaimer-intro {
  color: #9ca3af;
  margin-bottom: 8px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-full {
  color: #9ca3af;
  margin-bottom: 8px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}

.btn-toggle-disclaimer {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 11.5px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.btn-toggle-disclaimer:hover {
  color: #caa355;
  text-decoration: underline;
}

.privacy-link-box {
  margin-top: 4px;
}

.privacy-link {
  color: #caa355;
  font-weight: 700;
  font-size: 12.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: #eab308;
  text-decoration: underline;
}

/* ==========================================================================
   PSYCHOLOGICAL LEAD TRIGGER SECTION STYLES
   ========================================================================== */
.lead-trigger-section {
  position: relative;
  background-color: #ffffff;
  padding: 90px 8%;
  color: #111827;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.lead-trigger-section::after {
  content: '';
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: url('images/city_skyline_bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 0.22;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  pointer-events: none;
  z-index: 1;
}

.contact-section-header,
.lead-trigger-container {
  position: relative;
  z-index: 2;
}

.lead-trigger-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.trigger-content-col {
  flex: 1.3;
  max-width: 680px;
}

.trigger-form-col {
  flex: 0.8;
  max-width: 410px;
  width: 100%;
}

/* Contact Us & About Developer Section Styles */
.contact-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-label {
  font-size: 13px;
  font-weight: 800;
  color: #ab8646;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
}

.about-dev-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.about-dev-paragraph {
  font-size: 20px;
  line-height: 1.75;
  color: #4b5563;
}

/* Tan Luxury Card Form (Matching Reference Image) */
.tan-form-card {
  background: linear-gradient(145deg, #d8bc8f 0%, #faf9f6 100%);
  border-radius: 18px;
  padding: 28px 24px;
  max-width: 410px;
  width: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.tan-card-header h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: #8c580c;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.tan-card-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tan-input-group {
  position: relative;
  width: 100%;
}

.tan-input-group input {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #111827;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.tan-input-group input::placeholder {
  color: #9ca3af;
}

.tan-input-group input:focus {
  border-color: #8c580c;
  box-shadow: 0 0 0 3px rgba(140, 88, 12, 0.15);
}

.tan-phone-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding-left: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.tan-country-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  padding-right: 10px;
  border-right: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.tan-phone-group input {
  flex: 1;
  min-width: 0;
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  border: none;
}

.tan-submit-wrapper {
  text-align: center;
  margin-top: 6px;
}

.btn-tan-submit {
  display: inline-block;
  padding: 12px 44px;
  background: #aa8443;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(170, 132, 67, 0.35);
}

.btn-tan-submit:hover {
  background: #947135;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(170, 132, 67, 0.5);
}

.tan-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10.5px;
  line-height: 1.4;
  color: #4a3818;
  cursor: pointer;
  margin-top: 4px;
}

.tan-consent-label input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #8c580c;
  width: 14px;
  height: 14px;
  cursor: pointer;
}

/* ==========================================================================
   ROBUST RESPONSIVE OVERRIDES FOR CONTACT US & ABOUT DEVELOPER SECTION
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .lead-trigger-section {
    padding: 60px 24px !important;
  }

  .lead-trigger-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 36px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .trigger-content-col {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .about-dev-heading {
    text-align: center !important;
    font-size: 26px !important;
  }

  .about-dev-paragraph {
    text-align: center !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    max-width: 800px;
    margin: 0 auto;
  }

  .trigger-form-col {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .tan-form-card {
    max-width: 460px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media screen and (max-width: 640px) {
  .lead-trigger-section {
    padding: 44px 16px !important;
  }

  .contact-section-header {
    margin-bottom: 24px !important;
  }

  .contact-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .about-dev-heading {
    font-size: 20px !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  .about-dev-paragraph {
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .tan-form-card {
    padding: 22px 16px !important;
    border-radius: 16px !important;
    max-width: 100% !important;
  }

  .tan-card-header h3 {
    font-size: 16.5px !important;
    margin-bottom: 14px !important;
  }

  .tan-phone-group {
    padding-left: 8px !important;
  }

  .tan-country-badge {
    padding-right: 6px !important;
    font-size: 12px !important;
  }

  .tan-phone-group input,
  .tan-input-group input {
    font-size: 13.5px !important;
    padding: 10px 12px !important;
  }

  .btn-tan-submit {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
  }

  .tan-consent-label {
    font-size: 10px !important;
    line-height: 1.35 !important;
  }
}

/* Modal Phone Group Layout */
.modal-phone-group {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.modal-phone-group:focus-within {
  border-color: #aa8443;
  box-shadow: 0 0 0 3px rgba(170, 132, 67, 0.15);
}

.modal-country-select {
  border: none !important;
  border-radius: 0 !important;
  background: #f9fafb !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #374151 !important;
  padding: 12px 8px 12px 12px !important;
  border-right: 1px solid #d1d5db !important;
  outline: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  width: auto !important;
  box-shadow: none !important;
}

.modal-phone-group input {
  flex: 1 !important;
  min-width: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 12px 16px !important;
  font-size: 14px !important;
  background: transparent !important;
  width: auto !important;
}

/* Contact Us Form Country Select */
.tan-country-select {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #374151 !important;
  padding-right: 8px !important;
  border-right: 1px solid #e5e7eb !important;
  flex-shrink: 0 !important;
  outline: none !important;
  cursor: pointer !important;
  height: 38px !important;
  width: auto !important;
  box-shadow: none !important;
}

/* Disabled button styles */
button:disabled,
button[disabled] {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}