/* ===================================
   The Nimbus Arista Luxe - Luxury Black & Gold CSS
   Premium Real Estate Landing Page
   ================================== */

/* CSS Custom Properties - Luxury Black & Gold Scheme */
:root {
  /* Primary Luxury Colors */
  --luxury-black: #000000;
  --luxury-gold: #c89116;
  --deep-gold: #B8941F;
  --light-gold: #D4A017;
  --platinum-silver: #E5E5E5;
  --champagne: #F5E6A3;
  --white: #FFFFFF;
  
  /* Supporting Luxury Colors */
  --charcoal: #1A1A1A;
  --dark-charcoal: #0D0D0D;
  --ivory: #FFF8DC;
  --cream: #F5F5DC;
  --rose-gold: #E8B4CB;
  --silver: #C0C0C0;
  --pearl: #F8F6F0;
  
  /* Neutral Luxury Tones */
  --gray-light: #CCCCCC;
  --gray-medium: #888888;
  --gray-dark: #333333;
  --gold-accent: rgba(200, 145, 22, 0.2);
  --gold-glow: rgba(200, 145, 22, 0.4);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  /* Compact Layout Spacing */
  --container-max-width: 1200px;
  --section-padding: 50px 0;
  --element-spacing: 1rem;
  --side-margin: 5%;
  
  /* Compact Sizing */
  --button-padding: 10px 20px;
  --icon-size: 50px;
  --card-padding: 1.5rem;
  
  /* Luxury Shadows */
  --shadow-gold: 0 4px 15px rgba(200, 145, 22, 0.3);
  --shadow-luxury: 0 8px 30px rgba(0, 0, 0, 0.8);
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(200, 145, 22, 0.5);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-luxury: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===================================
   RESET & BASE STYLES
   ================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  background: var(--luxury-black);
  overflow-x: hidden;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(200, 145, 22, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200, 145, 22, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #000000 0%, #0D0D0D 100%);
  z-index: -1;
  pointer-events: none;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-normal);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: all var(--transition-normal);
}

ul, ol {
  list-style: none;
}

/* ===================================
   CONTAINER & LAYOUT
   ================================== */

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
  margin: 0 var(--side-margin);
}

.section-alt {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  border-radius: 20px;
  border: 1px solid rgba(200, 145, 22, 0.1);
}

/* ===================================
   TYPOGRAPHY
   ================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

h4 {
  font-size: 1.3rem;
  font-weight: 500;
}

p {
  margin-bottom: 0.8rem;
  color: var(--gray-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(200, 145, 22, 0.3));
}

.highlight {
  color: var(--luxury-gold);
  font-weight: 600;
}

/* ===================================
   BUTTONS
   ================================== */

.btn-primary {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  color: var(--luxury-black);
  padding: var(--button-padding);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-luxury);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--luxury-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--platinum-silver) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: var(--luxury-black);
}

.btn-secondary {
  background: transparent;
  color: var(--luxury-gold);
  padding: var(--button-padding);
  border: 1px solid var(--luxury-gold);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-luxury);
}

.btn-secondary:hover {
  background: var(--luxury-gold);
  color: var(--luxury-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===================================
   HEADER & NAVIGATION
   ================================== */

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1600px;
  width: 100%;
  z-index: 1000;
  background: #44201c;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 145, 22, 0.2);
  transition: all var(--transition-fast);
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.8) !important;
  box-shadow: var(--shadow-luxury) !important;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.logo-img {
  height: 45px;                    
  width: auto;
  filter: drop-shadow(0 0 10px rgba(200, 145, 22, 0.3));
}

/* Desktop logo overflow */
@media (min-width: 1024px) {
  .logo-img {
    height: 75px;                  
    position: relative;
    z-index: 1001;
    transform: translateY(-8px);  
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-light);
  padding: 0.4rem 0;
  position: relative;
  font-size: 0.9rem;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--luxury-gold) 0%, var(--champagne) 100%);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 3px;
  padding: 6px;
  background: var(--charcoal);
  border-radius: 4px;
  border: 1px solid var(--luxury-gold);
}

.mobile-menu-btn i {
  font-size: 1.2rem;
  color: var(--luxury-gold);
}

