/* --------------------
   GLOBAL RESET
-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --------------------
   THEME VARIABLES
-------------------- */
:root {
  --lux-brown: #8b3f2a;
  --lux-copper: #c06a45;
  --lux-gold: #e0b87a;
  --lux-cream: #faf6f2;
  --lux-charcoal: #1b1b1b;
  --lux-text: #2a2a2a;
  --white: #ffffff;
}


/* --------------------
   BODY
-------------------- */
body {
  font-family: 'Manrope', sans-serif;
  color: var(--lux-text);
  background: var(--lux-cream);
  line-height: 1.7;
}

/* --------------------
   COMMON UTILITIES
-------------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 34px;
  color: var(--lux-brown);
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 700px;
  color: #555;
}

/* --------------------
   BUTTONS
-------------------- */
.btn-lux {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(90deg, var(--lux-brown), var(--lux-copper));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-lux::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.btn-lux:hover::after {
  opacity: 1;
}

.btn-lux:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 25px rgba(192,106,69,0.45);
}

.btn-small {
  padding: 10px 22px;
  font-size: 13px;
}

/* --------------------
   HEADER
-------------------- */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(27,27,27,0.92);
  backdrop-filter: blur(6px);
  z-index: 999;
}

/* HEADER FLEX */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;     /* reduced */
  padding: 4px 0;       /* reduced */
}

/* LOGO BLOCK */
.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-img {
  width: 145px;   /* reduced from 155/180 */
  height: auto;
}


/* Divider */
.logo-divider {
  width: 55%;
  height: 1px;
  background: #c9a24d;
  margin: 4px 0 3px;
}

/* Subtext */
.logo-subtext {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  color: var(--white);
  margin-left: 24px;
  font-size: 14px;
  text-decoration: none;
  position: relative;
}

/* Mobile Menu Icon */
.hamburger {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {

  .header-flex {
    flex-direction: row;
    align-items: center;
    min-height: auto;
    padding: 10px 0;
  }

  .logo {
    align-items: flex-start;
  }

  .logo-img {
    width: 135px;
  }

  .logo-divider {
    width: 65%;
    margin: 3px 0 2px;
  }

  .logo-subtext {
    font-size: 8px;
    letter-spacing: 0.8px;
  }

  .main-nav {
    display: none; /* hamburger menu */
  }

  .hamburger {
    display: block;
  }
}


/* --------------------
   HERO VIDEO SECTION
-------------------- */
.hero-modern,
.hero-video {
  position: relative;
  min-height: 100vh;          /* shorter hero */
  overflow: hidden;
  padding-top: 72px;
  display: flex;
  align-items: center;
}

/* Video */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1);
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.85) contrast(1.05);
  animation: slowZoom 20s linear infinite;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(27,27,27,0.45),
      rgba(27,27,27,0.85)
    ),
    radial-gradient(
      circle at top,
      rgba(192,106,69,0.25),
      transparent 60%
    );
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;        /* WIDE */
  margin: 0 auto;           /* CENTER */
  padding: 0 40px;
  text-align: center;
  color: var(--white);
}

