/* In-card carousel styles */
.property-image-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin-bottom: 0.5rem;
}
.property-image-carousel .property-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 18px 18px 0 0;
  transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1);
  z-index: 1;
}
.property-image-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,166,70,0.92);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  opacity: 0.92;
}
.property-image-carousel .carousel-arrow.left { left: 10px; }
.property-image-carousel .carousel-arrow.right { right: 10px; }
.property-image-carousel .carousel-arrow:disabled {
  background: ;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Download button */
.download-btn {
  display: block;
  margin: 0;
  padding: 14px 20px;
  border: none;
  background: #C9A646;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: center;
}
.download-btn:hover {
  background: #B39F2F;
  color: #fff;
}
/* Carousel Arrows */
.carousel-image-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.carousel-main-img {
  max-width: 320px;
  max-height: 220px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,166,70,0.92);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7em;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  opacity: 0.92;
}
.carousel-arrow.left { left: 8px; }
.carousel-arrow.right { right: 8px; }
.carousel-arrow:disabled {
  background: #e5d6b2;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.6;
}
/* Developments Listing Page Styles */
.developments-listing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .property-grid { grid-template-columns: 1fr; }
}
/* Default property card */
.property-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  cursor: pointer;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.property-card:hover {
  transform: scale(1.035);
  box-shadow: 0 8px 32px rgba(201,166,70,0.18);
  z-index: 2;
}
/* Remove pointer and hover for completed (past) cards */
.property-card.completed,
.property-card.coming-soon {
  cursor: default;
}
.property-card.completed:hover,
.property-card.coming-soon:hover {
  transform: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  z-index: 1;
}
.property-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.property-image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s cubic-bezier(0.165,0.84,0.44,1);
}
.property-card:hover .property-image {
  transform: scale(1.08);
}
/* Property info and action buttons layout */
.property-info {
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.property-info .property-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  margin-top: 0.7em;
}
.property-info h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.property-location {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
}
.property-location .material-symbols-outlined {
  font-size: 1.1em;
  margin-right: 0.3em;
  color: var(--primary);
}
.btn.btn-primary {
  background: #C9A646;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6em 1.3em;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.btn.btn-primary:disabled {
  background: #e5d6b2;
  color: #fff;
  cursor: not-allowed;
}
.ribbon {
  position: absolute;
  top: 16px;
  left: -40px;
  background: #C9A646;
  color: #fff;
  font-size: 0.95em;
  font-weight: 700;
  padding: 6px 48px;
  transform: rotate(-28deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 3;
  letter-spacing: 1px;
}
.property-card.completed .btn {
  background: #c9a646;
  color: #fff;
  cursor: not-allowed;
}
.property-card.completed .btn:disabled {
  background: #c9a646;
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
/* Carousel Modal */
.carousel-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s;
}
.carousel-modal.active {
  display: flex;
  opacity: 1;
}
.carousel-content {
  background: #fff;
  border-radius: 16px;
  max-width: 540px;
  width: 95vw;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  box-shadow: 0 8px 32px rgba(201,166,70,0.18);
  text-align: center;
}
.carousel-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2.2em;
  color: #C9A646;
  cursor: pointer;
  font-weight: 700;
  z-index: 2;
}
.carousel-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.carousel-images img {
  max-width: 180px;
  max-height: 140px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.carousel-desc {
  font-size: 1.08em;
  color: #333;
  margin-top: 0.5rem;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

/* ── EXACT BRAND IDENTITY COLORS ── */
:root {
  --primary: #D4AF37;          /* Gold (from logo) */
  --primary-dark: #A68F2E;     /* Darker gold for text on light */
  --logo-bg: #000000;          /* Black background from logo */
  --bg-dark-1: #1C1C1C;        /* Hero, Nav, Footer, Process */
  --bg-dark-2: #2A2A2A;        /* About Strip, Overlays */
  --bg-light-1: #F7F9FA;       /* Services, Testimonials, Why Choose Us */
  --bg-light-2: #ECECEC;       /* Alternate projects background */
  --bg-gold-tint: #FEF6E4;     /* Trust bar, callouts - light gold */
  --text-main: #3D3D3D;        /* Body text on light */
  --white: #FFFFFF;            /* White cards, text on dark */
  
  --radius: 8px;
  --radius-lg: 16px;
  --max-w: 1250px;
  --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-subtle: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.site-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  background: var(--bg-light-1);
  line-height: 1.6;
  overflow-wrap: break-word;
}

input, textarea, button, select {
  font-family: inherit;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; }
.text-cyan { color: var(--primary) !important; }
.text-cyan-dark { color: var(--primary-dark) !important; }
.text-white { color: var(--white) !important; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.w-100 { width: 100%; }

/* Background Helpers */
.bg-dark-1 { background: var(--bg-dark-1); color: var(--white); }
.bg-dark-2 { background: var(--bg-dark-2); color: var(--white); }
.bg-light-1 { background: var(--bg-light-1); color: var(--text-main); }
.bg-light-2 { background: var(--bg-light-2); color: var(--text-main); }
.bg-gold-tint { background: var(--bg-gold-tint); color: var(--text-main); }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 30px; }
section { overflow-x: hidden; }
.section-pad { padding: 90px 0; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px; font-size: 1rem; font-weight: 600; text-decoration: none;
  border-radius: var(--radius); transition: var(--transition); cursor: pointer; border: none;
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: #B39F2F; transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: #c9a646; }
.btn-outline:hover { background: var(--white); color: var(--bg-dark-1); }
.btn-outline-cyan { border: 2px solid var(--primary); color: var(--primary); background:#c9a646; }
.btn-outline-cyan:hover { background: var(--primary); color: var(--white); }

/* Property Card Button Styles */
.property-actions .btn { display: flex; width: 100%; padding: 14px 20px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; justify-content: center; }
.property-actions .btn-primary { background: #C9A646; }
.property-actions .btn-primary:hover { background: #B39F2F; transform: none; box-shadow: none; }
.property-actions .btn-outline { background: #C9A646; border: none; color: #fff; }
.property-actions .btn-outline:hover { background: #B39F2F; color: #fff; }

/* ── PRELOADER ── */
.preloader { position: fixed; inset: 0; background: var(--bg-dark-1); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: 0.6s ease; }
.preloader-content { text-align: center; color: var(--white); }
.preloader-logo { height: 150px; width: auto; object-fit: contain; display: block; }
.pl-logo { font-size: 2.5rem; font-weight: 800; letter-spacing: 0.1em; color: var(--white); }
.pl-sub { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.4em; color: var(--primary); margin-top: 5px; }

/* ───────── HEADER BASE ───────── */
.site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 90px; /* CONTROL HEIGHT */
  z-index: 1000; 
  background: #000; 
  backdrop-filter: blur(15px); 
  border-bottom: 1px solid rgba(212, 175, 55, 0.2); 
  box-shadow: 0 4px 30px rgba(0,0,0,0.5); 
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

/* SCROLL */
.site-header.scrolled { 
  height: 70px;
  border-bottom: 1px solid var(--primary); 
  box-shadow: 0 10px 40px rgba(0,0,0,0.6); 
}

/* INNER */
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  width: 100%;
  height: 100%;
}

/* ───────── LOGO (SINGLE SOURCE) ───────── */
.logo-img { 
  height: 100px; 
  width: auto; 
  object-fit: contain; 
  transition: height 0.3s ease;
}

.site-header.scrolled .logo-img {
  height: 75px;
}

/* ───────── NAV ───────── */
.main-nav { 
  display: flex; 
  align-items: center; 
  gap: 30px; 
}

.nav-links { 
  display: flex; 
  gap: 30px; 
}

.nav-links a { 
  color: #fff; 
  text-decoration: none; 
  font-weight: 500; 
  font-size: 1rem; 
  transition: 0.3s; 
}

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

/* ───────── HAMBURGER ───────── */
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  background: none; 
  border: none; 
  cursor: pointer; 
  z-index: 1001; 
}

.hamburger span { 
  width: 26px; 
  height: 3px; 
  background: #fff; 
  border-radius: 4px; 
  transition: 0.3s; 
}

/* ───────── MOBILE MENU (UNCHANGED LOGIC) ───────── */
.mobile-menu-overlay { 
  position: fixed; 
  inset: 0; 
  background: rgba(0,0,0,0.6); 
  backdrop-filter: blur(5px); 
  z-index: 2000; 
  opacity: 0; 
  visibility: hidden; 
  transition: 0.4s; 
}

.mobile-menu-content { 
  position: absolute; 
  top: 0; 
  right: 0; 
  transform: translateX(100%); 
  width: 85%; 
  max-width: 400px; 
  height: 100%; 
  background: var(--bg-dark-1); 
  box-shadow: -20px 0 40px rgba(0,0,0,0.6); 
  padding: 80px 40px 40px; 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
}

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

.mobile-menu-overlay.active .mobile-menu-content { 
  transform: translateX(0); 
}

.menu-close { 
  position: absolute; 
  top: 25px; 
  right: 25px; 
  background: none; 
  border: none; 
  color: #fff; 
  font-size: 2rem; 
  cursor: pointer; 
}

.mobile-menu-content a { 
  color: #fff; 
  text-decoration: none; 
  font-size: 1.4rem; 
  font-weight: 600; 
  padding: 10px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.05); 
}

/* ───────── RESPONSIVE ───────── */

/* DESKTOP */
@media (min-width: 769px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
}

/* MOBILE */
@media (max-width: 768px) {

  .site-header {
    height: 80px;
  }

  .logo-img {
    height: 55px;
  }

  .site-header.scrolled .logo-img {
    height: 80px;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Prevent hero overlap */
  #hero {
    padding-top: 30px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo-img {
    height: 50px;
  }
}

/* ───────── HERO BASE ───────── */
.hero-b2c {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 16px;
}

/* BACKGROUND */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('assets/hero.png') center/cover no-repeat;
  z-index: 0;
}

/* OVERLAY (balanced for readability) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
  z-index: 1;
}

/* CONTAINER FIX */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* CONTENT */
.hero-content {
  max-width: 700px;
  color: #fff;
}

/* ───────── TYPOGRAPHY ───────── */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.text-cyan {
  color: #d4af37;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 25px;
}

/* TRUST BAR */
.hero-trust-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-trust-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f5d97b;
  font-weight: 500;
}

/* ICON */
.material-symbols-outlined {
  color: #C9A646;
}

.btn-call .material-symbols-outlined {
  color: #fff !important;
}
.btn-call span {
  color: inherit;
}

/* ───────── BUTTONS ───────── */
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* PRIMARY */
.btn-primary {
  background: #d4af37;
  color: #000;
  border: none;
}

/* OUTLINE */
.btn-outline {
  border: 2px solid #d4af37;
  color: #fff;
  background: transparent;
}

/* ───────── TABLET ───────── */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 600px;
  }
}

/* ───────── MOBILE (MAIN FIX) ───────── */
@media (max-width: 768px) {

  .hero-b2c {
    padding: 100px 16px 60px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .hero-trust-bar {
    justify-content: center;
    font-size: 0.85rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ───────── SMALL MOBILE ───────── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 0.95rem;
  }
}

/* ───────── FIX FADE ISSUE ───────── */
.fade-up {
  opacity: 1 !important;
  transform: none !important;
}

/* ── ABOUT STRIP ── */
.about-strip { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.about-text h2 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 25px; }
.about-text p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.rounded-image { width: 100%; border-radius: var(--radius-lg); display: block; object-fit: cover; }
.shadow-gold { box-shadow: var(--shadow-gold); border: 1px solid rgba(212, 175, 55, 0.2); }

/* ── STATS / WHY CHOOSE US ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card { background: var(--white); padding: 40px 20px; text-align: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); border-color: rgba(212, 175, 55, 0.3); }
.stat-card h3 { font-size: 3rem; font-weight: 900; margin-bottom: 10px; line-height:1; }
.stat-card p { font-size: 1rem; font-weight: 600; color: var(--text-main); }

/* ── PROCESS STEPS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 35px; left: 50px; right: 50px; height: 2px; background: rgba(255,255,255,0.1); z-index: 0; }
.p-step { position: relative; z-index: 1; padding: 20px 10px; }
.p-num { width: 70px; height: 70px; background: var(--bg-dark-2); border: 2px solid var(--primary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; margin-bottom: 25px; box-shadow: 0 0 20px rgba(41,182,216,0.2); }
.p-step h4 { font-size: 1.4rem; margin-bottom: 15px; color: var(--white); font-weight: 700; }
.p-step p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ── SERVICES ── */
.section-header h2 { font-size: 3rem; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.section-sub { font-size: 1.15rem; color: var(--text-main); opacity: 0.8; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.service-card { background: var(--white); padding: 50px 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); transition: var(--transition); border: 1px solid rgba(0,0,0,0.03); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-gold); }
.s-icon { display: inline-flex; width: 65px; height: 65px; background: rgba(212, 175, 55, 0.1); color: var(--primary); border-radius: 50%; align-items: center; justify-content: center; margin-bottom: 25px; font-size: 2rem; transition: 0.3s; }
.service-card:hover .s-icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 15px; color: var(--bg-dark-1); }
.service-card p { font-size: 1rem; color: #666; }

/* ── TRUST BAR ── */
.trust-bar h2 { font-size: 2.5rem; }
.trust-sub { font-size: 1.2rem; margin-top:10px; color: var(--primary-dark); font-weight: 600; }

/* ── FEATURED PROJECTS ── */
.property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.property-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-subtle); transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.property-card.clickable-card { cursor: pointer; }
.property-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-gold); }
.property-card:hover .property-image { transform: scale(1.05); }
.property-image { width: 100%; height: 280px; background-size: cover; background-position: center; transition: 0.3s ease; }
.property-info { padding: 25px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.property-info h3 { font-size: 1.25rem; font-weight: 700; color: var(--bg-dark-1); margin: 0; }
.property-location { font-size: 0.95rem; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin: 0; }
.property-location .material-symbols-outlined { font-size: 1.2rem; color: var(--primary); }

/* Property Actions Buttons */
.property-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.btn-sm { padding: 14px 20px; font-size: 0.95rem; width: 100%; text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; }

/* Coming Soon Card */
.property-card.coming-soon .property-image { opacity: 0.7; background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%); }
.property-card.coming-soon:hover { transform: translateY(-10px); }
.property-card.coming-soon:hover .property-image { transform: none; }
.coming-soon-badge { background: var(--primary); color: var(--white); padding: 8px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; text-align: center; margin-top: auto; }
.coming-soon-image { display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #999; }

.feature-icon { font-size: 3rem !important; }
.stat-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--bg-dark-1); margin: 10px 0 8px 0; }
.stat-card p { font-size: 0.95rem; color: #666; margin: 0; }

.project-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 25px; }
.project-item { height: 420px; border-radius: var(--radius); background-size: cover; background-position: center; position: relative; overflow: hidden; cursor: crosshair; }
.p-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,28,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; opacity: 0; transition: 0.4s; }
.project-item:hover .p-overlay { opacity: 1; }
.p-overlay h4 { color: var(--white); font-size: 2rem; font-weight: 700; transform: translateY(20px); transition: 0.4s 0.1s; margin-bottom: 5px; }
.p-tag { color: var(--primary); font-size: 1rem; font-weight: 600; transform: translateY(20px); transition: 0.4s 0.2s; }
.project-item:hover .p-overlay h4, .project-item:hover .p-tag { transform: translateY(0); }

