@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@200;300;400;500;600&family=Cairo:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #E8C88A;
  --gold-dark: #A07840;
  --gold-gradient: linear-gradient(135deg, #C9A96E 0%, #E8C88A 50%, #C9A96E 100%);
  --dark: #090909;
  --dark-2: #111111;
  --dark-3: #1A1A1A;
  --dark-4: #242424;
  --dark-5: #2E2E2E;
  --light: #F5F0E8;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text-primary: #1C1C1C;
  --text-light: #F0ECE4;
  --text-muted: #8A8A8A;
  --border-gold: rgba(201,169,110,0.25);
  --border-dark: rgba(255,255,255,0.08);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Jost', 'Inter', sans-serif;
  --font-arabic: 'Cairo', 'Tajawal', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.65s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.28);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.25);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

html.rtl { direction: rtl; }
html.rtl body { font-family: var(--font-arabic); }
html.rtl .navbar-links { flex-direction: row-reverse; }
html.rtl .footer-grid { direction: rtl; }
html.rtl .hero-content { text-align: right; }
html.rtl .section-header { text-align: right; }
html.rtl .contact-grid { direction: rtl; }
html.rtl .about-intro-grid { direction: rtl; }
html.rtl .service-card { text-align: right; }
html.rtl .stat-item { direction: rtl; }
html.rtl .timeline-item:nth-child(odd) .timeline-content { text-align: right; }
html.rtl .process-step { text-align: right; }
html.rtl .info-card { text-align: right; }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }
html.rtl h1, html.rtl h2, html.rtl h3, html.rtl h4 { font-family: var(--font-arabic); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 100px 0; }
.section-dark { background: var(--dark-2); color: var(--text-light); }
.section-cream { background: var(--cream); }
.section-light { background: var(--light); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: inherit;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(240,236,228,0.6); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(9,9,9,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
html.rtl .navbar-logo { font-family: var(--font-arabic); }
.navbar-logo span { color: var(--gold); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 700;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 4px;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
html.rtl .navbar-links a::after { left: auto; right: 0; }
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }
.navbar-links a:hover,
.navbar-links a.active { color: var(--gold); }
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-btn {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  padding: 6px 16px;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  letter-spacing: 0;
}
.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
html.rtl .mobile-menu a { font-family: var(--font-arabic); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .lang-btn { font-size: 1rem; margin-top: 20px; }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 6s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,9,9,0.9) 0%,
    rgba(9,9,9,0.4) 50%,
    rgba(9,9,9,0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
html.rtl .hero-tagline::before { display: none; }
html.rtl .hero-tagline::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(240,236,228,0.75);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: 60px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 40px; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-gold);
}
.service-card {
  background: var(--white);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; color: var(--dark-2); }
html.rtl .service-card h3 { font-family: var(--font-arabic); }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== WHY CHOOSE ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
}
.why-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--border-gold);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; color: var(--text-light); }
html.rtl .why-card h3 { font-family: var(--font-arabic); }
.why-card p { font-size: 0.88rem; color: rgba(240,236,228,0.55); line-height: 1.7; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 60px 24px;
  border-right: 1px solid var(--border-gold);
  position: relative;
}
.stat-item:last-child { border-right: none; }
html.rtl .stat-item { border-right: none; border-left: 1px solid var(--border-gold); }
html.rtl .stat-item:last-child { border-left: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.5);
  font-weight: 400;
}

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
}
.gallery-grid.masonry-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
}
.gallery-grid.masonry-5 {
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 220px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
  border-radius: 2px;
}
.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.12); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.88) 0%, rgba(9,9,9,0.18) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}
.overlay-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  font-family: var(--font-sans);
}
.expand-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 300;
  border-radius: 50%;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.gallery-item:hover .expand-icon {
  transform: scale(1) rotate(0deg);
}
.gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.gallery-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.gallery-section-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-2);
}
.gallery-section-title .gallery-cat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--border-gold);
}
.gallery-category { margin-bottom: 80px; padding: 0 40px; }
.gallery-category:last-child { margin-bottom: 0; }
.gallery-cat-header {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.gallery-cat-header h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-2);
}
html.rtl .gallery-cat-header h3 { font-family: var(--font-arabic); }
.gallery-cat-header p { font-size: 0.9rem; color: var(--text-muted); max-width: 400px; }
.video-item { aspect-ratio: 16/9; }
.video-item video { width: 100%; height: 100%; object-fit: cover; }