/* ===================================
   HERO SECTION
   ================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(26, 26, 26, 0.75) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  padding-top: 80px;
  margin: 0 var(--side-margin);
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  color: var(--white);
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-accent);
  color: var(--luxury-gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(200, 145, 22, 0.3);
  box-shadow: var(--shadow-soft);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 1.2rem;
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.feature-item i {
  color: var(--luxury-gold);
  font-size: 0.9rem;
}

/* Hero Form */
.hero-form {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.form-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.lead-form input,
.lead-form select {
  padding: 0.8rem;
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  font-size: 0.9rem;
  background: var(--luxury-black);
  color: var(--white);
  transition: all var(--transition-fast);
}

.lead-form input::placeholder {
  color: var(--gray-medium);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 2px rgba(200, 145, 22, 0.2);
  background: var(--charcoal);
}

.form-submit-btn {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  color: var(--luxury-black);
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  border: 1px solid var(--luxury-gold);
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--white) 0%, var(--platinum-silver) 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-medium);
  margin-top: 0.8rem;
}

/* ===================================
   QUICK ACTIONS STRIP
   ================================== */

.quick-actions {
  background: var(--charcoal);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(200, 145, 22, 0.1);
  border-bottom: 1px solid rgba(200, 145, 22, 0.1);
  margin: 0;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--side-margin);
}

.action-card {
  background: linear-gradient(135deg, var(--luxury-black) 0%, var(--charcoal) 100%);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-luxury);
  border: 1px solid rgba(200, 145, 22, 0.1);
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--luxury-gold);
}

.action-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  color: var(--luxury-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.action-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.action-card p {
  margin-bottom: 1rem;
  color: var(--gray-light);
  font-size: 0.85rem;
}

.action-btn {
  background: transparent;
  color: var(--luxury-gold);
  padding: 8px 16px;
  border: 1px solid var(--luxury-gold);
  border-radius: 5px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: var(--luxury-gold);
  color: var(--luxury-black);
}

/* ===================================
   SECTION HEADERS
   ================================== */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 480px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===================================
   FEATURE SECTIONS
   ================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-bg {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: all var(--transition-luxury);
  border: 1px solid rgba(200, 145, 22, 0.1);
}

.feature-card:hover .feature-bg {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--luxury-gold);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  color: var(--luxury-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  box-shadow: var(--shadow-gold);
}

.feature-bg h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.feature-bg p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: var(--gray-light);
}

.feature-stat {
  background: var(--gold-accent);
  padding: 1rem;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid rgba(200, 145, 22, 0.3);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-weight: 500;
}

/* ===================================
   AMENITIES SECTION
   ================================== */

.amenities-showcase {
  margin-bottom: 3rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.amenity-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 1.2rem 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  border: 1px solid rgba(200, 145, 22, 0.1);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--luxury-gold);
}

.amenity-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  color: var(--luxury-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.2rem;
}

.amenity-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.amenity-card p {
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 0;
}

/* Amenities Detail Section */
.amenities-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.amenities-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.amenities-list {
  margin-bottom: 1.5rem;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--gray-light);
}

.amenities-list i {
  color: var(--luxury-gold);
  font-size: 1.1rem;
}

.amenities-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.8rem;
  height: 320px;
}

.amenities-gallery .gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.amenities-gallery .gallery-item.large {
  grid-row: span 2;
}

.amenities-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-normal);
  filter: brightness(0.8);
}

.amenities-gallery .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* ===================================
   FLOOR PLANS SECTION
   ================================== */

.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.floor-plan-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-luxury);
  border: 1px solid rgba(200, 145, 22, 0.1);
}