/* Leased Card */
.property-card.leased .property-image {
  opacity: 0.85;
  background: linear-gradient(135deg, #f5f5f5 0%, #dcdcdc 100%);
  position: relative;
}

.property-card.leased:hover {
  transform: translateY(-10px);
}

.property-card.leased:hover .property-image {
  transform: none;
}

/* Leased Badge */
.leased-badge {
  background: linear-gradient(135deg, #1f7a3d 0%, #28a745 100%);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  margin-top: auto;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
}

/* Optional leased overlay effect */
.property-card.leased .property-image::after {
  content: "LEASED";
  position: absolute;
  top: 20px;
  right: -45px;
  background: #28a745;
  color: #fff;
  padding: 10px 60px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Leased Icon/Image Placeholder */
.leased-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #28a745;
}

/* Stats */
.feature-icon {
  font-size: 3rem !important;
}

.stat-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark-1);
  margin: 10px 0 8px 0;
}

.stat-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* Project Gallery */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.project-item {
  height: 420px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  transition: transform 0.4s ease;
}

.project-item:hover {
  transform: scale(1.02);
}

.p-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.92) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: 0.4s ease;
}

.project-item:hover .p-overlay {
  opacity: 1;
}

.p-overlay h4 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  transform: translateY(20px);
  transition: 0.4s 0.1s;
  margin-bottom: 5px;
}