/* ===== HOME GALLERY SECTIONS ===== */
.home-gallery { padding: 100px 0; }
.home-gallery-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 40px;
}
.home-gallery-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
}
.gallery-home-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  height: 600px;
}
.g-featured { grid-column: span 5; grid-row: span 2; }
.g-standard { grid-column: span 4; }
.g-wide { grid-column: span 7; }
.g-tall { grid-column: span 3; grid-row: span 2; }

/* ===== TESTIMONIALS ===== */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-4);
  padding: 40px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
html.rtl .testimonial-card::before { left: auto; right: 24px; }
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars span { color: var(--gold); font-size: 0.9rem; }
.testimonial-card p {
  font-size: 0.92rem;
  color: rgba(240,236,228,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--border-gold);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
}
.author-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--text-light); }
html.rtl .author-info h4 { font-family: var(--font-arabic); }
.author-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-2);
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
html.rtl .cta-content h2 { font-family: var(--font-arabic); }
.cta-content p { font-size: 1rem; color: rgba(240,236,228,0.65); margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  height: 75vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: center center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(9,9,9,0.75) 0%,
    rgba(9,9,9,0.4) 50%,
    rgba(9,9,9,0.82) 100%
  );
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.page-hero-content .breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.page-hero-content .breadcrumb a {
  color: var(--gold);
  transition: opacity 0.2s ease;
}
.page-hero-content .breadcrumb a:hover { opacity: 0.75; }
.page-hero-ornament {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 22px;
  position: relative;
}
.page-hero-ornament::before,
.page-hero-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.page-hero-ornament::before { left: -12px; }
.page-hero-ornament::after  { right: -12px; }
.page-hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}
html.rtl .page-hero-content h1 { font-family: var(--font-arabic); }
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(240,236,228,0.68);
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
html.rtl .page-hero-subtitle { font-family: var(--font-arabic); }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-text .label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.about-intro-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 24px;
}
html.rtl .about-intro-text h2 { font-family: var(--font-arabic); }
.about-intro-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.about-intro-img {
  position: relative;
  height: 520px;
}
.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro-img .img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
html.rtl .about-intro-img .img-badge { right: auto; left: -20px; }
.img-badge .badge-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.img-badge .badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-service-card {
  padding: 40px 32px;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-service-card:hover {
  background: var(--dark-3);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.about-service-card .card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border-gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.about-service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}
html.rtl .about-service-card h3 { font-family: var(--font-arabic); }
.about-service-card p { font-size: 0.88rem; color: rgba(240,236,228,0.55); line-height: 1.7; }

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 0 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 6%, var(--gold) 94%, transparent 100%);
  transform: translateX(-50%);
  opacity: 0.45;
}
html.rtl .timeline::before { left: auto; right: 50%; transform: translateX(50%); }

