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

:root {
  --gold: #C9A44A;
  --gold-light: #E2C06A;
  --gold-dark: #A8882E;
  --bg: #0A0A0A;
  --bg2: #131313;
  --bg3: #1C1C1C;
  --border: #262626;
  --text: #F0EDE6;
  --text-muted: #7A7672;
  --radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Cairo', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.ar {
  font-family: 'Cairo', sans-serif;
}

body.ar h1,
body.ar h2,
body.ar h3,
body.ar h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
}

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

img { display: block; max-width: 100%; }

a { text-decoration: none; }

/* =====================
   BUTTONS
   ===================== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #0A0A0A;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-gold.btn-large { padding: 16px 44px; font-size: 15px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--gold);
  color: #0A0A0A;
}

.btn-outline.btn-large { padding: 16px 44px; font-size: 15px; }

.gold-link {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.gold-link:hover { opacity: 0.75; }

/* =====================
   SECTIONS
   ===================== */
section { padding: 110px 0; }

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.section-sub {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15px;
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   NAVBAR
   ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 36px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: rgba(240, 237, 230, 0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: inherit;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 28px 24px;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(240, 237, 230, 0.8);
  font-size: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.mobile-book { color: var(--gold); }

.mobile-menu a.mobile-book {
  border-bottom: none;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* =====================
   HERO
   ===================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.25) 0%,
    rgba(10,10,10,0.40) 40%,
    rgba(10,10,10,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-tag {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.hero-content h1 {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -2px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 20px);
  color: rgba(240, 237, 230, 0.65);
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-style: italic;
  font-size: clamp(13px, 1.8vw, 17px);
  color: var(--gold);
  margin-bottom: 44px;
  opacity: 0.9;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(240, 237, 230, 0.35);
  font-size: 14px;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* =====================
   SERVICES
   ===================== */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg2);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover { background: var(--bg3); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0.9;
}

.service-card h3 {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =====================
   PACKAGES
   ===================== */
#packages { background: var(--bg2); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.package-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 52px 40px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.package-card:hover { border-color: #3a3a3a; }

.package-featured {
  border-color: var(--gold);
  box-shadow: 0 0 48px rgba(201, 164, 74, 0.10);
}

.package-featured:hover {
  border-color: var(--gold-light);
  box-shadow: 0 0 64px rgba(201, 164, 74, 0.18);
}

.package-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0A;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 4px 18px;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
}

.package-top { margin-bottom: 24px; }

.package-card h3 {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.package-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.package-price {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.package-price .price {
  display: block;
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.package-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.package-features li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

.pkg-btn {
  width: 100%;
  justify-content: center;
}

/* =====================
   EQUIPMENT
   ===================== */
#equipment { background: var(--bg); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  background: var(--border);
  border: 1px solid var(--border);
  gap: 1px;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 44px 40px;
  background: var(--bg2);
  transition: background 0.3s;
}

.equipment-item:hover { background: var(--bg3); }

.equipment-icon {
  font-size: 22px;
  color: var(--gold);
  width: 44px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.85;
}

.equipment-info h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.equipment-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* =====================
   GALLERY
   ===================== */
#gallery {
  background: var(--bg2);
  padding-bottom: 0;
}

#gallery .container { padding-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 700px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-tall {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


/* =====================
   OUR WORK
   ===================== */
#work { background: var(--bg); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 9 / 16;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(201, 164, 74, 0.92);
  border: none;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0A0A0A;
  font-size: 22px;
  padding-left: 4px;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.play-btn:hover {
  background: var(--gold-light);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper.playing .play-btn {
  display: none;
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* =====================
   LOCATION
   ===================== */
#location { background: var(--bg); }

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.map-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

.map-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-col .maps-btn {
  width: 100%;
  justify-content: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.loc-icon {
  font-size: 18px;
  color: var(--gold);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 3px;
  opacity: 0.85;
}

.location-detail h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.location-detail p {
  font-size: 14px;
  color: var(--text-muted);
}

.maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #0A0A0A;
  background: var(--gold);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.maps-btn:hover { background: var(--gold-light); }

/* =====================
   CONTACT
   ===================== */
#contact {
  background: var(--bg2);
  padding: 130px 0;
}

.contact-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-size: clamp(38px, 6.5vw, 68px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.1;
}

.contact-inner > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 52px;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.footer-social {
  display: flex;
  gap: 28px;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 18px;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: #3d3d3d;
  letter-spacing: 0.5px;
}

/* =====================
   WEB PROMO STRIP
   ===================== */
.web-promo-strip {
  background: var(--gold);
  padding: 64px 0;
}

.web-promo-inner {
  display: flex;
  align-items: center;
  gap: 36px;
}

.web-promo-icon {
  font-size: 52px;
  color: var(--bg);
  flex-shrink: 0;
  line-height: 1;
}

.web-promo-text { flex: 1; }

.web-promo-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 8px;
}

.web-promo-text h3 {
  font-family: 'Montserrat', 'Cairo', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--bg);
  margin-bottom: 10px;
  line-height: 1.2;
}

.web-promo-text p {
  font-size: 15px;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.65;
}

.web-promo-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  color: var(--gold);
  padding: 18px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.web-promo-cta:hover { background: var(--bg3); }

/* =====================
   RTL SUPPORT
   ===================== */
body.ar .service-card::after { transform-origin: right; }

body.ar .web-promo-inner { flex-direction: row-reverse; text-align: right; }

body.ar .package-features li { flex-direction: row-reverse; }

body.ar .equipment-item { flex-direction: row-reverse; text-align: right; }

body.ar .location-detail { flex-direction: row-reverse; text-align: right; }

body.ar .contact-inner { text-align: center; }

body.ar .footer-inner { text-align: center; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-right .btn-gold { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { height: 500px; }
}

@media (max-width: 640px) {
  .hero-bg img { object-position: center 30%; }

  .nav-container { padding: 0 20px; }
  .container { padding: 0 20px; }
  section { padding: 80px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .location-wrapper { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-tall { grid-row: auto; }
  .gallery-item img { min-height: 260px; }
  .gallery-tall img { min-height: 320px; }

  .contact-buttons { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }

  .service-card { padding: 40px 28px; }
  .package-card { padding: 44px 28px; }
  .equipment-item { padding: 36px 28px; }

  .web-promo-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .web-promo-cta {
    width: 100%;
    justify-content: center;
  }
  body.ar .web-promo-inner { flex-direction: column; }
}
