/* ==========================================================================
   MILLAT ESTATE - Premium Real-Estate Design System
   Brand: Millat Estate (CDA Sectors I-8 to I-16 & Faisal Town Phase-2)
   Color System: Deep Forest Emerald Green & Subtle Champagne Gold
   ========================================================================== */

:root {
  /* Brand Core Colors */
  --brand-primary: #006450;         /* Official Logo Emerald Green */
  --brand-primary-dark: #004d3e;    /* Deep Forest Green */
  --brand-primary-darker: #072e25;  /* Deepest Forest Night */
  --brand-primary-light: #0d826a;   /* Lighter Emerald */
  --brand-primary-subtle: #ebf6f3;  /* Very Soft Mint/Emerald Tint */

  /* Brand Accents */
  --brand-gold: #c9a062;            /* Refined Champagne Gold */
  --brand-gold-dark: #b58d50;       /* Darker Burnished Gold */
  --brand-gold-light: #dfbe87;      /* Soft Light Gold */
  --brand-gold-subtle: #faf6ef;     /* Warm Ivory Gold Tint */
  --brand-gold-border: rgba(201, 160, 98, 0.4);

  /* Neutrals & Surfaces */
  --surface-dark: #0b241e;          /* Rich Charcoal Slate */
  --surface-dark-card: #12342b;     /* Card background in dark sections */
  --surface-light: #ffffff;         /* Pure White */
  --surface-muted: #fbfbfa;         /* Warm Off-White / Ivory */
  --surface-tint: #f4f6f5;          /* Cool Light Neutral */

  /* Text Colors */
  --text-dark: #0f172a;             /* High contrast body text */
  --text-dark-muted: #475569;       /* Secondary descriptive text */
  --text-light: #ffffff;            /* White on dark backgrounds */
  --text-light-muted: #cbd5e1;      /* Secondary text on dark backgrounds */

  /* Borders & Dividers */
  --border-light: #e5e7eb;
  --border-subtle: #edf2f0;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(11, 36, 30, 0.08);
  --shadow-lg: 0 10px 30px rgba(11, 36, 30, 0.12);
  --shadow-gold: 0 8px 24px rgba(201, 160, 98, 0.25);

  /* Layout & Sizing */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Base & Reset
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--surface-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--brand-primary-darker);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

p {
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-primary-light);
}

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

:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Badges & Eyebrows
   -------------------------------------------------------------------------- */
.badge-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background-color: var(--brand-primary-subtle);
  color: var(--brand-primary);
  border: 1px solid rgba(0, 100, 80, 0.15);
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background-color: var(--brand-gold-subtle);
  color: var(--brand-gold-dark);
  border: 1px solid var(--brand-gold-border);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-brand-primary {
  background-color: var(--brand-primary);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--brand-primary-light);
  box-shadow: 0 4px 12px rgba(0, 100, 80, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-brand-primary:hover {
  background-color: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 100, 80, 0.3);
  color: #ffffff !important;
}

.btn-brand-gold {
  background: linear-gradient(135deg, #dfbe87 0%, #c9a062 100%);
  color: var(--surface-dark) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid #dfbe87;
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-brand-gold:hover {
  background: linear-gradient(135deg, #c9a062 0%, #b58d50 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 160, 98, 0.35);
  color: var(--surface-dark) !important;
}

.btn-brand-outline {
  background-color: transparent;
  color: var(--brand-primary) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--brand-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-brand-outline:hover {
  background-color: var(--brand-primary-subtle);
  border-color: var(--brand-primary);
  color: var(--brand-primary-dark) !important;
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff !important;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #ffffff !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   Top Notification Strip
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--surface-dark);
  color: #d1d5db;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0;
}

.top-bar a {
  color: #e5e7eb;
}

.top-bar a:hover {
  color: var(--brand-gold);
}

.top-bar .divider {
  opacity: 0.3;
  margin: 0 0.5rem;
}

/* --------------------------------------------------------------------------
   Navbar — Minimal, Premium & Perfectly Aligned
   -------------------------------------------------------------------------- */
.site-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(11, 36, 30, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  padding: 1rem 0;
  min-height: 76px;
  display: flex;
  align-items: center;
}

.site-navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 18px rgba(11, 36, 30, 0.08);
  padding: 0.7rem 0;
  min-height: 68px;
}

.navbar-brand-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  line-height: 1;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.site-navbar.scrolled .brand-logo-img {
  height: 38px;
}

.brand-location-tag {
  font-size: 0.72rem;
  color: var(--text-dark-muted);
  line-height: 1.25;
  padding-left: 0.75rem;
  border-left: 2px solid var(--brand-gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-location-tag .brand-city {
  color: var(--brand-primary);
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 800;
}

.brand-location-tag .brand-sub {
  color: var(--text-dark-muted);
  font-weight: 500;
}

/* Equal spacing & aligned baseline */
.site-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-navbar .navbar-nav {
    gap: 0.15rem;
  }
  .nav-link {
    font-size: 0.85rem !important;
    padding: 0.45rem 0.6rem !important;
  }
}

@media (min-width: 1200px) {
  .site-navbar .navbar-nav {
    gap: 0.55rem;
  }
}

@media (min-width: 1400px) {
  .site-navbar .navbar-nav {
    gap: 0.85rem;
  }
}

.nav-link {
  color: var(--surface-dark) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-primary) !important;
  background-color: var(--brand-primary-subtle);
}

.nav-link.nav-link-contact {
  color: var(--brand-primary) !important;
  font-weight: 700;
  border: 1px solid rgba(0, 100, 80, 0.2);
}

.nav-link.nav-link-contact:hover {
  background-color: var(--brand-primary);
  color: #ffffff !important;
  border-color: var(--brand-primary);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(7, 46, 37, 0.92) 0%, rgba(11, 36, 30, 0.96) 100%),
              url('../images/islamabad-landscape.jpg') center center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 0 5.5rem 0;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--surface-light), transparent);
  pointer-events: none;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-title span.accent-gold {
  color: var(--brand-gold-light);
  font-weight: 800;
}

