/* ============================================================
   InvestConsult DXB - Main Stylesheet
   Domain: investconsultdxb.com
   Design System: Premium Real Estate - UAE Market
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  /* Primary Palette */
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --primary-dark: #0f0f1a;
  --accent: #c9a84c;
  --accent-light: #d4b96a;
  --accent-dark: #a88a3a;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f0f2f5;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-300: #ced4da;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --black: #000000;

  /* Status Colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;

  /* Typography */
  --font-primary: 'Raleway', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Raleway', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Layout */
  --max-width: 1400px;
  --nav-height: 85px;
  --nav-height-mobile: 70px;
}

/* ---- Reset & Base ---- */
*, *::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-primary);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--primary); }

/* ---- Utility Classes ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1600px; margin: 0 auto; padding: 0 24px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray-500); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }
.text-4xl { font-size: 2.5rem; }
.text-5xl { font-size: 3.5rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
.py-4xl { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); }

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.8125rem; }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-full); }

/* ---- Section Styles ---- */
.section { padding: var(--space-4xl) 0; }
.section-sm { padding: var(--space-3xl) 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-gray { background: var(--light-gray); }
.section-accent { background: var(--accent); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.section-label {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(201,168,76,0.1);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img {
  height: 54px;
  width: auto;
  transition: transform var(--transition-fast);
}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav-brand-text{font-family:'Raleway',sans-serif;font-size:1.1rem;font-weight:700;letter-spacing:1.5px;color:var(--text);white-space:nowrap}
.nav.scrolled .nav-brand-text{color:var(--text)}
@media(max-width:768px){.nav-brand-text{display:none}}
.nav-logo:hover img { transform: scale(1.02); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: static;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.nav-link:hover { color: var(--accent); background: rgba(201,168,76,0.06); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.nav-link:hover svg { transform: rotate(180deg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-fav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-fav-btn:hover { background: var(--white); border-color: var(--accent); }
.nav-fav-btn .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-cta { padding: 10px 22px; font-size: 0.875rem; }

/* Mobile Nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  transition: all var(--transition-base);
  border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-base);
  z-index: 1001;
}
.nav-item:hover .mega-menu,
.nav-item.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.mega-col h4 {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.mega-col a {
  display: block;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}
.mega-col a:hover { color: var(--accent); padding-left: 8px; }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
  padding: var(--nav-height-mobile) 0 40px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-section { border-bottom: 1px solid var(--gray-100); }
.mnav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-primary);
}
.mnav-toggle svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.mobile-nav-section.open .mnav-toggle { color: var(--accent); }
.mobile-nav-section.open .mnav-toggle svg { transform: rotate(180deg); }
.mnav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--gray-50);
}
.mnav-sub a {
  display: block;
  padding: 10px 24px 10px 36px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
}
.mnav-sub a:hover, .mnav-sub a:active { color: var(--accent); }
.mnav-sub-heading {
  display: block;
  padding: 12px 24px 4px 36px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}
.mobile-nav-section > a {
  display: block;
  padding: 16px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  text-decoration: none;
}
.mobile-nav-cta { margin: 24px; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gray-600);
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a365d 100%);
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 60px 24px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PROPERTY CARDS
   ============================================================ */
/* PROPERTY CARD - Houzez Theme Match */
.property-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: all .3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  transform: translateY(-4px);
}
.property-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.property-card:hover .property-card-image img { transform: scale(1.05); }

.property-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.badge-status {
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: 4px;
  color: #fff;
  line-height: 1;
}
.badge-for-sale { background: #1a1a2e; }
.badge-ready { background: #27ae60; }
.badge-off-plan { background: #e67e22; }
.badge-rent { background: #3498db; }

.property-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
  border: none;
}
.property-fav:hover { background: #fff; transform: scale(1.1); }
.property-fav svg { width: 18px; height: 18px; color: #999; }
.property-fav.active svg { color: #e74c3c; fill: #e74c3c; }

.property-card-body { padding: 18px 20px 14px; flex: 1; }
.property-type-label {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.property-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-family: 'Roboto', sans-serif;
}
.property-price span {
  font-size: .8rem;
  font-weight: 400;
  color: #888;
}
.property-title {
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.property-title a { color: inherit; text-decoration: none; }
.property-title a:hover { color: var(--accent); }
.property-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: #888;
  margin-bottom: 14px;
}
.property-location svg { width: 13px; height: 13px; color: #bbb; flex-shrink: 0; }

.property-meta {
  display: flex;
  gap: 0;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.property-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: #555;
  padding-right: 14px;
}
.property-meta-item svg { width: 15px; height: 15px; color: #bbb; }
.property-meta-item span.meta-label { color: #999; font-weight: 400; font-size: .75rem; }

.property-card-footer {
  display: flex;
  border-top: 1px solid #f0f0f0;
}
.property-card-footer a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: .8125rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all .2s;
  border-right: 1px solid #f0f0f0;
}
.property-card-footer a:last-child { border-right: none; }
.property-card-footer a:hover { background: #f8f9fa; color: #1a1a2e; }
.property-card-footer a.wa-btn { color: #25D366; }
.property-card-footer a.wa-btn:hover { background: #dcf8e8; }
.property-card-footer a svg { width: 16px; height: 16px; }

/* ============================================================
   PROPERTY TYPE CARDS
   ============================================================ */
.type-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: all var(--transition-base);
}
.type-card:hover { transform: translateY(-4px); }
.type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.type-card:hover img { transform: scale(1.05); }
.type-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.type-card-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.type-card-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.type-card-overlay .btn { width: fit-content; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary);
  padding: 32px 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   CAROUSEL / SLIDER
   ============================================================ */

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  overflow: hidden;
  padding: 24px 0;
  background: var(--light-gray);
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-card-image {
  height: 280px;
  overflow: hidden;
  background: var(--light-gray);
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-family: var(--font-primary); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.team-card-body p { font-size: 0.8125rem; color: var(--gray-500); }
.team-card-body .languages { font-size: 0.75rem; color: var(--accent); margin-top: 4px; }

/* ============================================================
   AWARDS
   ============================================================ */
.award-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}
.award-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.award-year {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(201,168,76,0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.award-card h3 { font-family: var(--font-primary); font-size: 1rem; margin-bottom: 8px; }
.award-card p { font-size: 0.8125rem; color: var(--gray-500); }

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 25s linear infinite;
}
.partner-logo {
  flex-shrink: 0;
  height: 48px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all var(--transition-fast);
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img{height:48px;width:auto}
.footer-brand p { margin-top: 16px; font-size: 0.875rem; line-height: 1.7; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.footer-social a:hover { border-color: var(--accent); background: var(--accent); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8125rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--accent); }

.footer-settings {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 16px;
}
.footer-settings select {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  margin-bottom: 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent); }

/* ============================================================
   PAGE-SPECIFIC: FILTERS
   ============================================================ */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
}
.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: end;
}
.filter-field { flex: 1; min-width: 150px; }
.filter-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .mega-menu { display: none; }
  
  .hero { min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { gap: 40px; }
  
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  
  .hero { min-height: 80vh; }
  .hero-content h1 { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  
  .stats-bar-inner { flex-direction: column; gap: 24px; }
  .stat-value { font-size: 2rem; }
  
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  
    
  .section { padding: var(--space-3xl) 0; }
  .section-header { margin-bottom: var(--space-2xl); }
  .property-card-image { height: 200px; }
  .property-card-footer a span.hide-mobile { display: none; }
}

@media (max-width: 900px) {
  [style*="grid-template-columns:1fr 360px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="height:500px"] { height: 300px !important; }
}

@media (max-width: 480px) {
  .hero-content { padding: 40px 16px; }
  .property-card-footer a { font-size: .75rem; padding: 10px 8px; }
  .nav-cta { display: none; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-500);
  padding: 16px 0;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--gray-300); }

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--transition-base);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ---- Gap 3xl ---- */
.gap-3xl { gap: var(--space-3xl); }

/* ---- Blog Content (WordPress imported HTML) ---- */
.blog-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 16px; color: var(--primary); }
.blog-content h3 { font-size: 1.25rem; font-weight: 600; margin: 28px 0 12px; color: var(--primary); }
.blog-content h4 { font-size: 1.125rem; font-weight: 600; margin: 24px 0 10px; }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { margin: 16px 0; padding-left: 28px; }
.blog-content li { margin-bottom: 8px; line-height: 1.7; }
.blog-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.blog-content a { color: var(--accent); text-decoration: underline; }
.blog-content a:hover { color: var(--primary); }
.blog-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; margin: 24px 0; background: var(--gray-50); border-radius: 0 8px 8px 0; font-style: italic; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.blog-content th, .blog-content td { padding: 10px 14px; border: 1px solid var(--gray-200); text-align: left; }
.blog-content th { background: var(--gray-50); font-weight: 600; }
.blog-content figure { margin: 24px 0; }
.blog-content figcaption { font-size: 0.8125rem; color: var(--gray-400); text-align: center; margin-top: 8px; }
.blog-content .wp-block-image { text-align: center; }
.blog-content .wp-block-image img { display: inline-block; }

/* ── Pagination ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.pagination button {
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.pagination button:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,168,76,0.05);
}
.pagination button.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.pagination .pag-dots {
  padding: 0 4px;
  color: var(--gray-400);
}

/* ── Footer Social Icons ── */
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.7);
  transition: fill var(--transition-fast);
}
.footer-social a:hover svg { fill: var(--accent); }

/* ── Property Gallery Carousel ── */
.g-gallery{position:relative;user-select:none}
.g-slide{position:absolute;inset:0;opacity:0;transition:opacity .35s ease}
.g-slide.active{opacity:1;position:relative}
.g-slide img{width:100%;height:100%;object-fit:cover;display:block}
.g-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.5);color:#fff;border:none;width:44px;height:44px;border-radius:50%;font-size:1.25rem;cursor:pointer;z-index:2;display:flex;align-items:center;justify-content:center;transition:background .2s}
.g-btn:hover{background:rgba(0,0,0,.75)}
.g-prev{left:12px}
.g-next{right:12px}
.g-counter{position:absolute;bottom:12px;right:12px;background:rgba(0,0,0,.6);color:#fff;padding:4px 12px;border-radius:20px;font-size:.75rem;z-index:2;font-family:var(--mono,monospace)}
.g-thumbs{display:flex;gap:8px;margin-top:12px;overflow-x:auto;padding:4px 0;scrollbar-width:thin;max-width:1200px;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}
.g-thumb{width:72px;height:54px;border-radius:8px;background-size:cover;background-position:center;cursor:pointer;flex-shrink:0;border:2px solid transparent;opacity:.6;transition:opacity .2s,border-color .2s}
.g-thumb.active{border-color:var(--accent,#c9a84c);opacity:1}
.g-thumb:hover{opacity:1}
@media(max-width:768px){.g-gallery{height:300px!important}.g-thumb{width:56px;height:42px}.g-btn{width:36px;height:36px;font-size:1rem}}

/* ── Property Gallery Carousel ── */
.g-gallery{position:relative;user-select:none}
.g-slide{position:absolute;inset:0;opacity:0;transition:opacity .35s ease}
.g-slide.active{opacity:1;position:relative}
.g-slide img{width:100%;height:100%;object-fit:cover;display:block}
.g-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.5);color:#fff;border:none;width:44px;height:44px;border-radius:50%;font-size:1.25rem;cursor:pointer;z-index:2;display:flex;align-items:center;justify-content:center;transition:background .2s}
.g-btn:hover{background:rgba(0,0,0,.75)}
.g-prev{left:12px}
.g-next{right:12px}
.g-counter{position:absolute;bottom:12px;right:12px;background:rgba(0,0,0,.6);color:#fff;padding:4px 12px;border-radius:20px;font-size:.75rem;z-index:2;font-family:monospace}
.g-thumbs{display:flex;gap:8px;margin-top:12px;overflow-x:auto;padding:4px 0;scrollbar-width:thin;max-width:1200px;margin-left:auto;margin-right:auto;padding-left:20px;padding-right:20px}
.g-thumb{width:72px;height:54px;border-radius:8px;background-size:cover;background-position:center;cursor:pointer;flex-shrink:0;border:2px solid transparent;opacity:.6;transition:opacity .2s,border-color .2s}
.g-thumb.active{border-color:#c9a84c;opacity:1}
.g-thumb:hover{opacity:1}
@media(max-width:768px){.g-gallery{height:300px!important}.g-thumb{width:56px;height:42px}.g-btn{width:36px;height:36px;font-size:1rem}}
