/* ============================================================
   HAMARA MAKAAN PROPERTIES – style.css
   Dark Blue + White + Gold  |  Mobile-First  |  Premium UI
   ============================================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0A1628;
  --navy2: #0D1F3C;
  --navy3: #112240;
  --gold: #C9A84C;
  --gold2: #E0C068;
  --gold3: #F5D98B;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light: #8899AA;
  --mid: #5A6A7A;
  --border: rgba(201, 168, 76, 0.18);
  --glass: rgba(10, 22, 40, 0.72);
  --glass2: rgba(17, 34, 64, 0.85);
  --shadow: 0 8px 32px rgba(10, 22, 40, 0.22);
  --shadow2: 0 16px 48px rgba(10, 22, 40, 0.32);
  --r: 16px;
  --r-sm: 10px;
  --tr: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

ul {
  list-style: none;
}

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.loader-logo span {
  color: var(--gold);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 99px;
  animation: loadFill 1.8s ease forwards;
}

@keyframes loadFill {
  to {
    width: 100%;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--tr);
}

.navbar.scrolled {
  background: var(--glass2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all var(--tr);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--tr);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 10px;
}

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--tr);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Mobile Overlay ---------- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 900;
  opacity: 0;
  transition: opacity var(--tr);
}

.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ---------- Mobile Drawer ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 100vw);
  height: 100%;
  background: var(--navy3);
  z-index: 950;
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
  gap: 4px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 10px;
  transition: all var(--tr);
  border: 1px solid transparent;
}

.mobile-nav a i {
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--border);
}

.mn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--tr);
}

.mn-close:hover {
  background: rgba(201, 168, 76, 0.2);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.8rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold3));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy3);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--tr);
}

.btn-wa:hover {
  background: #1abe56;
  transform: translateY(-2px);
}

/* Ripple */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.ripple-btn:active::before {
  width: 200px;
  height: 200px;
  opacity: 1;
}

/* ============================================================
   CONTAINER & GRID
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

section,
.stats-bar,
.testi-bg,
.search-float {
  padding: 80px 0;
}

/* ============================================================
   VIDEO HERO
   ============================================================ */
.video-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 22, 40, 0.55) 0%,
      rgba(10, 22, 40, 0.72) 50%,
      rgba(10, 22, 40, 0.88) 100%);
  z-index: 1;
}

.video-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 1.1s ease 0.4s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.video-hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-hero-content h1 span {
  color: var(--gold);
  display: block;
}

.video-hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat .n {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}

.hero-stat .l {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.73rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  80% {
    top: 16px;
    opacity: 0;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* ============================================================
   SEARCH FLOAT
   ============================================================ */
.search-float {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.search-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 32px 36px;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(10, 22, 40, 0.07);
}

.search-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 20px;
  font-weight: 700;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
}

.sf-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sf-label i {
  color: var(--gold);
}

.form-ctrl {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--r-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--tr);
  appearance: none;
  -webkit-appearance: none;
}

.form-ctrl:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.range-wrap input[type=range] {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-hd {
  text-align: center;
  margin-bottom: 52px;
}

.s-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-hd h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-hd h2 span {
  color: var(--gold);
}

.s-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  margin: 0 auto 14px;
}

.section-hd p {
  color: var(--mid);
  font-size: 0.97rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   PROJECT CARDS GRID
   ============================================================ */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.proj-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.09);
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.proj-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.16);
  border-color: rgba(201, 168, 76, 0.25);
}

.proj-img {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

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

.proj-card:hover .proj-img img {
  transform: scale(1.07);
}

.proj-status {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}

.proj-status.ongoing {
  background: #e8f5e9;
  color: #2e7d32;
}

.proj-status.completed {
  background: #e3f2fd;
  color: #1565c0;
}

.proj-status.upcoming {
  background: #fff3e0;
  color: #e65100;
}

.proj-price-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 8px;
}

.proj-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proj-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.proj-loc-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 12px;
}

.proj-loc-row i {
  color: var(--gold);
  font-size: 0.77rem;
}

.proj-bhk {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.bhk-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 3px 10px;
  border-radius: 99px;
}

.proj-desc {
  font-size: 0.82rem;
  color: var(--light);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.55;
}

.proj-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.77rem;
  color: var(--mid);
  margin-bottom: 16px;
}

.proj-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.proj-meta i {
  color: var(--gold);
}

.proj-body .btn {
  margin-top: auto;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-n {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-l {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-bg {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
  transition: all var(--tr);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.12);
  border-color: var(--border);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(224, 192, 104, 0.08));
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: all var(--tr);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-bg {
  background: var(--navy);
}

.testi-bg .section-hd h2 {
  color: var(--white);
}

.testi-swiper {
  overflow: hidden;
}

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.95rem;
}

.testi-text {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.testi-role {
  font-size: 0.77rem;
  color: var(--gold);
}

.testi-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  width: 8px;
  height: 8px;
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, #B8953A 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(10, 22, 40, 0.72);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER – Enhanced 5-Column Design
   ============================================================ */

/* ---- Top Promo Strip ---- */
.footer-promo-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  padding: 18px 0;
}

.footer-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-promo-inner p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-promo-inner p i {
  font-size: 1rem;
}

.footer-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 8px;
  transition: all var(--tr);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-promo-cta:hover {
  background: var(--navy3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.3);
}

/* ---- Footer Main ---- */
footer {
  background: var(--navy);
  padding: 72px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}

/* Footer Col 1 – About + Contact */
.brand-desc-f {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin: 14px 0 18px;
}

/* Ratings badge */
.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.footer-rating-badge .fstars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.75rem;
}

