/* ==========================================================================
   Starlight Curtains – ستاير ستارلايت
   Luxury Landing Page Stylesheet
   Pure CSS3 (Zero Frameworks) | RTL Native
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Logo-Derived Gold Palette */
  --gold-50: #FDFBF7;
  --gold-100: #F6EEDD;
  --gold-200: #EEDBB9;
  --gold-300: #E3C790;
  --gold-400: #D4AF37; /* Primary Brand Gold */
  --gold-500: #BE9728;
  --gold-600: #997517;
  --gold-gradient: linear-gradient(135deg, #F8E5C4 0%, #D4AF37 50%, #AA8122 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #F5DFC2 40%, #D4AF37 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.03) 100%);
  --gold-glow: 0 6px 24px rgba(212, 175, 55, 0.32);
  --gold-glow-lg: 0 10px 36px rgba(212, 175, 55, 0.45);
  --gold-border: rgba(212, 175, 55, 0.28);
  --gold-border-bright: rgba(212, 175, 55, 0.65);

  /* Luxury Dark / Black Palette */
  --dark-black: #08080A;
  --dark-primary: #0D0D11;
  --dark-surface: #14141A;
  --dark-card: #1A1A22;
  --dark-card-hover: #22222D;
  --dark-input: #121217;

  /* Warm Neutral Palette (Interiors & Contrast) */
  --cream-bg: #FAF8F4;
  --cream-card: #FFFFFF;
  --sand-bg: #F4EFE6;
  --sand-card: #FAF6EF;
  --neutral-border: #E8E0D2;

  /* Typography Colors */
  --text-primary: #0F0F12;
  --text-secondary: #585866;
  --text-muted: #838394;
  --text-light: #FFFFFF;
  --text-light-secondary: #E3E1DB;
  --text-light-muted: #A1A1B0;

  /* Brand Accents */
  --wa-color: #25D366;
  --wa-hover: #20BA59;
  --wa-glow: 0 6px 20px rgba(37, 211, 102, 0.35);
  --ig-gradient: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
  --fb-color: #1877F2;

  /* Font Families */
  --font-arabic-heading: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-arabic-body: 'Tajawal', system-ui, -apple-system, sans-serif;
  --font-latin-brand: 'Cinzel', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.24);
  --shadow-luxury: 0 20px 50px rgba(0, 0, 0, 0.45);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-width: 1240px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background-color: var(--dark-primary);
}

body {
  font-family: var(--font-arabic-body);
  background-color: var(--dark-primary);
  color: var(--text-light-secondary);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Typography & Utility Classes
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-arabic-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-padding {
  padding-block: 100px;
}

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

.text-right-rtl {
  text-align: right;
}

/* Ambient Sparkle Canvas Layer */
.luxury-sparkle-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-300);
  box-shadow: 0 0 12px 3px rgba(212, 175, 55, 0.4);
  animation: floatSparkle 8s infinite ease-in-out alternate;
}

.sparkle-1 { top: 18%; right: 12%; animation-delay: 0s; }
.sparkle-2 { top: 62%; left: 10%; animation-delay: 3s; width: 4px; height: 4px; }
.sparkle-3 { top: 80%; right: 25%; animation-delay: 5s; }

@keyframes floatSparkle {
  0% { transform: translateY(0) scale(0.8); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.4); opacity: 0.85; }
  100% { transform: translateY(-60px) scale(0.9); opacity: 0.2; }
}

/* Section Header Component */
.section-header {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-border);
  color: var(--gold-300);
  font-family: var(--font-arabic-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light-muted);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-arabic-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-gold, .btn-primary {
  background: var(--gold-gradient);
  color: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--gold-glow);
}

.btn-gold:hover, .btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--gold-glow-lg);
  transform: translateY(-2px);
  color: #000000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold-300);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-header {
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
}

.btn-wa-full {
  background-color: var(--wa-color);
  color: #FFFFFF !important;
  box-shadow: var(--wa-glow);
  width: 100%;
}

.btn-wa-full:hover {
  background-color: var(--wa-hover);
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  width: 100%;
}

.btn-outline-light:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.08);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-300);
  color: var(--gold-300);
}

.btn-review {
  background: rgba(212, 175, 55, 0.08);
  color: #FFFFFF;
  border: 1px solid var(--gold-border-bright);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-review:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-400);
  color: var(--gold-200);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-review .stars-icon {
  color: #FFD700;
  font-size: 0.92rem;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.6));
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(-4px);
}

