/* ==========================================================================
   CHANNEL ESTATE - LUXURY REAL ESTATE DESIGN SYSTEM
   Pakistan's Largest Real Estate Company | Lahore, Pakistan
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-navy: #09152b;
  --primary-navy-dark: #050d1b;
  --primary-navy-light: #122240;
  --navy-surface: #182c52;
  
  --gold-accent: #c59d5f;
  --gold-light: #dfba7f;
  --gold-dark: #a98144;
  --gold-glow: rgba(197, 157, 95, 0.18);

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-white: #ffffff;

  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;

  --border-light: #e2e8f0;
  --border-gold: rgba(197, 157, 95, 0.35);

  --success: #10b981;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1eb956;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container-max: 1240px;
  --header-height: 84px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(9, 21, 43, 0.08), 0 8px 10px -6px rgba(9, 21, 43, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(9, 21, 43, 0.12), 0 10px 10px -5px rgba(9, 21, 43, 0.04);
  --shadow-gold: 0 8px 25px rgba(197, 157, 95, 0.28);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-accent);
}

.section-heading {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.section-padding { padding-top: 5rem; padding-bottom: 5rem; }
.section-padding-sm { padding-top: 3.5rem; padding-bottom: 3.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary-navy);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(9, 21, 43, 0.2);
}
.btn-primary:hover {
  background: var(--primary-navy-light);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 21, 43, 0.28);
}

.btn-gold {
  background: var(--gold-accent);
  color: var(--primary-navy);
  box-shadow: var(--shadow-gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(197, 157, 95, 0.4);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: var(--text-white);
  color: var(--primary-navy);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

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

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--text-white);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-green-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.84rem;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */
.site-topbar {
  background: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-info a, .topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.85);
}
.topbar-info a:hover {
  color: var(--gold-accent);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fbbf24;
  font-weight: 600;
}
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.topbar-socials a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}
.topbar-socials a:hover {
  color: var(--gold-accent);
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  background: var(--primary-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-smooth);
}

.site-header.header-transparent {
  position: absolute;
  top: 37px;
  background: linear-gradient(180deg, rgba(6, 14, 29, 0.9) 0%, rgba(6, 14, 29, 0.65) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 157, 95, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
  position: fixed;
  top: 0;
  height: 82px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 25px rgba(9, 21, 43, 0.08);
  border-bottom: 2px solid var(--gold-accent);
}

.site-header.scrolled .nav-link {
  color: var(--primary-navy);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--gold-dark);
}

.site-header.scrolled .nav-link::after {
  background: var(--gold-dark);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
  padding: 0.25rem 0;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.logo-img {
  height: 54px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  transition: opacity var(--transition-fast);
}

/* By default (dark navy or transparent header): show logo-white */
.site-header .logo-white {
  display: block;
}
.site-header .logo-dark {
  display: none;
}

/* When scrolled (crisp white background): show logo-dark */
.site-header.scrolled .logo-white {
  display: none;
}
.site-header.scrolled .logo-dark {
  display: block;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-call-nav {
  background: rgba(197, 157, 95, 0.12);
  border: 1.5px solid var(--gold-accent);
  color: #ffffff;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.84rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all var(--transition-fast);
}

.btn-call-nav:hover {
  background: var(--gold-accent);
  color: var(--primary-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 157, 95, 0.35);
}

.site-header.scrolled .btn-call-nav {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: var(--text-white);
}

.site-header.scrolled .btn-call-nav:hover {
  background: var(--primary-navy-light);
  border-color: var(--primary-navy-light);
  color: var(--text-white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-white);
}
.site-header.scrolled .mobile-menu-btn {
  color: var(--primary-navy);
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 21, 43, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--primary-navy-dark);
  z-index: 1002;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
  overflow-y: auto;
}
.mobile-drawer.active {
  right: 0;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}
.mobile-close-btn {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.25rem;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}
.mobile-nav-links a.active, .mobile-nav-links a:hover {
  color: var(--gold-accent);
}
.mobile-drawer-contacts {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-navy-dark);
  background-image: linear-gradient(180deg, rgba(6, 14, 29, 0.75) 0%, rgba(9, 21, 43, 0.88) 100%), url('../images/hero-lahore.webp');
  background-size: cover;
  background-position: center center;
  color: var(--text-white);
  padding: 11.5rem 0 6rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background: rgba(197, 157, 95, 0.15);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 720px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Hero Property Search Box */
.hero-search-box {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
  margin-top: 1rem;
}

.search-tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
}

.search-tab {
  background: transparent;
  border: none;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-tab.active, .search-tab:hover {
  background: var(--primary-navy);
  color: var(--text-white);
}

.search-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 160px;
  gap: 1rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: #ffffff;
}

