:root {
  --color-bg: #0A0A0C;
  --color-surface: #141416;
  --color-surface-light: #1E1E22;
  --color-primary: #D4AF37; /* Metallic Gold */
  --color-primary-hover: #F3E5AB;
  --color-text: #F0F0F0;
  --color-text-muted: #A0A0A5;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.light-theme {
  --color-bg: #FFFFFF;
  --color-surface: #F5F5F7;
  --color-surface-light: #EBEBEF;
  --color-primary: #B8860B;
  --color-primary-hover: #D4AF37;
  --color-text: #1A1A1C;
  --color-text-muted: #5A5A60;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 4px;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-block {
  width: 100%;
  display: block;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-heading);
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: 2px;
}

.brand-title {
  font-size: 1.25rem;
}

.brand-subtitle {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-btn {
  background: none;
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.hamburger-btn {
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.hamburger-icon {
  font-size: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

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

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

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* for subtle parallax later */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,12,0.4) 0%, rgba(10,10,12,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 5rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

/* Sections Base */
.section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  padding-right: 2rem;
}

.stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-primary);
  z-index: -1;
  border-radius: 4px;
}

/* Amenities Section */
.amenities {
  background-color: var(--color-surface);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-card {
  background: var(--color-surface-light);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255,255,255,0.05);
}

.amenity-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.amenity-img {
  height: 250px;
  overflow: hidden;
}

.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.amenity-card:hover .amenity-img img {
  transform: scale(1.1);
}

.amenity-info {
  padding: 2rem;
}

.amenity-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.amenity-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Categorized Amenities */
.amenities-categories {
  margin-top: 2rem;
}

.amenity-category h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.dense-amenity-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dense-amenity-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.dense-amenity-list li:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.dense-amenity-list .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  padding: 8px;
  border-radius: 50%;
}

/* Location Section */
.location {
  background: linear-gradient(rgba(10,10,12,0.9), rgba(10,10,12,0.9)), url('/assets/hero_building.png') center/cover fixed;
  text-align: center;
}

.location-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
}

/* Contact Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--color-surface);
  padding: 4rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info p {
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

.contact-details p {
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 1.1rem;
}

.contact-details strong {
  color: var(--color-primary);
  display: inline-block;
  width: 100px;
}

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

.form-group input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.02);
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer small {
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
  display: block;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.is-visible {
  opacity: 1;
  transform: translate(0);
}

/* Glassmorphism for Cards */
.spec-card, .icon-card, .blog-card, .loc-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

/* Specs Section */
.spec-card {
  transition: var(--transition-smooth);
}
.spec-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: rgba(212, 175, 55, 0.02);
}

/* Icons Grid */
.icon-card {
  transition: var(--transition-smooth);
}
.icon-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}
.icon-card img {
  transition: transform 0.4s ease;
}
.icon-card:hover img {
  transform: scale(1.15) rotate(5deg);
}

/* Blog Section */
.blog-card {
  transition: var(--transition-smooth);
}
.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.blog-card a {
  position: relative;
  display: inline-block;
}
.blog-card a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}
.blog-card:hover a::after {
  width: 100%;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Form Floating Labels */
.floating-label-group {
  position: relative;
  margin-bottom: 2rem;
}

.floating-input {
  width: 100%;
  padding: 15px 0 5px 0;
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  transition: var(--transition-smooth);
}

.floating-input:focus {
  outline: none;
  border-bottom: 2px solid var(--color-primary);
}

.floating-label {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: 0.2s ease all;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--color-primary);
}

/* WhatsApp Floating Widget */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease;
}

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

/* Masonry Gallery */
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 2rem 0;
}

.gallery-img {
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: var(--color-primary);
}

@keyframes zoomIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* Custom Lead Capture Modal */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  position: relative;
  animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-close {
  color: var(--color-text-muted);
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
}

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

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

/* VIP Pulse Animation */
.pulse-vip {
  animation: pulseVip 2s infinite cubic-bezier(0.66, 0, 0, 1);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
}