/* Text */
.hero-tag {
  color: var(--lux-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 15px 0;
}

.hero-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-content h1 {
  max-width: 900px;
  margin: 15px auto;
}

.hero-content p {
  max-width: 720px;
  margin: 0 auto 30px;
}


/* --------------------
   HERO TEXT ANIMATIONS
-------------------- */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.7s; }
.delay-3 { animation-delay: 1s; }
.delay-4 { animation-delay: 1.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slow zoom animation */
@keyframes slowZoom {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* --------------------
   SCROLL INDICATOR
-------------------- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 22px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 6px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* --------------------
   RESPONSIVE
-------------------- */
@media (max-width: 768px) {

  /* Mobile Menu */
  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    background: #1b1b1b;
    width: 220px;
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .main-nav a {
    margin: 12px 0;
  }

  .hamburger {
    display: block;
  }

  /* HERO FIX */
  .hero-video {
    min-height: 82vh;
    padding: 90px 16px 50px;
    text-align: left;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .hero-content h1 {
    font-size: 30px;      /* KEY CHANGE */
    line-height: 1.18;
    margin: 12px 0 14px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .hero-content .btn-lux {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Scroll Indicator */
  .scroll-indicator {
    bottom: 18px;
    transform: translateX(-50%) scale(0.9);
  }

  /* Disable video on mobile */
  .hero-video-bg {
    display: none;
  }

  /* Mobile Image Background */
  .hero-video {
    background:
      linear-gradient(
        rgba(27,27,27,0.75),
        rgba(27,27,27,0.9)
      ),
      url("../images/hero.jpg") center/cover no-repeat;
  }
}

/* =====================
   ABOUT – LUXURY SECTION
===================== */

.about-lux {
  padding: 80px 0 60px;
  background: #fff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE AREA */
.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 3;
  animation: floatImage 10s ease-in-out infinite;
}

/* Decorative Frame */
.about-frame {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 85%;
  height: 85%;
  border: 4px solid var(--lux-copper);
  z-index: 1;
  animation: frameFloat 15s ease-in-out infinite;
}

/* Dotted Pattern */
.about-dots {
  position: absolute;
  top: -30px;
  right: -50px;
  width: 160px;          /* ⬆ bigger area */
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(192,106,69,0.45) 2px,   /* ⬆ bigger dots */
    transparent 2px
  );
  background-size: 14px 14px;   /* ⬆ more breathable spacing */
  z-index: 2;
  animation: dotsFloat 12s ease-in-out infinite; /* ⬅ slow & elegant */
}


/* CONTENT */
.about-content h2 {
  font-size: 38px;
  color: var(--lux-charcoal);
  margin: 12px 0 10px;
}

.about-content h2 span {
  color: var(--lux-brown);
}

.about-tag {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold);
}

.about-content p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.8;
}

/* FLOAT ANIMATIONS */
@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes frameFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

/* --------------------
   RESPONSIVE
-------------------- */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-frame {
    left: -15px;
    top: -15px;
  }

  .about-dots {
    display: none;
  }

  .about-content h2 {
    font-size: 32px;
  }
}

@keyframes dotsFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-12px) translateX(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
}

/* --------------------
   HIGHLIGHTS SECTION
-------------------- */

.highlights-lux {
  padding: 80px 0 120px;
  background:
    linear-gradient(
      to bottom,
      rgba(27,27,27,0.08),
      rgba(27,27,27,0.12),
      rgba(27,27,27,0.08)
    );
  position: relative;
}

/* Soft blend edges */
.highlights-lux::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.8),
    transparent
  );
}

.highlights-lux::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: linear-gradient(
    to top,
    rgba(250,246,242,0.9),
    transparent
  );
}

/* HEADER */
.highlights-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.section-tag {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold);
}

.highlights-header h2 {
  font-size: 38px;
  color: var(--lux-charcoal);
  margin: 10px 0 16px;
}

.highlights-header p {
  color: #555;
  line-height: 1.8;
}

/* GRID */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD BASE */
.highlight-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;

  /* scroll animation base */
  opacity: 0;
  transform: translateY(30px);
  transition:
    transform 0.8s ease,
    opacity 0.8s ease,
    box-shadow 0.8s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Visible state (on scroll) */
.highlight-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Soft border */
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(192,106,69,0.25);
  pointer-events: none;
}

/* Glow sweep */
.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(192,106,69,0.15),
    transparent
  );
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* HOVER */
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(192,106,69,0.22);
}

.highlight-card:hover::after {
  opacity: 1;
}

/* NUMBER */
.highlight-no {
  font-size: 34px;
  font-weight: 700;
  color: rgba(192,106,69,0.25);
  display: block;
  margin-bottom: 12px;
  transition: color 0.6s ease, transform 0.6s ease;
}