.p-tag {
  color: #28a745;
  font-size: 1rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: 0.4s 0.2s;
}

.project-item:hover .p-overlay h4,
.project-item:hover .p-tag {
  transform: translateY(0);
}

/* ── GALLERY SECTION - HIDDEN ── */
.gallery-section {
  display: none;
}

.gallery-grid {
  display: none;
}

.gallery-item {
  display: none;
}

/* ── TESTIMONIALS ── */
.test-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.test-card { background: var(--white); padding: 50px; border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); display: flex; flex-direction: column; gap: 15px; border: 1px solid rgba(0,0,0,0.03); transition: var(--transition); }
.test-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.stars { color: var(--primary); display: flex; gap: 5px; margin-bottom: 10px; }
.stars span { font-size: 1.4rem; }
.test-card p { font-size: 1.15rem; font-style: italic; color: var(--bg-dark-1); }
.test-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--bg-dark-1); margin-top: auto; }
.t-loc { font-size: 0.9rem; color: #888; }

/* ── FOOTER ── */
.site-footer { background: var(--logo-bg) !important; color: var(--white);  }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; padding-top: 50px; }
.f-info .logo { display: block; margin-bottom: 25px; padding: 0; background: transparent; border: none; transition: 0.3s; }
.f-info .logo:hover { background: transparent; transform: translateY(-3px); box-shadow: none; }