/* ==========================================================================
   STATISTICS / TRUST SECTION
   ========================================================================== */
.stats-section {
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PROPERTY CARDS & GRID
   ========================================================================== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.property-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.property-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #cbd5e1;
}

.property-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.property-badge-group {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.property-badge {
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.badge-purpose {
  background: var(--primary-navy);
  color: var(--text-white);
}

.badge-type {
  background: var(--gold-accent);
  color: var(--primary-navy-dark);
}

.property-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(9, 21, 43, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  border: 1px solid rgba(197, 157, 95, 0.4);
}

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

.property-card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.property-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.property-card-title a:hover {
  color: var(--gold-dark);
}

.property-card-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.spec-item svg {
  color: var(--gold-accent);
}

.property-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-top: auto;
}

/* ==========================================================================
   CATEGORY CARDS
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  text-decoration: none;
  background-color: var(--primary-navy-dark);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.65);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
  filter: brightness(0.5);
}

.category-card-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
}

.category-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.category-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   WHY CHOOSE US / FEATURES SECTION
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(197, 157, 95, 0.12);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.feature-box h3 {
  font-size: 1.25rem;
  color: var(--primary-navy);
}

.feature-box p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ==========================================================================
   CTA BANNERS
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy-light) 100%);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 157, 95, 0.25);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 157, 95, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cta-banner-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-banner-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   GOOGLE REVIEWS / TRUST BADGE
   ========================================================================== */
.trust-review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-review-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-rating-large {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.trust-stars {
  color: #f59e0b;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

/* ==========================================================================
   PROPERTY DETAILS PAGE
   ========================================================================== */
.property-detail-header {
  padding: 3rem 0 2rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.detail-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.detail-price-box {
  text-align: right;
}

.detail-price-val {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold-accent);
}

.gallery-wrapper {
  margin: 2rem 0 3rem;
}

.gallery-main {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #cbd5e1;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.gallery-thumb {
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all var(--transition-fast);
}

.gallery-thumb.active, .gallery-thumb:hover {
  opacity: 1;
  border-color: var(--gold-accent);
}

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

.property-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.property-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
}

.detail-spec-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-spec-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.detail-spec-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
}

.amenity-item svg {
  color: var(--gold-accent);
  flex-shrink: 0;
}

/* Agent Contact Box */
.agent-contact-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.agent-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

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

.form-group-full {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

/* ==========================================================================
   PAGE HERO (INNER PAGES)
   ========================================================================== */
.inner-hero {
  background: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-navy) 100%);
  color: var(--text-white);
  padding: 6rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.inner-hero::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(197, 157, 95, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.inner-hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

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

.breadcrumbs span.current {
  color: var(--gold-light);
}

/* ==========================================================================
   FILTER BAR (PROPERTIES PAGE)
   ========================================================================== */
.properties-filter-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
  gap: 1rem;
  align-items: flex-end;
}

/* ==========================================================================
   BUYING / SELLING STEPS
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--primary-navy-dark);
  color: rgba(255, 255, 255, 0.75);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  padding: 5rem 0 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item svg {
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

/* ==========================================================================
   FLOATING MOBILE BAR & DESKTOP WHATSAPP FAB
   ========================================================================== */
.floating-whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--whatsapp-green);
  color: var(--text-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
}

.floating-whatsapp-fab:hover {
  background: var(--whatsapp-green-hover);
  color: var(--text-white);
  transform: scale(1.08) translateY(-2px);
}

.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 998;
  padding: 0.65rem 1rem;
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mobile-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
}

.mobile-bottom-call {
  background: var(--primary-navy);
  color: var(--text-white);
}

.mobile-bottom-whatsapp {
  background: var(--whatsapp-green);
  color: var(--text-white);
}

.mobile-bottom-inquiry {
  background: var(--gold-accent);
  color: var(--primary-navy-dark);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--primary-navy);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: toastSlide 0.3s ease forwards;
}

.toast-success {
  border-left: 4px solid var(--success);
}

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

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-light);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .property-detail-layout {
    grid-template-columns: 1fr;
  }
  .agent-contact-box {
    position: static;
  }
}

@media (max-width: 768px) {
  .site-topbar {
    display: none;
  }
  .nav-menu, .btn-call-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .search-form-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item::after {
    display: none !important;
  }
  .floating-whatsapp-fab {
    display: none; /* Mobile bar replaces it */
  }
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 65px; /* Spacing for bottom bar */
  }
  .trust-review-card {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .trust-review-info {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .amenities-list {
    grid-template-columns: 1fr;
  }
}
