/* ===== BLUMONT CAPITAL TOWER — PUBLIC CSS ===== */
:root {
  --bg: #0D0C0A;
  --bg2: #131210;
  --bg3: #1A1815;
  --bg-light: #F7F4EF;
  --bg-alt: #F0EBE2;
  --text: #E8E4DC;
  --text-light: #1C1A17;
  --muted: #8A8580;
  --muted-light: #6A6560;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark: #9A7A45;
  --border: rgba(201,169,110,0.15);
  --border-light: rgba(28,26,23,0.1);
  --card: #161410;
  --font-serif: Georgia, 'Palatino Linotype', Palatino, 'Book Antiqua', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-ar: Tahoma, 'Segoe UI', Arial, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-light);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
body.rtl { font-family: var(--font-ar); direction: rtl; }

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

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* === SECTION === */
.section { padding: 100px 0; }
.section-dark { background: var(--bg); color: var(--text); }
.section-alt { background: var(--bg-alt); }
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }
h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}
h2.light { color: var(--text); }
.section-desc { color: var(--muted-light); max-width: 600px; margin: 0 auto 2.5rem; }
.center-text { text-align: center; }

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem; height: 70px;
  display: flex; align-items: center;
  transition: var(--transition);
}
nav::before {
  content: '';
  position: absolute; inset: 0;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}
nav.scrolled::before {
  background: rgba(13,12,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: #0D0C0A !important;
  padding: 8px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.lang-btn {
  border: 1px solid rgba(201,169,110,0.4) !important;
  padding: 4px 12px !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  color: var(--gold) !important;
}
.hamburger { display: none; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* === PAGE BANNER (inner pages) === */
.page-banner {
  min-height: 38vh;
  background-color: var(--bg);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 70px;
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}
.page-banner-content { position: relative; z-index: 1; padding: 0 2rem; }
.page-banner-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; color: #fff; letter-spacing: 0.05em;
}

/* === HERO === */
#hero {
  min-height: 100vh;
  background-color: var(--bg);
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* When a real photo is set, deepen the overlay */
#hero.has-bg-image .hero-overlay {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.65) 100%);
}
#hero.has-bg-image .hero-overlay::before { display: none; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 50%);
}
.hero-overlay::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 0 2rem;
  animation: heroIn 1.2s ease forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-location {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-size: 14px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em; margin-bottom: 3rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
}
.hero-scroll span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: #0D0C0A; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  border: 1px solid rgba(28,26,23,0.3);
  color: var(--text-light);
}
.btn-outline-dark:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.btn-full { width: 100%; text-align: center; }
.btn-gold-sm {
  display: inline-block;
  padding: 8px 18px;
  background: var(--gold);
  color: #0D0C0A;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-gold-sm:hover { background: var(--gold-dark); color: #fff; }

/* === SPLIT LAYOUT === */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-text h2 { margin-bottom: 1rem; }
.split-text p { color: var(--muted-light); line-height: 1.8; margin-bottom: 2rem; }
.stats-row { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--muted-light); margin-top: 4px; letter-spacing: 0.03em; }
.about-img-frame {
  aspect-ratio: 4/5;
  background: var(--bg3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--gold);
}
.about-img-placeholder span { font-family: var(--font-serif); font-size: 2rem; letter-spacing: 0.2em; }
.about-img-placeholder small { font-size: 10px; letter-spacing: 0.2em; margin-top: 8px; color: var(--muted); }

/* === AMENITIES === */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.amenity-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}
.amenity-item:hover { border-color: var(--gold); transform: translateY(-3px); }
.amenity-icon { font-size: 28px; margin-bottom: 0.75rem; }
.amenity-item span { font-size: 12px; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; }

/* === APARTMENTS === */
.apt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.apt-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.apt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.apt-card-header {
  background: var(--bg);
  padding: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 120px;
}
.apt-floor-plan {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.apt-avail {
  font-size: 11px; font-weight: 500;
  padding: 4px 12px; border-radius: 20px;
  letter-spacing: 0.05em;
}
.apt-card-body { padding: 1.5rem; }
.apt-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.apt-size { font-size: 12px; color: var(--muted-light); margin-bottom: 1rem; }
.apt-features { list-style: none; margin-bottom: 1.5rem; }
.apt-features li {
  font-size: 12px;
  color: var(--muted-light);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}
.apt-features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 10px;
}
.rtl .apt-features li { padding-left: 0; padding-right: 14px; }
.rtl .apt-features li::before { left: auto; right: 0; }
.apt-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-light); padding-top: 1rem; }
.apt-from { font-size: 11px; color: var(--muted-light); display: block; }
.apt-price { font-family: var(--font-serif); font-size: 1.3rem; color: var(--text-light); font-weight: 400; }
.apt-price-sub { font-size: 11px; color: var(--muted-light); }

/* === VIRTUAL TOURS === */
.virtual-grid {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem;
}
.virtual-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: all var(--transition);
  min-width: 140px;
}
.virtual-btn:hover { border-color: var(--gold); background: var(--bg-alt); transform: translateY(-2px); }
.virtual-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.virtual-btn span:not(.virtual-icon) { font-weight: 500; font-size: 14px; }
.virtual-btn small { font-size: 11px; color: var(--muted-light); }