.highlight-card:hover .highlight-no {
  color: var(--lux-copper);
  transform: scale(1.05);
}

/* TEXT */
.highlight-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--lux-charcoal);
}

.highlight-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
}

/* STAGGER DELAYS */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* CTA */
.highlights-cta {
  margin-top: 60px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlights-header h2 {
    font-size: 32px;
  }
}

/* =====================
   AMENITIES – DARK SPLIT
===================== */

.amenities-lux {
  background: linear-gradient(
    to right,
    var(--lux-charcoal) 55%,
    #f7f4f1 45%
  );
  padding: 120px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.amenities-content {
  color: #fff;
}

.amenities-content h2 {
  font-size: 40px;
  margin: 12px 0 20px;
}

.amenities-content h2 span {
  color: var(--lux-gold);
}

.amenities-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  max-width: 460px;
}

/* RIGHT GRID */
.amenities-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* CARD */
.amenity-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  transition: all 0.6s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(30px);
}

.amenity-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.amenity-card span {
  font-size: 34px;
  display: block;
  margin-bottom: 14px;
}

.amenity-card h4 {
  font-size: 16px;
  color: var(--lux-charcoal);
}

/* Hover */
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(192,106,69,0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenities-lux {
    background: var(--lux-charcoal);
  }

  .amenities-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .amenities-cards {
    grid-template-columns: 1fr;
  }
}

/* =====================
   PRICING – GLASS LUXURY
===================== */

.pricing-lux {
  padding: 120px 0;
  background:
    linear-gradient(
      to bottom,
      #f7f4f1,
      var(--lux-cream)
    );
}

.pricing-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.pricing-header h2 {
  font-size: 38px;
  margin: 12px 0 18px;
}

.pricing-header h2 span {
  color: var(--lux-brown);
}

.pricing-header p {
  color: #555;
  line-height: 1.8;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* CARD */
.pricing-card {
  position: relative;
  padding: 40px 34px;
  border-radius: 18px;

  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 30px 80px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.pricing-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Featured */
.pricing-card.featured {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 40px 100px rgba(192,106,69,0.25);
  transform: scale(1.03);
}

/* Tag */
.pricing-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 12px;
}

/* Text */
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.pricing-size {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 16px;
  margin-bottom: 22px;
}

.pricing-points {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-points li {
  font-size: 14.5px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lux-copper);
}

/* Hover */
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 45px 120px rgba(192,106,69,0.28);
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* =====================
   CONNECTIVITY SECTION
===================== */

.connectivity-lux {
  padding: 120px 0;
  background: #fff;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* CONTENT */
.connectivity-content h2 {
  font-size: 38px;
  margin: 12px 0 18px;
}

.connectivity-content h2 span {
  color: var(--lux-brown);
}

.connectivity-content p {
  color: #555;
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.8;
}

/* LIST */
.connectivity-list {
  list-style: none;
  margin-bottom: 30px;
}

.connectivity-list li {
  padding-left: 22px;
  margin-bottom: 12px;
  position: relative;
  color: #444;
  font-size: 15px;
}

.connectivity-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: var(--lux-copper);
  font-size: 14px;
}

/* MAP */
.map-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(100%) contrast(1.1);
  transform: scale(1.05);
  transition: transform 8s ease;
}

/* Slow zoom motion */
.map-wrapper:hover iframe {
  transform: scale(1);
}

/* Overlay */
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,27,27,0.15),
    rgba(27,27,27,0.35)
  );
  pointer-events: none;
}

/* --------------------
   RESPONSIVE
-------------------- */
@media (max-width: 900px) {
  .connectivity-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .map-wrapper iframe {
    height: 360px;
  }

  .connectivity-content h2 {
    font-size: 32px;
  }
}

/* =====================
   STICKY MOBILE CTA
===================== */

