/* =========================================================
   Eterna City - Premium Real Estate Styles
   Bright, modern theme with clean light backgrounds.
   Primary: #f8fafc (Soft Light) | Accent: #c9a227 (Luxury Gold)
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --bg-3: #f1f5f9;
  --bg-4: #e2e8f0;
  --navy: #0f172a;
  --navy-light: #1e3a8a;
  --gold: #c9a227;
  --gold-bright: #e5b53d;
  --gold-dark: #9a7b1c;
  --gold-soft: #f5d47a;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(226, 232, 240, 0.8);
  --shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 12px 40px -10px rgba(201, 162, 39, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
}

/* Navbar - clean light sticky */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

/* Mobile menu */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

[data-mobile-menu] {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  background: var(--bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  z-index: 60;
  top: 80px;
  left: 0;
  right: 0;
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

[data-mobile-menu].open {
  transform: translateY(0);
}

[data-menu-close] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  cursor: pointer;
}

[data-menu-close]:hover,
[data-menu-close]:focus-visible {
  background: var(--bg-3);
  color: var(--gold);
}

[data-mobile-menu] a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

[data-mobile-menu] a:hover,
[data-mobile-menu] a:focus-visible {
  background: var(--bg-2);
  color: var(--gold);
}

[data-mobile-menu] a.active {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-dark);
}

[data-mobile-menu] a:not(.btn-gold) {
  border-bottom: 1px solid var(--glass-border);
}

[data-mobile-menu] .flex.flex-col {
  gap: 0;
}

/* Hero section - bright split layout */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.85) 55%, rgba(255, 255, 255, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
}

@media (max-width: 1024px) {
  .hero-image-panel {
    width: 100%;
    opacity: 0.35;
  }
  .hero-image-panel img {
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 100%);
  }
}

@media (max-width: 767px) {
  .hero {
    align-items: flex-start;
  }

  .hero-image-panel {
    opacity: 0.75;
  }

  .hero-image-panel img {
    mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%, black 100%);
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0.2) 100%);
  }
}

/* Gold buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--white);
  padding: 0.95rem 2rem;
  font-weight: 700;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid var(--bg-4);
  color: var(--text);
  padding: 0.95rem 2rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background: var(--bg);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Section styling */
.section-padding {
  padding: 5rem 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 1.5rem;
  }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

/* Gradient text */
.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Slow scrolling marquee carousel */
.carousel-section {
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 4rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

.carousel-section::before,
.carousel-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}

.carousel-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.carousel-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), transparent);
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 45s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  width: 340px;
  height: 240px;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid var(--glass-border);
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.marquee-item:hover img {
  transform: scale(1.08);
}

.marquee-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}

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

/* Swiper helpers (kept for any future use) */
.marquee-swiper .swiper-slide { width: auto; height: auto; }
.marquee-swiper { overflow: visible; }

/* Revolving / Interactive feature section */
.feature-orbit {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 380px;
}

.feature-card {
  background: var(--bg);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  opacity: 0;
  position: absolute;
  inset: 0;
  transform: translateY(20px) scale(0.97);
  pointer-events: none;
}

.feature-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 10;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-gold);
}

.feature-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.feature-card p,
.feature-card li {
  color: var(--text-secondary);
}

.feature-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-dot.active {
  background: var(--gold);
  width: 36px;
  border-radius: 9999px;
}

/* Amenities cards */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.amenity-card {
  background: var(--bg);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.35s ease;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.3);
}

.amenity-card:hover .amenity-icon {
  background: var(--gold);
  color: var(--white);
}

.amenity-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.amenity-body {
  padding: 1.75rem;
}

.amenity-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.amenity-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.amenity-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Plot size cards */
.plot-card {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 1.75rem 1rem;
  text-align: center;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
}

.plot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 162, 39, 0.3);
}

.plot-card .plot-size {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.plot-card .plot-unit {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plot-card .plot-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

/* Investment highlight list */
.investment-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
}

.investment-list li:last-child {
  border-bottom: none;
}

.investment-list i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.investment-list strong {
  color: var(--text);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 162, 39, 0.2));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  padding-left: 5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
  }

  .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }
}

