/* =============================================
   Aqar Power — Premium Real Estate
   Main Stylesheet
   ============================================= */

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

/* ── Variables ── */
:root {
  --primary:       #0a1628;
  --primary-light: #152238;
  --secondary:     #1a2d42;
  --gold:          #c9a84c;
  --gold-light:    #e8d5a3;
  --gold-dark:     #9d7a2a;
  --gold-glow:     rgba(201, 168, 76, 0.25);
  --white:         #ffffff;
  --off-white:     #f5f0e8;
  --light-gray:    #f0f0f0;
  --text-muted:    #8a9ab5;
  --text-body:     #d0d8e8;
  --border:        rgba(201, 168, 76, 0.2);
  --card-bg:       #111d30;
  --overlay:       rgba(10, 22, 40, 0.75);
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-gold:   0 4px 24px rgba(201, 168, 76, 0.2);
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Cairo', sans-serif;
  --font-serif:    'Playfair Display', serif;
}

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

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

body {
  font-family: var(--font);
  background-color: var(--primary);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}

body.ltr { direction: ltr; text-align: left; }
body.rtl { direction: rtl; text-align: right; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* ── Page Loader ── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.loader-inner {
  text-align: center;
}
.loader-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--primary-light);
  margin: 1rem auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  border-radius: 2px;
  animation: loadingBar 1.2s ease-in-out infinite;
}
@keyframes loadingBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ── Scroll To Top ── */
#scrollTop {
  position: fixed;
  bottom: 100px;
  left: 30px; /* Will be overridden for RTL */
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--gold-light); }

body.rtl #scrollTop { left: auto; right: 30px; }
body.ltr #scrollTop { right: auto; left: 30px; }

/* ── WhatsApp Float ── */
#whatsappFloat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.rtl #whatsappFloat { right: auto; left: 30px; flex-direction: row-reverse; }
body.ltr #whatsappFloat { left: auto; right: 30px; }

.wa-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.wa-btn:hover { transform: scale(1.1); color: white; }
.wa-tooltip {
  background: #25D366;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7); }
}

/* ── Navbar ── */
#mainNavbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}
#mainNavbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: 1px;
}
.navbar-brand span { color: var(--gold); }
.navbar-brand small {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { left: 10%; right: 10%; }
.nav-link.active { color: var(--gold) !important; }
.nav-link.active::after { left: 10%; right: 10%; }

.btn-nav-cta {
  background: var(--gold);
  color: var(--primary) !important;
  font-weight: 700;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-nav-cta:hover {
  background: transparent;
  color: var(--gold) !important;
}
.btn-nav-cta::after { display: none; }

#langToggle {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
#langToggle:hover { background: var(--gold); color: var(--primary); }

.navbar-toggler {
  border: 2px solid var(--gold);
  padding: 0.4rem 0.7rem;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Section Base ── */
section { padding: 100px 0; }
.section-badge {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0;
}
.text-gold { color: var(--gold) !important; }
.bg-dark-card { background: var(--card-bg); }

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  color: var(--primary);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-3px);
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-swiper { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(10, 22, 40, 0.5) 60%,
    rgba(10, 22, 40, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}
.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
.hero-scroll i { font-size: 1.2rem; color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.4) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ── Search Bar ── */
.search-section {
  padding: 0;
  position: relative;
  z-index: 10;
  margin-top: -60px;
}
.search-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.search-box h4 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.search-select {
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--text-body);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  width: 100%;
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
}
.search-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.search-select option { background: var(--primary-light); }
.search-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Stats Section ── */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%; right: 0;
  width: 1px;
  height: 60%;
  background: var(--border);
}
body.rtl .stat-item:not(:last-child)::after { right: auto; left: 0; }
.stat-num {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-plus { color: var(--gold); font-size: 2rem; font-weight: 900; }
.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ── Property Cards ── */
.property-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.property-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.property-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.property-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .property-card-img img { transform: scale(1.08); }
.property-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  z-index: 2;
}
body.rtl .property-badge { right: auto; left: 14px; }
body.ltr .property-badge { left: auto; right: 14px; }

.property-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.property-card:hover .property-overlay { opacity: 1; }
.btn-view {
  background: var(--gold);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: var(--transition);
}
.property-card:hover .btn-view { transform: translateY(0); }

.property-card-body { padding: 1.4rem; }
.property-location {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-name {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.property-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.property-meta span { display: flex; align-items: center; gap: 5px; }
.property-meta i { color: var(--gold); }
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.from-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}
.price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}
.price-value small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}
.btn-inquire {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-inquire:hover { background: var(--gold); color: var(--primary); }

/* Filter Buttons */
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

/* ── About Section ── */
.about-section { background: var(--primary); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--primary);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
body.rtl .about-badge-card { right: auto; left: -20px; }
body.ltr .about-badge-card { left: auto; right: -20px; }

.about-badge-card .num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.about-badge-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: var(--transition);
}
.about-feature:hover { border-color: var(--gold); }
.about-feature-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature-text h6 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.about-feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Why Choose Us ── */
.why-section { background: var(--primary-light); }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); color: var(--primary); }
.why-card h4 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── Services Section ── */
.services-section { background: var(--primary); }
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.service-card:hover::after { width: 100%; }
.service-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h4 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.service-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ── Testimonials ── */
.testimonials-section { background: var(--primary-light); }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-info strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-info span { color: var(--text-muted); font-size: 0.8rem; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: #060f1c;
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand span { color: var(--gold); }
.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.footer-title {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 2px;
  background: var(--gold);
}
body.rtl .footer-title::after { left: auto; right: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-inline-start: 6px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; width: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=60') center/cover no-repeat;
  opacity: 0.07;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb-wrap {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
}
.breadcrumb-wrap a { color: var(--gold); }
.breadcrumb-wrap span { color: var(--text-muted); }
.breadcrumb-sep { color: var(--text-muted); }

/* ── About Page ── */
.vision-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}
.vision-card:hover { border-color: var(--gold); }
.vision-card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-card {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); border-color: var(--gold); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto 1rem;
}
.team-card h5 { font-size: 1rem; margin-bottom: 0.3rem; }
.team-card .role {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Services Page ── */
.service-detail-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: var(--transition);
}
.service-detail-card:hover { border-color: var(--gold); }
.service-detail-icon {
  width: 80px;
  height: 80px;
  background: var(--gold-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.service-detail-content h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.service-detail-content p { color: var(--text-muted); margin-bottom: 1.2rem; }
.service-feature-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-feature-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ── Blog Page ── */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-cat {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.blog-card h4 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--white); line-height: 1.4; }
.blog-card h4 a { color: inherit; }
.blog-card h4 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}
.blog-read-more { color: var(--gold); font-weight: 700; font-size: 0.85rem; }
.blog-read-more:hover { color: var(--gold-light); }