.mobile-cta {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 420px;

  display: none;
  gap: 10px;
  z-index: 9999;

  background: rgba(27,27,27,0.92);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 18px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* BUTTONS */
.cta-btn {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s ease;
}

/* Call */
.cta-btn.call {
  background: #fff;
  color: var(--lux-charcoal);
}

/* WhatsApp */
.cta-btn.whatsapp {
  background: linear-gradient(90deg, #25D366, #1ebe5d);
  color: #fff;
}

/* Brochure */
.cta-btn.brochure {
  background: linear-gradient(
    90deg,
    var(--lux-brown),
    var(--lux-copper)
  );
  color: #fff;
}

/* Hover (tap feel) */
.cta-btn:active {
  transform: scale(0.96);
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    animation: slideUpCTA 0.6s ease;
  }
}

/* ENTRY ANIMATION */
@keyframes slideUpCTA {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

/* =====================
   CONTACT SECTION
===================== */

.contact-lux {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #fff,
    var(--lux-cream)
  );
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.contact-info h2 {
  font-size: 38px;
  margin: 12px 0 20px;
}

.contact-info h2 span {
  color: var(--lux-brown);
}

.contact-info p {
  color: #555;
  max-width: 480px;
  margin-bottom: 25px;
  line-height: 1.8;
}

.contact-points {
  list-style: none;
}

.contact-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.contact-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--lux-copper);
}

.contact-form button {
  width: 100%;
}

