/* =====================================================
   GLOBAL RESET & BASE
===================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =====================================================
   NEOLIV OFFICIAL ROOT SYSTEM
===================================================== */
:root {
  /* Brand Blues */
  --nl-accent: #4752a9;
  --nl-accent-dark: #3557a3;
  --nl-accent-alt: #4e4ea4;
  --nl-accent-soft: #715cc9;

  /* Official NeoLiv Gradient */
  --nl-gradient: linear-gradient(
    90deg,
    #4752a9,
    #3557a3,
    #4752a9,
    #4e4ea4,
    #715cc9,
    #715cc9
  );

  /* Typography */
  --nl-heading: #151515;
  --nl-text: #444444;
  --nl-text-light: #666666;

  /* Backgrounds */
  --nl-bg-white: #ffffff;
  --nl-bg-light: #f9f9f9;
  --nl-bg-dark: #060606;

  /* Accent (TEXT ONLY – NEVER BUTTONS) */
  --nl-gold: #ffc451;
}

/* =====================================================
   BODY
===================================================== */
body {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background: var(--nl-bg-white);
  color: var(--nl-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =====================================================
   CONTAINER
===================================================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1,
h2,
h3,
h4 {
  letter-spacing: -0.4px;
  color: var(--nl-heading);
}

h1 {
  font-size: 48px;
  font-weight: 600;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--nl-text-light);
  margin-bottom: 20px;
}

/* Eyebrow / Section Tag (gold allowed here only) */
.section-tag,
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--nl-gold);
  margin-bottom: 12px;
}

/* =====================================================
   GLOBAL SECTION SPACING
===================================================== */
section {
  position: relative;
  padding: 110px 0;
  background: var(--nl-bg-white);
}

/* =====================================================
   NEOLIV UNIVERSAL GLASS CTA SYSTEM (SINGLE SOURCE)
===================================================== */

/* BASE CTA */
.cta-primary {
  --cta-color: var(--nl-accent);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 42px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  background: transparent;
  color: var(--cta-color);
  border: 1.6px solid var(--cta-color);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  transition: background 0.35s ease,
              color 0.35s ease,
              box-shadow 0.35s ease,
              transform 0.35s ease;
  cursor: pointer;
}

/* HOVER – ONLY NEOLIV BLUE GRADIENT */
.cta-primary:hover {
  background: var(--nl-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(71,82,169,0.35);
}

/* =====================================================
   DARK BACKGROUND AUTO MODE
===================================================== */
.dark-section .cta-primary,
.dark-background .cta-primary,
#hero .cta-primary,
.why-khopoli-section .cta-primary,
.investment-section .cta-primary,
.pricing-prelaunch .cta-primary {
  --cta-color: #ffffff;
  color: #ffffff;
  border-color: rgba(255,255,255,0.9);
}

/* =====================================================
   LIGHT BACKGROUND AUTO MODE
===================================================== */
.light-section .cta-primary,
.section-project .cta-primary,
.amenities-section .cta-primary,
.location-section .cta-primary,
.gallery-section .cta-primary,
.configuration-section .cta-primary,
.contact-section .cta-primary {
  --cta-color: var(--nl-accent);
}

/* =====================================================
   🔒 HARD OVERRIDE – KILL GOLD HOVER EVERYWHERE
===================================================== */
.btn-primary:hover,
.btn-outline:hover,
.btn-outline-white:hover,
.cta-secondary:hover {
  background: var(--nl-gradient) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 16px 40px rgba(71,82,169,0.35) !important;
}

/* =====================================================
   CTA WRAPPERS (LAYOUT ONLY)
===================================================== */
.cta-wrap.left {
  margin-top: 40px;
  text-align: left;
}

.cta-wrap.center {
  margin-top: 70px;
  text-align: center;
}

/* =====================================================
   RESPONSIVE BASE
===================================================== */
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }
}
/* =====================================================
   HEADER (NEOLIV – OFFICIAL THEME ALIGNED)
===================================================== */

#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(6, 6, 6, 0.88);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

#site-header.scrolled {
  background: #060606;
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 52px;
}

/* Divider */
.header-divider {
  width: 92%;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 196, 81, 0.55),
    transparent
  );
}

/* =====================================================
   NAVIGATION (NEOLIV STYLE)
===================================================== */

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

/* Underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffc451;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* =====================================================
   BUTTON SYSTEM (NEOLIV OFFICIAL COLORS)
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;

  transition: all 0.35s ease;
}

/* Primary CTA */
.btn-primary {
  background: #4752a9;
  color: #ffffff;
}

/* NeoLiv official gradient hover */
.btn-primary:hover,
.header .btn-primary:hover {
  color: #ffffff;
  background: linear-gradient(
    90deg,
    #4752a9,
    #3557a3,
    #4752a9,
    #4e4ea4,
    #715cc9,
    #715cc9
  );
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(71,82,169,0.45);
}

/* Outline dark */
.btn-outline {
  background: transparent;
  border: 1.5px solid #151515;
  color: #151515;
}

.btn-outline:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #111;
}

/* Outline white (header / hero) */
.btn-outline-white {
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
}

.btn-outline-white:hover {
  background: #ffc451;
  border-color: #ffc451;
  color: #111;
}

/* Sizes */
.btn-lg {
  padding: 16px 42px;
  font-size: 16px;
}

.btn-sm {
  padding: 11px 26px;
  font-size: 14px;
}

/* =====================================================
   HERO (SAFE – IMAGE NEVER BREAKS)
===================================================== */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  padding-top: 140px; /* fixed header safe */
  background: transparent !important;
  color: #ffffff;
  overflow: hidden;
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Overlay – cinematic */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.2) 80%
  );
}

/* Content */
.hero-container {
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.hero-copy h2,
.hero-copy p,
.hero-copy span {
  color: #ffffff;
}

.hero-cta {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .main-nav {
    display: none; /* mobile menu later */
  }
}

@media (max-width: 768px) {
  #hero {
    padding-top: 160px;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }
}


/* ================= LUXURY MODAL – NEOLIV FINAL ================= */

.luxury-modal {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 0;
  box-shadow: 0 50px 140px rgba(0,0,0,0.38);
  overflow: hidden;
}

/* ================= CLOSE ================= */

.lux-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 26px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  z-index: 6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lux-close:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ================= BRAND HEADER ================= */

/* ================= BRAND HEADER – NEOLIV GRADIENT ================= */

.lux-brand {
  width: 100%;
  background: var(--nl-gradient);
  padding: 28px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Subtle luxury depth */
.lux-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.12),
    rgba(0,0,0,0.25)
  );
  pointer-events: none;
}

.lux-brand img {
  height: 44px;
  width: auto;
  display: block;
}

/* ================= CONTENT ================= */

.lux-content {
  text-align: center;
  padding: 34px 32px 30px;
}

/* Eyebrow */
.lux-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--nl-gold);
  display: inline-block;
  margin-bottom: 10px;
}

/* Title */
.lux-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.lux-title span {
  color: var(--nl-accent);
}

/* Subtitle */
.lux-subtitle {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 26px;
}

/* ================= FORM ================= */

.lux-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  margin-bottom: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lux-form input:focus {
  outline: none;
  border-color: var(--nl-accent);
  box-shadow: 0 0 0 3px rgba(71,82,169,0.12);
}

/* ================= ACTION BUTTONS ================= */

.lux-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

/* Base */
.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Primary – NeoLiv */
.lux-btn.primary {
  background: var(--nl-gradient);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(71,82,169,0.35);
}

.lux-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(71,82,169,0.45);
}

/* WhatsApp */
.lux-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.35);
}

.lux-btn.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(37,211,102,0.45);
}

/* ================= CONSENT ================= */

.lux-consent {
  font-size: 11.5px;
  color: #777;
  margin-top: 16px;
  line-height: 1.5;
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {
  .lux-content {
    padding: 30px 22px 26px;
  }

  .lux-title {
    font-size: 22px;
  }
}


/* =====================================================
   WHY KHOPOLI – CLEAN (STABLE & POLISHED)
===================================================== */

.why-khopoli-clean {
  background: #ffffff;
  padding: 110px 0;
}

/* HEADER */
.why-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.why-head h2 {
  font-size: 40px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.why-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0; /* 🔒 GLOBAL p CONFLICT FIX */
}

/* =====================================================
   GRID
===================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* =====================================================
   CARD
===================================================== */

.why-card-clean {
  background: #f8f9fb;
  border-radius: 22px;
  padding: 38px 30px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card-clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.08);
}