/* ── Contact Page ── */
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 0.3rem; }
.contact-info-text span { color: var(--text-muted); font-size: 0.88rem; }
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-control-dark {
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.92rem;
  transition: var(--transition);
  width: 100%;
}
.form-control-dark::placeholder { color: var(--text-muted); }
.form-control-dark:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: var(--primary-light);
  color: var(--white);
}
.form-label-dark {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
#formSuccess {
  display: none;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.4);
  color: #25D366;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
}

/* ── Property Detail ── */
.property-detail-hero {
  padding-top: 100px;
}
.property-main-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.property-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.property-thumb {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.property-thumb:hover { opacity: 1; }
.property-detail-info {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.detail-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.detail-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.detail-meta-item {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
}
.detail-meta-item .meta-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}
.detail-meta-item .meta-val {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}
.detail-meta-item i { color: var(--gold); margin-inline-end: 6px; }
.inquiry-form .form-control-dark { margin-bottom: 0.8rem; }
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.7rem 1.5rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content-panel { display: none; }
.tab-content-panel.active { display: block; }

/* ── Animations ── */
.fade-in-card {
  animation: fadeInUp 0.6s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Divider ── */
.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem auto;
}
.text-center .gold-divider { margin: 1rem auto; }

/* ── Utilities ── */
.overflow-hidden { overflow: hidden; }
.z-1 { position: relative; z-index: 1; }
.gap-2 { gap: 0.5rem; }

/* ── Responsive ── */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .about-features { grid-template-columns: 1fr; }
  .service-detail-card { flex-direction: column; }
  .stat-item::after { display: none; }
  .hero-stats { gap: 1.5rem; }
}

@media (max-width: 767px) {
  section { padding: 55px 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline-gold { justify-content: center; text-align: center; }
  .search-box { padding: 1.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge-card { bottom: 10px; right: 10px; }
  body.rtl .about-badge-card { right: auto; left: 10px; }
  .property-footer { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .tabs-nav { gap: 0; }
  .tab-btn { padding: 0.6rem 1rem; font-size: 0.82rem; }
  .detail-meta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .section-title { font-size: 1.7rem; }
}
