:root {
  --black: #f7f6f2;
  --dark: #ffffff;
  --dark-2: #f0efe9;
  --dark-3: #e6e5de;
  --primary: #C8A45C;
  --primary-dark: #A8883B;
  --primary-light: #E8C87A;
  --primary-glow: rgba(200, 164, 92, 0.15);
  --whatsapp: #0a7a3c;
  --whatsapp-light: #18c969;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-muted: #777777;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-en: 'Roboto', sans-serif;
  --font-ar: 'Tajawal', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-en);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] {
  font-family: var(--font-ar);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

@media (max-width: 480px) {
  .container { padding: 0 20px; }
}

.section {
  padding: 120px 0;
}

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

[dir="rtl"] .section-header {
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.12), rgba(200, 164, 92, 0.05));
  color: var(--primary-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(200, 164, 92, 0.15);
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[dir="rtl"] .section-header h2 {
  font-family: var(--font-ar);
  font-weight: 700;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

[dir="rtl"] .section-sub {
  font-family: var(--font-ar);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-en);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

[dir="rtl"] .btn {
  font-family: var(--font-ar);
  font-weight: 500;
}

.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 16px 40px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--primary-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(200, 164, 92, 0.05);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(10, 122, 60, 0.35);
}

/* Language Switcher */
.lang-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  color: var(--black);
  background: var(--primary);
  border: 1px solid var(--primary);
  letter-spacing: 0.5px;
  font-family: 'Tajawal', sans-serif;
  line-height: 1;
}

.lang-btn:hover {
  background: #b8943c;
  border-color: #b8943c;
}

/* ============ TOP BAR ============ */
.top-bar {
  background: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

[dir="rtl"] .top-bar-inner {
  flex-direction: row-reverse;
}

.top-bar-contact { display: flex; gap: 28px; }

[dir="rtl"] .top-bar-contact {
  flex-direction: row-reverse;
}

.top-bar-contact a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.top-bar-contact a:hover { color: var(--primary); }

.top-bar-social { display: flex; gap: 12px; }

[dir="rtl"] .top-bar-social {
  flex-direction: row-reverse;
}

.top-bar-social a {
  color: var(--text-muted);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 12px;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(200, 164, 92, 0.05);
}

/* ============ NAVIGATION ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 246, 242, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  font-size: 26px;
  color: var(--primary);
  animation: sparkle 3s infinite;
}

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

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-text small {
  font-size: 14px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: none;
}

.nav-links { display: flex; gap: 36px; }

.nav-links > li > a {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--primary); }

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

.dropdown { position: relative; }

.dropdown > a i { font-size: 10px; margin-left: 4px; }

[dir="rtl"] .dropdown > a i { margin-left: 0; margin-right: 4px; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  min-width: 270px;
  padding: 12px 0;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

[dir="rtl"] .dropdown-menu {
  left: auto;
  right: -20px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  color: var(--text);
  font-size: 13px;
  border-left: 2px solid transparent;
}

[dir="rtl"] .dropdown-menu li a {
  border-left: none;
  border-right: 2px solid transparent;
}

.dropdown-menu li a:hover {
  background: rgba(200, 164, 92, 0.04);
  color: var(--primary);
  border-left-color: var(--primary);
}

[dir="rtl"] .dropdown-menu li a:hover {
  border-left-color: transparent;
  border-right-color: var(--primary);
}

.nav-actions { display: flex; align-items: center; gap: 10px; }

[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-en);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--whatsapp);
  color: var(--white);
}

[dir="rtl"] .btn-whatsapp-nav {
  font-family: var(--font-ar);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.btn-whatsapp-nav:hover {
  background: var(--whatsapp-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(10, 122, 60, 0.35);
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  display: block;
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  --text: #cccccc;
  --text-muted: #888888;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(200, 164, 92, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.15), rgba(200, 164, 92, 0.05));
  color: var(--primary-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 28px;
  border: 1px solid rgba(200, 164, 92, 0.2);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 68px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[dir="rtl"] .hero h1 {
  font-family: var(--font-ar);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.hero p {
  font-size: 18px;
  color: var(--text);
  opacity: 0.8;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

[dir="rtl"] .hero p {
  font-family: var(--font-ar);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}

.hero-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-brands span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brand-logos {
  display: flex;
  gap: 10px;
}

.brand-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}

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

/* ============ ABOUT ============ */
.about {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  position: relative;
}

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

.about-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
  opacity: 0.85;
}

[dir="rtl"] .about-content p {
  font-family: var(--font-ar);
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}

.about-badges span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 500;
}

