/* ═══════════════════════════════════════════════════════════════
   MK MÖBELKIT — LUXURY FURNITURE SHOWROOM
   Design System & Styles
═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --cream:       #f5f0ea;
  --cream-dark:  #ede7df;
  --charcoal:    #1a1714;
  --charcoal-2:  #252220;
  --charcoal-3:  #312e2b;
  --gold:        #c9a96e;
  --gold-light:  #dfc08a;
  --gold-dark:   #a07840;
  --stone:       #8a7d72;
  --stone-light: #b0a499;
  --white:       #ffffff;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;

  --font-serif:  'Cormorant Garamond', 'Georgia', serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-arabic: 'Cairo', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --shadow-sm:   0 2px 8px rgba(26,23,20,.06);
  --shadow-md:   0 8px 32px rgba(26,23,20,.12);
  --shadow-lg:   0 24px 64px rgba(26,23,20,.20);
  --shadow-xl:   0 40px 80px rgba(26,23,20,.30);

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;

  --nav-h:       80px;
  --container:   1200px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10002;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}
[dir="rtl"] .scroll-progress {
  left: auto;
  right: 0;
}

/* RTL / Arabic overrides */
[dir="rtl"] body {
  font-family: var(--font-arabic);
}

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

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.preloader-mark {
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  animation: spin 3s linear infinite;
}
@keyframes spin {
  100% { transform: rotate(360deg); }
}
.preloader-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.preloader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.4s ease;
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor-ring, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
}
body.hovering .cursor-ring {
  width: 50px; height: 50px;
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold-light);
}
body.hovering .cursor-dot {
  width: 10px; height: 10px;
  background: var(--gold-light);
}
@media (pointer: coarse) {
  .cursor-ring, .cursor-dot { display: none; }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition), transform 0.1s ease-out;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
[dir="rtl"] .btn {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border: 2px solid var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border: 2px solid var(--wa-green);
}
.btn-wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

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

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 23, 20, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,169,110,.2);
  height: 68px;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-mark {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}
[dir="rtl"] .nav-link {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Language Switcher */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 2px;
  gap: 2px;
}
.lang-btn {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 6px 12px;
  border-radius: 20px;
  transition: var(--transition-fast);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: var(--transition);
  flex-shrink: 0;
}
[dir="rtl"] .nav-cta {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
.nav-cta:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.ham-line {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   STICKY STACKED VIDEO SECTIONS
═══════════════════════════════════════════ */
.sticky-video-section {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 650px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--charcoal);
  pointer-events: none;
}
/* Re-enable pointer events ONLY on actual interactive buttons/links inside sticky videos */
.sticky-video-section .btn,
.sticky-video-section a,
.sticky-video-section button {
  pointer-events: auto;
}
.sticky-video-section .hero-content,
.sticky-video-section .video-showcase-content {
  pointer-events: none;
}

.hero-section {
  z-index: 1;
}

.video-showcase-section {
  z-index: 2;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
}

.sticky-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,23,20,0.65) 0%,
    rgba(26,23,20,0.3) 50%,
    rgba(26,23,20,0.7) 100%
  );
  z-index: 2;
}

/* Site Main Wrapper stacked over Video 2 */
.site-main {
  position: relative;
  z-index: 10;
  background: var(--cream);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  box-shadow: 0 -25px 60px rgba(0,0,0,0.4);
  overflow: visible;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
[dir="rtl"] .hero-eyebrow { letter-spacing: 0; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
[dir="rtl"] .hero-title {
  font-family: var(--font-arabic);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   CINEMATIC VIDEO SHOWCASE SECTION
═══════════════════════════════════════════ */
.video-showcase {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-showcase-inner {
  position: relative;
  width: 85%;
  height: 75vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(26,23,20,0.35);
  transform: scale(0.9);
  opacity: 0;
  transition: none; /* driven by GSAP */
}
.video-showcase-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,23,20,0.65) 0%,
    rgba(26,23,20,0.2) 60%,
    rgba(26,23,20,0.5) 100%
  );
}
.video-showcase-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  max-width: 780px;
}
.video-showcase-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
[dir="rtl"] .video-showcase-title {
  font-family: var(--font-arabic);
  font-weight: 700;
  letter-spacing: 0;
}
.video-showcase-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .video-showcase-inner { width: 95%; height: 60vh; }
  .video-showcase-content { padding: 32px; }
}


  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