.footer-rating-badge .frating-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.footer-rating-badge .frating-text span {
  color: var(--gold);
}

.footer-ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 11px;
  line-height: 1.55;
}

.footer-ci i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.88rem;
  width: 14px;
  text-align: center;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.soc-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  transition: all 0.28s ease;
  flex-shrink: 0;
}

.soc-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45);
}

/* ---- Footer Column Headings ---- */
.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ---- Footer Link Lists ---- */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--tr);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.45;
}

.footer-links a i {
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  transition: transform var(--tr);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a:hover i {
  transform: translateX(2px);
}

/* ---- Footer Contact Column ---- */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  transition: color var(--tr);
  display: block;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

/* ---- WhatsApp CTA in footer ---- */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all var(--tr);
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.footer-wa-btn:hover {
  background: #25D366;
  color: var(--white);
  border-color: transparent;
}

/* ---- Social Media Column ---- */
.social-link-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 10px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.28s ease;
  margin-bottom: 10px;
}

.social-link-row i {
  width: 18px;
  text-align: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.social-link-row:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.22);
  transform: translateX(4px);
}

/* ---- SEO Links Area ---- */
.footer-seo-area {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 4px;
  padding-top: 32px;
  padding-bottom: 40px;
}

.footer-seo-heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-seo-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.footer-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 24px;
}

/* ---- Footer Bottom ---- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.36);
  transition: color var(--tr);
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.36);
  transition: color var(--tr);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

.footer-rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.f-wa,
.f-call {
  position: fixed;
  z-index: 800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: all var(--tr);
}

.f-wa {
  bottom: 94px;
  right: 22px;
  background: #25D366;
  color: var(--white);
}

.f-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.f-wa:hover {
  background: #1abe56;
  transform: scale(1.1);
}

.f-call {
  bottom: 30px;
  right: 22px;
  background: var(--gold);
  color: var(--navy);
}

.f-call:hover {
  background: var(--gold2);
  transform: scale(1.1);
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 30px;
  left: 22px;
  width: 44px;
  height: 44px;
  background: var(--glass2);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  color: var(--gold);
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 800;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--tr);
}

.back-top.visible {
  display: flex;
}

.back-top:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============================================================
   PROPERTIES PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.75) 100%),
    url('../img/page-banner.jpg') center/cover no-repeat;
  padding: 140px 0 70px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(201,168,76,0.06)" stroke-width="0.5"/></svg>') center/80% no-repeat;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
}

.filter-bar {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
  border: 1px solid rgba(10, 22, 40, 0.06);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prop-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(10, 22, 40, 0.06);
  transition: all 0.35s ease;
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
  border-color: var(--border);
}

.prop-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.prop-card:hover .prop-img img {
  transform: scale(1.06);
}

.prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.prop-body {
  padding: 18px;
}

.prop-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.prop-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.prop-loc {
  font-size: 0.78rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.prop-loc i {
  color: var(--gold);
}

.prop-specs {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: var(--mid);
  flex-wrap: wrap;
}

.prop-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.prop-specs i {
  color: var(--gold);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow2);
}

.about-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-content p {
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.93rem;
}

.about-list {
  list-style: none;
  margin-bottom: 28px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--mid);
}

.about-list li i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--r);
  padding: 40px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.86rem;
  margin-bottom: 32px;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.c-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-item h4 {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-item span,
.c-item a {
  font-size: 0.9rem;
  color: var(--white);
  display: block;
  line-height: 1.55;
}

.c-item a:hover {
  color: var(--gold);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 22, 40, 0.07);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--r-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--tr);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

/* ============================================================
   QUICK VIEW MODAL
   ============================================================ */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.75);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.qv-overlay.open {
  display: flex;
}

.qv-modal {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  max-width: 780px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.3s ease;
}

.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(10, 22, 40, 0.08);
  border: none;
  cursor: pointer;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background var(--tr);
}

.qv-close:hover {
  background: rgba(10, 22, 40, 0.15);
}

.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.qv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-info {
  padding: 28px 24px;
}

.qv-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  justify-content: center;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--tr);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 0.65rem;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Tablet 1024px ---- */
@media (max-width: 1024px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }

  .footer-promo-inner {
    justify-content: center;
    text-align: center;
  }

  .search-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    gap: 40px;
  }

  .prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  section,
  .stats-bar,
  .testi-bg,
  .search-float {
    padding: 60px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .qv-grid {
    grid-template-columns: 1fr;
  }

  .qv-img {
    height: 220px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
  }
}

