/* ============================================================
   Nour Interior Design - Main Stylesheet
   Luxury Dark Gold Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a07840;
  --black: #080808;
  --dark: #111111;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --dark-4: #262626;
  --border: rgba(201,169,110,0.15);
  --border-light: rgba(255,255,255,0.06);
  --text: #f0ece4;
  --text-muted: #8a8078;
  --text-light: #c8c0b4;
  --white: #ffffff;
  --ff-ar: 'Noto Sans Arabic', 'IBM Plex Sans Arabic', sans-serif;
  --ff-en: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', sans-serif;
  --ff-display: 'IBM Plex Sans Arabic', 'Noto Sans Arabic', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(201,169,110,0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

body * { font-family: var(--ff-ar); }
body .en-font { font-family: var(--ff-en); }

::selection { background: var(--gold); color: var(--black); }

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

/* ---- Custom Cursor ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.cursor.hover { transform: translate(-50%, -50%) scale(0); }
.cursor-follower.hover { width: 60px; height: 60px; opacity: 1; border-color: var(--gold-light); }

/* ---- Page Loader ---- */
#page-loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.loader-logo {
  font-family: var(--ff-ar);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0;
  animation: loaderFadeIn 0.8s 0.3s forwards;
  letter-spacing: 2px;
}

.loader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.5s 0.5s ease-out forwards;
}

.loader-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFadeIn 0.8s 0.8s forwards;
}

@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderLine { to { width: 200px; } }

#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 14px 0;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

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

.nav-logo .logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo .logo-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  padding: 11px 28px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-cta span { position: relative; z-index: 1; }

.nav-cta:hover {
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover::before { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Language Switcher ---- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201,169,110,0.04);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.lang-switcher:hover {
  background: rgba(201,169,110,0.12);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,169,110,0.15);
}

.lang-flag { font-size: 0.9rem; }
.lang-code { color: var(--gold); }

@media (max-width: 992px) {
  .lang-switcher { display: none; }
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

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

.nav-mobile .nav-link {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

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

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

@keyframes heroParallax {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.15) translateY(-20px); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 70%),
              linear-gradient(to left, rgba(201,169,110,0.05) 0%, transparent 50%),
              linear-gradient(to top, var(--black) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat var(--duration, 8s) var(--delay, 0s) infinite linear;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20px) translateX(var(--drift, 40px)); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(201,169,110,0); }
}

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

.hero-title .highlight {
  color: var(--gold);
  font-family: var(--ff-display);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 520px;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(201,169,110,0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,169,110,0.5);
  color: var(--black);
}

.btn-primary:hover::after { opacity: 1; }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold-light);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-ghost:hover { color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: var(--ff-display);
}

.hero-stat .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
}

.hero-main-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}

.hero-main-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,8,0.7) 100%);
  z-index: 1;
}

.hero-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-main-img-wrapper:hover .hero-main-img { transform: scale(1.05); }

.hero-float-card {
  position: absolute;
  background: rgba(22,22,22,0.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 4s ease-in-out infinite;
  z-index: 2;
  box-shadow: var(--shadow);
}

.hero-float-card:nth-child(2) { top: 14%; left: -14%; animation-delay: -2s; }
.hero-float-card:nth-child(3) { bottom: 18%; left: -10%; animation-delay: -1s; }

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

.float-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}

.float-info .title { font-size: 0.75rem; color: var(--text-muted); }
.float-info .value { font-size: 0.95rem; font-weight: 700; color: var(--white); }

/* ---- Section Base ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '—';
  color: var(--gold-dark);
  margin: 0 8px;
  opacity: 0.5;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 18px;
}

.section-title .gold { color: var(--gold); }
.section-title .italic { font-family: var(--ff-display); font-style: italic; }

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 24px auto 0;
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px rgba(201,169,110,0.05);
}

.service-card:hover::before { transform: scaleX(1); transform-origin: left; }

.service-icon {
  width: 64px; height: 64px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.service-number {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  font-family: var(--ff-display);
  line-height: 1;
  pointer-events: none;
}

/* ---- Projects Grid ---- */
.projects-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  background: transparent;
  font-family: inherit;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}

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

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--dark-2);
}

.project-card:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.project-card:nth-child(4) { grid-column: span 2; aspect-ratio: 16/9; }

.project-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

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

.project-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-info { transform: translateY(0); }

.project-cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  background: rgba(201,169,110,0.15);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(201,169,110,0.2);
}