.timeline-item {
  position: relative;
  width: calc(50% - 44px);
  margin-bottom: 40px;
  padding: 28px 32px 24px;
  background: var(--white);
  border: 1px solid var(--border-gold);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.timeline-item:hover {
  border-color: rgba(201,169,110,0.7);
  box-shadow: 0 6px 24px rgba(201,169,110,0.12);
}

/* Odd → LEFT side */
.timeline-item:nth-child(odd) {
  margin-right: calc(50% + 44px);
}
.timeline-item:nth-child(odd)::after {
  content: '';
  position: absolute;
  right: -52px;
  top: 28px;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

/* Even → RIGHT side */
.timeline-item:nth-child(even) {
  margin-left: calc(50% + 44px);
}
.timeline-item:nth-child(even)::after {
  content: '';
  position: absolute;
  left: -52px;
  top: 28px;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

/* Dot at center line */
.timeline-dot {
  position: absolute;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border: 3px solid var(--cream);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(201,169,110,0.18);
}
.timeline-item:nth-child(odd) .timeline-dot {
  right: -51px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -51px;
}

/* RTL flips */
html.rtl .timeline-item:nth-child(odd) { margin-right: 0; margin-left: calc(50% + 44px); }
html.rtl .timeline-item:nth-child(odd)::after { right: auto; left: -52px; }
html.rtl .timeline-item:nth-child(odd) .timeline-dot { right: auto; left: -51px; }
html.rtl .timeline-item:nth-child(even) { margin-left: 0; margin-right: calc(50% + 44px); }
html.rtl .timeline-item:nth-child(even)::after { left: auto; right: -52px; }
html.rtl .timeline-item:nth-child(even) .timeline-dot { left: auto; right: -51px; }

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  letter-spacing: 0;
}
html.rtl .timeline-year { font-family: var(--font-arabic); font-size: 1.3rem; }
.timeline-item h3 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
html.rtl .timeline-item h3 { font-family: var(--font-arabic); }
.timeline-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-gold);
}
.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.step-num {
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  background: var(--dark-2);
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1rem; font-weight: 600; color: var(--text-light); margin-bottom: 8px; }
html.rtl .process-step h3 { font-family: var(--font-arabic); }
.process-step p { font-size: 0.82rem; color: rgba(240,236,228,0.5); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 16px;
}
html.rtl .contact-info h2 { font-family: var(--font-arabic); }
.contact-info > p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 48px; line-height: 1.8; }
.info-cards { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.info-card h4 { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
html.rtl .info-card h4 { font-family: var(--font-arabic); }
.info-card p { font-size: 0.92rem; color: var(--text-muted); }
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

.contact-form-wrapper { background: var(--cream); padding: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-3);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
html.rtl .form-group input,
html.rtl .form-group select,
html.rtl .form-group textarea {
  font-family: var(--font-arabic);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.map-wrapper {
  margin-top: 80px;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .navbar-logo {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(240,236,228,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
html.rtl .footer-col h4 { font-family: var(--font-arabic); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(240,236,228,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
html.rtl .footer-col ul li a:hover { padding-left: 0; padding-right: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(240,236,228,0.5); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(240,236,228,0.3);
  letter-spacing: 0.05em;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a { font-size: 0.78rem; color: rgba(240,236,228,0.3); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
html.rtl .whatsapp-btn { right: auto; left: 36px; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-in-out infinite;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 48px;
  height: 48px;
  background: var(--dark-4);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.4rem;
}
.lightbox-nav:hover { background: var(--gold); color: var(--dark); }
.lightbox-prev { left: -72px; }
.lightbox-next { right: -72px; }
.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
}

/* ===== PAGE HERO SECTIONS ===== */
.curtains-intro, .furniture-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.curtains-intro p, .furniture-intro p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.gallery-category-dark {
  background: var(--dark-2);
  padding: 80px 0;
  margin: 0;
}
.gallery-category-dark .gallery-cat-header h3 { color: var(--text-light); }
html.rtl .gallery-category-dark .gallery-cat-header h3 { font-family: var(--font-arabic); }
.gallery-category-dark .gallery-cat-header p { color: rgba(240,236,228,0.5); }

/* ===== COLLECTIONS OVERVIEW (Curtains Page) ===== */
.collections-overview {
  padding: 100px 0;
  background: var(--dark);
}
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 8px;
}
.coll-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  background: var(--dark-3);
}
.coll-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.coll-card-img {
  position: absolute;
  inset: 0;
}
.coll-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.4,0,0.2,1);
}
.coll-card:hover .coll-card-img img { transform: scale(1.1); }
.coll-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(9,9,9,0.92) 0%, rgba(9,9,9,0.28) 50%, transparent 75%);
  transition: background 0.4s ease;
}
.coll-card:hover .coll-card-overlay {
  background: linear-gradient(to top, rgba(9,9,9,0.97) 0%, rgba(9,9,9,0.55) 55%, rgba(9,9,9,0.12) 100%);
}
.coll-card-num {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  z-index: 2;
  opacity: 0.85;
}
html.rtl .coll-card-num { left: auto; right: 26px; }
.coll-card-info {
  position: relative;
  z-index: 2;
}
.coll-card-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
  transition: transform 0.35s ease;
}
html.rtl .coll-card-info h3 { font-family: var(--font-arabic); }
.coll-card:first-child .coll-card-info h3 { font-size: 1.75rem; }
.coll-card:hover .coll-card-info h3 { transform: translateY(-4px); }
.coll-card-info p {
  font-size: 0.82rem;
  color: rgba(240,236,228,0.68);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease;
  font-family: var(--font-sans);
}
html.rtl .coll-card-info p { font-family: var(--font-arabic); }
.coll-card:hover .coll-card-info p {
  max-height: 80px;
  opacity: 1;
  margin-top: 10px;
}
.coll-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-top: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s, margin-top 0.35s ease;
  position: relative;
  z-index: 2;
}
.coll-card:hover .coll-card-arrow {
  opacity: 1;
  transform: translateY(0);
  margin-top: 16px;
}
.coll-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.45s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
}
html.rtl .coll-card::after { left: auto; right: 0; }
.coll-card:hover::after { height: 100%; }
.coll-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* ===== LOAD MORE ===== */
.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 64px;
  max-width: 200px;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}