/* ICON */
.why-card-clean i {
  font-size: 32px;
  color: #1e2d8f;
  margin-bottom: 18px;
  display: inline-block;
}

/* TITLE */
.why-card-clean h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

/* TEXT */
.why-card-clean p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 0; /* 🔒 NO EXTRA GAP */
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-head h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-head {
    margin-bottom: 48px;
  }
}


/* ================= HEADER ================= */

#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
  );
  transition: background 0.3s ease;
}

#site-header.scrolled {
  background: #0c0b09;
}

.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 58px;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #f5c16c;
}

/* ================= HEADER DIVIDER ================= */

.header-divider {
  width: 92%;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.55),
    rgba(255,255,255,0)
  );
}

/* Scroll state – slightly subtle */
#site-header.scrolled .header-divider {
  background: linear-gradient(
    to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.35),
    rgba(255,255,255,0)
  );
}


/* ================= HERO ================= */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.5) 45%,
    rgba(0,0,0,0.2) 80%
  );
}

/* Content */
.hero-container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 560px;
  margin-top: 60px;
}

/* Text */
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #f5c16c;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-copy h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 10px;
}

.hero-copy h2 {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 34px;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hero-container {
    padding-top: 140px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 0;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy h2 {
    font-size: 18px;
  }

  .hero-cta {
    justify-content: center;
  }

  .main-nav {
    display: none; /* mobile menu later */
  }
}


/* =====================================================
   WHY KHOPOLI – NEOLIV PREMIUM (LOCKED)
===================================================== */

.why-khopoli-section {
  padding: 120px 0;
  background: #060606; /* NeoLiv dark */
  position: relative;
  overflow: hidden;
}

/* Smooth hero → section transition */
.why-khopoli-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 90px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
  z-index: 0;
}

/* =====================================================
   LAYOUT
===================================================== */

.why-container {
  position: relative;
  z-index: 2;

  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.why-content .section-tag {
  color: #ffc451; /* NeoLiv gold */
}

.why-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 600;
  color: #ffffff;
}

.why-content h2 span {
  color: #4752a9; /* NeoLiv accent blue */
}

.why-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 0;
}

/* CTA */
.why-cta {
  margin-top: 36px;
}

/* =====================================================
   RIGHT – CARDS (APPLE-LEVEL CALM)
===================================================== */

.why-cards {
  display: grid;
  gap: 22px;
}

.why-card {
  padding: 32px 34px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.015)
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  backdrop-filter: blur(10px);

  transition: transform 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(71,82,169,0.6);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .why-content h2 {
    font-size: 34px;
  }

  .why-cta {
    margin-top: 32px;
  }
}

/* =====================================================
   PROJECT OVERVIEW – NEOLIV SOFT GRADIENT (FINAL LOCK)
===================================================== */

.section-project {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(71,82,169,0.04) 55%,
    rgba(71,82,169,0.08) 100%
  );
  padding: 130px 0;
  position: relative;
}

/* Top divider for section separation */
.section-project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 90%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  transform: translateX(-50%);
}

/* =====================================================
   LAYOUT
===================================================== */

.project-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

/* =====================================================
   CONTENT
===================================================== */

.section-project .section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffc451;
}

.section-project h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 600;
  color: #151515;
}

.section-project h2 span {
  color: #4752a9;
}

.section-project p {
  font-size: 16px;
  line-height: 1.75;
  color: #444444;
  max-width: 560px;
  margin-bottom: 0;
}

/* =====================================================
   BULLET POINTS
===================================================== */

.project-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
}

.project-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #212529;
}

.project-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #4752a9;
}

/* =====================================================
   IMAGE
===================================================== */

.project-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-image img:hover {
  transform: scale(1.015);
  box-shadow: 0 45px 90px rgba(0,0,0,0.22);
}

/* =====================================================
   CTA – LIGHT BACKGROUND GLASS BUTTON
===================================================== */

.section-project .cta-primary {
  background: transparent;
  color: #4752a9;
  border: 1.6px solid #4752a9;
  backdrop-filter: blur(6px);
}