.about-badges span i { font-size: 18px; }

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 164, 92, 0.2);
  padding: 20px 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exp-number {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.exp-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============ SERVICES ============ */
.services {
  background: var(--black);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: var(--transition);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(200, 164, 92, 0.05) 0%, rgba(0,0,0,0.95) 100%);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.15), rgba(200, 164, 92, 0.05));
  border: 1px solid rgba(200, 164, 92, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.service-card h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

[dir="rtl"] .service-card h3 {
  font-family: var(--font-ar);
}

.service-card p {
  font-size: 13px;
  color: var(--white);
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 16px;
}

[dir="rtl"] .service-card p {
  font-family: var(--font-ar);
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* ============ VIDEO ============ */
.video-section {
  background: var(--dark);
  padding: 100px 0;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* ============ CTA ============ */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  --text: #cccccc;
  --text-muted: #888888;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 44px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

[dir="rtl"] .cta-section h2 {
  font-family: var(--font-ar);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.cta-section p {
  font-size: 18px;
  color: var(--text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 36px;
}

[dir="rtl"] .cta-section p {
  font-family: var(--font-ar);
}

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

[dir="rtl"] .cta-actions {
  flex-direction: row-reverse;
}

/* ============ WHY US ============ */
.why-us { background: var(--dark); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.why-card:hover {
  border-color: rgba(200, 164, 92, 0.15);
  background: rgba(200, 164, 92, 0.02);
  transform: translateY(-4px);
}

.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.1), rgba(200, 164, 92, 0.02));
  border: 1px solid rgba(200, 164, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 24px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.15), rgba(200, 164, 92, 0.05));
  transform: scale(1.05);
}

.why-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}

[dir="rtl"] .why-card h3 {
  font-family: var(--font-ar);
}

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

[dir="rtl"] .why-card p {
  font-family: var(--font-ar);
}

/* ============ STATS ============ */
.stats-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-2), var(--black));
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200, 164, 92, 0.03) 0%, transparent 60%);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  display: inline;
}

.stat-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

[dir="rtl"] .stat-label {
  font-family: var(--font-ar);
  text-transform: none;
  letter-spacing: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--black); }

.testimonials-slider {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: 48px 48px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

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

.testimonial-stars {
  color: var(--primary);
  font-size: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  opacity: 0.85;
  font-style: italic;
  margin-bottom: 28px;
}

[dir="rtl"] .testimonial-card p {
  font-family: var(--font-ar);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 18px;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: 15px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-3);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 36px;
  border-radius: 5px;
}

/* ============ GALLERY ============ */
.gallery { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* ============ MAP ============ */
.map-section {
  background: var(--dark-2);
  padding: 80px 0;
}

/* ============ CONTACT ============ */
.contact {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(200, 164, 92, 0.03) 0%, transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.1), rgba(200, 164, 92, 0.02));
  border: 1px solid rgba(200, 164, 92, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item a,
.contact-item p {
  font-size: 16px;
  color: var(--text);
}

.contact-item a:hover { color: var(--primary); }

.contact-cta {
  margin-top: 20px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.08), rgba(200, 164, 92, 0.02));
  border: 1px solid rgba(200, 164, 92, 0.15);
  border-radius: 16px;
}

.contact-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-form {
  background: var(--dark-2);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 24px;
}

[dir="rtl"] .contact-form h3 {
  font-family: var(--font-ar);
}

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

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group select,
[dir="rtl"] .form-group textarea {
  font-family: var(--font-ar);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

[dir="rtl"] .form-group select {
  background-position: left 16px center;
}

.form-group select option { background: var(--white); color: var(--text); }

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  padding-top: 80px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 20px 0;
  opacity: 0.7;
}

[dir="rtl"] .footer-brand p {
  font-family: var(--font-ar);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(200, 164, 92, 0.05);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links ul li a,
.footer-contact ul li a {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-contact ul li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-light));
  border-radius: 50px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(10, 122, 60, 0.4);
  transition: var(--transition);
  font-family: var(--font-en);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 24px;
  font-family: var(--font-ar);
  text-transform: none;
  letter-spacing: 0;
}

.whatsapp-float i {
  font-size: 24px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(10, 122, 60, 0.55);
  color: var(--white);
}

.whatsapp-float span {
  white-space: nowrap;
}

/* ============ LANGUAGE-SPECIFIC HIDE/SHOW ============ */
[data-lang] {
  display: none !important;
}

[data-lang="en"] {
  display: block !important;
}

[dir="rtl"] [data-lang="en"] {
  display: none !important;
}

[dir="rtl"] [data-lang="ar"] {
  display: block !important;
}