.gold-divider-icon {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gallery-grid.masonry-3 { grid-auto-rows: 220px; }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-img { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrapper { padding: 32px 24px; }
  .testimonials-track { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-grid::before { display: none; }
  .about-services-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 20px; transform: none; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) { width: calc(100% - 52px); margin-left: 52px; margin-right: 0; }
  .timeline-item::after,
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after { display: none; }
  .timeline-item .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { left: -39px; right: auto; top: 18px; }
  html.rtl .timeline::before { right: 20px; left: auto; }
  html.rtl .timeline-item,
  html.rtl .timeline-item:nth-child(odd),
  html.rtl .timeline-item:nth-child(even) { margin-left: 0; margin-right: 52px; }
  html.rtl .timeline-item .timeline-dot,
  html.rtl .timeline-item:nth-child(odd) .timeline-dot,
  html.rtl .timeline-item:nth-child(even) .timeline-dot { right: -39px; left: auto; }
  .gallery-home-grid { height: auto; grid-template-columns: repeat(2, 1fr); }
  .g-featured, .g-wide, .g-standard, .g-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-grid.masonry-5 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .form-row { grid-template-columns: 1fr; }
  .coll-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 260px);
  }
  .coll-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding-bottom: 60px; }
  .hero-btns { flex-direction: column; }
  .btn { padding: 13px 28px; font-size: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid var(--border-gold); border-right: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-grid.masonry-3 { grid-auto-rows: 160px; }
  .gallery-grid.masonry-5 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.gallery-featured { grid-column: span 1; grid-row: span 1; }
  .page-hero { height: 55vh; min-height: 380px; }
  .about-services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-dots { right: 24px; }
  .whatsapp-btn { bottom: 24px; right: 20px; width: 52px; height: 52px; }
  html.rtl .whatsapp-btn { right: auto; left: 20px; }
  .lightbox-prev { left: -16px; }
  .lightbox-next { right: -16px; }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-category { padding: 0 24px; }
  .coll-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .coll-card,
  .coll-card:first-child {
    grid-column: span 1;
    grid-row: span 1;
    height: 260px;
  }
  .collections-overview { padding: 70px 0; }
}