/* --------------------------------------------------------------------------
   5. Site Header & Sticky Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  transition: all var(--transition-normal);
  background: rgba(13, 13, 17, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.site-header.scrolled {
  background: rgba(10, 10, 13, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 175, 55, 0.25);
  height: 74px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-img {
  transform: scale(1.03);
}

.brand-name-group {
  display: flex;
  flex-direction: column;
}

.brand-ar {
  font-family: var(--font-arabic-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.brand-en {
  font-family: var(--font-latin-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-300);
  line-height: 1;
}

/* Desktop Navigation */
.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-arabic-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light-secondary);
  position: relative;
  padding-block: 6px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-300);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 105;
}

.hamburger-btn .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold-300);
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

.hamburger-btn.active .bar-1 {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .bar-2 {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger-btn.active .bar-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-normal);
  z-index: 99;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 32px 24px;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.mobile-nav-link {
  font-family: var(--font-arabic-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast), padding var(--transition-fast);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--gold-300);
  padding-right: 12px;
}

.mobile-drawer-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-contact-title {
  color: var(--gold-300);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.drawer-btns-row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.drawer-btns-row .drawer-call-btn {
  flex: 1.4;
}

.drawer-btns-row .drawer-wa-btn {
  flex: 1;
}

.drawer-call-btn, .drawer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.drawer-call-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.drawer-call-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.drawer-wa-btn {
  background: var(--wa-color);
  color: #FFF;
}

.drawer-wa-btn:hover {
  background: var(--wa-hover);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--dark-black);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(13, 13, 17, 0.72) 0%, rgba(8, 8, 10, 0.94) 85%);
}

/* Curtain drapes decorative framing */
.hero-curtain-drape {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.45;
}

.curtain-left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

.curtain-right {
  right: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border-bright);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
}

.star-icon {
  color: var(--gold-400);
  font-size: 0.95rem;
  animation: pulseStar 2s infinite ease-in-out;
}

@keyframes pulseStar {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
}

.badge-text {
  font-family: var(--font-arabic-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-200);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light-secondary);
  line-height: 1.85;
  margin-bottom: 38px;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
}

/* Trust Bar */
.hero-trust-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  background: rgba(20, 20, 26, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-family: var(--font-arabic-heading);
  font-size: 0.95rem;
  color: #FFF;
}

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

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
}

/* Scroll Down Mouse Indicator */
.scroll-down-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.scroll-down-btn:hover {
  color: var(--gold-300);
}

.scroll-text {
  font-size: 0.75rem;
  font-family: var(--font-arabic-heading);
  letter-spacing: 0.5px;
}

.mouse-icon {
  width: 22px;
  height: 34px;
  border: 2px solid var(--gold-400);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.mouse-icon .wheel {
  width: 3px;
  height: 7px;
  background: var(--gold-300);
  border-radius: 2px;
  animation: wheelAnim 1.8s infinite;
}

@keyframes wheelAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   7. Services Section
   -------------------------------------------------------------------------- */
.services-section {
  background: linear-gradient(180deg, var(--dark-primary) 0%, var(--dark-surface) 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--dark-card-hover);
  border-color: var(--gold-border-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold-400);
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--gold-400);
  color: #0E0E12;
  transform: scale(1.06) rotate(-3deg);
  box-shadow: var(--gold-glow);
}

.service-svg {
  width: 42px;
  height: 42px;
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.service-desc {
  font-size: 0.98rem;
  color: var(--text-light-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-features {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
}

.service-features li span {
  color: var(--gold-400);
  font-size: 0.8rem;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-arabic-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-300);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-link:hover {
  color: #FFF;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   8. Curtain Collections / Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
  background: var(--dark-black);
}

.gallery-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-arabic-heading);
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border);
  color: var(--gold-200);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #0E0E12;
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.gallery-item {
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.gallery-item.hide {
  display: none;
}

.gallery-card {
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), var(--gold-glow);
}

.img-wrapper {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: #1a1a24;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .img-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(13, 13, 17, 0.8) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-normal);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.view-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: #0E0E12;
  font-family: var(--font-arabic-heading);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(12px);
  transition: transform var(--transition-normal);
}

.gallery-card:hover .view-pill {
  transform: translateY(0);
}

.gallery-info {
  padding: 22px;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-300);
  font-family: var(--font-arabic-heading);
  font-weight: 600;
}