.section-project .cta-primary:hover {
  background: linear-gradient(
    90deg,
    #4752a9,
    #3557a3,
    #4752a9,
    #4e4ea4,
    #715cc9,
    #715cc9
  );
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(71,82,169,0.35);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {
  .project-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .section-project h2 {
    font-size: 36px;
  }
}

/* =====================================================
   AMENITIES – NEOLIV REVERSED GRADIENT (FINAL LOCK)
   Light (Top) → Dark (Bottom)
===================================================== */

.amenities-section {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(71,82,169,0.08) 55%,
    rgba(6,6,6,0.22) 100%
  );
  padding: 120px 0;
  position: relative;
}

/* =====================================================
   HEADER
===================================================== */

.amenities-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.amenities-head h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  color: #151515;
  margin-bottom: 14px;
}

.amenities-head h2 span {
  color: #4752a9;
}

.amenities-head p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 0;
}

/* =====================================================
   GRID
===================================================== */

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* =====================================================
   CARD
===================================================== */

.amenity-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 42px 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.14);
}

/* ICON */
.amenity-card i {
  font-size: 34px;
  color: #4752a9;
  margin-bottom: 18px;
}

/* TITLE */
.amenity-card h4 {
  font-size: 18px;
  color: #151515;
  margin-bottom: 8px;
  font-weight: 600;
}

/* TEXT */
.amenity-card p {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =====================================================
   CTA – LIGHT BACKGROUND GLASS BUTTON
===================================================== */

.amenities-cta {
  margin-top: 70px;
  text-align: center;
}

.amenities-cta .cta-primary {
  background: transparent;
  color: #4752a9;
  border: 1.6px solid #4752a9;
  backdrop-filter: blur(6px);
}

.amenities-cta .cta-primary:hover {
  background: linear-gradient(
    90deg,
    #4752a9,
    #3557a3,
    #4752a9,
    #4e4ea4,
    #715cc9,
    #715cc9
  );
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(71,82,169,0.35);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .amenities-head h2 {
    font-size: 34px;
  }
}

/* =====================================================
   LOCATION SECTION – CLEAN & BALANCED (LOCKED)
===================================================== */

.location-section {
  background: linear-gradient(180deg, #f6f7fa 0%, #ffffff 100%);
  padding: 110px 0;
}

/* =====================================================
   HEADER
===================================================== */

.section-header.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-header.center .section-tag {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #111;
}

.section-header p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0; /* 🔒 global p fix */
}

/* =====================================================
   GRID
===================================================== */

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* =====================================================
   CARD
===================================================== */

.location-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 38px 30px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.location-card:hover {
  transform: translateY(-6px); /* 🔥 smoother */
  box-shadow: 0 28px 60px rgba(0,0,0,0.1);
}

/* ICON */
.location-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(30,45,143,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2a8c;
  font-size: 26px;
  transition: background 0.3s ease, color 0.3s ease;
}

.location-card:hover .icon {
  background: #f5c16c;
  color: #111;
}

/* TITLE */
.location-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
  font-weight: 600;
}

/* TEXT */
.location-card p {
  font-size: 14.5px;
  color: #666;
  margin-bottom: 0; /* 🔒 no extra gap */
}

/* =====================================================
   CTA
===================================================== */

.section-cta {
  margin-top: 64px;
  text-align: center;
}

/* Uses global .cta-primary */
.section-cta .cta-primary {
  margin: 0 auto;
}

/* ================= LOCATION – PREMIUM UPGRADE ================= */

.location-head h2 span {
  color: #c9a24d;
}

/* Card Enhancement */
.location-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 32px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 80px rgba(0,0,0,0.12);
}

/* Highlight one card */
.location-card.highlight {
  border: 2px solid #c9a24d;
  box-shadow: 0 30px 75px rgba(201,162,77,0.25);
}

/* Icon Badge */
.location-card .icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(30,45,143,0.1);
  color: #1e2d8f;
  font-size: 28px;

  transition: all 0.3s ease;
}

.location-card:hover .icon {
  background: #f5c16c;
  color: #111;
  box-shadow: 0 10px 28px rgba(245,193,108,0.45);
}

/* Text Refinement */
.location-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.location-card p {
  font-size: 14.5px;
  color: #555;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   INVESTMENT SECTION – FINAL (NO CONFLICT / LOCKED)
===================================================== */

#investment {
  position: relative;
  background: linear-gradient(180deg, #0c0b09 0%, #111111 100%);
  padding: 120px 0;
  color: #ffffff;
  overflow: hidden;
}

/* ================= HEADER ================= */

#investment .section-header h2 {
  color: #ffffff;
}

