/* ============================================================
   THE INVESTORS WORLD — Master Stylesheet
   Target Keywords: "The Investors World" | "Ultra Luxury Properties in Gurgaon"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E42;
  --gold:       #C9A84C;
  --gold-light: #E8C96D;
  --gold-pale:  rgba(201,168,76,0.12);
  --white:      #FFFFFF;
  --off-white:  #F8F6F1;
  --text-dark:  #1A1A2E;
  --text-mid:   #4B5563;
  --text-light: #9CA3AF;
  --border:     rgba(255,255,255,0.08);
  --border-light: #E5E7EB;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.18);
  --radius:     12px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ——— TYPOGRAPHY ——— */
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 600; }

p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.75; }

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

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

/* ——— UTILITY ——— */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  max-width: 580px;
  color: var(--text-mid);
  font-size: 1rem;
}

/* ——— BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ——— NAVBAR ——— */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: rgba(13,27,42,0.97);
}

.navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo img { height: 52px; width: auto; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  display: none;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: var(--transition);
}

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

.nav-links > li > a svg {
  width: 12px; height: 12px;
  transition: transform 0.2s;
}

.nav-links > li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  overflow: hidden;
  z-index: 100;
}

.nav-links > li:hover .nav-dropdown:not(:empty) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  border-bottom: 1px solid #F3F4F6;
}

.nav-dropdown a:last-child { border-bottom: none; }

.nav-dropdown a:hover {
  background: var(--gold-pale);
  color: var(--navy);
  padding-left: 24px;
}

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

/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #C9A84C;
  transition: var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2E42 50%, #0D1B2A 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1800&q=80') center/cover no-repeat;
  opacity: 0.22;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.4) 0%, rgba(13,27,42,0.7) 60%, rgba(13,27,42,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  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(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem,6vw,5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  max-width: 760px;
}

.hero-title span {
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* Search Bar */
.search-bar-wrap {
  background: white;
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  padding: 28px 28px 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.search-bar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.search-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.search-field select,
.search-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
  background: white;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.search-field select:focus,
.search-field input:focus { border-color: var(--gold); }

.search-submit {
  width: 100%;
  padding: 12px 24px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  white-space: nowrap;
}
.search-submit:hover { background: var(--gold); color: var(--navy); }

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

.prop-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}

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

.prop-img {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #F3F4F6;
}

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

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

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

.prop-badge.featured { background: var(--navy); color: var(--gold); }
.prop-badge.hot { background: #EF4444; color: white; }
.prop-badge.new { background: #3B82F6; color: white; }

.prop-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.prop-fav:hover { background: white; transform: scale(1.1); }
.prop-fav svg { width: 16px; height: 16px; }

.prop-body { padding: 20px; }

.prop-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.prop-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.prop-loc {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.prop-loc svg { width: 13px; height: 13px; flex-shrink: 0; }

.prop-specs {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #F3F4F6;
}

.prop-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-mid);
  font-weight: 500;
}

.prop-spec svg { width: 14px; height: 14px; color: var(--gold); }

/* ——— FEATURES ——— */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}

.feature-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 26px; height: 26px; color: var(--gold); }

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

/* ——— TESTIMONIALS ——— */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }

.testimonial-text {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ——— BLOG ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-img {
  height: 200px;
  overflow: hidden;
  background: #F3F4F6;
}

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

.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-body { padding: 20px; }

.blog-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

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

.blog-excerpt {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid #F3F4F6;
}

/* ——— AGENTS ——— */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.agent-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: var(--transition);
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.agent-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

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

.agent-initials {
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.agent-body { padding: 20px; }

.agent-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.agent-title {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.agent-contacts {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.agent-contact-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: none; cursor: pointer;
  color: var(--text-mid);
}

.agent-contact-btn:hover { background: var(--gold); color: var(--navy); }
.agent-contact-btn svg { width: 15px; height: 15px; }

/* ——— ENQUIRY FORM ——— */
.enquiry-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.enquiry-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}

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

.enquiry-info h2 { color: var(--white); }
.enquiry-info p { color: rgba(255,255,255,0.65); }

.enquiry-features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.enquiry-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

.enquiry-features li svg {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.enquiry-form-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

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

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  background: white;
}

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

.form-group textarea { resize: vertical; min-height: 90px; }

/* ——— FOOTER ——— */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex; gap: 10px;
}

.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

.footer-social:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

.footer-heading {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

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

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  background: var(--navy);
  padding: 140px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.07), transparent 70%);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 600;
  color: var(--white);
  position: relative;
}