.floor-plan-card.featured {
  border-color: var(--luxury-gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.floor-plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.plan-header {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--luxury-gold);
  color: var(--luxury-black);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
}

.plan-badge.premium {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.plan-size {
  color: var(--gray-light);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 0.4rem;
}

.price-label {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.plan-image {
  height: 160px;
  overflow: hidden;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-normal);
  filter: brightness(0.8);
}

.floor-plan-card:hover .plan-image img {
  transform: scale(1.1);
  filter: brightness(1);
}

.plan-features {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.plan-features i {
  color: var(--luxury-gold);
  font-size: 0.9rem;
}

.plan-btn {
  width: 100%;
  background: var(--luxury-gold);
  color: var(--luxury-black);
  padding: 0.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.plan-btn:hover {
  background: var(--white);
}

/* Floor Plans CTA */
.floor-plans-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 3rem;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.cta-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.cta-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0;
}

.cta-benefits li {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ===================================
   VIRTUAL TOUR SECTION
   ================================== */

.virtual-tour {
  background: linear-gradient(135deg, var(--luxury-black) 0%, var(--charcoal) 100%);
  color: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.virtual-tour .section-header h2,
.virtual-tour .section-header p {
  color: var(--white);
}

.virtual-tour-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.video-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(200, 145, 22, 0.3);
}

.video-placeholder {
  position: relative;
  height: 250px;
  background: var(--luxury-black);
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.7);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--luxury-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--luxury-black);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-gold);
}

.play-button:hover {
  background: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 1.5rem;
  text-align: center;
}

.video-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.tour-start-btn {
  background: var(--luxury-gold);
  color: var(--luxury-black);
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.tour-start-btn:hover {
  background: var(--white);
}

.tour-options {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.tour-option {
  background: rgba(200, 145, 22, 0.1);
  padding: 0.8rem;
  border-radius: 6px;
  text-align: center;
  flex: 1;
  border: 1px solid rgba(200, 145, 22, 0.2);
  font-size: 0.8rem;
}

.tour-option i {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--luxury-gold);
}

.tour-booking h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.tour-booking p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.tour-benefits {
  background: rgba(200, 145, 22, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.tour-benefits h4 {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.tour-benefits ul {
  display: grid;
  gap: 0.6rem;
}

.tour-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  font-size: 0.9rem;
}

.tour-benefits i {
  color: var(--luxury-gold);
}

/* ===================================
   EMI CALCULATOR SECTION
   ================================== */

.emi-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.calculator-form .form-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.calculator-inputs {
  margin-bottom: 1.5rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1rem;
}

.input-group input[type="range"] {
  width: 100%;
  height: 6px;
  background: var(--gray-dark);
  border-radius: 3px;
  outline: none;
  appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--luxury-gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}

.input-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--luxury-gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-gold);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.calculator-results {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  padding: 1.5rem;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.result-item {
  text-align: center;
  color: var(--luxury-black);
}

.result-item p {
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
  color: rgba(0, 0, 0, 0.7);
}

.result-item span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--luxury-black);
}

.calculator-info .info-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.finance-offers {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  color: var(--luxury-black);
  padding: 1.5rem;
  border-radius: 10px;
}

.finance-offers h4 {
  color: var(--luxury-black);
  margin-bottom: 1rem;
}

.finance-offers ul {
  display: grid;
  gap: 0.6rem;
}

.finance-offers li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
}

.finance-offers i {
  color: var(--luxury-black);
}

/* ===================================
   LOCATION SECTION
   ================================== */

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.location-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.connectivity-group h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.connectivity-group i {
  color: var(--luxury-gold);
}

.connectivity-group ul {
  margin-bottom: 1.5rem;
}

.connectivity-group li {
  margin-bottom: 0.4rem;
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.location-map {
  text-align: center;
}

.map-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.map-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.8);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-normal);
}

.map-container:hover .map-overlay {
  opacity: 1;
}

.map-btn {
  background: var(--luxury-gold);
  color: var(--luxury-black);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

/* Location Tour CTA */
.location-tour-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 3rem;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.tour-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.tour-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 0;
}

.tour-benefits li {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ===================================
   TESTIMONIALS SECTION
   ================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-normal);
  border: 1px solid rgba(200, 145, 22, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--luxury-gold);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-accent);
  border-radius: 50%;
  border: 1px solid rgba(200, 145, 22, 0.3);
}

.customer-info h4 {
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 1.1rem;
}

.customer-info p {
  color: var(--gray-medium);
  margin-bottom: 0;
  font-size: 0.8rem;
}

.rating {
  margin-bottom: 0.8rem;
}

.rating i {
  color: var(--luxury-gold);
  font-size: 1.1rem;
  margin-right: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 0.4rem;
  display: block;
}