.project-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.project-meta i { color: var(--gold); font-size: 0.7rem; }

.project-badges {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-3d { background: rgba(99,102,241,0.85); color: white; }
.badge-4k { background: rgba(239,68,68,0.85); color: white; }
.badge-vr { background: rgba(16,185,129,0.85); color: white; }
.badge-2d { background: rgba(245,158,11,0.85); color: white; }

.project-hover-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.project-card:hover .project-hover-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.about-images {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}

.about-main-img img { width: 100%; height: 100%; object-fit: cover; }

.about-secondary-img {
  position: absolute;
  bottom: -30px; left: -30px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.about-secondary-img img { width: 100%; height: 100%; object-fit: cover; }

.about-exp-badge {
  position: absolute;
  top: 24px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201,169,110,0.4);
}

.about-exp-badge .exp-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--ff-display);
}

.about-exp-badge .exp-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.about-feature i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ---- Team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.team-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.team-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

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

.team-card:hover .team-img img { transform: scale(1.07); }

.team-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8) 0%, transparent 60%);
}

.team-social {
  position: absolute;
  bottom: 16px; right: 0; left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.team-card:hover .team-social { opacity: 1; transform: translateY(0); }

.team-social a {
  width: 36px; height: 36px;
  background: rgba(201,169,110,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.team-social a:hover { background: var(--white); }

.team-info {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ---- Testimonials ---- */
.testimonials-section { background: var(--dark); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 30px;
  font-size: 8rem;
  color: rgba(201,169,110,0.06);
  font-family: var(--ff-display);
  font-style: italic;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating i { color: var(--gold); font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-photo {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.author-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.author-title { font-size: 0.78rem; color: var(--text-muted); }

/* ---- Stats Bar ---- */
.stats-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%; left: 0;
  width: 1px; height: 60%;
  background: var(--border);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--ff-display);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 1px;
}

/* ---- Contact ---- */
.contact-section { background: var(--dark); }

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

.contact-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-info-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  direction: ltr;
  text-align: right;
}

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

.social-link {
  width: 44px; height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ---- Contact Form ---- */
.contact-form {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
}

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

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

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition-fast);
  direction: rtl;
  outline: none;
}

.form-control:focus {
  border-color: rgba(201,169,110,0.5);
  background: var(--dark-4);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.08);
}

.form-control::placeholder { color: var(--text-muted); opacity: 0.7; }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control option { background: var(--dark-2); }

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-link::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.footer-link:hover { color: var(--gold-light); }
.footer-link:hover::before { opacity: 1; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  color: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ---- Scroll to top ---- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 48px; height: 48px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ---- Animations (Scroll Reveal) ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ---- Virtual Tour Section ---- */
.virtual-tour-section {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.virtual-tour-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  aspect-ratio: 16/9;
  box-shadow: var(--shadow);
}

.virtual-tour-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
}

.virtual-tour-placeholder .vr-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.6;
}

.vt-play-btn {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 0 rgba(201,169,110,0.5);
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(201,169,110,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
}

/* ---- Gallery Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content { transform: scale(1); }

.modal-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }

.modal-close {
  position: absolute;
  top: -50px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ---- Toast Notification ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  color: var(--text);
  font-size: 0.88rem;
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { border-color: rgba(16,185,129,0.5); }
.toast.success i { color: #10b981; }
.toast.error { border-color: rgba(239,68,68,0.5); }
.toast.error i { color: #ef4444; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .hero-content { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 992px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 50px; padding-top: 60px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:nth-child(1) { grid-column: span 2; }
  .project-card:nth-child(4) { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stat-item::after { display: none; }
}

@media (max-width: 640px) {
  .section-inner { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .hero-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(n) { grid-column: span 1; aspect-ratio: 4/3; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 28px 20px; }
  .hero-stats { gap: 20px; }
  .hero-stat .number { font-size: 1.5rem; }
}

/* =============================================================
   LTR Overrides — English Mode   [dir="ltr"]
   ============================================================= */

/* Base text alignment */
[dir="ltr"] .section-title,
[dir="ltr"] .section-desc,
[dir="ltr"] .section-label { text-align: left; }

[dir="ltr"] .section-header { text-align: left; }
[dir="ltr"] .section-divider { margin-left: 0; margin-right: auto; }

/* Hero */
[dir="ltr"] .hero-title,
[dir="ltr"] .hero-subtitle { text-align: left; }
[dir="ltr"] .hero-actions { justify-content: flex-start; }
[dir="ltr"] .hero-stats   { justify-content: flex-start; }
[dir="ltr"] .hero-badge   { justify-content: flex-start; }

/* About */
[dir="ltr"] .about-text  { text-align: left; }
[dir="ltr"] .about-grid  { direction: ltr; }
[dir="ltr"] .about-exp-badge { right: auto; left: -16px; }
[dir="ltr"] .about-secondary-img { right: auto; left: -24px; }
[dir="ltr"] .about-features { direction: ltr; }
[dir="ltr"] .about-feature { text-align: left; }

/* Services */
[dir="ltr"] .service-title,
[dir="ltr"] .service-desc { text-align: left; }
[dir="ltr"] .service-number { right: auto; left: 20px; }
[dir="ltr"] .service-card { text-align: left; }

/* Projects */
[dir="ltr"] .project-info { text-align: left; }
[dir="ltr"] .project-meta { justify-content: flex-start; }
[dir="ltr"] .projects-filter { justify-content: flex-start; }

/* Stats */
[dir="ltr"] .stat-item { text-align: center; }
[dir="ltr"] .stat-item::after { right: auto; left: 0; }

/* Team */
[dir="ltr"] .team-info { text-align: left; }
[dir="ltr"] .team-name,
[dir="ltr"] .team-role,
[dir="ltr"] .team-bio { text-align: left; }

/* Testimonials */
[dir="ltr"] .testimonial-text  { text-align: left; }
[dir="ltr"] .testimonial-author { justify-content: flex-start; }
[dir="ltr"] .testimonial-rating { text-align: left; }

/* Contact */
[dir="ltr"] .contact-info-title,
[dir="ltr"] .contact-info-text,
[dir="ltr"] .contact-item-label,
[dir="ltr"] .contact-item-value { text-align: left; }
[dir="ltr"] .contact-item { flex-direction: row; }

/* Footer */
[dir="ltr"] .footer               { direction: ltr; }
[dir="ltr"] .footer-brand          { direction: ltr; }
[dir="ltr"] .footer-logo,
[dir="ltr"] .footer-desc,
[dir="ltr"] .footer-title,
[dir="ltr"] .footer-col-title,
[dir="ltr"] .footer-link           { text-align: left; }
[dir="ltr"] .footer-col-title::after { right: auto; left: 0; }
[dir="ltr"] .footer-link::before   { right: auto; left: 0; padding-right: 0; padding-left: 18px; }
[dir="ltr"] .footer-contact-item   { text-align: left; flex-direction: row; }
[dir="ltr"] .footer-bottom         { flex-direction: row; text-align: left; }

/* Navbar LTR — logo left, links center, CTA right */
[dir="ltr"] .nav-container  { direction: ltr; }
[dir="ltr"] .nav-links      { flex-direction: row; }
[dir="ltr"] .nav-link::after { right: auto; left: 0; }
[dir="ltr"] .nav-cta::before { transform-origin: left; }

/* Hero LTR — text left, image right */
[dir="ltr"] .hero-content { direction: ltr; }
[dir="ltr"] .hero-float-card:nth-child(2) { left: auto; right: -14%; }
[dir="ltr"] .hero-float-card:nth-child(3) { left: auto; right: -10%; }

/* Section divider LTR — gradient goes gold→transparent from left */
[dir="ltr"] .section-divider {
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-left: 0;
  margin-right: auto;
}

/* Buttons */
[dir="ltr"] .btn-primary,
[dir="ltr"] .btn-outline { flex-direction: row; }

/* Forms */
[dir="ltr"] .form-label,
[dir="ltr"] .form-control { text-align: left; }

/* Breadcrumb */
[dir="ltr"] .breadcrumb { direction: ltr; }

/* Project detail */
[dir="ltr"] .project-stat-label,
[dir="ltr"] .project-stat-value { text-align: left; }

/* Section header flex layout (projects section) */
[dir="ltr"] .section-header[style*="justify-content:space-between"] { text-align: left; }

/* Always centered — overrides LTR left-align for CTA and similar sections */
.section-centered,
.section-centered .section-title,
.section-centered .section-desc,
.section-centered .section-label { text-align: center; }
[dir="ltr"] .section-centered,
[dir="ltr"] .section-centered .section-title,
[dir="ltr"] .section-centered .section-desc,
[dir="ltr"] .section-centered .section-label { text-align: center; }
[dir="ltr"] .section-centered .section-divider { margin-left: auto; margin-right: auto; }