.gallery-item-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.gallery-item-desc {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.gallery-cta {
  background: var(--dark-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 40px 24px;
  max-width: 800px;
  margin-inline: auto;
}

.gallery-cta p {
  font-size: 1.25rem;
  font-family: var(--font-arabic-heading);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 22px;
}

/* --------------------------------------------------------------------------
   9. Why Us Section
   -------------------------------------------------------------------------- */
.why-us-section {
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-primary) 100%);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.why-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 38px 28px;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), var(--gold-glow);
}

.why-number {
  position: absolute;
  top: 18px;
  left: 20px;
  font-family: var(--font-latin-brand);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.12);
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition-normal);
}

.why-card:hover .why-number {
  color: rgba(212, 175, 55, 0.35);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform var(--transition-normal);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  background: var(--gold-400);
  color: #0D0D11;
}

.why-card-title {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.why-card-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   10. Cinematic Parallax Visual Section
   -------------------------------------------------------------------------- */
.cinematic-section {
  position: relative;
  padding-block: 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #000;
}

.cinematic-bg-parallax {
  position: absolute;
  inset: -15% 0;
  background-image: url('assets/images/cinematic-living.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(13, 13, 17, 0.8) 0%, rgba(8, 8, 10, 0.94) 85%);
}

.cinematic-container {
  position: relative;
  z-index: 2;
}

.cinematic-content {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.cinematic-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-300);
  font-family: var(--font-arabic-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.cinematic-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.35;
  margin-bottom: 22px;
  color: #FFFFFF;
}

.cinematic-subtext {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-light-secondary);
  line-height: 1.9;
  margin-bottom: 40px;
}

.cinematic-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

/* --------------------------------------------------------------------------
   11. Location Section (زورونا)
   -------------------------------------------------------------------------- */
.location-section {
  background: var(--dark-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: stretch;
}

.location-info-card {
  background: var(--dark-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-card-header {
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.store-badge {
  display: inline-block;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  font-weight: 700;
  margin-bottom: 10px;
}

.location-store-name {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.location-store-en {
  font-family: var(--font-latin-brand);
  font-size: 0.88rem;
  color: var(--gold-300);
  letter-spacing: 1px;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}

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

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail-item strong {
  display: block;
  font-family: var(--font-arabic-heading);
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.location-detail-item p {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.sub-hours {
  color: var(--gold-300) !important;
  font-size: 0.85rem !important;
}

.phone-link {
  color: var(--gold-300);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-action-btns .btn-full {
  width: 100%;
}

.location-map-card {
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  position: relative;
  box-shadow: var(--shadow-luxury);
}

.map-responsive-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.map-gold-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(13, 13, 17, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border-bright);
  padding: 8px 18px;
  border-radius: 8px;
  color: var(--gold-200);
  font-family: var(--font-arabic-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   12. Contact Section & Forms
   -------------------------------------------------------------------------- */
.contact-section {
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-black) 100%);
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.contact-channel-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 38px 28px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-channel-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.featured-wa {
  border-color: rgba(37, 211, 102, 0.4);
}

.featured-wa:hover {
  border-color: var(--wa-color);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), var(--wa-glow);
}

.channel-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--wa-color);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
}

.channel-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wa-icon-wrap {
  background: rgba(37, 211, 102, 0.15);
  color: var(--wa-color);
}

.phone-icon-wrap {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-400);
}

.channel-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.channel-number {
  font-family: var(--font-latin-brand);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.channel-desc {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

.channel-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* Social Media Hub */
.social-channels-bar {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.social-intro h4 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.social-intro p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

.social-buttons-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: var(--font-arabic-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.instagram-btn {
  background: var(--ig-gradient);
  box-shadow: 0 4px 18px rgba(220, 39, 67, 0.35);
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(220, 39, 67, 0.55);
}

.facebook-btn {
  background-color: var(--fb-color);
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.35);
}

.facebook-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(24, 119, 242, 0.55);
}

/* Inquiry Form */
.inquiry-form-card {
  max-width: 820px;
  margin-inline: auto;
  background: var(--dark-card);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-luxury);
}

.form-header {
  text-align: center;
  margin-bottom: 32px;
}

.form-header h3 {
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-arabic-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-input);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  background: #191920;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-card);
  color: #FFFFFF;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   13. Luxury Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  background: var(--dark-surface);
  border: 1px solid var(--gold-border-bright);
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-luxury);
  transform: scale(0.94);
  transition: transform var(--transition-normal);
}

.lightbox-modal.open .lightbox-dialog {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold-400);
  color: #0E0E12;
  transform: rotate(90deg);
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.lightbox-img-wrap {
  background: #08080c;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 75vh;
}

.lightbox-meta {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  font-family: var(--font-arabic-heading);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.lightbox-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.lightbox-desc {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.lightbox-actions .btn-wa {
  background: var(--wa-color);
  color: #FFF;
  width: 100%;
}

.lightbox-actions .btn-wa:hover {
  background: var(--wa-hover);
}

/* --------------------------------------------------------------------------
   14. Floating Action Dock & Back-to-Top
   -------------------------------------------------------------------------- */
.floating-dock {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(13, 13, 17, 0.95);
  color: #FFF;
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-arabic-heading);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
  border: 1px solid var(--gold-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.float-ig {
  background: var(--ig-gradient);
}

.float-phone {
  background: var(--gold-gradient);
  color: #0E0E12;
}

.float-wa {
  width: 60px;
  height: 60px;
  background-color: var(--wa-color);
}

/* WhatsApp Halo Pulse Animation */
.float-wa.pulse .wa-halo {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-color);
  animation: waPulse 2s infinite cubic-bezier(0.24, 0, 0.38, 1);
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Back to Top */
.back-to-top-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 26, 34, 0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--gold-400);
  color: #0D0D11;
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   15. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background-color: var(--dark-black);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer-top-decor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer-brand-name {
  font-size: 1.2rem;
  color: #FFFFFF;
}

.footer-slogan {
  font-family: var(--font-arabic-heading);
  font-size: 1.05rem;
  color: var(--gold-300);
  font-style: italic;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  line-height: 1.75;
}

.footer-heading {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-400);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-right: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.82rem;
  color: var(--text-light-muted);
}

.footer-phone-val {
  font-family: var(--font-latin-brand);
  font-size: 1.15rem;
  color: var(--gold-300);
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-phone-val:hover {
  color: #FFFFFF;
}

.footer-wa-link {
  color: var(--wa-color);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-wa-link:hover {
  text-decoration: underline;
}

.footer-loc-text {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  margin-bottom: 16px;
}

.footer-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gold-300);
  border: 1px solid var(--gold-border);
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 22px;
  transition: all var(--transition-fast);
}

.footer-map-btn:hover {
  background: var(--gold-gradient);
  color: #0D0D11;
  border-color: transparent;
}

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

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--gold-400);
  color: #0E0E12;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   16. Toast Notifications
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #14141A;
  border: 1px solid var(--gold-border-bright);
  color: #FFFFFF;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--font-arabic-heading);
  font-size: 0.95rem;
  box-shadow: var(--shadow-luxury);
  animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   17. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Entrance delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   18. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map-card {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions .btn-header {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .hero-trust-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .trust-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lightbox-body {
    grid-template-columns: 1fr;
  }

  .lightbox-img-wrap {
    min-height: 260px;
  }

  .lightbox-meta {
    padding: 24px;
  }

  .social-channels-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-buttons-wrap {
    width: 100%;
  }

  .social-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding-block: 70px;
  }

  .container {
    padding-inline: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cinematic-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cinematic-actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-channels-grid {
    grid-template-columns: 1fr;
  }

  .floating-dock {
    bottom: 20px;
    right: 18px;
    gap: 10px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-wa {
    width: 54px;
    height: 54px;
  }

  .back-to-top-btn {
    bottom: 20px;
    left: 18px;
  }

  .brand-en {
    display: none;
  }

  .inquiry-form-card {
    padding: 28px 18px;
  }
}

/* Ultra small devices (320px - 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.65rem;
  }
}

/* --------------------------------------------------------------------------
   19. Accessibility & Reduced Motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-bg-img {
    animation: none !important;
  }
}

/* ==========================================================================
   20. Gallery Section & Interactive Lightbox
   ========================================================================== */
.gallery-section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
              var(--dark-primary);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  overflow: hidden;
}

/* Filter Tabs */
.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

.gallery-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(26, 26, 34, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  color: var(--text-light-secondary);
  font-family: var(--font-arabic-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gallery-filter-btn:hover {
  border-color: var(--gold-400);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.gallery-filter-btn.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--dark-primary);
  font-weight: 700;
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

.filter-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  transition: background var(--transition-fast);
}

.gallery-filter-btn.active .filter-dot {
  background: var(--dark-primary);
}

.filter-count {
  display: inline-block;
  padding: 2px 7px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: inherit;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.gallery-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--transition-normal);
}

.gallery-card.filter-hidden {
  display: none !important;
}

.gallery-card-inner {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-card:hover .gallery-card-inner {
  border-color: var(--gold-border-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
  transform: translateY(-6px);
}

/* Image Wrap */
.gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-surface);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img {
  transform: scale(1.08);
}

/* Gallery Hover Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 17, 0.92) 0%, rgba(13, 13, 17, 0.4) 50%, rgba(13, 13, 17, 0.2) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(15px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-actions {
  transform: translateY(0);
}

.gallery-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.gallery-action-btn.btn-zoom {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.gallery-action-btn.btn-zoom:hover {
  background: var(--gold-gradient);
  color: var(--dark-primary);
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: var(--gold-glow);
}

.gallery-action-btn.btn-wa-quick {
  background: rgba(37, 211, 102, 0.9);
  color: #FFFFFF;
  border-color: transparent;
}

.gallery-action-btn.btn-wa-quick:hover {
  background: var(--wa-hover);
  transform: scale(1.12);
  box-shadow: var(--wa-glow);
}

/* Gallery CTA Banner */
.gallery-cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(26, 26, 34, 0.95) 0%, rgba(20, 20, 26, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  padding: 36px 40px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.gallery-cta-bg-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.gallery-cta-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-arabic-heading);
  color: var(--gold-400);
  margin-bottom: 8px;
}

.gallery-cta-title {
  font-family: var(--font-arabic-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.35;
}

.gallery-cta-desc {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  max-width: 620px;
  line-height: 1.7;
}

.gallery-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

/* ==========================================================================
   21. Lightbox Modal Styles
   ========================================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1050px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--dark-card);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.active .lightbox-container {
  transform: scale(1);
}

.lightbox-close-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(6px);
}

.lightbox-close-btn:hover {
  background: #ff4757;
  border-color: #ff4757;
  transform: rotate(90deg) scale(1.05);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 20, 26, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.lightbox-nav-btn:hover {
  background: var(--gold-gradient);
  color: var(--dark-primary);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--gold-glow);
}

.lightbox-prev {
  right: 18px;
}

.lightbox-next {
  left: 18px;
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  max-height: 85vh;
  overflow: hidden;
}

.lightbox-media-box {
  position: relative;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  max-height: 80vh;
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.lightbox-details {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark-surface) 100%);
  overflow-y: auto;
}

.lightbox-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lightbox-badge {
  font-family: var(--font-arabic-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-300);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
}

.lightbox-counter-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light-muted);
  font-family: var(--font-arabic-heading);
}

.lightbox-title {
  font-family: var(--font-arabic-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
}

.lightbox-desc {
  font-size: 1rem;
  color: var(--text-light-secondary);
  line-height: 1.8;
}

.lightbox-cta-wrap {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-lightbox-wa {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 1rem;
}

/* ==========================================================================
   22. Responsive Breakpoints for Gallery & Lightbox
   ========================================================================== */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .gallery-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .gallery-cta-actions {
    width: 100%;
  }

  .gallery-cta-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .lightbox-body {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .lightbox-media-box {
    max-height: 50vh;
    min-height: 280px;
  }

  .lightbox-details {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-filter-tabs {
    gap: 8px;
    margin-bottom: 32px;
  }

  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 0.88rem;
  }

  .gallery-cta-banner {
    padding: 28px 20px;
  }

  .gallery-cta-title {
    font-size: 1.25rem;
  }

  .lightbox-container {
    max-height: 95vh;
    border-radius: 14px;
  }

  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    right: 8px;
  }

  .lightbox-next {
    left: 8px;
  }

  .lightbox-close-btn {
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
  }

  .lightbox-title {
    font-size: 1.25rem;
  }

  .lightbox-desc {
    font-size: 0.92rem;
  }
}