/* === PRICING === */
.pricing-table-wrap { overflow-x: auto; margin-top: 2rem; border-radius: var(--radius-lg); }
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table th {
  background: var(--bg);
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.rtl .pricing-table th { text-align: right; }
.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--border-light); font-size: 14px; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--bg-alt); }
.avail-checker {
  margin-top: 3rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.avail-checker h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 1.5rem; }
.avail-form { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
.avail-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 150px; }
.avail-field label { font-size: 12px; font-weight: 500; color: var(--muted-light); }
.avail-field input { width: 100%; color-scheme: light; }
input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.55; cursor: pointer; }
.avail-result { margin-top: 1rem; font-size: 14px; font-weight: 500; padding: 10px 16px; border-radius: var(--radius); }
.avail-ok { background: #10B98120; color: #065F46; }
.avail-no { background: #EF444420; color: #991B1B; }

/* === BOOKING FORM === */
.booking-wrap {
  max-width: 760px; margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }
.form-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition);
  width: 100%;
}
.section:not(.section-dark) .form-input {
  background: #fff;
  border-color: var(--border-light);
  color: var(--text-light);
}
.form-input:focus { outline: none; border-color: var(--gold); }
.form-input option { background: var(--bg); }
textarea.form-input { resize: vertical; }
.form-result { margin-top: 1rem; padding: 12px 16px; border-radius: var(--radius); font-size: 14px; }
.form-ok { background: #10B98120; color: #6EE7B7; }
.form-err { background: #EF444420; color: #FCA5A5; }

/* === GALLERY === */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0; }
.gf-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border-light);
  color: var(--muted-light);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.gf-btn:hover, .gf-btn.active {
  background: var(--bg);
  color: var(--gold);
  border-color: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--bg3);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-overlay span { font-size: 2rem; color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-ph-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.15em;
  background: var(--bg3);
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.review-pinned { border-color: var(--gold); box-shadow: 0 4px 24px rgba(201,169,110,0.15); }
.review-pin-badge {
  position: absolute; top: -10px; left: 16px;
  background: var(--gold);
  color: #0D0C0A;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.rtl .review-pin-badge { left: auto; right: 16px; }
.review-stars { margin-bottom: 0.75rem; }
.star { font-size: 16px; color: #DDD; }
.star.filled { color: var(--gold); }
.review-text { font-size: 14px; color: var(--muted-light); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-light); padding-top: 0.75rem; }
.review-name { font-size: 13px; font-weight: 500; }
.review-date { font-size: 11px; color: var(--muted-light); }
.review-submit-wrap {
  margin-top: 4rem;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.review-submit-wrap h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 1.5rem; }
.star-picker { display: flex; gap: 4px; margin-bottom: 0.5rem; }
.star-pick {
  font-size: 24px;
  color: #DDD;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.star-pick.filled, .star-pick.hover { color: var(--gold); transform: scale(1.1); }

/* === REVIEWS SLIDER (home page) === */
.slider-section { background: var(--bg); }
.slider-quote-icon {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.2;
  display: block;
  text-align: center;
  margin-bottom: 0.5rem;
  user-select: none;
}
.reviews-slider {
  display: grid;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  min-height: 210px;
}
.slider-item {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  padding: 0 1.5rem;
}
.slider-item.active { opacity: 1; pointer-events: auto; }
.slider-stars { color: var(--gold); font-size: 20px; letter-spacing: 4px; margin-bottom: 1.75rem; }
.slider-text {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.slider-author { font-size: 12px; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.slider-date { font-size: 11px; color: var(--muted); margin-top: 5px; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 2.5rem; }
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none; padding: 0;
}
.slider-dot.active { background: var(--gold); transform: scale(1.5); }
.slider-more-link {
  display: inline-block;
  font-size: 12px; color: var(--gold);
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.slider-more-link:hover { border-color: var(--gold); }

/* === LOCATION === */
.location-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; margin-top: 2.5rem; }
.location-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.loc-icon { font-size: 20px; line-height: 1; margin-top: 2px; }
.location-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.location-item p { font-size: 13px; color: var(--muted-light); }
.map-wrap iframe { border-radius: var(--radius-lg); }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.rtl .faq-q { text-align: right; }
.faq-q:hover { color: var(--gold); }
.faq-arrow { font-size: 12px; color: var(--gold); transition: transform var(--transition); flex-shrink: 0; }
.faq-a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* === FOOTER === */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 13px; margin-bottom: 0.6rem; color: rgba(255,255,255,0.5); }
.footer-col ul a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-admin-link { color: rgba(255,255,255,0.2); transition: color var(--transition); }
.footer-admin-link:hover { color: var(--gold); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: waBounce 2s ease-in-out infinite;
  transition: transform var(--transition);
}
.rtl .whatsapp-float { right: auto; left: 28px; }
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 2;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 2.8rem; line-height: 1;
  width: 52px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  z-index: 2; user-select: none;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,169,110,0.25); color: var(--gold); }
.lightbox-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 0.15em;
  pointer-events: none;
}
@media (max-width: 768px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 56px; font-size: 2rem; }
}
.virtual-modal-inner {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
}
.virtual-modal-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
}
.virtual-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem;
}
.virtual-placeholder span { font-size: 3rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.virtual-placeholder p { color: rgba(255,255,255,0.4); font-size: 14px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .split-layout, .location-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(13,12,10,0.98);
    flex-direction: column; padding: 1.5rem 2rem;
    gap: 1.25rem; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .avail-form { flex-direction: column; align-items: stretch; }
  .avail-field { min-width: 0; }
  .avail-form .btn { justify-content: center; }
}