.form-note {
  margin-top: 14px;
  font-size: 12px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* =====================
   CONTACT – MOBILE FIX
===================== */
@media (max-width: 768px) {

  .contact-lux {
    padding: 70px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .contact-info p {
    font-size: 14.5px;
  }

  .contact-points li {
    font-size: 14px;
  }

  .contact-form {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .contact-form input {
    font-size: 14px;
    padding: 13px 14px;
  }

  .contact-form button {
    padding: 14px;
    font-size: 14px;
  }

  .form-note {
    font-size: 11.5px;
    text-align: center;
  }
}


/* =====================
   FOOTER
===================== */

.footer-lux {
  background: var(--lux-charcoal);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand h3 {
  color: var(--lux-gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lux-gold);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================
   FOOTER – MOBILE FIX
===================== */
@media (max-width: 768px) {

  .footer-lux {
    padding: 60px 0 20px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand h3 {
    font-size: 18px;
    letter-spacing: 1.5px;
  }

  .footer-brand p {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 300px;
    margin: auto;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 15px;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 13.5px;
  }

  .footer-contact p {
    font-size: 13.5px;
  }

  .footer-bottom {
    font-size: 11px;
    padding-top: 15px;
  }
}

/* =====================
   LUXURY POPUP OVERLAY
===================== */
.lux-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,27,27,0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* =====================
   POPUP CONTAINER
===================== */
.lux-popup {
  background: linear-gradient(180deg, #fff, var(--lux-cream));
  width: 92%;
  max-width: 420px;
  max-height: 88vh;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  animation: popupFade 0.7s ease;
}

/* Inner scroll-safe container */
.lux-popup-inner {
  padding: 26px 24px 28px;
  /*max-height: 88vh;*/
  overflow-y: auto;
}

/* =====================
   CLOSE BUTTON
===================== */
.lux-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(0,0,0,0.05);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  cursor: pointer;
}

/* =====================
   BADGE & TEXT
===================== */
.lux-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lux-gold);
  margin-bottom: 6px;
}

.lux-popup h2 {
  font-size: 26px;
  color: var(--lux-charcoal);
  margin-bottom: 6px;
}

.lux-subtitle {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* =====================
   VIDEO SECTION
===================== */
.lux-video {
  position: relative;
  width: 100%;
  height: 160px;
  margin: 16px 0 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.lux-video video,
.lux-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* Sound button */
.lux-sound {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

/* =====================
   POINTS LIST
===================== */
.lux-points {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}

.lux-points li {
  font-size: 13.5px;
  padding: 6px 0;
  color: #444;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.lux-points li:nth-child(1){animation-delay:.1s}
.lux-points li:nth-child(2){animation-delay:.2s}
.lux-points li:nth-child(3){animation-delay:.3s}
.lux-points li:nth-child(4){animation-delay:.4s}
.lux-points li:nth-child(5){animation-delay:.5s}
.lux-points li:nth-child(6){animation-delay:.6s}

/* =====================
   CTA
===================== */
.lux-cta {
  text-align: center;
}

.lux-phone {
  margin-top: 8px;
  font-size: 13.5px;
  color: #444;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================
   MOBILE TUNING
===================== */
@media (max-width: 480px) {
  .lux-popup h2 {
    font-size: 24px;
  }

  .lux-video {
    height: 150px;
  }
}

/* =========================================
   DESKTOP SPACING REFINEMENT (ONLY DESKTOP)
   Does NOT affect mobile or tablet
========================================= */
@media (min-width: 1024px) {

  /* GLOBAL SECTIONS */
  .section {
    padding: 60px 0;
  }

  /* HERO */
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .hero-content p {
    margin-bottom: 22px;
  }

  /* ABOUT */
  .about-lux {
    padding: 70px 0 50px;
  }

  .about-grid {
    gap: 60px;
  }

  .about-content p {
    margin-bottom: 12px;
  }

  /* HIGHLIGHTS */
  .highlights-lux {
    padding: 70px 0 90px;
  }

  .highlights-header {
    margin-bottom: 50px;
  }

  .highlight-card {
    padding: 28px 26px;
  }

  /* AMENITIES */
  .amenities-lux {
    padding: 90px 0;
  }

  .amenities-grid {
    gap: 60px;
  }

  .amenity-card {
    padding: 26px;
  }

  /* PRICING */
  .pricing-lux {
    padding: 90px 0;
  }

  .pricing-header {
    margin-bottom: 50px;
  }

  .pricing-card {
    padding: 32px 30px;
  }

  /* CONNECTIVITY */
  .connectivity-lux {
    padding: 90px 0;
  }

  .connectivity-grid {
    gap: 60px;
  }

  .map-wrapper iframe {
    height: 380px;
  }

  /* CONTACT */
  .contact-lux {
    padding: 90px 0;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-info p {
    margin-bottom: 18px;
  }

  /* FOOTER */
  .footer-lux {
    padding: 60px 0 25px;
  }

  .footer-grid {
    gap: 45px;
  }
}

/* =====================
   FOOTER DISCLAIMER (NO JS)
===================== */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 900px;
  margin: 40px auto 0;
  position: relative;
}

.footer-disclaimer strong {
  color: var(--lux-gold);
  font-weight: 600;
}


/* Hidden text */
.disclaimer-more {
  display: none;
}


/* Toggle button */
.disclaimer-toggle {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--lux-gold);
  cursor: pointer;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-bottom {
    font-size: 11px;
    padding: 0 12px;
  }
}

/* =====================
   FOOTER LEGAL / COPYRIGHT
===================== */
.footer-legal {
  text-align: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.footer-legal strong {
  color: var(--lux-gold);
  font-weight: 600;
}

.footer-legal a {
  color: var(--lux-gold);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .footer-legal {
    font-size: 11px;
    padding: 10px 8px 0;
    line-height: 1.6;
  }
}

/* =====================================
   FOOTER COMPACT & PREMIUM (DESKTOP ONLY)
===================================== */
@media (min-width: 1024px) {

  /* Overall footer padding reduced */
  .footer-lux {
    padding: 55px 0 20px;
  }

  /* Footer grid spacing */
  .footer-grid {
    gap: 40px;
    margin-bottom: 30px;
  }

  /* Brand text tighter */
  .footer-brand p {
    margin-top: 8px;
    line-height: 1.6;
    max-width: 360px;
  }

  /* Quick links spacing */
  .footer-links li {
    margin-bottom: 6px;
  }

  /* Contact spacing */
  .footer-contact p {
    margin-bottom: 6px;
  }

  /* Disclaimer block */
  .footer-bottom {
    margin-top: 25px;
    padding-top: 14px;
    font-size: 11.5px;
    line-height: 1.55;
    max-width: 760px;
  }

  /* Read more button */
  .disclaimer-toggle {
    margin-top: 4px;
    font-size: 11.5px;
  }

  /* Legal / copyright line */
  .footer-legal {
    margin-top: 10px;
    padding-top: 10px;
    font-size: 11px;
  }
}

.footer-disclaimer {
  opacity: 0.75;
}

/* =====================
   FOOTER LEGAL STRIP
===================== */
.footer-legal-strip {
  max-width: 900px;
  margin: 25px auto 0;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  margin: 0 auto 14px;
}

/* Disclaimer collapse */
.footer-disclaimer .disclaimer-more {
  display: none;
}

.footer-legal-strip.expanded .disclaimer-more {
  display: inline;
}

/* Toggle */
.disclaimer-toggle {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--lux-gold);
  cursor: pointer;
}

/* Copyright row */
.footer-legal {
  text-align: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* =====================
   LEGAL / PRIVACY PAGE
===================== */

.legal-hero {
  background: linear-gradient(
    to bottom,
    rgba(27,27,27,0.85),
    rgba(27,27,27,0.95)
  );
  padding: 120px 0 80px;
  color: #fff;
}

.legal-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.legal-hero p {
  max-width: 700px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.legal-content {
  padding: 80px 0;
  background: #fff;
}

.legal-content h2 {
  font-size: 28px;
  margin: 40px 0 15px;
  color: var(--lux-charcoal);
}

.legal-content h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--lux-brown);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 14px;
  max-width: 900px;
}

/* Mobile */
@media (max-width: 768px) {
  .legal-hero {
    padding: 90px 0 60px;
  }

  .legal-hero h1 {
    font-size: 32px;
  }

  .legal-content {
    padding: 60px 0;
  }

  .legal-content h2 {
    font-size: 24px;
  }
}

/* =====================
   FIX: Footer hidden by mobile CTA
===================== */
@media (max-width: 768px) {

  /* Push footer content above sticky CTA */
  .footer-lux {
    padding-bottom: 110px; /* height of mobile CTA */
  }

  /* Ensure legal text is visible */
  .footer-legal {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .footer-legal {
    opacity: 0.85;
    line-height: 1.7;
  }
}

.hero-image {
  position: relative;
  height: 100vh;
  background-image: url("assets/images/home.jpg"); /* change image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Optional dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* reduce/remove if not needed */
}

@media (max-width: 768px) {
  .hero-image {
    height: 80vh;
  }
}

/* THANK YOU PAGE */
.thankyou-section {
    background: #f6f6f6;
    padding: 110px 20px;
}

.thankyou-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 45px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.thankyou-container h1 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #111;
}

.thankyou-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.thankyou-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.thankyou-contact a {
    display: inline-block;
    margin: 8px 12px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.thankyou-contact a:hover {
    text-decoration: underline;
}

.thankyou-btn {
    margin-top: 30px;
}

.thankyou-btn a {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s ease;
}

.thankyou-btn a:hover {
    background: #333;
}

/* Mobile */
@media (max-width: 600px) {
    .thankyou-container {
        padding: 30px 22px;
    }

    .thankyou-container h1 {
        font-size: 26px;
    }

    .thankyou-container p {
        font-size: 15px;
    }
}

/* DESKTOP STATIC CTA */
.fixed-cta {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

/* Button Style */
.cta-btn {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateX(-6px);
  opacity: 0.95;
}

/* Colors */
.call { background: #c62828; }
.visit { background: #1565c0; }
.whatsapp { background: #25D366; }
.enquire { background: #6a1b9a; }

/* ❌ HIDE COMPLETELY ON MOBILE */
@media (max-width: 768px) {
  .fixed-cta {
    display: none !important;
  }
}