@keyframes pulseVip {
  to {
    box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-logo {
  width: 120px;
  animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
  0% { transform: scale(1); opacity: 0.5; filter: drop-shadow(0 0 10px rgba(212,175,55,0)); }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px rgba(212,175,55,0.6)); }
  100% { transform: scale(1); opacity: 0.5; filter: drop-shadow(0 0 10px rgba(212,175,55,0)); }
}

/* Custom Cursor */
body {
  cursor: none;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

#custom-cursor.hovered {
  width: 50px;
  height: 50px;
  background-color: rgba(212, 175, 55, 0.2);
}

/* FAQ Accordion */
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
details[open] summary ~ * {
  animation: sweep 0.5s ease-in-out;
}
@keyframes sweep {
  0%    {opacity: 0; transform: translateY(-10px)}
  100%  {opacity: 1; transform: translateY(0)}
}

/* Split Text Animation */
.split-text .line {
  overflow: hidden;
}
.split-text .word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.split-text.is-visible .word {
  transform: translateY(0);
  opacity: 1;
}
.split-text.is-visible .line:nth-child(1) .word:nth-child(1) { transition-delay: 0.1s; }
.split-text.is-visible .line:nth-child(1) .word:nth-child(2) { transition-delay: 0.2s; }
.split-text.is-visible .line:nth-child(1) .word:nth-child(3) { transition-delay: 0.3s; }
.split-text.is-visible .line:nth-child(2) .word:nth-child(1) { transition-delay: 0.4s; }
.split-text.is-visible .line:nth-child(2) .word:nth-child(2) { transition-delay: 0.5s; }

/* Video Hero */
.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Exit Modal */
.exit-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  z-index: 100000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.exit-modal.active {
  opacity: 1;
  visibility: visible;
}

.exit-modal-content {
  background: rgba(20, 20, 22, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

body.light-theme .exit-modal-content {
  background: rgba(255, 255, 255, 0.95);
}
body.light-theme .exit-modal-content h2, body.light-theme .exit-modal-content p {
  color: var(--color-text) !important;
}

/* Parallax Text */
.parallax-text {
  position: absolute;
  top: 10%;
  left: -5%;
  font-family: var(--font-heading);
  font-size: 15vw;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* Map Light Mode Filtering */
body.light-theme .loc-map iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(90%);
}

/* Overlay Menu */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(20px);
  z-index: 100001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.light-theme .overlay-menu {
  background: rgba(255, 255, 255, 0.98);
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}

.overlay-link {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
}

.overlay-link:hover {
  color: var(--color-primary);
  transform: translateX(20px);
}

.overlay-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.overlay-link:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .about-image::before {
    display: none;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .contact-wrapper {
    padding: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }

  /* Mobile Navbar Optimizations */
  .nav-container {
    padding: 0 0.5rem;
  }

  .brand {
    gap: 4px;
  }
  
  .brand-logo {
    height: 28px;
    width: auto;
  }

  .brand-text {
    letter-spacing: 0;
    line-height: 1.1;
  }

  .brand-title {
    font-size: 0.75rem;
  }

  .brand-subtitle {
    font-size: 0.9rem;
  }

  .nav-actions {
    gap: 0.25rem;
  }

  .theme-btn {
    width: 28px;
    height: 28px;
  }

  .theme-btn .material-symbols-outlined {
    font-size: 1rem;
  }

  .header-enquire {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hamburger-btn {
    margin-left: 0;
  }

  .hamburger-icon {
    font-size: 1.75rem;
  }

  .overlay-link {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Advanced CRO UI Styles: WhatsApp Float & Mobile Sticky CTA
   ========================================================================== */

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin-top: 2px;
}

/* Pulsating Animation for WhatsApp */
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float {
    animation: pulse-wa 2s infinite;
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.mobile-sticky-cta .cta-container {
    display: flex;
    justify-content: space-between;
}

.mobile-sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-sticky-cta .cta-enquire {
    background: linear-gradient(45deg, #d4af37, #f3e5ab);
    color: #0a0a0c;
}

.mobile-sticky-cta .cta-brochure {
    background: transparent;
    color: #d4af37;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

@media screen and (max-width: 767px) {
    .mobile-sticky-cta {
        display: block;
    }
    
    /* Adjust WhatsApp position on mobile to sit above the sticky bar */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 20px;
        font-size: 24px;
    }
}