.timeline-marker {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--bg);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
  z-index: 2;
}

@media (min-width: 768px) {
  .timeline-marker {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-content {
  background: var(--bg);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--glass-border);
  width: 100%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .timeline-content {
    width: 44%;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
  }
}

.timeline-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.timeline-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact form */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--bg-4);
  border-radius: 0.875rem;
  background: var(--bg);
  color: var(--text);
  transition: all 0.25s ease;
  font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select option {
  background: var(--bg);
  color: var(--text);
}

/* Contact info cards */
.contact-card {
  background: var(--bg);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: rgba(201, 162, 39, 0.25);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--gold);
  color: var(--white);
}

/* Map iframe */
.map-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  background: var(--bg-3);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--bg-2);
  color: var(--text-secondary);
  border-top: 1px solid var(--glass-border);
}

.footer-link {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-title {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.footer-divider {
  border-top: 1px solid var(--glass-border);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Banner notice */
.notice-banner {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
  color: var(--gold-dark);
  padding: 0.875rem 1.25rem;
  border-radius: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

/* Glass card base */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1.5rem;
}

/* CTA sections */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.1), transparent 60%);
  pointer-events: none;
}

/* Decorative elements */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.glow-orb-gold {
  background: var(--gold-bright);
}

.glow-orb-blue {
  background: var(--navy-light);
}

/* AOS-like reveal animation fallback */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Text shadow */
.text-shadow {
  text-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  button[data-menu-toggle] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
    transition: all 0.25s ease;
    cursor: pointer;
  }

  button[data-menu-toggle]:hover,
  button[data-menu-toggle]:focus-visible {
    background: var(--gold-dark);
    transform: scale(1.05);
  }

  button[data-menu-toggle] i {
    width: 1.5rem;
    height: 1.5rem;
  }

  .navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--glass-border);
  }

  .hero .hero-content {
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero .grid {
    gap: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn-gold,
  .hero .btn-outline,
  .investment-section .btn-gold,
  .plots-section .btn-gold,
  .map-section .btn-gold,
  .cta-section .btn-gold,
  .cta-section .btn-outline {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }

  .section-padding {
    padding: 4rem 1rem;
  }

  .pt-36 {
    padding-top: 6rem;
  }

  .pb-24 {
    padding-bottom: 3rem;
  }

  .marquee-item {
    width: 260px;
    height: 180px;
  }

  .marquee-track {
    gap: 1rem;
  }

  .carousel-section::before,
  .carousel-section::after {
    width: 60px;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card h3 {
    font-size: 1.35rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
  }

  .feature-orbit {
    min-height: 420px;
  }

  .amenity-image {
    height: 160px;
  }

  .amenity-body {
    padding: 1.25rem;
  }

  .amenity-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .site-footer .grid {
    gap: 2rem;
  }

  .site-footer .grid > div {
    text-align: center;
  }

  .site-footer a.flex {
    justify-content: center;
  }

  .site-footer ul li.flex {
    justify-content: center;
    text-align: left;
  }

  [data-contact-form] input,
  [data-contact-form] textarea,
  [data-contact-form] select,
  [data-contact-form] button {
    font-size: 1rem;
  }

  .legal-banner {
    padding-top: 7rem;
  }

  .legal-banner h1 {
    font-size: 2.25rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
    z-index: 30;
  }
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* =========================================================
   Additional premium styles — gallery, brochure, contact
   ========================================================= */

/* Plot gallery cards (replaces the old "choose size" grid) */
.plot-gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .plot-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .plot-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plot-gallery-card {
  background: var(--bg);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
}

.plot-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.3);
}

.plot-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.plot-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.plot-gallery-card:hover .plot-image-wrapper img {
  transform: scale(1.08);
}

.plot-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(15, 23, 42, 0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Contact page image / office card */
.office-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  background: var(--bg);
}

.office-image-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