.hero-lead {
  color: #e2e8f0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 640px;
}

/* Search / Requirement Widget */
.hero-search-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 160, 98, 0.25);
  color: var(--text-dark);
}

.search-type-tabs {
  display: flex;
  background: var(--surface-tint);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 1.25rem;
  gap: 4px;
}

.search-tab-btn {
  flex: 1;
  text-align: center;
  padding: 0.55rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-dark-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.search-tab-btn.active {
  background: #ffffff;
  color: var(--brand-primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.form-label-custom {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary-dark);
  margin-bottom: 0.35rem;
}

.form-select-custom, .form-control-custom {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  background-color: #ffffff;
  transition: var(--transition);
}

.form-select-custom:focus, .form-control-custom:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(0, 100, 80, 0.15);
  outline: none;
}

/* --------------------------------------------------------------------------
   Trust Indicators Strip
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: var(--surface-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.2rem 0;
  position: relative;
  z-index: 2;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-subtle);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(0, 100, 80, 0.15);
}

.trust-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.trust-item p {
  font-size: 0.825rem;
  margin-bottom: 0;
  color: var(--text-dark-muted);
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3.5rem 0;
}

.section-header {
  margin-bottom: 3.25rem;
}

.section-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-top: 0.6rem;
  margin-bottom: 0.85rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.service-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-primary);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-gold-border);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--brand-gold-subtle);
  color: var(--brand-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  border: 1px solid var(--brand-gold-border);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-dark-muted);
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.service-features li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--brand-primary);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   CDA Sectors I-8 to I-16 Interactive Guide
   -------------------------------------------------------------------------- */
.cda-guide-section {
  background-color: var(--surface-muted);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.sector-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.sector-pill-btn {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1.5px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.sector-pill-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.sector-pill-btn.active {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 100, 80, 0.25);
}

.sector-detail-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.sector-status-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.status-developed {
  background-color: #dcfce7;
  color: #166534;
}

.status-developing {
  background-color: #fef3c7;
  color: #92400e;
}

.status-commercial {
  background-color: #e0f2fe;
  color: #0369a1;
}

.sector-feature-item {
  background: var(--surface-tint);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.sector-feature-item h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark-muted);
  margin-bottom: 0.25rem;
}

.sector-feature-item p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-primary-dark);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Property Showcase Cards
   -------------------------------------------------------------------------- */
.property-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tab-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-dark-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab-btn:hover {
  background-color: var(--brand-primary-subtle);
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.filter-tab-btn.active {
  background-color: var(--brand-primary);
  color: #ffffff;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 10px rgba(0, 100, 80, 0.2);
}

.property-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-gold-border);
}

.property-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #e2e8f0;
}

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

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