.stat-item .stat-label {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.testimonials-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  padding: 3rem;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.cta-content h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.certifications {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-light);
}

.cert-item i {
  color: var(--luxury-gold);
}

/* ===================================
   WHY DIFFERENT SECTION
   ================================== */

.why-different {
  background: linear-gradient(135deg, var(--luxury-black) 0%, var(--charcoal) 100%);
  color: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.why-different .section-header h2,
.why-different .section-header p {
  color: var(--white);
}

.differences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.difference-item {
  display: flex;
  gap: 1.2rem;
  background: rgba(200, 145, 22, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(200, 145, 22, 0.2);
  transition: all var(--transition-normal);
}

.difference-item:hover {
  background: rgba(200, 145, 22, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.difference-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--luxury-black);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.difference-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.difference-content p {
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Exclusive Offers */
.exclusive-offers {
  background: rgba(200, 145, 22, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(200, 145, 22, 0.3);
}

.offers-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.offers-header p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.offer-item {
  background: rgba(200, 145, 22, 0.1);
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.offer-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 0.4rem;
}

.offer-item p {
  color: var(--gray-light);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.offers-cta {
  margin-top: 1.5rem;
}

.offer-disclaimer {
  color: var(--gray-medium);
  font-size: 0.8rem;
  margin-top: 0.8rem;
}

/* ===================================
   FINAL CTA SECTION
   ================================== */

.final-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  border-radius: 20px;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.2);
  color: #FCA5A5;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(220, 38, 38, 0.3);
  font-size: 0.9rem;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.cta-benefits h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.benefits-list {
  margin-bottom: 1.5rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: var(--gray-light);
}

.benefits-list i {
  color: var(--luxury-gold);
  font-size: 1.1rem;
}

.total-value {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
  color: var(--luxury-black);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.value-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.final-form .form-card {
  background: linear-gradient(135deg, var(--luxury-black) 0%, var(--charcoal) 100%);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-luxury);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 145, 22, 0.3);
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.terms-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 1.2rem;
}

.terms-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--luxury-gold);
}

.terms-checkbox label {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.4;
}

.form-security {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-medium);
  margin-top: 0.8rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.contact-option {
  background: rgba(200, 145, 22, 0.1);
  padding: 1.2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.contact-option i {
  font-size: 1.3rem;
  color: var(--luxury-gold);
  margin-bottom: 0.4rem;
}

.contact-option p {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-option span {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.money-back-guarantee {
  text-align: center;
  background: rgba(200, 145, 22, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(200, 145, 22, 0.3);
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 0.8rem;
}

.guarantee-badge i {
  color: var(--luxury-gold);
}

.money-back-guarantee p {
  color: var(--gray-light);
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9rem;
}

/* ===================================
   FOOTER
   ================================== */

.footer {
  background: var(--luxury-black);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(200, 145, 22, 0.2);
  margin: 0;
}

.footer-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--side-margin);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--white) 0%, var(--luxury-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-buttons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.footer-btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.call-btn {
  background: var(--luxury-gold);
  color: var(--luxury-black);
}

.call-btn:hover {
  background: var(--white);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}

.whatsapp-btn:hover {
  background: #20B856;
}

.footer-certifications {
  font-size: 0.8rem;
  color: var(--gray-medium);
}

.footer-certifications p {
  margin-bottom: 0.2rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.footer-links ul {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--gray-light);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--luxury-gold);
  padding-left: 4px;
}

.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.contact-item {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-item i {
  color: var(--luxury-gold);
  font-size: 1.1rem;
  margin-top: 2px;
}

.contact-item p {
  color: var(--gray-light);
  margin-bottom: 0.2rem;
  font-size: 0.85rem;
}

.footer-newsletter {
  background: rgba(200, 145, 22, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200, 145, 22, 0.2);
}

.footer-newsletter h4 {
  margin-bottom: 0.8rem;
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 0.4rem;
  max-width: 300px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid rgba(200, 145, 22, 0.3);
  border-radius: 5px;
  background: var(--luxury-black);
  color: var(--white);
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: var(--gray-medium);
}

.newsletter-form button {
  background: var(--luxury-gold);
  color: var(--luxury-black);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.newsletter-form button:hover {
  background: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 145, 22, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-bottom p {
  color: var(--gray-medium);
  margin-bottom: 0;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-medium);
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--luxury-gold);
}

/* ===================================
   FLOATING CTA
   ================================== */

.floating-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--luxury-gold);
  color: var(--luxury-black);
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  z-index: 1000;
  transition: all var(--transition-normal);
  border: 1px solid var(--luxury-gold);
  font-size: 0.9rem;
}

.floating-cta:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.floating-cta i {
  font-size: 1.1rem;
}

/* ===================================
   RESPONSIVE DESIGN
   ================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 40px 0;
    --side-margin: 5%;
    --container-max-width: 700px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .features-grid,
  .floor-plans-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .amenities-detail,
  .virtual-tour-content,
  .emi-content,
  .location-content,
  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .floor-plans-cta,
  .location-tour-cta,
  .testimonials-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --side-margin: 2%;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .amenities-gallery .gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .amenities-gallery .gallery-item.large {
    grid-row: span 1;
  }
  
  .connectivity-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .differences-grid {
    grid-template-columns: 1fr;
  }
  
  .difference-item {
    flex-direction: column;
    text-align: center;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .name-fields {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .footer-buttons {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
  }
  
  .floating-cta span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .plan-features {
    grid-template-columns: 1fr;
  }
  
  .cta-benefits,
  .tour-benefits {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .certifications {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ===================================
   ANIMATION & HOVER EFFECTS
   ================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 145, 22, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(200, 145, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 145, 22, 0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--luxury-gold) 0%, var(--champagne) 50%, var(--luxury-gold) 100%);
  background-size: 200% 100%;
  animation: goldShimmer 2s linear infinite;
}

.pulse-gold {
  animation: pulseGold 2s infinite;
}

/* Scroll animations will be handled by JavaScript */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   LUXURY MODAL STYLES
   ================================== */
.modal .modal-dialog
{
background: black !important;
max-height: 70vh !important;
}
.modal .modal-header h3
{
color: var(--luxury-gold) !important;
}

.modal .modal-overlay {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal .modal-dialog {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  border: 1px solid rgba(200, 145, 22, 0.3);
  box-shadow: var(--shadow-luxury);
  max-width: 400px;
}

.modal .modal-header {
  border-bottom: 1px solid rgba(200, 145, 22, 0.2);
}

.modal .modal-header h3 {
  color: var(--white);
}

.modal .modal-close {
  color: var(--gray-light);
}

.modal .modal-close:hover {
  color: var(--luxury-gold);
}

.modal .lead-form input,
.modal .lead-form select,
.modal .lead-form textarea {
  background: var(--luxury-black);
  border: 1px solid var(--gray-dark);
  color: var(--white);
}

.modal .lead-form input::placeholder,
.modal .lead-form textarea::placeholder {
  color: var(--gray-medium);
}

.modal .lead-form input:focus,
.modal .lead-form select:focus,
.modal .lead-form textarea:focus {
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 2px rgba(200, 145, 22, 0.2);
}

.modal .btn-primary {
  background: var(--luxury-gold);
  color: var(--luxury-black);
}

.modal .btn-primary:hover {
  background: var(--white);
}

/* ===================================
   FLOOR PLAN MODAL - 2 COLUMN LAYOUT
   ================================== */

.plan-modal-content {
    padding: 1.5rem;
}

.plan-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

/* LEFT SIDE - Plan Info */
.plan-info-section {
    padding-right: 1rem;
}

.plan-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.plan-modal-size {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.plan-modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 0;
    line-height: 1.1;
}

/* RIGHT SIDE - Features */
.plan-features-section {
    padding-left: 1rem;
    border-left: 1px solid rgba(200, 145, 22, 0.2);
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features-list i {
    color: var(--luxury-gold);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* CENTERED BUTTON */
.plan-actions {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 145, 22, 0.1);
}

.plan-actions .btn-primary {
    min-width: 250px;
    padding: 12px 24px;
    font-size: 1rem;
}

/* RESPONSIVE - Mobile */
@media (max-width: 768px) {
    .plan-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-info-section {
        padding-right: 0;
        text-align: center;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(200, 145, 22, 0.2);
    }
    
    .plan-features-section {
        padding-left: 0;
        border-left: none;
    }
    
    .plan-modal-price {
        font-size: 1.8rem;
    }
}
/* ===================================
   LUXURY SCROLLBAR
   ================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--luxury-black);
}

::-webkit-scrollbar-thumb {
  background: var(--luxury-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-gold);
}

/* ===================================
   PRINT STYLES
   ================================== */

@media print {
  .header,
  .floating-cta,
  .hero-buttons,
  .action-btn,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    font-size: 12px;
    line-height: 1.4;
    background: white !important;
    color: black !important;
  }
  
  .hero {
    background: none !important;
    color: black !important;
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
    margin: 0 !important;
  }
}
/* ===================================
   MOBILE MENU STYLING
   ================================== */

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1600px;
  width: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 145, 22, 0.2);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  border-radius: 0 0 10px 10px;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.mobile-menu a {
  font-weight: 500;
  color: var(--gray-light);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(200, 145, 22, 0.1);
  transition: all var(--transition-fast);
  display: block;
}

.mobile-menu a:hover {
  color: var(--luxury-gold);
  padding-left: 10px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===================================
   TOAST NOTIFICATIONS
   ================================== */

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
}

.toast {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-charcoal) 100%);
  border: 1px solid rgba(200, 145, 22, 0.3);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastSlideIn 0.3s ease-out;
  position: relative;
  overflow: hidden;
}

.toast.success {
  border-color: #10B981;
}

.toast.error {
  border-color: #EF4444;
}

.toast.warning {
  border-color: #F59E0B;
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--luxury-gold);
}