.page-hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-top: 12px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  position: relative;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; }

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

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: 14px;
  overflow: hidden;
  height: 500px;
}

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

.about-img-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}

.about-img-accent img { width: 100%; height: 140px; object-fit: cover; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--off-white);
  border-radius: 10px;
}

.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.about-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
}

/* ——— CONTACT ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; color: var(--gold); }

.contact-info-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  height: 300px;
  margin-top: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ——— PROPERTY DETAIL ——— */
.prop-detail-hero {
  height: 480px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.prop-detail-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.prop-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.prop-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  margin-top: 40px;
}

/* ——— FILTERS ——— */
.filter-bar {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  border: 1px solid rgba(0,0,0,0.05);
}

.filter-bar select,
.filter-bar input {
  padding: 9px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  color: var(--text-dark);
  outline: none;
  background: white;
  transition: border-color 0.2s;
  min-width: 130px;
}

.filter-bar select:focus,
.filter-bar input:focus { border-color: var(--gold); }

/* ——— TOAST ——— */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 340px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: #166534; }
.toast.error { background: #991B1B; }

.toast svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ——— BACKGROUND SECTIONS ——— */
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* ——— DIVIDER ——— */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.gold-divider.center { margin: 16px auto 24px; }

/* ——— RESPONSIVE ——— */
@media (max-width: 1100px) {
  .prop-grid { grid-template-columns: repeat(2,1fr); }
  .agents-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .login-menu-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: 2.4rem; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .prop-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .prop-grid { grid-template-columns: 1fr; }
  .agents-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .search-fields { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .section { padding: 56px 0; }
}

/* ——— SCROLL REVEAL ——— */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— NO LISTINGS ——— */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.empty-state svg {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: #D1D5DB;
}

/* ——— Loading ——— */
.loading-spinner {
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}

.spinner {
  width: 36px; height: 36px;
  border: 3px solid #F3F4F6;
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Plain links */
/* Accordion group */
/* Hamburger open = X */
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Spinner keyframe */
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   NAVBAR ALWAYS VISIBLE — hardcoded scrolled state for inner pages
   ============================================================ */
.navbar.scrolled {
  background: rgba(13,27,42,0.97) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

/* Force navbar always dark - no transparent state */
.navbar {
  background: rgba(13,27,42,0.97) !important;
}

/* ============================================================
   MOBILE NAV — Single Clean Definition
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0D1B2A;
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 90px 0 40px;
}
.mobile-nav.open { display: block !important; }

.mobile-nav .mn-link {
  display: block;
  padding: 13px 20px;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.mobile-nav .mn-link:hover { color: #C9A84C; }

.mn-group { border-bottom: 1px solid rgba(255,255,255,0.06); }

.mn-parent {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: none !important;
  border: none !important;
  outline: none;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  text-align: left;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.mn-parent svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.mn-children {
  display: none;
  background: rgba(0,0,0,0.2);
}
.mn-children.open {
  display: block;
}
.mn-children a {
  display: block !important;
  padding: 11px 20px 11px 32px !important;
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  text-decoration: none !important;
}
.mn-children a:last-child { border-bottom: none !important; }
.mn-children a:hover { color: #C9A84C !important; }

.mn-acc-group { border-top: 1px solid rgba(201,168,76,0.15); margin-top: 4px; }
.mn-acc-btn { color: #C9A84C !important; }