.property-badge-type {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 46, 37, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-badge-location {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.property-badge-featured {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #dfbe87 0%, #c9a062 100%);
  color: var(--surface-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.property-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-category-tag {
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  display: block;
}

.property-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.35;
  color: var(--surface-dark);
}

.property-desc {
  font-size: 0.92rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.property-features-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.property-feature-pill {
  font-size: 0.8rem;
  color: var(--text-dark);
  background: var(--surface-muted);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.property-feature-pill i {
  color: var(--brand-primary);
}

.property-card-footer {
  padding-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   Faisal Town Phase-2 Spotlight & Sector Cards
   -------------------------------------------------------------------------- */
.faisal-town-section {
  background: linear-gradient(135deg, #072e25 0%, #0b241e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.faisal-town-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 160, 98, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ft2-sector-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 160, 98, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.ft2-sector-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.ft2-sector-text {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

.faisal-town-badge-booking {
  display: inline-block;
  background: linear-gradient(135deg, #dfbe87 0%, #c9a062 100%);
  color: var(--surface-dark);
  font-weight: 800;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-gold);
  margin-bottom: 1.25rem;
}

.plot-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.plot-size-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  text-align: center;
  transition: var(--transition);
}

.plot-size-chip:hover {
  background: rgba(201, 160, 98, 0.15);
  border-color: var(--brand-gold);
  transform: translateY(-2px);
}

.plot-size-chip .number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1.1;
}

.plot-size-chip .unit {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-gold-light);
  font-weight: 700;
}

.faisal-creative-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(201, 160, 98, 0.4);
}

.faisal-creative-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   Interactive Installment & Booking Calculator
   -------------------------------------------------------------------------- */
.calculator-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
}

.calc-result-box {
  background: var(--surface-muted);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--brand-gold-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-highlight-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.1;
}

/* --------------------------------------------------------------------------
   Why Millat Estate (Trust Matrix)
   -------------------------------------------------------------------------- */
.why-millat-section {
  background-color: #ffffff;
}

.trust-pillar-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  border: 1px solid var(--border-light);
  height: 100%;
  transition: var(--transition);
}

.trust-pillar-card:hover {
  background: #ffffff;
  border-color: var(--brand-gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trust-number-badge {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.trust-pillar-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.trust-pillar-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Consultation & Lead Generation Form
   -------------------------------------------------------------------------- */
.contact-section {
  background: linear-gradient(to bottom, var(--surface-muted), #ffffff);
}

.contact-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.contact-header-strip {
  background: linear-gradient(135deg, var(--brand-primary-darker) 0%, var(--brand-primary) 100%);
  color: #ffffff;
  padding: 2rem;
}

.contact-header-strip h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.contact-header-strip p {
  color: #e2e8f0;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-body {
  padding: 2.25rem;
}

.form-floating-custom {
  position: relative;
  margin-bottom: 1.25rem;
}

.lead-direct-card {
  background: var(--surface-dark);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(201, 160, 98, 0.3);
}

.lead-direct-card h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.lead-direct-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.direct-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.direct-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(201, 160, 98, 0.15);
  color: var(--brand-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(201, 160, 98, 0.3);
}

.direct-contact-text h5 {
  color: var(--brand-gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.direct-contact-text p {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Office Location & Shaheen Center Section
   -------------------------------------------------------------------------- */
.location-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.location-map-container {
  height: 100%;
  min-height: 380px;
  background-color: #e5e7eb;
}

.location-info-panel {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.accordion-custom .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-custom .accordion-button {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-primary-darker);
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--brand-primary);
  background-color: var(--brand-primary-subtle);
  box-shadow: none;
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand-primary);
}

.accordion-custom .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  background-color: #ffffff;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Closing Conversion Banner
   -------------------------------------------------------------------------- */
.closing-cta-section {
  background: linear-gradient(135deg, var(--brand-primary-darker) 0%, var(--brand-primary) 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 160, 98, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.closing-cta-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.closing-cta-section p {
  color: #e2e8f0;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

/* --------------------------------------------------------------------------
   Footer — High Contrast, Clean Hierarchy & Accessible Typography
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #061914; /* Deep Forest Charcoal */
  color: #f1f5f9;            /* High Contrast Primary Text */
  font-size: 0.9rem;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.footer-logo {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-desc {
  color: #cbd5e1; /* Light Muted Gray (Contrast ratio > 8:1 on #061914) */
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-heading {
  color: #ffffff; /* Crisp White Header */
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.35rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--brand-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #f1f5f9; /* White / Off-white */
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-gold-light);
  transform: translateX(3px);
}

.footer-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.footer-areas-grid a {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.825rem;
  padding: 0.45rem 0.35rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: var(--transition);
  display: block;
}

.footer-areas-grid a:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary-light);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-areas-note {
  color: #94a3b8;
  font-size: 0.78rem;
  display: block;
  line-height: 1.4;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #f1f5f9;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--brand-gold-light);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.footer-phone-link {
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
}

.footer-phone-link:hover {
  color: var(--brand-gold-light) !important;
}

.footer-wa-link {
  color: #4ade80 !important; /* Bright accessible WhatsApp green */
  font-weight: 600;
  text-decoration: none;
}

.footer-wa-link:hover {
  color: #86efac !important;
}

.footer-social-wrapper {
  margin-top: 1.25rem;
}

.footer-social-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cbd5e1;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social-links a:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #061914;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.825rem;
}

.footer-copyright {
  color: #cbd5e1;
}

.footer-note {
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   Mobile Sticky Bottom CTA Bar & WhatsApp Floating Button
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 0.65rem 1rem;
}

.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1020;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints & Mobile Optimization
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .site-navbar .navbar-collapse {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    margin-top: 0.75rem;
    border: 1px solid var(--border-light);
  }

  .site-navbar .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
  }

  .site-navbar .navbar-nav .nav-link {
    width: 100%;
    padding: 0.65rem 1rem !important;
    justify-content: flex-start;
  }

  .hero-section {
    padding: 3.5rem 0 4rem 0;
  }

  .hero-search-card {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .top-bar {
    display: none;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .mobile-sticky-bar {
    display: flex;
    gap: 0.5rem;
  }

  /* Prevent bottom content from being obscured by sticky bar */
  body {
    padding-bottom: 65px;
  }

  .floating-whatsapp-btn {
    bottom: 75px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