.toast.success::before {
  background: #10B981;
}

.toast.error::before {
  background: #EF4444;
}

.toast.warning::before {
  background: #F59E0B;
}

.toast-icon {
  font-size: 1.2rem;
  color: var(--luxury-gold);
}

.toast.success .toast-icon {
  color: #10B981;
}

.toast.error .toast-icon {
  color: #EF4444;
}

.toast.warning .toast-icon {
  color: #F59E0B;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.toast-message {
  color: var(--gray-light);
  font-size: 0.8rem;
  margin: 0;
}

.toast-close {
  background: none;
  border: none;
  color: var(--gray-medium);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.toast-close:hover {
  color: var(--white);
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast.removing {
  animation: toastSlideOut 0.3s ease-in forwards;
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* ===================================
   LOADING STATES
   ================================== */

.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--luxury-gold);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-loading .form-submit-btn,
.form-loading .btn-primary {
  position: relative;
  color: transparent;
}

.form-loading .form-submit-btn::after,
.form-loading .btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid var(--luxury-black);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===================================
   CUSTOM FORM ELEMENTS
   ================================== */

/* Custom Checkbox */
.custom-checkbox {
  position: relative;
  display: inline-block;
}

.custom-checkbox input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-dark);
  border-radius: 3px;
  background: var(--luxury-black);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.custom-checkbox input[type="checkbox"]:checked {
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
}

.custom-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 2px;
  font-size: 12px;
  color: var(--luxury-black);
  font-weight: 700;
}

