/* ============================================
   السما للعقارات - Design System
   Premium Real Estate Website
   Colors: Navy, Gold, White
   Direction: RTL (Arabic)
   ============================================ */

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

/* --- CSS Variables --- */
:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --navy-medium: #1a2d4a;
  --gold: #c5a55a;
  --gold-light: #d4b96e;
  --gold-dark: #a88a3c;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #adb5bd;
  --gray-700: #495057;
  --gray-900: #212529;
  --text-dark: #1a1a2e;
  --text-light: #c8cdd3;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 20px rgba(197,165,90,0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Cairo', sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
  text-align: right;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { line-height: 1.4; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 50%;
  transform: translateX(50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.section-title p {
  color: var(--gray-700);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 16px auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 165, 90, 0.15);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.logo-text span { color: var(--gold); }
.logo-sub {
  font-size: 0.7rem;
  color: var(--gold-light);
  display: block;
  margin-top: -4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta .btn { padding: 10px 24px; font-size: 0.9rem; }

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.menu-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-medium) 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.15;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 165, 90, 0.15);
  border: 1px solid rgba(197, 165, 90, 0.3);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 550px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-number span { font-size: 1.4rem; }
.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--gold);
}
.hero-shape-1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.hero-shape-2 { width: 300px; height: 300px; bottom: -50px; right: -50px; }
.hero-shape-3 { width: 150px; height: 150px; top: 40%; left: 60%; }

/* --- Section Spacing --- */
section { padding: 100px 0; }
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title h2 { color: var(--white); }
.bg-navy .section-title p { color: var(--text-light); }

/* --- Services Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transition: height 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 165, 90, 0.3);
}
.service-card:hover::before { height: 100%; }
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(197,165,90,0.1), rgba(197,165,90,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
.service-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-top: 16px;
  font-size: 0.95rem;
}
.service-card .learn-more:hover { gap: 12px; }

/* --- Property Cards --- */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.property-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img img { transform: scale(1.08); }
.property-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
}
.property-badge.rent { background: var(--navy); color: var(--gold); }
.property-info { padding: 24px; }
.property-info h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.2rem; }
.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-700);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.property-features {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 16px;
}
.property-features .feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-700);
}
.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property-price .price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-dark);
}
.property-price .price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
}

/* --- Stats / Counters --- */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stats-item {
  padding: 30px;
}
.stats-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.stats-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-label {
  color: var(--text-light);
  font-size: 1rem;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 5rem;
  color: rgba(197, 165, 90, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.9;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
}
.testimonial-name { font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 0.85rem; color: var(--gray-500); }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-medium));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(197,165,90,0.05);
  top: -200px;
  left: -100px;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-light);
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-light); }

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { color: var(--navy); margin-bottom: 20px; }
.about-text p { color: var(--gray-700); }
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 4px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.vm-card {
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
}
.vm-card.vision {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
}
.vm-card.mission {
  background: var(--white);
  border: 2px solid var(--gold);
}
.vm-card h3 { margin-bottom: 16px; }
.vm-card.vision h3 { color: var(--gold); }
.vm-card.mission h3 { color: var(--navy); }
.vm-card p { font-size: 1rem; line-height: 1.9; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--gray-100);
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(197,165,90,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gold); }
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(197,165,90,0.1), rgba(197,165,90,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-info-card h4 { color: var(--navy); margin-bottom: 4px; }
.contact-info-card p { color: var(--gray-700); margin: 0; font-size: 0.95rem; }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.blog-body h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.blog-body p { color: var(--gray-700); font-size: 0.95rem; }

/* --- Property Filter --- */
.property-filter {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--gray-100);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* --- SEO Content --- */
.seo-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.seo-content h1 { color: var(--navy); margin-bottom: 20px; }
.seo-content h2 { color: var(--navy); margin: 36px 0 16px; font-size: 1.5rem; }
.seo-content h3 { color: var(--navy-light); margin: 24px 0 12px; }
.seo-content p { color: var(--gray-700); line-height: 2; margin-bottom: 16px; }
.seo-content ul { padding-right: 24px; margin-bottom: 16px; }
.seo-content ul li {
  color: var(--gray-700);
  line-height: 2;
  position: relative;
  padding-right: 20px;
}
.seo-content ul li::before {
  content: '◆';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 6px;
}
.seo-content .cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 40px 0;
}
.seo-content .cta-box h3 { color: var(--gold); margin-bottom: 12px; }
.seo-content .cta-box p { color: var(--text-light); }
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.internal-links a {
  padding: 8px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.internal-links a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about .logo-text { margin-bottom: 16px; }
.footer-about p { font-size: 0.95rem; line-height: 1.9; color: var(--text-light); }
.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-right: 8px; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  margin-top: 20px;
  font-size: 0.9rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  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: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background: var(--navy);
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    transition: var(--transition);
    border-right: 1px solid rgba(197,165,90,0.2);
  }
  .nav-links.active { right: 0; }
  .menu-toggle { display: flex; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero h1 { font-size: 2rem; }
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  section { padding: 60px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .property-filter { flex-direction: column; align-items: center; }
  .hero { min-height: auto; padding: 120px 0 60px; }
}

/* --- Investment & Finishing Pages --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.feature-card h4 { color: var(--navy); margin-bottom: 8px; }
.feature-card p { color: var(--gray-700); font-size: 0.95rem; margin: 0; }

/* --- Map --- */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 3px;
  height: 100%;
  background: var(--gold);
}
.timeline-item {
  padding: 20px 40px;
  position: relative;
  width: 50%;
}
.timeline-item:nth-child(odd) { margin-right: auto; text-align: left; }
.timeline-item:nth-child(even) { margin-left: auto; }
.timeline-item::before {
  content: '';
  position: absolute;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
}
.timeline-item:nth-child(odd)::before { right: -8px; }
.timeline-item:nth-child(even)::before { left: auto; right: calc(100% - 8px); }
.timeline-item h4 { color: var(--navy); margin-bottom: 6px; }
.timeline-item p { color: var(--gray-700); font-size: 0.9rem; margin: 0; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