body span.lang-en, body p.lang-en, body h1.lang-en, body h2.lang-en, body h3.lang-en, body h4.lang-en, body div.lang-en, body a.lang-en, body li.lang-en { display: inline; }
body span.lang-ar, body p.lang-ar, body h1.lang-ar, body h2.lang-ar, body h3.lang-ar, body h4.lang-ar, body div.lang-ar, body a.lang-ar, body li.lang-ar { display: none; }
[dir="rtl"] span.lang-en, [dir="rtl"] p.lang-en, [dir="rtl"] h1.lang-en, [dir="rtl"] h2.lang-en, [dir="rtl"] h3.lang-en, [dir="rtl"] h4.lang-en, [dir="rtl"] div.lang-en, [dir="rtl"] a.lang-en, [dir="rtl"] li.lang-en { display: none; }
[dir="rtl"] span.lang-ar, [dir="rtl"] p.lang-ar, [dir="rtl"] h1.lang-ar, [dir="rtl"] h2.lang-ar, [dir="rtl"] h3.lang-ar, [dir="rtl"] h4.lang-ar, [dir="rtl"] div.lang-ar, [dir="rtl"] a.lang-ar, [dir="rtl"] li.lang-ar { display: inline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .top-bar-inner { flex-direction: column; gap: 8px; }
  [dir="rtl"] .top-bar-inner { flex-direction: column; }
  .top-bar-contact { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .top-bar-contact a { font-size: 11px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links.open { display: flex; }

  .nav-links > li > a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 0 16px;
    display: none;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu { display: block; }
  .dropdown.open > a i { transform: rotate(180deg); }

  .nav-actions .btn-sm:not(.btn-whatsapp) { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 90vh; align-items: flex-start; padding-top: 60px; }
  .hero-content { padding: 40px 0; }
  .hero-badge { font-size: 10px; padding: 8px 18px; letter-spacing: 2px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 15px; max-width: 100%; }
  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-brands { flex-direction: column; align-items: center; gap: 12px; }
  .brand-logos { flex-wrap: wrap; }
  .nav-actions { gap: 6px; }
  .btn-whatsapp-nav { font-size: 11px; padding: 8px 12px; gap: 6px; }
  .nav-links { top: 76px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  .section { padding: 80px 0; }
  .section-header h2 { font-size: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 350px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .why-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-number, .stat-plus { font-size: 36px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-section h2 { font-size: 28px; }
  .cta-section { background-attachment: scroll; }

  .nav-actions .btn-whatsapp.btn-sm,
  .nav-actions .btn-whatsapp-nav {
    display: inline-flex;
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
  }

  .testimonial-card { padding: 32px 24px; }

  .whatsapp-float {
    padding: 12px 18px;
    font-size: 12px;
    bottom: 16px;
    right: 16px;
  }

  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 16px;
  }

  .whatsapp-float i {
    font-size: 20px;
  }

  .map-container iframe { height: 280px !important; }

  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .top-bar-contact a {
    font-size: 11px;
  }

}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .nav-inner { height: 68px; }
  .logo-text { font-size: 18px; }
  .logo-text small { font-size: 11px; }
  .logo-icon { font-size: 18px; }
  .logo img { height: 50px; }
  .nav-actions { gap: 4px; }
  .btn-whatsapp-nav { font-size: 10px; padding: 6px 8px; gap: 4px; }
  .btn-whatsapp-nav i { font-size: 14px; }
  .btn-whatsapp-nav span.nav-whatsapp-text { display: none; }
  .hamburger { padding: 4px; }
  .nav-links { top: 68px; }

  .hero { min-height: 85vh; padding-top: 40px; }
  .hero-content { padding: 20px 0; }
  .hero-badge { font-size: 8px; padding: 5px 12px; letter-spacing: 1.5px; margin-bottom: 16px; }
  .hero h1 { font-size: 32px; line-height: 1.1; letter-spacing: 0.5px; margin-bottom: 16px; }
  .hero p { font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { font-size: 13px; padding: 14px 24px; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 32px; }
  .section-badge { font-size: 9px; padding: 6px 16px; letter-spacing: 2px; margin-bottom: 14px; }
  .section-header h2 { font-size: 22px; margin-bottom: 12px; }
  .section-sub { font-size: 14px; }

  .about-grid { gap: 28px; }
  .about-image img { height: 240px; }
  .about-content p { font-size: 14px; }
  .about-badges span { font-size: 13px; }

  .service-card { min-height: 240px; }
  .service-card-content { padding: 20px 16px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 12px; }

  .why-card { padding: 28px 16px; }
  .why-icon { width: 56px; height: 56px; font-size: 22px; margin-bottom: 16px; }
  .why-card h3 { font-size: 16px; }
  .why-card p { font-size: 13px; }

  .stats-grid { gap: 16px; }
  .stat-number, .stat-plus { font-size: 28px; }
  .stat-label { font-size: 10px; }

  .testimonial-card { padding: 24px 16px; }
  .testimonial-card p { font-size: 14px; }

  .gallery-grid { gap: 8px; }
  .gallery-item { aspect-ratio: 4/3; }

  .contact-grid { gap: 28px; }
  .contact-form { padding: 20px; }
  .contact-form h3 { font-size: 18px; }
  .contact-info { gap: 20px; }
  .contact-item { gap: 14px; }
  .contact-icon { width: 44px; height: 44px; font-size: 16px; }
  .contact-item a, .contact-item p { font-size: 14px; }

  .footer { padding-top: 48px; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .footer-brand p { font-size: 13px; }
  .footer-social a { width: 36px; height: 36px; font-size: 12px; }

  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: 24px; }
  .cta-section p { font-size: 15px; }

  .video-section { padding: 48px 0; }

  .whatsapp-float span { display: none; }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    bottom: 16px;
    right: 16px;
  }
  [dir="rtl"] .whatsapp-float {
    right: auto;
    left: 16px;
  }
  .whatsapp-float i { font-size: 24px; }

  .map-container iframe { height: 240px !important; }
}