#investment .section-header p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin: 0 auto;
}

/* ================= GRID ================= */

#investment .investment-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* ================= CARD ================= */

#investment .investment-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  padding: 44px 34px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

#investment .investment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,193,108,0.45);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}

/* ICON */

#investment .investment-card i {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: #f5c16c;
  background: radial-gradient(
    circle at top,
    rgba(245,193,108,0.35),
    rgba(245,193,108,0.08)
  );
  transition: all 0.3s ease;
}

#investment .investment-card:hover i {
  background: #f5c16c;
  color: #111;
  box-shadow: 0 10px 28px rgba(245,193,108,0.45);
}

/* TEXT */

#investment .investment-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

#investment .investment-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

/* ================= CTA BOX ================= */

#investment .price-cta-box {
  margin: 90px auto 0;
  max-width: 960px;
  background: linear-gradient(
    135deg,
    #4752a9,
    #3557a3,
    #2f377a
  );
  border-radius: 34px;
  padding: 64px 60px;
  text-align: center;
  box-shadow: 0 60px 140px rgba(71,82,169,0.55);
}

/* CTA TEXT */

#investment .price-cta-box h3 {
  font-size: 30px;
  margin-bottom: 14px;
  color: #ffffff;
}

#investment .price-cta-box p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ================= CTA ACTIONS ================= */

#investment .cta-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

#investment .cta-actions a {
  min-width: 220px;
}

/* ================= CTA – UNIFIED BEHAVIOR ================= */

/* Base (glass) */
#investment .cta-primary,
#investment .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 42px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  border: 1.6px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

/* Hover – NeoLiv Official Gradient */
#investment .cta-primary:hover,
#investment .cta-secondary:hover {
  background: linear-gradient(
    90deg,
    #4752a9,
    #3557a3,
    #4752a9,
    #4e4ea4,
    #715cc9,
    #715cc9
  );
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(71,82,169,0.45);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  #investment .investment-grid {
    grid-template-columns: 1fr;
  }

  #investment .price-cta-box {
    padding: 48px 28px;
  }

  #investment .price-cta-box h3 {
    font-size: 24px;
  }

  #investment .cta-actions {
    flex-direction: column;
    gap: 18px;
  }

  #investment .cta-actions a {
    width: 100%;
    max-width: 320px;
  }
}


/* =====================================================
   MASTER PLAN – CLEAN & STABLE
===================================================== */

.masterplan-section {
  background: #ffffff;
  padding: 120px 0;
}

/* Layout */
.masterplan-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* IMAGE */
.masterplan-image {
  width: 100%;
}

.masterplan-image img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
}

.masterplan-image img:hover {
  transform: scale(1.02);
}

/* CONTENT */
.masterplan-points {
  width: 100%;
}

.masterplan-points h2 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #111;
}

.masterplan-points p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 26px;
}

/* LIST */
.masterplan-points ul {
  list-style: none;
  padding: 0;
  margin-bottom: 34px;
}

.masterplan-points ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

.masterplan-points ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1e2d8f;
  font-weight: 600;
}

/* CTA */
.masterplan-cta {
  margin-top: 10px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .masterplan-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .masterplan-points ul li {
    padding-left: 0;
  }

  .masterplan-points ul li::before {
    display: none;
  }

  .masterplan-points h2 {
    font-size: 34px;
  }
}

/* ================= CONFIGURATION SECTION – NEOLIV ================= */

.configuration-section {
  background: var(--nl-bg-light, #f9f9f9);
  padding: 120px 0;
}

/* ================= GRID ================= */

.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 70px;
  align-items: stretch;
}

/* ================= CARD ================= */

.config-card {
  background: #ffffff;
  padding: 46px 38px;
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;

  display: flex;
  flex-direction: column;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.config-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 75px rgba(0,0,0,0.14);
}

/* ================= HIGHLIGHT CARD ================= */

.config-card.highlight {
  border: 2px solid var(--nl-accent);
  box-shadow: 0 35px 85px rgba(71,82,169,0.28);
}

.config-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);

  background: var(--nl-accent);
  color: #ffffff;
  font-size: 12px;
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 600;
}

