/*  CSS Variables  */
:root {
  --color-primary: #152c24;
  /* Deep Green */
  --color-accent: #ba9a5d;
  /* Gold */
  --color-secondary: #ebe1d0;
  /* Beige/Cream */
  --color-highlights: #5f7860;
  /* Sage Green */

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/*  Global Reset  */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background-color: var(--color-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}


/*  Utility Classes  */
.container {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.container-large {
  width: 95%;
  max-width: 1680px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.color-primary {
  color: var(--color-primary) !important;
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.header-line {
  width: 80px;
  height: 4px;
  background-color: var(--color-primary);
  margin: 20px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14.4px 36px;
  /* 12px 30px * 1.2 */
  font-weight: 600;
  font-size: 1.08rem;
  /* 0.9rem * 1.2 */
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-accent {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  /* border: 1px solid var(--color-primary); */
}

.btn-accent:hover {
  background-color: var(--color-highlights);
  color: var(--color-secondary);
}

.btn-outline {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

/*  Header  */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  transition: var(--transition);
  padding: 30px 0;
  /* 25px * 1.2 */
}

.site-header.transparent {
  background: transparent;
}

.site-header.floating {
  /* background: rgba(21, 44, 36, 0.95);
  backdrop-filter: blur(10px); */

  background: rgba(21, 44, 36, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(186, 154, 93, 0.4);
  padding: 18px 0;
  /* 15px * 1.2 */
  margin-top: 20px;
  /* 10px * 1.2 */
  width: 90%;
  /* Full width */
  left: 5%;
  border-radius: 36px;
  /* 30px * 1.2 */
  /* Remove border radius for full width */
  box-shadow: 0 12px 36px rgba(21, 44, 36, 0.2);
  /* Shadow scaled slightly */
}

.site-header.floating .header-inner {
  padding: 0 40px;
}

.site-header.floating .btn-accent {
  background-color: var(--color-highlights);
  /* color: var(--color-accent); */
  border-radius: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 100px 0 100px;
}

.nav-logo {
  height: 45px;
  /* 50px * 1.2 */
  width: auto;
  object-fit: contain;
}

/*  Mobile Specific Styles  */
.desktop-only {
  display: inline-flex;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2001;
  /* Above mobile nav */
  padding: 0;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.site-header.floating .mobile-menu-btn .bar {
  background-color: var(--color-primary);
}

/* Hamburger to Cross Animation */
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-secondary) !important;
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-secondary) !important;
}

.mobile-menu-btn.active {
  position: fixed;
  top: 30px;
  right: 5%;
}

/*  Navigation Links  */
.nav-links {
  display: flex;
  gap: 27px;
  /* 30px * 1.2 */
}

.nav-links a {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.17rem;
  /* 1.3rem * 1.2 */
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

.site-header.floating .nav-links a {
  color: var(--color-secondary);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  scale: 0.75;
  /* 15px * 1.2 */
}

.phone-cta {
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: var(--transition);
  margin-top: 5px;
  width: fit-content;
  background-color: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(21, 44, 36, 0.1);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  /* Matched slanted-pill exactly */
}

.phone-icon-box {
  background-color: transparent;
  /* Remove green bar */
  color: var(--color-primary);
  /* Icon color primary */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 15px;
  /* Adjust padding for centering */
  height: 60px;
  /* Matched height */
}

.phone-icon-box svg {
  width: 24px;
  height: 24px;
}

.phone-number-box {
  background-color: transparent;
  color: var(--color-primary);
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 42px 0 10px;
  /* Further increased to match slanted-pill width */
  font-weight: 800;
  font-size: 1.5rem;
  /* 1.4rem * 1.2 */
  letter-spacing: 0.5px;
}

.phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(21, 44, 36, 0.2);
}

/*  Hero Section  */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(21, 44, 36, 0.85) 0%,
      rgba(21, 44, 36, 0.4) 50%,
      rgba(21, 44, 36, 0) 100%);
  z-index: -1;
}

.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center vertically */
  height: 100%;
  padding-left: 100px;
  /* 80px from left */
  width: 100%;
  margin: 0;
  max-width: none;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  /* 30px * 1.2 */
  max-width: 840px;
  /* 700px * 1.2 */
  position: absolute;
  scale: 0.85;
  top: 10%;
  left: 2.5%;
  scale: 0.80;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  /* 15px * 1.2 */
  background: rgba(21, 44, 36, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(186, 154, 93, 0.4);
  padding: 12px 36px;
  /* 10px 30px * 1.2 */
  border-radius: 100px;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.96rem;
  /* 0.8rem * 1.2 */
  text-transform: uppercase;
  width: fit-content;

}

.location-tag .dot {
  font-size: 1.2rem;
  line-height: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 6rem;
  /* 5rem * 1.2 */
  line-height: 1.1;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 18px;
  /* 15px * 1.2 */
}

.slanted-pill {
  display: inline-flex;
  align-items: center;
  background: var(--color-secondary);
  padding: 12px 75px 12px 36px;
  /* 10px 40px 10px 30px * 1.2 + 30px width */
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  width: fit-content;
}

.pill-bar {
  width: 7px;
  /* 6px * 1.2 */
  height: 24px;
  /* 20px * 1.2 */
  background-color: var(--color-primary);
  margin-right: 18px;
  /* 15px * 1.2 */
}

.slanted-pill p {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  /* 0.8rem * 1.2 */
  letter-spacing: 2px;
}

.hero-price-box {
  background: rgba(186, 154, 93, 0.15);
  backdrop-filter: blur(5px);
  padding: 15px 120px 15px 36px;
  /* Increased padding to sync width */
  border-left: 5px solid var(--color-accent);
  width: fit-content;
  clip-path: polygon(0 0, 95% 0, 70% 100%, 0 100%);
  /* Same as slanted-pill */
}

.hero-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-highlights-list li {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.hero-highlights-list li::before {
  content: "•";
  color: var(--color-accent);
  margin-right: 15px;
  font-size: 1.5rem;
}

.currency {
  font-size: 2.4rem;
  /* 2rem * 1.2 */
  font-weight: 300;
}

.amount {
  font-size: 4.8rem;
  /* 4rem * 1.2 */
  font-weight: 700;
  line-height: 1;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 264px);
  /* 220px * 1.2 */
}

.feature-card {
  border: 1px solid rgba(235, 225, 208, 0.2);
  padding: 24px;
  /* 20px * 1.2 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(235, 225, 208, 0.05);
  backdrop-filter: blur(5px);
}

.feature-card span {
  color: var(--color-secondary);
  font-size: 0.96rem;
  /* 0.8rem * 1.2 */
  font-weight: 600;
  letter-spacing: 1px;
}

.feature-card.highlighted {
  background: rgba(186, 154, 93, 0.1);
  border-color: rgba(186, 154, 93, 0.3);
}

.hero-bottom-cta {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.hero-enquire-btn {
  background: rgba(21, 44, 36, 0.8);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 60px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.hero-enquire-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.plus-icon {
  font-size: 2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .hero-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bottom-cta {
    position: relative;
    width: 100%;
  }

  .hero-enquire-btn {
    width: 100%;
    justify-content: center;
  }
}

/*  Utilities  */
.container {
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 0 100px;
}

.section-padding {
  padding: 100px 0;
}

.overview {
  background-color: var(--color-primary);
  overflow: hidden;
  border-top: 1px solid rgba(186, 154, 93, 0.2);
}

.overview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.overview-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(21, 44, 36, 0.1);
  height: 100%;
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.overview-image:hover img {
  transform: scale(1.05);
}

.section-subtitle {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: 30px;
}

.overview-text {
  margin-bottom: 40px;
}

.overview-text p {
  font-size: 1.15rem;
  color: rgba(235, 225, 208, 0.85);
  margin-bottom: 20px;
}

.overview-text p strong {
  color: var(--color-accent);
}

.btn-know-more {
  background: linear-gradient(135deg, var(--color-accent) 0%, #D4AF37 100%);
  color: var(--color-primary);
  padding: 18px 45px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(186, 154, 93, 0.2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-know-more:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(186, 154, 93, 0.3);
  color: var(--color-primary);
}

.btn-know-more svg {
  transition: transform 0.3s ease;
}

.btn-know-more:hover svg {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .container {
    padding: 0 50px;
  }

  .overview-layout {
    gap: 40px;
  }

  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 992px) {
  .overview-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .overview-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .overview-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .container {
    padding: 0 30px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/*  Virtual Tour Section  */
.virtual-tour {
  background-color: var(--color-secondary);
  background-image: radial-gradient(circle at 0% 0%, rgba(186, 154, 93, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(186, 154, 93, 0.05) 0%, transparent 50%);
  overflow: hidden;
  position: relative;
}

.virtual-tour .section-subtitle {
  color: #8c7344;
  /* Darker Gold for better visibility on beige */
}

.virtual-tour .section-title {
  color: var(--color-accent);
}

.tour-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.tour-features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tour-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.tour-cta {
  margin-top: 40px;
}

.btn-tour {
  background-color: #76B041;
  /* Green from reference */
  color: white;
  border-radius: 100px;
  padding: 15px 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(118, 176, 65, 0.2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-tour:hover {
  background-color: #659a36;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(118, 176, 65, 0.3);
  color: white;
}

/* Smartphone Mockup */
.tour-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 540px;
  background: #050505;
  border: 3px solid #1a1a1a;
  border-radius: 46px;
  position: relative;
  box-shadow: 0 50px 100px rgba(21, 44, 36, 0.2);
  padding: 10px;
  overflow: hidden;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
  z-index: 5;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-screen img,
.phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(0.9);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  padding: 0;
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.mute-btn svg {
  width: 20px;
  height: 20px;
  color: white;
  transition: opacity 0.3s ease;
}

.phone-caption {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--color-highlights);
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 992px) {
  .tour-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .tour-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tour-visual {
    order: 2;
  }

  .tour-features li {
    justify-content: center;
  }

  .phone-mockup {
    width: 280px;
    height: 560px;
  }
}

/*  Highlights Section  */
.highlights {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  overflow: hidden;
  position: relative;
}

.highlights-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.highlights-features {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlights-features li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.check-icon svg {
  width: 18px;
  height: 18px;
}

.feature-text {
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(235, 225, 208, 0.85);
}

.feature-text strong {
  color: var(--color-accent);
  display: block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.btn-brochure {
  background-color: var(--color-highlights);
  color: var(--color-secondary);
  padding: 18px 45px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-brochure:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(186, 154, 93, 0.2);
}

/* Highlights Visuals */
.highlights-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-image {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  background: var(--color-primary);
  /* Background same as section */
  padding: 0;
  /* Remove padding to keep border fixed */
  border: 4px solid var(--color-accent);
  /* Fixed premium border */
  height: 680px;
}

.visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-image:hover img {
  transform: scale(1.1);
  /* Zoom only the image */
}

.image-frame-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(186, 154, 93, 0.3);
  border-radius: 40px;
  z-index: 1;
  pointer-events: none;
  transition: var(--transition);
}

.accent-top {
  top: -20px;
  right: -20px;
}

.accent-bottom {
  bottom: -20px;
  left: -20px;
}

@media (max-width: 1200px) {
  .highlights-layout {
    gap: 60px;
  }
}

@media (max-width: 992px) {
  .highlights-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .visual-image {
    height: 450px;
  }

  .highlights-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .highlights-features li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .image-frame-accent {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/*  Lightbox Premium Styles  */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 44, 36, 0.95);
  backdrop-filter: blur(15px);
  z-index: 3000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  z-index: 3001;
}

.lightbox-close:hover {
  transform: rotate(90deg) scale(1.2);
  color: white;
}

.lightbox-container {
  position: relative;
  width: 95%;
  max-width: 1600px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(186, 154, 93, 0.2);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 10px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(21, 44, 36, 0.3);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 30px;
  height: 30px;
}

.lightbox-counter {
  position: absolute;
  bottom: 40px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(186, 154, 93, 0.2);
}

/*  Pricing Section  */
.pricing {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.pricing .section-subtitle,
.pricing .section-title {
  color: var(--color-accent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.price-card {
  width: calc(33.333% - 40px);
  min-width: 340px;
  background: white;
  border-radius: 0;
  padding: 80px 40px 60px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--color-accent);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(186, 154, 93, 0.25);
  pointer-events: none;
}

.price-card:hover {
  transform: translateY(-15px);
  background-color: var(--color-primary);
}

.price-card:hover .plot-size,
.price-card:hover .card-features span {
  color: white;
}

.card-tag {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.plot-size {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--color-primary);
  margin-bottom: 25px;
  line-height: 1;
  transition: color 0.4s ease;
}

.plot-size small {
  display: block;
  font-size: 1.35rem;
  color: var(--color-accent);
  letter-spacing: 5px;
  font-family: var(--font-body);
  font-weight: 800;
  margin-top: 10px;
}

.card-features {
  margin: 20px 0 45px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.15rem;
  color: var(--color-primary);
  transition: color 0.4s ease;
}

/* Staggered Layout for specific cards */
/* .price-card:nth-of-type(1),
.price-card:nth-of-type(3) {
  margin-top: 200px;
} */

@media (max-width: 1400px) {

  .price-card:nth-of-type(1),
  .price-card:nth-of-type(3),
  .price-card:nth-of-type(4),
  .price-card:nth-of-type(6) {
    margin-top: 0;
    /* Reset for better mobile/smaller screen flow */
  }
}

.card-features span {
  transition: color 0.4s ease;
}

.btn-enquire {
  width: 100%;
  padding: 18px;
  background: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

.price-card:hover .btn-enquire {
  background: white;
  color: var(--color-primary);
}

@media (max-width: 1400px) {
  .price-card {
    width: calc(33.333% - 30px);
  }
}

@media (max-width: 1100px) {
  .price-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .price-card {
    width: 100%;
    min-width: unset;
  }

  .plot-size {
    font-size: 3.5rem;
  }
}

/*  Global Helpers  */
.text-center {
  text-align: center;
}

.header-line {
  width: 80px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 0 auto;
}

/*  Amenities Section  */
.amenities {
  background-color: var(--color-primary);
  color: white;
}

.amenities .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.amenities .section-title {
  color: var(--color-accent);
  margin-bottom: 50px !important;
}

.amenities .section-subtitle {
  color: var(--color-accent);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

.amenity-card {
  background: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(186, 154, 93, 0.1);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--color-accent);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  color: var(--color-accent);
  transition: transform 0.4s ease;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1);
}

.amenity-card h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1200px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-card {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.section-cta-box {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.amenities .btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.amenities .btn-accent:hover {
  background-color: white;
  color: var(--color-primary);
  box-shadow: 0 0 20px rgba(186, 154, 93, 0.4);
}

/*  Location Section Refined  */
.location {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.location .section-title {
  color: var(--color-primary);
}

.accent-header {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
}

.accent-line {
  width: 4px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-list-refined {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.location-list-refined li {
  font-size: 1.1rem;
  color: var(--color-primary);
  position: relative;
  padding-left: 25px;
  line-height: 1.2;
}

.location-list-refined li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--color-primary);
  border-radius: 50%;
}

.location-list-refined li strong {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-left: 10px;
}

.location-visual-refined {
  position: relative;
  width: 100%;
}

.visual-wrapper {
  position: relative;
  padding: 20px;
}

.visual-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.map-overlay-accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0px;
  left: 40px;
  border: 4px solid var(--color-primary);
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
  opacity: 0.15;
}

@media (max-width: 992px) {
  .location-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .accent-header {
    justify-content: center;
    text-align: left;
  }

  .location-list-refined {
    align-items: flex-start;
    /* Changed from center to flex-start */
    text-align: left;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 992px) {
  .location-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .location-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .location-advantages li {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/*  Gallery Section  */
.gallery .section-subtitle {
  color: var(--color-accent);
}

.gallery .header-line {
  background-color: var(--color-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery .section-subtitle {
  color: var(--color-accent);
}

.gallery .header-line {
  background-color: var(--color-accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Scoped Gallery CTA */
.gallery .btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.gallery .btn-accent:hover {
  background-color: white;
  color: var(--color-primary);
  box-shadow: 0 0 20px rgba(186, 154, 93, 0.4);
}

.about-builder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.builder-content .section-title {
  margin-bottom: 30px;
  color: var(--color-primary);
}

.builder-description p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-primary);
  opacity: 0.9;
}

.builder-visual .visual-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 380px;
}

.builder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .about-builder-layout {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-builder-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .builder-content .section-title {
    font-size: 2.2rem;
  }
}

/*  Contact Us Section  */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.developer-info {
  color: var(--color-secondary);
}

.info-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.info-text {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

.partnership-info {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-number-large {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  transition: var(--transition);
}

.contact-number-large:hover {
  transform: translateX(10px);
  color: var(--color-secondary);
}

.num-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-icon svg {
  width: 30px;
  height: 30px;
}

/* Form Card Style */
.contact-card {
  background-color: var(--color-accent);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(21, 44, 36, 0.3);
}

.card-title {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.premium-form .form-group {
  margin-bottom: 30px;
}

.premium-form input {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(235, 225, 208, 0.4);
  color: var(--color-secondary);
  font-size: 1.1rem;
  transition: var(--transition);
}

.premium-form input::placeholder {
  color: rgba(235, 225, 208, 0.7);
}

.premium-form input:focus {
  outline: none;
  border-bottom-color: var(--color-secondary);
}

.btn-form-submit {
  width: 100%;
  background-color: transparent;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
  margin-top: 20px;
  transition: var(--transition);
}

.btn-form-submit:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.form-consent {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  color: var(--color-secondary);
  font-size: 0.9rem;
  opacity: 0.8;
}

.form-consent input {
  width: auto;
  margin-top: 4px;
}

.form-consent label {
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .contact-layout {
    gap: 50px;
  }

  .contact-number-large {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-text {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-number-large {
    justify-content: center;
  }

  .contact-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact-number-large {
    font-size: 1.8rem;
  }

  .info-title {
    font-size: 2rem;
  }
}

/*  Master Plan Section  */
.master-plan-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.plan-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(21, 44, 36, 0.15);
}

.plan-visual img {
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.plan-visual:hover img {
  transform: scale(1.05);
}

.plan-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.placeholder-box {
  background-color: var(--color-secondary);
  border: 2px dashed rgba(186, 154, 93, 0.3);
  height: 400px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.placeholder-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-accent);
  opacity: 0.7;
}

/*  Why Invest Section  */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.invest-card {
  background-color: #fff;
  /* Still within theme as white/off-white is neutral, but I should use secondary if possible. PDF uses secondary bg for section. */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(21, 44, 36, 0.05);
  transition: var(--transition);
  border: 1px solid rgba(186, 154, 93, 0.1);
}

.invest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(21, 44, 36, 0.1);
  border-color: var(--color-accent);
}

.invest-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.invest-card p {
  font-size: 1.05rem;
  color: var(--color-primary);
  opacity: 0.8;
  line-height: 1.6;
}

/*  Footer & Disclaimer  */
.site-footer {
  padding: 80px 0 40px;
  color: var(--color-secondary);
}

.disclaimer-text {
  border-top: 1px solid rgba(235, 225, 208, 0.2);
  padding: 40px 0;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.8;
  text-align: justify;
}

.footer-bottom {
  border-top: 1px solid rgba(235, 225, 208, 0.1);
  padding-top: 30px;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Form Enhancements */
.premium-select {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(235, 225, 208, 0.4);
  color: var(--color-secondary);
  font-size: 1.1rem;
  appearance: none;
  cursor: pointer;
}

.premium-select option {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.premium-form textarea {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(235, 225, 208, 0.4);
  color: var(--color-secondary);
  font-size: 1.1rem;
  resize: none;
  transition: var(--transition);
}

.premium-form textarea:focus {
  outline: none;
  border-bottom-color: var(--color-secondary);
}

@media (max-width: 992px) {
  .master-plan-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .invest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .invest-grid {
    grid-template-columns: 1fr;
  }

  .placeholder-box {
    height: 300px;
  }
}

#master-plan .section-title {
  color: var(--color-primary) !important;
}

/*  Premium Popup Styles  */
.premium-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 44, 36, 0.85);
  /* Primary background with alpha */
  z-index: 9999;
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  padding: 20px;
}

.popup-container {
  background-color: #fff;
  width: 100%;
  max-width: 720px;
  /* Reduced from 900px */
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  animation: popupFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  background-color: var(--color-secondary);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

.popup-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.popup-visual {
  position: relative;
  height: 100%;
  min-height: 320px;
  /* Reduced from 400px */
}

.popup-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-visual-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(21, 44, 36, 0.9));
  color: #fff;
}

.popup-project-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 5px;
}

.popup-tagline {
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.popup-form-area {
  padding: 40px;
  /* Reduced from 50px */
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-header {
  text-align: center;
  margin-bottom: 40px;
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  /* Reduced from 2.2rem */
  color: var(--color-primary);
  letter-spacing: 1px;
}

.popup-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-top: 10px;
}

.popup-field {
  margin-bottom: 25px;
}

.popup-field input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 1.1rem;
  transition: var(--transition);
}

.popup-field input:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
}

.popup-submit-btn {
  width: 100%;
  padding: 18px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.popup-submit-btn:hover {
  background-color: var(--color-accent);
}

.popup-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  letter-spacing: 1px;
  margin-top: 25px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .popup-layout {
    grid-template-columns: 1fr;
  }

  .popup-visual {
    height: 200px;
    /* Reduced from 250px */
    min-height: auto;
  }

  .popup-form-area {
    padding: 15px;
    /* Reduced from 20px */
  }

  .popup-title {
    font-size: 1.3rem;
    /* Reduced from 1.5rem */
  }

  .popup-header {
    margin-bottom: 20px;
  }

  .popup-field {
    margin-bottom: 15px;
  }

  .popup-submit-btn {
    padding: 14px;
  }
}


.nav-close-btn {
  display: none;
}

/* --- Mobile Responsiveness --- */

@media (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }

  .header-inner {
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn .bar {
    background-color: var(--color-secondary) !important;
    /* Force visibility */
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 35px;
    list-style: none;
    /* Ensure no bullets */
    padding: 0;
    margin: 0;
  }

  .nav-links a {
    font-size: 2.2rem;
    color: var(--color-secondary) !important;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    transition: var(--transition);
  }

  /* Close Button Style */
  .nav-close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-secondary);
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2002;
    padding: 10px;
  }

  .nav-close-btn:hover {
    color: var(--color-accent);
  }

  .nav-links a:hover {
    color: var(--color-accent) !important;
    transform: scale(1.05);
  }

  /* Hero Section Responsiveness */
  .hero-container {
    padding-top: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  /* Container adjustments */
  .container {
    width: 92%;
  }

  /* Form adjustments */
  .lead-form-premium {
    padding: 20px;
  }

  .main-nav {
    z-index: 2050;
    /* Increase z-index as requested */
  }
}

@media (max-width: 576px) {
  .hero-content {
    top: 15%;
    left: -5%;
    row-gap: 20px;
  }

  .hero-title {
    font-size: 55px;
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
    margin-right: 0px;
    margin-left: 0px;
    text-align: left;
  }

  .hero-price-box {
    padding-left: 16px;
    /* Decreased by 3px */
    clip-path: polygon(0 0, 85% 0, 65% 100%, 0 100%);
  }

  .hero-container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .slanted-pill {
    padding-left: 16px;
    padding-right: 16px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  }

  .slanted-pill p {
    font-size: 0.96rem;
  }

  .phone-number-box {
    font-size: 1.2rem;
  }

  .hero-highlights-list {
    align-items: flex-start;
    text-align: left;
  }

  .hero-project-info {
    width: calc(100% + 10%);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }

  /* .hero-overlay {
    background: linear-gradient(90deg,
        rgba(21, 44, 36, 0.85) 0%,
        rgba(21, 44, 36, 0.45) 100%);
  } */

  .hero-bg img {
    transform: translateX(00px);
    width: auto;
    min-width: calc(100% + 300px);
    /* Ensure no gap */
  }

  .phone-cta {
    clip-path: polygon(0 0, 95% 0, 87% 100%, 0 100%);
  }


  .location-tag span {
    font-size: 0.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .no-scroll {
    overflow: hidden;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
  }

  .feature-card {
    padding: 15px;
  }

  .visual-image {
    height: 300px;
  }
}

/* --- Mobile Floating CTA Bar --- */

.mobile-floating-cta {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  /* Reduced from 65px */
  background-color: var(--color-accent);
  z-index: 9999;
  display: flex;
  /* Will be overwritten by media query if needed, but defining now */
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
}

.cta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: white;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-align: center;
}

.cta-icon {
  width: 20px;
  height: 20px;
}

.whatsapp-btn {
  background-color: #25d366;
  /* WhatsApp Green */
  width: 55px;
  /* Reduced from 65px */
  height: 55px;
  /* Reduced from 65px */
  border-radius: 50%;
  /* Circle for premium feel */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -25px;
  /* Adjusted from -30px */
  /* Elevated look */
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  position: relative;
  z-index: 10000;
  flex: none;
  /* Don't grow */
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .mobile-floating-cta {
    display: flex;
  }

  body {
    padding-bottom: 55px;
    /* Reduced from 65px */
  }

  .whatsapp-btn svg {
    width: 54px !important;
    /* Reduced from 64px */
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
  }
}

@media (min-width: 769px) {
  .mobile-floating-cta {
    display: none !important;
  }
}

/* Hide floating CTA when menu is open */
body.menu-open .mobile-floating-cta {
  display: none !important;
}

/* FAQ Section Styles */
.faq {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.faq .section-title {
  color: var(--color-secondary);
}

.faq-list {
  max-width: 900px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: rgba(235, 225, 208, 0.9);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 30px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--color-secondary);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-answer p {
  color: var(--color-primary);
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.9;
}

.faq-bottom-summary {
  max-width: 1000px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.summary-block h3 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.summary-block p {
  color: var(--color-secondary);
  font-size: 1.1rem;
}

/* Desktop Floating WhatsApp Icon */
.whatsapp-desktop-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background-color: var(--color-highlights);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(21, 44, 36, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
  animation: bounceRotate 3s infinite;
}

@keyframes bounceRotate {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-10px) rotate(5deg);
  }

  50% {
    transform: translateY(0) rotate(-5deg);
  }

  75% {
    transform: translateY(-5px) rotate(3deg);
  }
}

.whatsapp-desktop-float:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: var(--color-accent);
}

/* --- Lightbox Mobile Responsiveness --- */
@media (max-width: 768px) {
  .lightbox-container {
    width: 100%;
    height: 90vh;
    padding: 0;
    /* Removed padding to maximize width */
    gap: 0;
  }

  .lightbox-overlay {
    padding: 10px;
  }

  .lightbox-content {
    width: 100%;
    /* Let image take full width */
    height: auto;
    max-height: 85vh;
    /* Increased height further */
    border: none;
    background: transparent;
  }

  .lightbox-content img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  /* Reposition Navigation Buttons */
  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 85%;
    /* Moved further down */
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .lightbox-prev {
    left: 35%;
    /* Moved closer to center */
  }

  .lightbox-next {
    right: 35%;
    /* Moved closer to center */
  }

  .lightbox-prev svg,
  .lightbox-next svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #fff;
    /* Ensure visibility against dark overlay */
    background: rgba(0, 0, 0, 0.3);
    /* Subtle background for better contrast */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .lightbox-counter {
    bottom: 30px;
    /* Move counter up slightly */
    font-size: 1rem;
  }
}


.whatsapp-desktop-float svg {
  width: 70px;
  height: 70px;
}

/* Thank You Popup Buttons */
.btn-thankyou-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background-color: #ba9a5d;
  /* Gold/Brown */
  color: #fff;
  /* White text */
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  transition: var(--transition);
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn-thankyou-whatsapp:hover {
  background-color: #a3854d;
  /* Darker Gold */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(186, 154, 93, 0.3);
}

.btn-thankyou-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background-color: #ba9a5d;
  /* Gold/Brown */
  color: #fff;
  /* White text */
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 5px;
  transition: var(--transition);
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn-thankyou-call:hover {
  background-color: #a3854d;
  /* Darker Gold */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(186, 154, 93, 0.3);
}