.custom-checkbox input[type="checkbox"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(200, 145, 22, 0.3);
}

/* Custom Radio Button */
.custom-radio {
  position: relative;
  display: inline-block;
}

.custom-radio input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gray-dark);
  border-radius: 50%;
  background: var(--luxury-black);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.custom-radio input[type="radio"]:checked {
  border-color: var(--luxury-gold);
}

.custom-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--luxury-gold);
}

.custom-radio input[type="radio"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(200, 145, 22, 0.3);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select select {
  appearance: none;
  width: 100%;
  padding: 0.8rem 2.5rem 0.8rem 0.8rem;
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  background: var(--luxury-black);
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-select::after {
  content: '▼';
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  color: var(--luxury-gold);
  pointer-events: none;
  font-size: 0.8rem;
}

.custom-select select:focus {
  outline: none;
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 2px rgba(200, 145, 22, 0.2);
}

/* ===================================
   IMAGE GALLERY LIGHTBOX
   ================================== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: var(--charcoal);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(200, 145, 22, 0.3);
}

.lightbox-image {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--luxury-gold);
  color: var(--luxury-black);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--luxury-gold);
  color: var(--luxury-black);
}

.lightbox-prev {
  left: 15px;
  border-radius: 0 25px 25px 0;
}

.lightbox-next {
  right: 15px;
  border-radius: 25px 0 0 25px;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: var(--white);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.lightbox-caption h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin: 0;
}

/* ===================================
   PROGRESS INDICATORS
   ================================== */

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--gray-dark);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--luxury-gold) 0%, var(--champagne) 100%);
  border-radius: 3px;
  transition: width 0.3s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-medium);
  font-size: 0.9rem;
  position: relative;
  flex: 1;
}