.f-middle { display: flex; flex-direction: column; }

.sister-links-footer { display: flex; flex-direction: column; gap: 1.2rem; }
.sister-link-footer { color: var(--white); text-decoration: none; font-size: 1rem; font-weight: 500; transition: 0.3s; display: inline-block; }
.sister-link-footer:hover { color: var(--primary); transform: translateX(5px); }
.logo-img-footer {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
}

.ai-style-change-3 .logo-img-footer {
  height: auto;
  max-height: 100px;
  background-color: rgba(255, 0, 0, 0.1);
  width: 180px;
  object-fit: cover;
  margin-bottom: 0px;
}
.f-contact-items { display: flex; flex-direction: column; gap: 15px; margin-top: 35px; }
.f-contact-items a { color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 12px; font-weight: 500; transition: 0.3s; font-size: 1.1rem; }
.f-contact-items a:hover { color: var(--primary); }
.f-contact-items span.material-symbols-outlined { color: var(--primary); font-size: 1.5rem; }

.f-form { display: flex; flex-direction: column; gap: 15px; }
.f-form input, .f-form textarea { padding: 16px 20px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: var(--white); outline: none; transition: 0.3s; font-size: 1rem; resize: vertical; }
.f-form input:focus, .f-form textarea:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* ── RIGHT-SIDE FLOATING CONTACT ── */
.floating-contact { position: fixed; bottom: 40px; right: 40px; z-index: 990; display: flex; flex-direction: column; gap: 15px; }
.f-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); text-decoration: none; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.btn-wa { background: #25D366; } /* Standard WhatsApp Green */
.btn-call { background: var(--primary); }
.f-btn:hover { transform: scale(1.15) translateX(-5px); }

/* ── POPUP MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(28,28,28,0.85); backdrop-filter: blur(8px); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: 0.4s; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--white); width: 100%; max-width: 550px; border-radius: var(--radius-lg); padding: 50px; position: relative; transform: translateY(40px) scale(0.95); transition: 0.4s; box-shadow: 0 40px 100px rgba(0,0,0,0.5); }
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 25px; right: 25px; background: none; border: none; font-size: 2rem; color: var(--text-main); cursor: pointer; transition: 0.3s; }
.modal-close:hover { color: var(--primary); transform: rotate(90deg); }
.modal-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; color: var(--bg-dark-1); line-height:1.2; }
.modal-header p { color: #666; margin-bottom: 30px; font-size:1.1rem; }
.modal-form { display: flex; flex-direction: column; gap: 15px; }
.modal-form input, .modal-form textarea { padding: 16px 20px; border: 1px solid #ddd; border-radius: var(--radius); outline: none; background: var(--bg-light-1); color: var(--text-main); transition: 0.3s; font-size: 1rem; resize: vertical; }
.modal-form input:focus, .modal-form textarea:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1); }
.modal-note { font-size: 0.85rem; color: #999; text-align: center; margin-top: 20px; }

/* ── PREMIUM BOOKING SECTION ── */
.booking-section {
  background: var(--bg-light-1);
  overflow: hidden;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.booking-info {
  position: sticky;
  top: 120px;
}

.company-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.booking-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--bg-dark-1);
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-item .material-symbols-outlined {
  width: 45px;
  height: 45px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.detail-item div {
  display: flex;
  flex-direction: column;
}

.detail-item strong {
  font-size: 1rem;
  color: var(--bg-dark-1);
}

.detail-item span {
  font-size: 0.9rem;
  color: #666;
}

.booking-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 35px;
}

.booking-instructions h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--bg-dark-1);
}