/* ================= TEXT ================= */

.config-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--nl-heading);
  font-weight: 600;
}

.plot-size {
  font-size: 15px;
  margin-bottom: 24px;
  color: var(--nl-text);
}

/* ================= FEATURES LIST ================= */

.config-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.config-card ul li {
  font-size: 14.5px;
  color: var(--nl-text-light);
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.config-card ul i {
  color: var(--nl-accent);
  font-size: 15px;
}

/* ================= CTA ALIGNMENT ================= */

.config-card .cta-primary {
  margin-top: auto; /* CTA always at bottom */
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .config-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .config-card {
    padding: 40px 28px;
  }
}


/* =====================================================
   PRICING – NEOLIV LUXURY (FINAL FIXED)
===================================================== */

.pricing-prelaunch {
  background: linear-gradient(180deg, #f6f7fa 0%, #ffffff 100%);
  padding: 120px 0;
}

/* Intro */
.pricing-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* =====================================================
   LAYOUT
===================================================== */

.lux-pricing-wrap {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}

/* =====================================================
   BASE CARD
===================================================== */

.lux-card {
  position: relative;
  padding: 56px 52px;
  border-radius: 30px;

  display: flex;
  flex-direction: column;
}

/* =====================================================
   LIGHT CARD
===================================================== */

.lux-card-light {
  background: #ffffff;
  box-shadow: 0 35px 80px rgba(0,0,0,0.08);
}

.lux-card-light h3 {
  font-size: 26px;
  margin-bottom: 24px;
  color: #151515;
}

.lux-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-list li {
  font-size: 15.5px;
  margin-bottom: 14px;
  color: #374151;
  position: relative;
  padding-left: 20px;
}

.lux-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--nl-accent);
  font-size: 20px;
}

/* =====================================================
   DARK CARD → NEOLIV BLUE (FIXED)
===================================================== */

.lux-card-dark {
  background: linear-gradient(
    180deg,
    #4752a9 0%,
    #3557a3 45%,
    #2f377a 100%
  );
  color: #ffffff;
  box-shadow: 0 55px 120px rgba(71,82,169,0.45);
}

/* Badge */
.lux-badge {
  position: absolute;
  top: -18px;
  left: 42px;
  background: #ffc451;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
}

/* Text */
.lux-card-dark h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #ffffff;
}

.lux-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
}

/* CTA */
.lux-cta {
  margin-top: auto;
  text-align: left;
}

.lux-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .lux-pricing-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lux-card {
    padding: 46px 34px;
    text-align: center;
  }

  .lux-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .lux-cta {
    text-align: center;
  }
}

/* =====================================================
   PRICING – FORCE NEOLIV BLUE (FINAL OVERRIDE)
===================================================== */

.pricing-prelaunch .lux-card-dark {
  background: linear-gradient(
    180deg,
    #4752a9 0%,
    #3557a3 45%,
    #2f377a 100%
  ) !important;

  color: #ffffff;
  box-shadow: 0 55px 120px rgba(71,82,169,0.45);
}

/* REMOVE ANY DARK OVERLAY */
.pricing-prelaunch .lux-card-dark::before,
.pricing-prelaunch .lux-card-dark::after {
  content: none !important;
}

/* Text safety */
.pricing-prelaunch .lux-card-dark h3,
.pricing-prelaunch .lux-card-dark p,
.pricing-prelaunch .lux-note {
  color: #ffffff;
}



/* =====================================================
   WHY NEOLIV – FINAL (ALIGNED WITH INVESTMENT / PRICING)
===================================================== */

.why-neoliv {
  background: #ffffff;
  padding: 120px 0;
  text-align: center;
}

/* Eyebrow */
.why-neoliv .section-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--nl-accent);
  margin-bottom: 12px;
  display: inline-block;
}

/* Heading */
.why-neoliv h2 {
  font-size: 42px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

/* Intro */
.why-neoliv .section-intro {
  max-width: 720px;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

/* =====================================================
   GRID
===================================================== */

.neoliv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 70px;
}

/* =====================================================
   CARD – PREMIUM GLASS LIGHT
===================================================== */

.neoliv-card {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f7fb 100%
  );
  padding: 40px 32px;
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: 0 22px 55px rgba(0,0,0,0.06);
  transition: transform 0.35s ease,
              box-shadow 0.35s ease;
}

