/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy:        #1E293B;
  --navy-light:  #263548;
  --navy-mid:    #334155;
  --gold:        #0EA5E9;
  --gold-light:  #38BDF8;
  --gold-dark:   #0284C7;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --soft-gray:   #F1F5F9;
  --text-dark:   #0F172A;
  --text-mid:    #475569;
  --text-muted:  #94A3B8;
  --border:      rgba(14,165,233,0.2);
  --border-light:rgba(0,0,0,0.08);
  --success:     #16A34A;
  --danger:      #DC2626;
  --whatsapp:    #25D366;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 8px 32px rgba(30,41,59,0.1);
  --shadow-lg:   0 20px 60px rgba(30,41,59,0.16);
  --transition:  0.25s ease;
  --z-nav:       100;
  --z-modal:     200;
  --z-chat:      150;
  --z-fab:       140;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Josefin Sans', 'Cairo', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: 'Cairo', 'Josefin Sans', sans-serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Cinzel', 'Cairo', serif;
  line-height: 1.2;
  color: var(--navy);
}

body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3,
body[dir="rtl"] h4 {
  font-family: 'Cairo', 'Cinzel', serif;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.hidden { display: none !important; }

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

.container-narrow {
  max-width: 760px;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-soft {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14,165,233,0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #20b858;
  border-color: #20b858;
  transform: translateY(-1px);
}

.btn-danger {
  background: transparent;
  border-color: var(--danger);
  color: var(--danger);
  font-size: 0.8rem;
}
.btn-danger:hover {
  background: var(--danger);
  color: var(--white);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; min-height: 36px; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; min-height: 52px; }
.btn-full { width: 100%; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(30,41,59,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Cinzel', 'Cairo', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

body[dir="rtl"] .nav-logo {
  font-family: 'Cairo', serif;
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
}

[dir="rtl"] .nav-links .nav-cta {
  margin-left: 0;
  margin-right: 0.5rem;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  min-height: 36px;
}

.lang-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(30,41,59,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(14,165,233,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0.5rem; font-size: 0.9rem; }
  .nav-links .nav-cta { margin: 0.5rem 0 0; text-align: center; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(51,65,85,0.7) 0%, transparent 70%),
    linear-gradient(160deg, #1E293B 0%, #0F172A 50%, #1E3A5F 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(14,165,233,0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(14,165,233,0.04) 80px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(14,165,233,0.1) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title-accent {
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(14,165,233,0.25);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════
   PROPERTY FILTERS
═══════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 2px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: all var(--transition);
  min-height: 44px;
  cursor: pointer;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.filter-tab.active {
  background: var(--navy);
  color: var(--gold);
}

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

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.property-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}

.property-image-wrap {
  position: relative;
  overflow: hidden;
}

.property-image {
  height: 230px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.property-card:hover .property-image {
  transform: scale(1.04);
}

/* Gradient property image placeholders */
.prop-img-1 {
  background:
    linear-gradient(rgba(15,23,42,0.3), rgba(15,23,42,0.55)),
    linear-gradient(135deg, #1E293B 0%, #0369A1 40%, #0EA5E9 65%, #1E293B 100%);
}
.prop-img-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect x='20' y='80' width='160' height='100' fill='rgba(255,255,255,0.08)' rx='4'/%3E%3Crect x='40' y='60' width='120' height='120' fill='rgba(255,255,255,0.06)' rx='4'/%3E%3Crect x='60' y='100' width='20' height='30' fill='rgba(255,255,255,0.15)'/%3E%3Crect x='90' y='100' width='20' height='30' fill='rgba(255,255,255,0.15)'/%3E%3Crect x='120' y='100' width='20' height='30' fill='rgba(255,255,255,0.15)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.prop-img-2 {
  background:
    linear-gradient(rgba(15,23,42,0.25), rgba(15,23,42,0.5)),
    linear-gradient(135deg, #164E63 0%, #0E7490 40%, #06B6D4 65%, #164E63 100%);
}
.prop-img-3 {
  background:
    linear-gradient(rgba(15,23,42,0.25), rgba(15,23,42,0.5)),
    linear-gradient(135deg, #1E3A5F 0%, #1D4ED8 40%, #60A5FA 65%, #1E3A5F 100%);
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[dir="rtl"] .property-badge { left: auto; right: 1rem; }

.property-badge-secondary {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[dir="rtl"] .property-badge-secondary { right: auto; left: 1rem; }

.badge-buy { background: var(--navy); color: var(--gold); }
.badge-rent { background: #0f5132; color: #d1e7dd; }
.badge-featured { background: var(--gold); color: var(--navy); }

.property-wishlist {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

[dir="rtl"] .property-wishlist { right: auto; left: 1rem; }

.property-wishlist:hover {
  background: rgba(14,165,233,0.9);
  color: var(--navy);
}

.property-wishlist.saved {
  background: var(--gold);
  color: var(--navy);
}
.property-wishlist.saved svg { fill: currentColor; }

.property-info {
  padding: 1.5rem;
}

.property-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.property-price {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.property-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

.property-city {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.property-name {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.property-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--soft-gray);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.property-actions {
  display: flex;
  gap: 0.75rem;
}

.property-actions .btn { flex: 1; }

/* ═══════════════════════════════════════════
   PROPERTY MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.modal-overlay.open .modal-panel {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

[dir="rtl"] .modal-close { right: auto; left: 1rem; }

.modal-close:hover {
  background: var(--navy);
  color: var(--white);
}

.modal-image-wrap {
  position: relative;
}

.modal-image {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.modal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
}

[dir="rtl"] .modal-badge { left: auto; right: 1rem; }

.modal-body {
  padding: 2rem;
}

.modal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.modal-price {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.modal-city {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-desc {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-specs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.modal-spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.modal-amenities {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.amenity-tag {
  background: var(--soft-gray);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.modal-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modal-cta-row .btn { flex: 1; min-width: 160px; }

/* ═══════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  cursor: default;
}

.service-card:hover {
  background: rgba(14,165,233,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-icon {
  width: 60px; height: 60px;
  background: rgba(14,165,233,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.why-us-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

[dir="rtl"] .why-us-content .section-title { text-align: right; }

.why-us-content > p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.why-us-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-check {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-top: 2px;
}

.why-us-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.why-us-list li p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.why-us-visual {
  position: relative;
}

.visual-card {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.vc-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.vc-stat { text-align: center; }

.vc-number {
  font-family: 'Cinzel', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.vc-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vc-divider {
  width: 1px;
  height: 60px;
  background: rgba(14,165,233,0.25);
}

.visual-badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

[dir="rtl"] .visual-badge { right: auto; left: 2rem; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.demo-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.testimonial-card:hover { transform: translateY(-2px); }

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg, #1E293B, #0EA5E9); }
.av2 { background: linear-gradient(135deg, #164E63, #06B6D4); }
.av3 { background: linear-gradient(135deg, #1E3A5F, #60A5FA); }

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  transition: background var(--transition);
  min-height: 60px;
}

[dir="rtl"] .faq-question { text-align: right; }

.faq-question:hover { background: var(--soft-gray); }

.faq-question[aria-expanded="true"] { background: var(--navy); color: var(--white); }
.faq-question[aria-expanded="true"] .faq-icon { color: var(--gold); transform: rotate(180deg); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-info .section-title { text-align: left; }
[dir="rtl"] .contact-info .section-title { text-align: right; }

.contact-info > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.8);
}

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

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

/* Map Placeholder */
.map-placeholder {
  border: 2px dashed rgba(14,165,233,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-inner {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
  color: rgba(255,255,255,0.4);
}

.map-inner p {
  font-size: 0.875rem;
  max-width: 360px;
  line-height: 1.6;
}

.map-label {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.contact-form .form-group label { color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
}

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

.field-error {
  font-size: 0.78rem;
  color: var(--danger);
  min-height: 1em;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: var(--success);
  font-size: 0.9rem;
}

.form-success svg { flex-shrink: 0; margin-top: 1px; }

.form-success strong { display: block; margin-bottom: 0.25rem; }

/* Booking form glass */
.glass-form {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

/* ═══════════════════════════════════════════
   ADMIN SECTION
═══════════════════════════════════════════ */
.admin-section { background: var(--soft-gray); }

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-tab {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--transition);
  cursor: pointer;
  min-height: 44px;
}

.admin-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

.admin-panel { }

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

.admin-count {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
}

.requests-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.request-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: start;
}

[dir="rtl"] .request-card {
  border-left: none;
  border-right: 4px solid var(--gold);
}

.request-card.chat-lead { border-color: var(--navy); }

.request-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.request-tag {
  font-size: 0.75rem;
  background: var(--soft-gray);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  color: var(--text-mid);
}

.request-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.request-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.empty-state svg { margin: 0 auto 1rem; opacity: 0.4; }
.empty-state p { font-size: 0.9rem; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(14,165,233,0.15);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

.footer-logo-en, .footer-logo-ar {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

body[dir="rtl"] .footer-logo-en { display: none; }
body[dir="rtl"] .footer-logo-ar { display: block; }
body:not([dir="rtl"]) .footer-logo-ar { display: none; }

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.footer-demo-note {
  font-size: 0.78rem;
  color: rgba(56,189,248,0.8) !important;
}

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

.footer-links ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: var(--z-fab);
  width: 52px; height: 52px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}

[dir="rtl"] .fab-whatsapp { right: auto; left: 1.5rem; }

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ═══════════════════════════════════════════
   CHATBOT WIDGET
═══════════════════════════════════════════ */
.chatbot-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: var(--z-chat);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

[dir="rtl"] .chatbot-widget {
  right: auto;
  left: 1.5rem;
  align-items: flex-start;
}

.chatbot-toggle {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(30,41,59,0.35);
  transition: all var(--transition);
  position: relative;
}

.chatbot-toggle:hover {
  background: var(--navy-mid);
  transform: scale(1.05);
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px; height: 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.chatbot-panel {
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(30,41,59,0.2);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 520px;
  transform: scale(0.95) translateY(10px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[dir="rtl"] .chatbot-panel {
  transform-origin: bottom left;
}

.chatbot-panel.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.chatbot-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 38px; height: 38px;
  background: rgba(14,165,233,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.chatbot-header-info {
  flex: 1;
}

.chatbot-header-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.chatbot-status {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}

.chatbot-close {
  color: rgba(255,255,255,0.6);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.chatbot-close:hover { color: var(--white); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 200px;
  max-height: 300px;
  scroll-behavior: smooth;
}

.chat-msg {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }

.chat-bubble {
  max-width: 80%;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.chat-msg.bot .chat-bubble {
  background: var(--soft-gray);
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
}

[dir="rtl"] .chat-msg.bot .chat-bubble {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 4px;
}

.chat-msg.user .chat-bubble {
  background: var(--navy);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

[dir="rtl"] .chat-msg.user .chat-bubble {
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 4px;
}

.chatbot-input-area {
  border-top: 1px solid var(--border-light);
  padding: 0.75rem;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.qr-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 36px;
}

.qr-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.chat-input-row {
  display: flex;
  gap: 0.5rem;
}

.chat-input-row input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  min-height: 40px;
}

.chat-input-row input:focus { border-color: var(--navy); }

.chat-send-btn {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover { background: var(--navy-mid); }

@media (max-width: 400px) {
  .chatbot-panel { width: calc(100vw - 3rem); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 6rem 1rem 3rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }
  .properties-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .glass-form { padding: 1.5rem; }
  .modal-panel { margin: 0; border-radius: var(--radius); }
  .modal-cta-row { flex-direction: column; }
  .vc-inner { flex-direction: column; gap: 1.5rem; }
  .vc-divider { width: 60px; height: 1px; }
  .visual-badge { position: static; margin-top: 1.5rem; display: inline-flex; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { text-align: center; }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
