:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-card: #171717;
  --text: #ffffff;
  --muted: #c7c7c7;
  --muted-dark: #6f6f6f;
  --gold: #c5a059;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 22px;
  --container: 1200px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.hero-gradient {
  background: linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)), var(--hero-url);
  background-size: cover;
  background-position: center;
}

.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span,
.footer-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: #f3f3f3;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s ease;
}

.nav-cta,
.primary-btn {
  background: var(--gold);
  color: #111;
}

.nav-cta:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.secondary-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
}

.secondary-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 60px;
}

.hero-inner {
  max-width: 950px;
}

.eyebrow {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 14px;
}

.hero h1,
.section-head h2,
.narrow h2,
.section-title-center h2 {
  margin: 0 0 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 72px);
}

.hero-text {
  font-size: clamp(18px, 2.4vw, 28px);
  color: #ededed;
  margin: 0 auto;
  max-width: 820px;
}

.breadcrumbs {
  margin-bottom: 18px;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  color: #e0e0e0;
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: #ffffff;
  color: #111111;
}

.section-dark {
  background: #0d0d0d;
}

.section-faq {
  background: #111111;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2,
.narrow h2,
.section-title-center h2 {
  font-size: clamp(30px, 5vw, 54px);
}

.section-head p,
.narrow p,
.section-title-center p {
  margin: 0;
  font-size: 18px;
}

.section-light .section-head p {
  color: #5d5d5d;
  max-width: 850px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-item {
  margin: 0;
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: var(--shadow);
}

.gallery-img:hover {
  transform: scale(1.02);
}

.hidden-item {
  display: none;
}

.center-box {
  text-align: center;
  margin-top: 28px;
}

.narrow p {
  color: #d0d0d0;
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 22px;
}

.faq-item p {
  margin: 0;
  color: #d6d6d6;
}

.section-title-center {
  text-align: center;
}

.chips {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  transition: 0.25s ease;
}

.chip:hover,
.chip.active {
  border-color: var(--gold);
  color: var(--gold);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: #cfcfcf;
}

.footer-text {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  left: auto;
  bottom: 24px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #ffffff; }

.whatsapp-icon {
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Gallery hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-image {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .site-nav {
    padding: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .section-head {
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .hero {
    padding-top: 110px;
    min-height: 50vh;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .gallery-img {
    height: 200px;
    border-radius: 18px;
  }

  .faq-item {
    padding: 18px;
  }

  .whatsapp-float {
    right: 16px;
    left: auto;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }

  #a11y-toggle-btn {
    bottom: 78px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  #a11y-panel {
    bottom: 132px;
    right: 16px;
    min-width: 176px;
  }
}

/* =================================================================
   ACCESSIBILITY FLOATING BUTTON + PANEL (gallery pages)
   ================================================================= */

#a11y-toggle-btn {
  position: fixed;
  bottom: 94px;
  right: 24px;
  left: auto;
  z-index: 9998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1c1c2e;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  padding: 0;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#a11y-toggle-btn:hover,
#a11y-toggle-btn:focus {
  transform: scale(1.1);
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.55);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

#a11y-panel {
  display: none;
  position: fixed;
  bottom: 154px;
  right: 24px;
  left: auto;
  z-index: 9997;
  flex-direction: column;
  gap: 6px;
  background: #1c1c2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  min-width: 190px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
}
#a11y-panel.visible { display: flex; }

#a11y-panel h3 {
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.a11y-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  direction: rtl;
  text-align: right;
  width: 100%;
  box-sizing: border-box;
}
.a11y-opt:hover,
.a11y-opt:focus {
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold);
  border-color: rgba(197, 160, 89, 0.28);
  outline: none;
}

/* ── Desktop-only fixes ── */
@media (min-width: 1024px) {
  html { background: #0a0a0a; }

  .site-nav {
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .nav-hamburger {
    display: none !important;
  }

  #a11y-toggle-btn {
    position: fixed !important;
    bottom: 94px !important;
    right: 24px !important;
    left: auto !important;
    top: auto !important;
  }

  #a11y-panel {
    position: fixed !important;
    bottom: 154px !important;
    right: 24px !important;
    left: auto !important;
    top: auto !important;
  }
}