.step.active {
  color: var(--luxury-gold);
}

.step.completed {
  color: var(--white);
}

.step-number {
  width: 30px;
  height: 30px;
  border: 2px solid var(--gray-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--luxury-black);
  transition: all var(--transition-fast);
}

.step.active .step-number {
  border-color: var(--luxury-gold);
  background: var(--luxury-gold);
  color: var(--luxury-black);
}

.step.completed .step-number {
  border-color: var(--luxury-gold);
  background: var(--luxury-gold);
  color: var(--luxury-black);
}

.step.completed .step-number::after {
  content: '✓';
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  left: calc(100% - 15px);
  width: calc(100% - 30px);
  height: 2px;
  background: var(--gray-dark);
  z-index: -1;
}

.step.completed:not(:last-child)::after {
  background: var(--luxury-gold);
}

/* ===================================
   UTILITY CLASSES
   ================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.5rem !important; }
.p-2 { padding: 1rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }

.hidden { display: none !important; }
.visible { display: block !important; }

.gold-text { color: var(--luxury-gold) !important; }
.white-text { color: var(--white) !important; }
.gray-text { color: var(--gray-light) !important; }

.gold-bg { background: var(--luxury-gold) !important; }
.black-bg { background: var(--luxury-black) !important; }
.charcoal-bg { background: var(--charcoal) !important; }

.border-gold { border: 1px solid var(--luxury-gold) !important; }
.border-gray { border: 1px solid var(--gray-dark) !important; }

.shadow-gold { box-shadow: var(--shadow-gold) !important; }
.shadow-luxury { box-shadow: var(--shadow-luxury) !important; }

.rounded { border-radius: 6px !important; }
.rounded-lg { border-radius: 10px !important; }
.rounded-xl { border-radius: 15px !important; }
.rounded-full { border-radius: 50% !important; }

.flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-center { align-items: center !important; justify-content: center !important; }
.flex-between { justify-content: space-between !important; }
.flex-wrap { flex-wrap: wrap !important; }

.grid { display: grid !important; }
.grid-2 { grid-template-columns: repeat(2, 1fr) !important; }
.grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
.grid-4 { grid-template-columns: repeat(4, 1fr) !important; }

.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

.font-bold { font-weight: 700 !important; }
.font-semibold { font-weight: 600 !important; }
.font-medium { font-weight: 500 !important; }

.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }

.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }

.cursor-pointer { cursor: pointer !important; }
.cursor-not-allowed { cursor: not-allowed !important; }

.transition { transition: all var(--transition-normal) !important; }
.transition-fast { transition: all var(--transition-fast) !important; }

.hover-gold:hover { color: var(--luxury-gold) !important; }
.hover-white:hover { color: var(--white) !important; }
.hover-scale:hover { transform: scale(1.05) !important; }
.hover-lift:hover { transform: translateY(-2px) !important; }

/* ===================================
   PRINT STYLES
   ================================== */

@media print {
  .header,
  .floating-cta,
  .hero-buttons,
  .action-btn,
  .btn-primary,
  .btn-secondary,
  .mobile-menu,
  .toast-container,
  .lightbox {
    display: none !important;
  }
  
  body {
    font-size: 12px;
    line-height: 1.4;
    background: white !important;
    color: black !important;
  }
  
  .hero {
    background: none !important;
    color: black !important;
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
    margin: 0 !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black !important;
  }
  
  .gradient-text,
  .highlight {
    color: #8B4513 !important;
    -webkit-text-fill-color: #8B4513 !important;
  }
}