.neoliv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.12);
}

/* Icon */
.neoliv-card i {
  width: 64px;
  height: 64px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  margin-bottom: 20px;

  color: var(--nl-accent);
  background: rgba(71,82,169,0.1);

  transition: all 0.35s ease;
}

.neoliv-card:hover i {
  background: var(--nl-gradient);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(71,82,169,0.35);
}

/* Title */
.neoliv-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  letter-spacing: -0.2px;
}

/* Text */
.neoliv-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 260px;
  margin: 0 auto;
}

/* =====================================================
   CTA
===================================================== */

.neoliv-cta {
  margin-top: 20px;
}

/* =====================================================
   WHY KHOPOLI – MATCHED VARIANT
===================================================== */

.why-khopoli-clean {
  padding: 130px 0;
}

/* Luxury title */
.lux-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: #111;
}

.lux-title span {
  color: var(--nl-accent);
}

/* Card variant */
.why-card-clean {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f6f7fb 100%
  );
  box-shadow: 0 22px 55px rgba(0,0,0,0.06);
}

/* Icon refinement */
.why-card-clean i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(71,82,169,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.why-card-clean:hover i {
  background: var(--nl-gradient);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(71,82,169,0.35);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .neoliv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-neoliv h2,
  .lux-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .neoliv-grid {
    grid-template-columns: 1fr;
  }

  .why-neoliv h2,
  .lux-title {
    font-size: 30px;
  }
}


/* =====================================================
   GALLERY – FINAL (SAFE & CONSISTENT)
===================================================== */

#gallery {
  background: linear-gradient(180deg, #f6f7fa 0%, #ffffff 100%);
  padding: 130px 0;
}

/* GRID */
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}

/* LEFT CONTENT */
#gallery .gallery-content {
  max-width: 520px;
}

#gallery .lux-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin: 16px 0 18px;
  color: #111;
}

#gallery .lux-title span {
  color: #4752a9;
}

#gallery .lux-title em {
  font-style: normal;
  color: #c9a24d;
}

#gallery .gallery-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 28px;
}

/* POINTS */
#gallery .gallery-points {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

#gallery .gallery-points li {
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

#gallery .gallery-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c9a24d;
  font-size: 18px;
}

/* IMAGE GRID */
#gallery .gallery-images {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 26px;
}

#gallery .gallery-item {
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

#gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

#gallery .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 100px rgba(0,0,0,0.25);
}

#gallery .gallery-item:hover img {
  transform: scale(1.08);
}

/* VARIANTS */
#gallery .gallery-item.hero {
  grid-row: span 2;
}

#gallery .gallery-item.wide {
  grid-column: span 2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  #gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  #gallery .gallery-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  #gallery .gallery-item.hero,
  #gallery .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  #gallery .lux-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  #gallery .lux-title {
    font-size: 30px;
  }
}

/* =====================================================
   CONTACT SECTION – FINAL (SAFE & CONVERSION READY)
===================================================== */

#contact {
  background: #ffffff;
  padding: 130px 0;
}

/* ================= GRID ================= */

#contact .contact-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */

#contact .contact-content .section-tag {
  margin-bottom: 14px;
}

#contact .contact-content h2 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #111;
  font-weight: 600;
}

#contact .contact-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 32px;
  max-width: 460px;
}

/* Points */

#contact .contact-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

#contact .contact-points li {
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
}

#contact .contact-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4752a9;
  font-weight: 600;
}

/* ================= FORM CARD ================= */

#contact .contact-form-card {
  background: #ffffff;
  padding: 54px 48px;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.12);
}

#contact .contact-form-card h4 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #111;
  text-align: center;
  font-weight: 600;
}

/* ================= FORM ================= */

#contact .contact-form input {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 14.5px;
  margin-bottom: 18px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#contact .contact-form input:focus {
  border-color: #4752a9;
  box-shadow: 0 0 0 3px rgba(71,82,169,0.14);
}

/* ================= BUTTON ROW ================= */

#contact .contact-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

/* PRIMARY – USE GLOBAL CTA */

#contact .contact-btn-row .cta-primary {
  flex: 1;
  justify-content: center;
}

/* WHATSAPP – SECONDARY (LOCAL ONLY) */