.booking-instructions ul {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.booking-instructions li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #666;
}

.booking-instructions li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.trust-message {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 500;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
}

/* Interactive Column */
.booking-interactive {
  position: relative;
}

.interactive-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.02);
  min-height: 550px;
  display: flex;
  flex-direction: column;
}

.step-container {
  display: none;
  flex-direction: column;
  animation: slideIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-container.active {
  display: flex;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-header {
  margin-bottom: 30px;
  position: relative;
}

.step-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bg-dark-1);
}

.step-header p {
  color: #666;
  font-size: 1rem;
}

.back-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  transition: transform 0.3s;
}

.back-btn:hover {
  transform: translateX(-5px);
}

/* Calendar UI */
.calendar-ui {
  flex: 1;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-month {
  font-weight: 800;
  font-size: 1.2rem;
  color: #000000;
}

.cal-nav {
  display: flex;
  gap: 10px;
}

.cal-nav-btn {
  background: var(--bg-light-1);
  border: 1px solid rgba(0,0,0,0.05);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.cal-nav-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day-name {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #333333;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
  color: #000000;
}

.calendar-day:hover:not(.disabled) {
  background: var(--bg-gold-tint);
  color: var(--primary-dark);
}

.calendar-day.today {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.calendar-day.selected {
  background: var(--primary) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.calendar-day.disabled {
  color: #888888;
  cursor: not-allowed;
  font-weight: 400;
  background: rgba(0,0,0,0.02);
}

.calendar-day.other-month {
  opacity: 0.3;
}

/* Form Styling */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bg-dark-1);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  outline: none;
  background: var(--bg-light-1);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-row {
  display: flex;
  gap: 20px;
}

/* Success State */
.booking-success {
  text-align: center;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #4CAF50;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 10px;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-left { opacity: 0; transform: translateX(-40px); }
.fade-right { opacity: 0; transform: translateX(40px); }

/* ── RESPONSIVE ── */
@media (max-width: 1400px) {
  .hero-title-v3 { font-size: 5rem; }
}

@media (max-width: 1200px) {
  .hero-title-v3 { font-size: 4.5rem; }
  .hero-flex-v3 { gap: 40px; }
  .hero-visual-v3 { flex: 0 0 350px; }
}

@media (max-width: 1024px) {
  .hero-flex-v3 { flex-direction: column; text-align: center; gap: 60px; }
  .hero-text-v3 { max-width: 100%; }
  .hero-eyebrow-v3 { justify-content: center; }
  .hero-sub-v3 { margin: 0 auto 45px; }
  .hero-btns-v3 { justify-content: center; }
  .hero-visual-v3 { flex: 0 0 auto; width: 100%; max-width: 450px; }
  
  .about-text h2, .section-header h2 { font-size: 2.8rem; }
  .stat-card h3 { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .stats-grid, .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .p-num { margin: 0 auto 20px; }
  .p-step { text-align: center; }
  .test-grid { grid-template-columns: 1fr; }
  .property-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Booking Tablet */
  .booking-wrapper { gap: 40px; }
  .booking-title { font-size: 2.8rem; }
  .booking-info { position: static; }
}

@media (max-width: 768px) {
  .site-header { padding: 15px 0; }
  .logo-primary { font-size: 1.4rem; }
  .logo-secondary { font-size: 0.65rem; }
  .container { padding: 0 20px; }
  .section-pad { padding: 70px 0; }
  
  .hero-b2c { padding: 80px 0 60px; }
  .hero-title-v3 { font-size: 3rem; }
  .hero-sub-v3 { font-size: 1.1rem; }
  .hero-btns-v3 { flex-direction: column; gap: 20px; }
  .btn-gold-v3 { width: 100%; justify-content: center; }
  .btn-text-v3 { width: 100%; justify-content: center; }
  .luxury-floating-card { padding: 30px; }
  .luxury-floating-card h3 { font-size: 3rem; }
  .hero-bottom-bar { display: none; }

  /* Booking Mobile */
  .booking-wrapper { grid-template-columns: 1fr; gap: 50px; }
  .booking-title { font-size: 2.4rem; }
  .booking-desc { font-size: 1rem; }
  .interactive-card { padding: 25px; min-height: auto; }
  .form-row { flex-direction: column; gap: 15px; }

  .about-text h2, .section-header h2, .trust-bar h2, .modal-header h2 { font-size: 2.2rem; }
  .stat-card { padding: 25px 15px; }
  .stat-card h3 { font-size: 2rem; }
  .stat-card p { font-size: 0.9rem; }
  
  .main-nav { display: none; }
  .hamburger { display: flex; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .property-grid { grid-template-columns: 1fr; gap: 15px; }
  .project-gallery { grid-template-columns: 1fr; gap: 20px; }
  .project-item { height: 320px; }
  .services-grid { grid-template-columns: 1fr; gap: 25px; }
  .service-card { padding: 40px 30px; }
  
  .trust-bar h2 { font-size: 2.2rem; }
  
  .test-card { padding: 35px 25px; }
  .test-card p { font-size: 1.05rem; }
  .footer-grid { grid-template-columns: 1fr; margin-bottom: 20px; padding-top: 20px; gap: 40px; }
  
  .floating-contact { right: 20px; bottom: 20px; gap: 10px; }
  .f-btn { width: 55px; height: 55px; font-size: 1.5rem; }
  
  .modal-content { padding: 35px 25px; width: 92%; }
  .modal-header h2 { font-size: 1.8rem; }
  .f-form input, .f-form textarea, .modal-form input, .modal-form textarea { padding: 14px 18px; font-size: 0.95rem; }
  .mobile-menu-content { padding: 80px 30px 30px; width: 80%; }
}

@media (max-width: 480px) {
  .hero-title-v3 { font-size: 2.5rem; }
  .hero-sub-v3 { font-size: 1rem; }
  .about-text h2, .section-header h2, .trust-bar h2, .modal-header h2 { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 280px; }
}