[dir="rtl"] .hero-title {
  font-family: var(--font-arabic);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  background: rgba(26,23,20,.3);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.slider-arrow:hover {
  background: rgba(201,169,110,.6);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}
.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }

[dir="rtl"] .slider-arrow.prev { left: auto; right: 32px; transform: translateY(-50%) scaleX(-1); }
[dir="rtl"] .slider-arrow.next { right: auto; left: 32px; transform: translateY(-50%) scaleX(-1); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
[dir="rtl"] .scroll-indicator {
  right: auto;
  left: 40px;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); transform-origin: top; }
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════ */
.marquee-strip {
  background: var(--charcoal);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
[dir="rtl"] .marquee-track span {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
.marquee-track .sep { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
[dir="rtl"] .section-eyebrow {
  letter-spacing: 0;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
[dir="rtl"] .section-title {
  font-family: var(--font-arabic);
  font-weight: 700;
  letter-spacing: 0;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-desc {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
}
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════
   STATS SECTION
═══════════════════════════════════════════ */
.stats-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-card {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
}
[dir="rtl"] .stat-card {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,.06);
}
.stat-card:last-child { border-right: none; }
[dir="rtl"] .stat-card:last-child { border-left: none; }
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.6s ease;
}
.stat-card:hover::before { width: 40%; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
[dir="rtl"] .stat-number {
  font-family: var(--font-arabic);
  font-weight: 700;
}
.stat-plus {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  vertical-align: super;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-top: 12px;
}
[dir="rtl"] .stat-label {
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════
   COLLECTIONS SECTION
═══════════════════════════════════════════ */
.collections-section {
  padding: 120px 0;
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.collection-card.large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
[dir="rtl"] .collection-card.large {
  grid-column: 3 / 4;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.collection-card.large .card-img-wrap { height: 620px; }
.collection-card:not(.large) .card-img-wrap { height: 290px; }

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-card:hover .card-img-wrap img { transform: scale(1.06); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,.9) 0%, rgba(26,23,20,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity var(--transition);
}
.collection-card:hover .card-overlay { opacity: 1; }

.card-overlay-content {
  transform: translateY(16px);
  transition: transform var(--transition);
  width: 100%;
}
.collection-card:hover .card-overlay-content { transform: translateY(0); }

.card-overlay .card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
[dir="rtl"] .card-overlay .card-title {
  font-family: var(--font-arabic);
  font-weight: 600;
}
.card-overlay .card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 50px;
  transition: var(--transition);
}
[dir="rtl"] .card-btn {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
.card-btn:hover {
  background: var(--wa-dark);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}

.card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px 8px;
}
.card-label {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
}
[dir="rtl"] .card-label {
  font-family: var(--font-arabic);
  font-weight: 600;
}
.card-arrow {
  font-size: 1.2rem;
  color: var(--stone);
  transition: var(--transition);
}
.collection-card:hover .card-arrow {
  transform: translateX(6px);
  color: var(--gold-dark);
}
[dir="rtl"] .collection-card:hover .card-arrow {
  transform: translateX(-6px);
}

/* ═══════════════════════════════════════════
   PROJECTS SECTION
═══════════════════════════════════════════ */
.projects-section {
  padding: 120px 0;
  background: var(--charcoal-2);
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-btn {
  padding: 9px 22px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5);
  border-radius: 50px;
  transition: var(--transition);
}
[dir="rtl"] .filter-btn {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal-3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.project-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-item.hidden { display: none; }

.project-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.project-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-item:hover .project-img-wrap img { transform: scale(1.05); }

.project-hover {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-item:hover .project-hover { opacity: 1; }

.project-expand-btn {
  width: 52px; height: 52px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.project-expand-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.project-info { padding: 20px 24px 24px; }
.project-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
[dir="rtl"] .project-category {
  letter-spacing: 0;
}
.project-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
[dir="rtl"] .project-name {
  font-family: var(--font-arabic);
  font-weight: 600;
}
.project-location {
  font-size: 0.82rem;
  color: var(--stone-light);
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26,23,20,.95);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: fadeIn 0.3s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2.5rem;
  color: rgba(255,255,255,.6);
  line-height: 1;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
[dir="rtl"] .lightbox-close {
  right: auto;
  left: 32px;
}
.lightbox-close:hover { color: var(--white); transform: rotate(90deg); }

.lightbox-content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1000px;
  width: 100%;
  align-items: center;
  animation: lightboxSlide 0.4s ease;
}
@keyframes lightboxSlide {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-category {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
[dir="rtl"] .lightbox-category {
  letter-spacing: 0;
}
.lightbox-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
[dir="rtl"] .lightbox-title {
  font-family: var(--font-arabic);
  font-weight: 700;
}
.lightbox-sub {
  font-size: 0.9rem;
  color: var(--stone-light);
  margin-bottom: 32px;
  line-height: 1.6;
}
.lightbox-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
[dir="rtl"] .lightbox-wa-btn {
  font-family: var(--font-arabic);
}
.lightbox-wa-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

/* ═══════════════════════════════════════════
   BEFORE & AFTER SLIDER
═══════════════════════════════════════════ */
.ba-section {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  z-index: 4;
}
.ba-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.ba-slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  user-select: none;
  cursor: ew-resize;
}
.ba-before, .ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Before is black and white to make transformation dramatic */
.ba-before img {
  filter: grayscale(100%) brightness(75%);
}
.ba-after {
  width: 50%; /* JS alters this width */
  overflow: hidden;
  z-index: 2;
  border-right: 1px solid rgba(255,255,255,0.4);
}
/* Labels */
.ba-label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(26,23,20,0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 3;
}
.ba-label-before { right: 20px; }
.ba-label-after  { left: 20px; }

/* Handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; /* JS alters this */
  width: 2px;
  background: var(--gold);
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-line {
  width: 2px; height: 100%;
  background: var(--gold);
}
.ba-circle {
  width: 48px; height: 48px;
  background: var(--charcoal);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: var(--shadow-md);
  position: absolute;
}
.ba-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════
   MATERIAL / FINISH PICKER
═══════════════════════════════════════════ */
.mat-section {
  padding: 120px 0;
  background: var(--charcoal-2);
  position: relative;
  z-index: 4;
}
.mat-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.mat-preview-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 480px;
}
.mat-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
  cursor: default;
}

.mat-selected-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(26,23,20,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  border-left: 3px solid var(--gold);
}
[dir="rtl"] .mat-selected-badge {
  left: auto; right: 24px;
  border-left: none;
  border-right: 3px solid var(--gold);
}
.mat-sep { color: var(--gold); margin: 0 8px; }

.mat-controls {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.mat-group-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--stone-light);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
[dir="rtl"] .mat-group-label {
  letter-spacing: 0;
}
.mat-swatches {
  display: flex;
  gap: 16px;
}
.swatch {
  width: 44px; height: 44px;
  border-radius: 50%;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s, box-shadow 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  z-index: 10;
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Wood Finish Color Definitions */
.swatch[data-finish="walnut"]     { background-color: #5C3D2E !important; }
.swatch[data-finish="white"]      { background-color: #F0EDE8 !important; border: 1px solid #ccc !important; }
.swatch[data-finish="oak"]        { background-color: #C8A882 !important; }
.swatch[data-finish="anthracite"] { background-color: #383838 !important; }
.swatch[data-finish="sand"]       { background-color: #C9B99A !important; }

/* Countertop Color Definitions */
.swatch[data-counter="marble"]  { background: linear-gradient(135deg, #f5f5f5, #e8e4e0) !important; border: 1px solid #ccc !important; }
.swatch[data-counter="black"]   { background: linear-gradient(135deg, #2a2a2a, #1a1a1a) !important; }
.swatch[data-counter="granite"] { background: linear-gradient(135deg, #888888, #666666) !important; }

.swatch.active {
  transform: scale(1.18);
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.35);
}
.swatch::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.swatch.active::after { opacity: 1; }
/* White swatch checkmark color */
.swatch[data-finish="white"].active::after,
.swatch[data-counter="marble"].active::after { color: #1a1714; }

.mat-finish-name-display {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
}
[dir="rtl"] .mat-finish-name-display {
  font-family: var(--font-arabic);
}
.mat-finish-sep { color: var(--gold); }

.mat-order-btn {
  align-self: flex-start;
}

/* ═══════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════ */
.pricing-section {
  padding: 120px 0;
  background: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.price-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.price-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}
.price-badge {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 0.08em;
}
[dir="rtl"] .price-badge {
  letter-spacing: 0;
}
.price-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.price-cat {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}
[dir="rtl"] .price-cat {
  font-family: var(--font-arabic);
}
.price-amount {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.price-from {
  font-size: 0.85rem;
  color: var(--stone);
  text-transform: uppercase;
}
.price-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}
[dir="rtl"] .price-number {
  font-family: var(--font-arabic);
  font-weight: 700;
}
.price-currency {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}
.price-features li {
  font-size: 0.88rem;
  color: var(--stone);
}
.price-btn {
  width: 100%;
}
.price-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 32px;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-section {
  padding: 120px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 600px;
}
.about-img-primary {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 72%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
[dir="rtl"] .about-img-primary {
  left: auto; right: 0;
}
.about-img-primary img {
  width: 100%; height: 100%;
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
[dir="rtl"] .about-img-secondary {
  right: auto; left: 0;
}
.about-img-secondary img {
  width: 100%; height: 100%;
}
.about-badge {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(20%, -50%);
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 5;
}
[dir="rtl"] .about-badge {
  right: auto; left: 0;
  transform: translate(-20%, -50%);
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}
[dir="rtl"] .badge-number {
  font-family: var(--font-arabic);
  font-weight: 700;
}
.badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.4;
  margin-top: 4px;
}
[dir="rtl"] .badge-text {
  letter-spacing: 0;
}

.about-title { margin-bottom: 28px; }
.about-text {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
[dir="rtl"] .value-item {
  border-left: none;
  border-right: 3px solid var(--gold);
}
.value-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
[dir="rtl"] .value-item:hover {
  transform: translateX(-4px);
}
.value-icon {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.value-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════ */
.process-section {
  padding: 100px 0;
  background: var(--charcoal);
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
[dir="rtl"] .process-steps {
  flex-direction: row-reverse;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); }

.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,169,110,.15);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.process-step:hover .step-number { color: rgba(201,169,110,.35); }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
[dir="rtl"] .step-title {
  font-family: var(--font-arabic);
  font-weight: 600;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--stone-light);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}

.process-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,.3), rgba(201,169,110,.6), rgba(201,169,110,.3));
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
  padding: 120px 0;
  background: var(--cream);
}
.testimonials-slider {
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 52px 56px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--cream-dark);
}
.stars {
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 36px;
}
[dir="rtl"] .testimonial-quote {
  font-family: var(--font-arabic);
  font-style: normal;
  font-weight: 400;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
[dir="rtl"] .author-avatar {
  font-family: var(--font-arabic);
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.author-role {
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 2px;
}
.test-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.test-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--stone-light);
  transition: var(--transition);
}
.test-dot.active {
  background: var(--gold-dark);
  width: 28px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section {
  padding: 120px 0;
  background: var(--cream);
}
.faq-header {
  margin-bottom: 56px;
  text-align: left;
}
[dir="rtl"] .faq-header {
  text-align: right;
}
.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.eyebrow-line {
  color: var(--gold-dark);
}
.faq-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}
[dir="rtl"] .faq-title {
  font-family: var(--font-arabic);
  font-weight: 700;
}
.faq-accordion {
  max-width: 960px;
}
.faq-item {
  border-top: 1px solid rgba(26,23,20,0.12);
  transition: border-color 0.3s;
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(26,23,20,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: color 0.3s;
}
[dir="rtl"] .faq-question {
  text-align: right;
  font-family: var(--font-arabic);
}
.faq-question:hover {
  color: var(--gold-dark);
}
.faq-q-text {
  line-height: 1.5;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 400;
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.3s ease;
}
[dir="rtl"] .faq-icon {
  margin-left: 0;
  margin-right: 24px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.active .faq-answer {
  max-height: 240px;
  opacity: 1;
  padding-bottom: 28px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.75;
  max-width: 780px;
}

/* ═══════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════ */
.contact-section {
  padding: 120px 0;
  background: var(--charcoal-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.wa-primary-cta {
  background: linear-gradient(135deg, #1a2a1e, #1e3a25);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
  transition: var(--transition);
}
.wa-primary-cta:hover {
  border-color: rgba(37,211,102,.4);
  box-shadow: 0 8px 32px rgba(37,211,102,.1);
}
.wa-icon-wrap {
  color: var(--wa-green);
  margin-bottom: 20px;
}
.wa-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
[dir="rtl"] .wa-text h3 {
  font-family: var(--font-arabic);
}
.wa-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-detail-item:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,169,110,.2);
}
.detail-icon { font-size: 1.2rem; flex-shrink: 0; }
.detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
[dir="rtl"] .detail-label {
  letter-spacing: 0;
}
.detail-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ─── Contact Form ─── */
.contact-form-wrap {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 36px;
}
[dir="rtl"] .form-title {
  font-family: var(--font-arabic);
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
[dir="rtl"] .form-group label {
  letter-spacing: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea {
  font-family: var(--font-arabic);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--charcoal-3); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
}
.footer-top { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--stone-light);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
[dir="rtl"] .footer-col-title {
  letter-spacing: 0;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-wa-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-wa-btn {
  font-size: 0.8rem;
  padding: 11px 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy,
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP + CHAT POPUP (UPGRADE)
═══════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1900;
  width: 60px; height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
}
[dir="rtl"] .fab-whatsapp {
  right: auto; left: 32px;
}
.fab-whatsapp:hover {
  background: var(--wa-dark);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
}
.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: pulse 2.5s ease-out infinite;
}
@keyframes pulse {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.5); }
}

.chat-popup {
  position: fixed;
  bottom: 104px;
  right: 32px;
  width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1890;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
[dir="rtl"] .chat-popup {
  right: auto; left: 32px;
}
.chat-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.chat-popup-header {
  background: var(--wa-dark);
  color: var(--white);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.chat-popup-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-popup-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.chat-online {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-online-dot {
  width: 6px; height: 6px;
  background: var(--wa-green);
  border-radius: 50%;
}
.chat-popup-close {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}
[dir="rtl"] .chat-popup-close {
  right: auto; left: 20px;
}
.chat-popup-close:hover { color: var(--white); }

.chat-popup-body {
  padding: 24px;
  background: #efe7dd; /* Classic WA chat wallpaper tone */
  max-height: 250px;
  overflow-y: auto;
}
.chat-bubble-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.chat-bubble-avatar {
  width: 32px; height: 32px;
  background: var(--gold-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}
.chat-bubble {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  font-size: 0.88rem;
  color: var(--charcoal);
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  max-width: 80%;
  position: relative;
}
[dir="rtl"] .chat-bubble {
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
}
.chat-reply-hint {
  font-size: 0.72rem;
  color: var(--stone);
  text-align: center;
  margin-top: 16px;
}

.chat-quick-options {
  padding: 16px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-option {
  background: var(--cream);
  color: var(--charcoal);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  text-align: left;
  font-weight: 500;
  transition: var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.05);
}
[dir="rtl"] .chat-option {
  text-align: right;
}
.chat-option:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  [dir="rtl"] .stat-card:nth-child(2) { border-left: none; }
  .stat-card { border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-card:nth-child(3),
  .stat-card:nth-child(4) { border-bottom: none; }
  .stat-card:nth-child(4) { border-right: none; }
  [dir="rtl"] .stat-card:nth-child(4) { border-left: none; }

  .collections-grid { grid-template-columns: 1fr 1fr; }
  .collection-card.large { grid-column: 1 / 3; grid-row: auto; }
  [dir="rtl"] .collection-card.large { grid-column: 1 / 3; }
  .collection-card.large .card-img-wrap { height: 380px; }
  .collection-card:not(.large) .card-img-wrap { height: 260px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 420px; }
  .about-badge { right: 5%; }
  [dir="rtl"] .about-badge { left: 5%; }

  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mat-layout { grid-template-columns: 1fr; gap: 40px; }
  .mat-preview-wrap { height: 360px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 12px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }

  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: var(--nav-h) !important;
    min-height: var(--nav-h) !important;
    max-height: var(--nav-h) !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #1a1714 !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
    transform: none !important;
  }
  .navbar.scrolled {
    height: 56px !important;
    min-height: 56px !important;
  }
  .nav-container {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    transform: none !important;
  }
  .logo {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    height: 100% !important;
  }
  .logo-img {
    height: 30px !important;
    max-height: 30px !important;
    width: auto !important;
    max-width: 130px !important;
    object-fit: contain !important;
    display: block !important;
    margin: auto 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  .lang-toggle {
    display: flex !important;
    align-items: center !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
    border-radius: 30px !important;
    padding: 2px !important;
    gap: 2px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }
  [dir="rtl"] .lang-toggle {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  .lang-btn {
    padding: 3px 8px !important;
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
    min-height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border: none !important;
    transform: none !important;
  }
  .lang-btn.active, .lang-btn:hover {
    background: var(--gold) !important;
    color: #1a1714 !important;
  }

  .nav-links {
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important; right: 0 !important;
    background: rgba(26, 23, 20, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 16px 0 24px !important;
    max-height: calc(100vh - var(--nav-h)) !important;
    overflow-y: auto !important;
    transform: translateY(-110%);
    transition: transform var(--transition) !important;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5) !important;
    z-index: 9999 !important;
  }
  .nav-links.open { transform: translateY(0) !important; }
  .nav-link {
    padding: 14px 24px !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.92rem !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .nav-cta { display: none !important; }
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 6px !important;
    flex-shrink: 0 !important;
    min-width: 36px !important;
    min-height: 36px !important;
    overflow: visible !important;
    transform: none !important;
  }

  /* Hero & Video Sections */
  .scroll-indicator { display: none !important; }

  .sticky-video-section {
    position: relative !important;
    top: auto !important;
    min-height: calc(100dvh - 72px) !important;
    height: auto !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .video-showcase-section {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    box-shadow: none !important;
  }
  .site-main {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    box-shadow: none !important;
  }

  .sticky-video-section.hero-section {
    padding-top: calc(var(--nav-h) + 28px) !important;
    padding-bottom: 40px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-content {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    margin-top: auto;
    margin-bottom: auto;
  }
  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.25;
    padding-top: 4px;
    padding-bottom: 4px;
    overflow: visible;
  }
  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 4px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.82rem;
    min-height: 48px;
  }

  .video-showcase-content {
    padding: 32px 16px;
  }
  .video-showcase-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    margin: 12px 0 14px;
  }
  .video-showcase-desc {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }
  .btn-outline-light {
    min-height: 48px;
    padding: 14px 24px;
    justify-content: center;
  }

  /* Collections */
  .collections-grid { grid-template-columns: 1fr; gap: 20px; }
  .collection-card.large { grid-column: auto; }
  .collection-card.large .card-img-wrap,
  .collection-card:not(.large) .card-img-wrap { height: 280px; }
  .card-overlay {
    opacity: 1;
    padding: 20px 16px;
    background: linear-gradient(to top, rgba(26,23,20,0.92) 0%, rgba(26,23,20,0.35) 60%, transparent 100%);
  }
  .card-overlay-content { transform: none; }
  .card-overlay .card-title { font-size: 1.4rem; margin-bottom: 6px; }
  .card-overlay .card-desc {
    font-size: 0.82rem;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-btn {
    padding: 10px 18px;
    font-size: 0.78rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Projects Filter Tabs */
  .projects-filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 4px 4px 12px;
    margin-bottom: 24px;
    width: 100%;
  }
  .projects-filter::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.76rem;
    min-height: 40px;
    border-radius: 30px;
    white-space: nowrap;
  }
  .projects-grid { grid-template-columns: 1fr; gap: 20px; }
  .project-item { cursor: pointer; }
  .project-hover { opacity: 1; background: rgba(26,23,20,0.25); }
  .project-expand-btn { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }

  /* Before & After */
  .ba-slider-container {
    height: 280px;
    touch-action: pan-y;
    border-radius: 16px;
  }
  .ba-handle {
    width: 44px;
    height: 44px;
    margin-left: -22px;
  }
  .ba-circle {
    width: 44px;
    height: 44px;
  }
  .ba-cta-wrap { margin-top: 20px; }
  .ba-cta-wrap .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    min-height: 48px;
  }

  /* Marquee Ticker Overflow Fix */
  .marquee-bar, .marquee {
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* Material Picker */
  .mat-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .mat-preview-wrap,
  .mat-controls,
  .mat-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .mat-preview-wrap { height: 240px; border-radius: 16px; overflow: hidden; }
  .mat-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .swatch {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
  }
  .mat-finish-name-display {
    font-size: 1rem;
    text-align: center;
    margin: 14px 0;
  }
  .mat-order-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 14px 20px;
  }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card { padding: 24px 18px; border-radius: 16px; }
  .price-number { font-size: 1.8rem; }
  .price-btn { width: 100%; min-height: 48px; justify-content: center; }
  #price-main-cta { width: 100%; max-width: 340px; min-height: 48px; justify-content: center; }

  /* Estimator */
  .estimator-card { padding: 24px 16px; border-radius: 16px; }
  .estimator-service-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .est-service-btn { padding: 12px 8px; font-size: 0.8rem; min-height: 44px; }
  .estimator-dims { grid-template-columns: 1fr; gap: 14px; }
  .est-input-group input { font-size: 16px !important; padding: 12px 14px; height: 48px; }
  .est-calc-btn { min-height: 48px; font-size: 0.95rem; }
  .est-result-wa { width: 100%; justify-content: center; min-height: 48px; margin-top: 16px; }

  /* About */
  .about-grid, .about-visual, .about-content { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-visual { height: 250px; margin-bottom: 16px; position: relative; overflow: hidden; border-radius: 16px; }
  .about-img-secondary { width: 110px !important; height: 130px !important; right: 0 !important; bottom: 0 !important; }
  .about-badge { width: 72px; height: 72px; top: 0; right: 0 !important; max-width: 72px !important; overflow: hidden !important; }
  [dir="rtl"] .about-badge { left: 0 !important; right: auto !important; }
  .badge-number { font-size: 1.2rem; }
  .badge-text { font-size: 0.58rem !important; white-space: normal !important; word-wrap: break-word !important; }
  .about-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .about-values { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
  #about-visit-btn { width: 100%; min-height: 48px; justify-content: center; }

  /* Process Steps */
  .process-steps { flex-direction: column; gap: 0; align-items: center; }
  .process-step { width: 100%; text-align: center; padding: 16px; }
  .process-connector { width: 2px; height: 32px; margin: 0 auto; }

  /* Testimonials */
  .testimonial-slider,
  .testimonial-track-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .testimonial-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 24px 18px;
    border-radius: 16px;
  }
  .testimonial-quote { font-size: 0.92rem; line-height: 1.6; word-wrap: break-word; }
  .test-nav { display: flex; gap: 12px; justify-content: center; align-items: center; padding: 12px 0; }
  .test-dot { width: 14px; height: 14px; min-width: 36px; min-height: 36px; padding: 11px; }

  /* Lightbox */
  .lightbox { padding: 12px; align-items: center; justify-content: center; }
  .lightbox-content {
    display: flex;
    flex-direction: column;
    padding: 44px 16px 20px;
    max-height: 86vh;
    overflow-y: auto;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
  }
  .lightbox-content img { max-height: 35vh; object-fit: contain; width: 100%; border-radius: 8px; margin-bottom: 14px; }
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.6rem;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
  [dir="rtl"] .lightbox-close { left: 10px; right: auto; }
  .lightbox-wa-btn { width: 100%; min-height: 48px; justify-content: center; text-align: center; font-size: 0.8rem; margin-top: 14px; }

  /* FAQ */
  .faq-accordion { gap: 10px; }
  .faq-question { padding: 14px 16px; min-height: 48px; font-size: 0.9rem; }
  .faq-q-text { font-size: 0.9rem; padding-right: 12px; }
  [dir="rtl"] .faq-q-text { padding-right: 0; padding-left: 12px; }
  .faq-answer { padding: 0 16px 14px; }
  .faq-answer p { font-size: 0.85rem; }

  /* Contact & Form */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-info,
  .contact-details,
  .contact-detail-item,
  .contact-form-wrap,
  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .wa-primary-cta {
    padding: 20px 16px !important;
    text-align: center !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .wa-icon-wrap,
  .wa-text {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-details { gap: 14px !important; }
  .contact-detail-item { padding: 12px !important; border-radius: 12px !important; }
  .detail-value a { min-height: 38px !important; display: inline-flex !important; align-items: center !important; }
  .contact-form-wrap { padding: 24px 16px !important; border-radius: 16px !important; }
  .form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .form-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px !important;
    min-height: 48px !important;
    padding: 12px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  #form-submit-btn { min-height: 48px !important; font-size: 0.9rem !important; width: 100% !important; }

  /* Footer */
  .footer-top { padding: 40px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-social { justify-content: center; gap: 14px; }
  .social-link { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
  .footer-links { display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .footer-wa-btn { width: 100%; max-width: 280px; margin: 12px auto 0; min-height: 48px; justify-content: center; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; font-size: 0.78rem; }

  /* Floating WhatsApp + Chat Popup */
  .fab-whatsapp { bottom: 16px; right: 16px; width: 54px; height: 54px; z-index: 9998; }
  [dir="rtl"] .fab-whatsapp { left: 16px; right: auto; }
  .chat-popup {
    bottom: 78px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: 400px;
    max-height: 75vh;
    z-index: 9999;
    border-radius: 16px;
  }
  [dir="rtl"] .chat-popup { left: 16px; right: 16px; }
  .chat-option { min-height: 44px; font-size: 0.8rem; padding: 10px 14px; }
}

@media (max-width: 375px) {
  .sticky-video-section.hero-section {
    padding: 28px 12px !important;
  }
  .logo-img { height: 28px !important; max-height: 28px !important; max-width: 120px !important; }
  .lang-btn { padding: 3px 6px !important; font-size: 0.64rem !important; min-height: 24px !important; }
  .hero-eyebrow { font-size: 0.7rem !important; margin-bottom: 8px !important; }
  .hero-title { font-size: clamp(1.55rem, 7vw, 2.1rem) !important; line-height: 1.25 !important; margin-bottom: 12px !important; }
  .hero-subtitle { font-size: 0.85rem !important; margin-bottom: 18px !important; }
  .section-title { font-size: 1.55rem !important; }
  .card-overlay .card-title { font-size: 1.25rem !important; }
  .price-number { font-size: 1.6rem !important; }
  .estimator-service-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }
  .est-service-btn { padding: 10px 4px !important; font-size: 0.75rem !important; }
}

/* ── ARABIC & RTL NUMBER DIRECTIONALITY & LEGIBILITY OVERRIDES ── */
[dir="rtl"] .price-number,
[dir="rtl"] .detail-value a,
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="number"],
[dir="rtl"] .est-result-price,
[dir="rtl"] .est-result-area {
  direction: ltr;
  unicode-bidi: isolate;
}
[dir="rtl"] .price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  direction: rtl;
}