#contact .btn-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 0;
  border-radius: 999px;

  border: 1.5px solid #25d366;
  color: #25d366;
  background: transparent;

  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  transition: all 0.3s ease;
}

#contact .btn-whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.35);
}

/* ================= CONSENT ================= */

#contact .contact-consent {
  font-size: 12.5px;
  color: #777;
  margin-top: 18px;
  text-align: center;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  #contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  #contact .contact-content h2 {
    font-size: 34px;
  }

  #contact .contact-form-card {
    padding: 44px 30px;
  }

  #contact .contact-btn-row {
    flex-direction: column;
  }
}


/* ================= FOOTER – PREMIUM POLISH ================= */

.site-footer {
  background: #0c0b09;
  color: rgba(255,255,255,0.75);
  padding: 90px 0 36px;
}

/* =====================================================
   FOOTER GRID
===================================================== */

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 70px;
}

/* =====================================================
   BRAND
===================================================== */

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 360px;
}

/* =====================================================
   LINKS
===================================================== */

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #f5c16c;
  padding-left: 2px;
}

/* =====================================================
   CONTACT
===================================================== */

.footer-contact p {
  font-size: 14.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.72);
}

.footer-contact i {
  color: #f5c16c;
  font-size: 15px;
}

.footer-contact a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: #f5c16c;
}

/* =====================================================
   BOTTOM BAR
===================================================== */

.footer-bottom {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-bottom span {
  margin: 0 6px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 46px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
    margin: auto;
  }

  .footer-contact p {
    justify-content: center;
  }
}


/* ================= STICKY CTA – FINAL (NEOLIV ALIGNED) ================= */

.sticky-cta {
  position: fixed;
  bottom: env(safe-area-inset-bottom, 0);
  left: 0;
  width: 100%;
  background: #ffffff;
  display: none;
  gap: 12px;
  padding: 12px 14px 14px;
  z-index: 9998;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: 50px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Call – NeoLiv Blue */
.sticky-btn.call {
  background: var(--nl-gradient);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(71,82,169,0.45);
}

/* WhatsApp */
.sticky-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.35);
}

/* Press */
.sticky-btn:active {
  transform: scale(0.97);
}

/* Icons */
.sticky-btn i {
  font-size: 18px;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 84px;
  }
}

/* ================= FLOATING CTA – FINAL ================= */

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 150px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  border: none;

  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn i {
  font-size: 22px;
  color: #ffffff;
}

/* Call */
.float-btn.call {
  background: var(--nl-gradient);
}

/* WhatsApp */
.float-btn.whatsapp {
  background: #25d366;
}

/* Enquiry */
.float-btn.enquiry {
  background: #111;
}

.float-btn:hover,
.float-btn:active {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 96px;
    right: 14px;
  }
}

/* =====================================================
   APPLE-LEVEL LUXURY PRICING
===================================================== */

.luxury-pricing {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

/* Layout */
.lux-pricing-wrap {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* Card base */
.lux-card {
  border-radius: 32px;
  padding: 56px 52px;
  position: relative;
  transition: all 0.4s ease;
}

/* Light card */
.lux-card-light {
  background: #ffffff;
  box-shadow: 0 40px 90px rgba(0,0,0,0.08);
}

.lux-card-light h3 {
  color: #111;
}

/* Dark card (hero) */
.lux-card-dark {
  background: #0c0b09;
  color: #ffffff;
  box-shadow: 0 50px 120px rgba(0,0,0,0.45);
}

/* Badge */
.lux-badge {
  position: absolute;
  top: -18px;
  left: 44px;
  background: #c9a24d;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
}

/* Headings */
.lux-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 26px;
}

/* Description */
.lux-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

/* List */
.lux-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-list li {
  font-size: 15.5px;
  color: #333;
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
}

.lux-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a24d;
  font-size: 22px;
  line-height: 1;
}

/* CTA */
.lux-cta {
  margin-top: 10px;
}

/* Note */
.lux-note {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Hover (very subtle – Apple style) */
.lux-card:hover {
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 992px) {
  .lux-pricing-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lux-card {
    padding: 44px 32px;
    text-align: center;
  }

  .lux-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .lux-list li {
    padding-left: 0;
  }

  .lux-list li::before {
    display: none;
  }
}