/* ---- Mobile 480px ---- */
@media (max-width: 480px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-promo-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-seo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .prop-grid {
    grid-template-columns: 1fr;
  }

  .search-float {
    margin-top: -30px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btns .btn {
    justify-content: center;
  }

  .hero-stats {
    gap: 18px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .search-card {
    padding: 24px 18px;
  }

  .filter-bar {
    flex-direction: column;
  }

  .footer-social {
    gap: 8px;
  }
}

/* ---- Small Mobile 320px ---- */
@media (max-width: 320px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat .n {
    font-size: 1.3rem;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

.text-navy {
  color: var(--navy);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-36 {
  margin-top: 36px;
}

.mb-36 {
  margin-bottom: 36px;
}

.d-flex {
  display: flex;
}

.gap-14 {
  gap: 14px;
}

.jc-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* AOS fade override */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   PAGE HERO (inner pages: About, Contact, Properties, Projects)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(10, 22, 40, 0.75) 100%),
    url('../img/page-banner.jpg') center/cover no-repeat;
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 22px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--r);
  padding: 36px 32px;
  color: var(--white);
  box-shadow: var(--shadow2);
}

.contact-info-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info-card>p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  line-height: 1.6;
}

.c-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.c-item-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}

.c-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.c-item span,
.c-item a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  display: block;
}

.c-item a:hover {
  color: var(--gold);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 22, 40, 0.07);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10, 22, 40, 0.12);
  border-radius: var(--r-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section {
  padding-top: 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow2);
  position: relative;
}

.about-img img {
  border-radius: var(--r);
}

.about-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-content p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-list {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
}

.about-list li i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER CONTACT ITEMS (4-col footer, col 3)
   ============================================================ */
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.83rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  transition: color var(--tr);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

/* Additional inner-page responsive overrides */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .contact-form-card {
    padding: 28px 20px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROPERTIES PAGE LAYOUT
   ============================================================ */
.prop-page-layout {
  padding: 60px 0 80px;
}

.prop-layout-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* ---- Filter Sidebar ---- */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.07);
  overflow: hidden;
  position: sticky;
  top: 90px;
}

.fs-header {
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
}

.fs-header i {
  color: var(--gold);
}

.fs-group {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.fs-group:last-child {
  border-bottom: none;
}

.fs-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fs-label i {
  color: var(--gold);
}

/* Filter Chips */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1.5px solid rgba(10, 22, 40, 0.12);
  color: var(--mid);
  background: var(--off-white);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.chip.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
}

/* Checkbox rows */
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--mid);
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.2s;
}

.check-row:hover {
  color: var(--navy);
}

.check-row input[type=checkbox] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* ---- Property Main Grid ---- */
.prop-main {
  min-width: 0;
}

.prop-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}

.prop-count {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 500;
}

.prop-count strong {
  color: var(--navy);
  font-weight: 700;
}

.prop-count i {
  color: var(--gold);
  margin-right: 5px;
}

.sidebar-toggle {
  display: none;
  /* shown on mobile */
}

/* ---- Property Grid ---- */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ---- Property Card ---- */
.prop-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.07);
  box-shadow: 0 4px 18px rgba(10, 22, 40, 0.08);
  transition: all 0.32s ease;
  display: flex;
  flex-direction: column;
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(10, 22, 40, 0.14);
  border-color: rgba(201, 168, 76, 0.22);
}

/* Prop image wrapper */
.prop-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.prop-card:hover .prop-img img {
  transform: scale(1.06);
}

/* Overlaid badges */
.prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
  background: rgba(10, 22, 40, 0.75);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.prop-badge.new {
  background: #e8f5e9;
  color: #2e7d32;
}

.prop-badge.premium {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
}

.prop-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 8px;
}

/* Wishlist heart */
.prop-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 0.9rem;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.prop-wish:hover {
  color: #e53935;
  background: var(--white);
}

.prop-wish.liked {
  color: #e53935;
}

/* Quick View button (shown on hover) */
.prop-qv {
  position: absolute;
  bottom: 12px;
  left: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  font-size: 0.75rem !important;
  padding: 6px 14px !important;
}

.prop-card:hover .prop-qv {
  opacity: 1;
  transform: translateY(0);
}

/* Card body */
.prop-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prop-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.prop-loc {
  font-size: 0.79rem;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.prop-loc i {
  color: var(--gold);
  font-size: 0.75rem;
}

.prop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--mid);
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 22, 40, 0.07);
}

.prop-spec {
  display: flex;
  align-items: center;
  gap: 5px;
}

.prop-spec i {
  color: var(--gold);
  font-size: 0.77rem;
}

.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 22, 40, 0.07);
}

/* Agent mini badge */
.agent-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.agent-mini img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.agent-mini span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   PROPERTIES PAGE – RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .prop-layout-inner {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }

  .prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .prop-layout-inner {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
    display: none;
    /* hidden by default on mobile, toggled via JS */
  }

  .filter-sidebar.open {
    display: block;
  }

  .sidebar-toggle {
    display: inline-flex;
  }

  .prop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .prop-grid {
    grid-template-columns: 1fr;
  }
}