/* ============================================================
   DASHA Interior Design — Main Stylesheet
   Luxury Minimal / Warm Modern / Saudi Premium
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --dark:       #0f0f0f;
  --dark-2:     #171717;
  --dark-3:     #1e1e1e;
  --dark-4:     #242424;
  --gold:       #C6A26A;
  --gold-light: #dbb87e;
  --gold-dim:   #8a6f46;
  --beige:      #E8DDCF;
  --cream:      #F6F0E8;
  --olive:      #7A7B4E;
  --white:      #FFFFFF;
  --gray:       #B8B8B8;
  --gray-2:     #888888;
  --gray-3:     #555555;

  --font-en-title: 'Playfair Display', Georgia, serif;
  --font-en-body:  'Inter', system-ui, sans-serif;
  --font-ar:       'Tajawal', 'Arial', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  48px;

  --shadow-gold: 0 0 40px rgba(198,162,106,0.18);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.6);
  --transition:  all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

body {
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.lang-ar {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
}
body.lang-en {
  font-family: var(--font-en-body);
  direction: ltr;
  text-align: left;
}

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 10px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--dark); }

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

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-en-title);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
body.lang-ar .section-title {
  font-family: var(--font-ar);
  font-weight: 700;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.8;
}

.gold-text { color: var(--gold); }
.gold-italic { color: var(--gold); font-style: italic; }

/* ── Divider ── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 24px 0;
}
body.lang-ar .gold-divider {
  background: linear-gradient(270deg, var(--gold), transparent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a8884e);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(198,162,106,0.4);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 35px rgba(198,162,106,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(198,162,106,0.1);
  box-shadow: 0 0 25px rgba(198,162,106,0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Fade In Animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }


/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(198,162,106,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-en-title);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  font-family: var(--font-en-body);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}

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

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--dark-3);
  border-radius: var(--radius-xl);
  padding: 4px;
  border: 1px solid rgba(198,162,106,0.2);
}
.lang-btn {
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition);
  letter-spacing: 0.5px;
  font-family: var(--font-en-body);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray);
  transition: var(--transition);
  padding: 8px 24px;
}
.mobile-nav a:hover { color: var(--gold); }


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/WhatsApp Image 2026-06-01 at 4.10.09 PM.jpeg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1.08); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.88) 0%,
    rgba(15,15,15,0.65) 50%,
    rgba(10,10,10,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,162,106,0.12);
  border: 1px solid rgba(198,162,106,0.3);
  border-radius: var(--radius-xl);
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-family: var(--font-en-body);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: var(--font-en-title);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
body.lang-ar .hero-title {
  font-family: var(--font-ar);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.2;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--beige);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 40px;
  opacity: 0.85;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-en-body);
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}


/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
#trust-bar {
  background: var(--dark-3);
  border-top: 1px solid rgba(198,162,106,0.15);
  border-bottom: 1px solid rgba(198,162,106,0.15);
  padding: 36px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  border-inline-end: 1px solid rgba(198,162,106,0.1);
  text-align: center;
}
.trust-item:last-child { border-inline-end: none; }

.trust-number {
  font-family: var(--font-en-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
#about {
  background: var(--dark-2);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
}

.about-image-frame {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(198,162,106,0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 32px;
  inset-inline-end: -24px;
  background: var(--dark-3);
  border: 1px solid rgba(198,162,106,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.about-badge-num {
  font-family: var(--font-en-title);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge-text {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-tag {
  background: rgba(198,162,106,0.08);
  border: 1px solid rgba(198,162,106,0.2);
  border-radius: var(--radius-xl);
  padding: 8px 18px;
  font-size: 13px;
  color: var(--gold);
}


/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#services {
  background: var(--dark);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .section-label { justify-content: center; }
.services-header .section-subtitle { margin: 0 auto; }

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

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198,162,106,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(198,162,106,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-gold);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(198,162,106,0.1);
  border: 1px solid rgba(198,162,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(198,162,106,0.2);
  box-shadow: 0 0 20px rgba(198,162,106,0.2);
}

.service-num {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  font-family: var(--font-en-title);
  font-size: 48px;
  font-weight: 700;
  color: rgba(198,162,106,0.06);
  line-height: 1;
}

.service-title {
  font-family: var(--font-en-title);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
body.lang-ar .service-title {
  font-family: var(--font-ar);
  font-weight: 700;
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--gray-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
body.lang-ar .service-list li::before {
  order: 1; /* put dot after text in RTL visually */
}


/* ═══════════════════════════════════════
   SPECIALIZATIONS
═══════════════════════════════════════ */
#specializations {
  background: var(--dark-2);
  overflow: hidden;
}

.spec-header {
  text-align: center;
  margin-bottom: 64px;
}
.spec-header .section-label { justify-content: center; }

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

.spec-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.spec-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.spec-card:hover {
  border-color: rgba(198,162,106,0.3);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.spec-card:hover::after { transform: scaleX(1); }

.spec-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  transition: var(--transition);
}
.spec-card:hover .spec-emoji {
  transform: scale(1.15);
}

.spec-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.spec-name-en {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-en-body);
}


/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
#portfolio {
  background: var(--dark);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
}
.portfolio-header .section-label { justify-content: center; }

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

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(198,162,106,0.35);
}

.portfolio-masonry {
  columns: 3;
  column-gap: 20px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-item:hover { transform: scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,0.7); }

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
  object-fit: cover;
}
.portfolio-item:nth-child(1) img, .portfolio-item:nth-child(4) img { height: 380px; }
.portfolio-item:nth-child(2) img, .portfolio-item:nth-child(5) img { height: 260px; }
.portfolio-item:nth-child(3) img, .portfolio-item:nth-child(6) img { height: 320px; }

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-tag {
  display: inline-block;
  background: rgba(198,162,106,0.9);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-en-body);
  width: fit-content;
}

.portfolio-project-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.portfolio-project-city {
  font-size: 12px;
  color: var(--beige);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}


/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
#process {
  background: var(--dark-2);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}
.process-header .section-label { justify-content: center; }

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(198,162,106,0.4) 10%, rgba(198,162,106,0.4) 90%, transparent);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row;
}
.process-step:nth-child(even) {
  flex-direction: row-reverse;
}
body.lang-ar .process-step:nth-child(odd) { flex-direction: row-reverse; }
body.lang-ar .process-step:nth-child(even) { flex-direction: row; }

.process-content {
  flex: 1;
  padding: 0 48px;
}
.process-step:nth-child(odd) .process-content  { text-align: end; }
.process-step:nth-child(even) .process-content { text-align: start; }
body.lang-ar .process-step:nth-child(odd)  .process-content { text-align: start; }
body.lang-ar .process-step:nth-child(even) .process-content { text-align: end; }

.process-center {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.process-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-en-title);
  box-shadow: 0 0 20px rgba(198,162,106,0.3);
  transition: var(--transition);
}

.process-step:hover .process-dot {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 30px rgba(198,162,106,0.6);
  transform: scale(1.1);
}

.process-blank { flex: 1; }

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   PACKAGES
═══════════════════════════════════════ */
#packages {
  background: var(--dark);
}

.packages-header {
  text-align: center;
  margin-bottom: 64px;
}
.packages-header .section-label { justify-content: center; }

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

.package-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.package-card.featured {
  background: linear-gradient(160deg, #1e1c15 0%, #171510 100%);
  border-color: rgba(198,162,106,0.4);
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(198,162,106,0.12), var(--shadow-dark);
}

.package-card:hover {
  border-color: rgba(198,162,106,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.package-card.featured:hover { transform: scale(1.06) translateY(-4px); }
.package-card:not(.featured):hover { transform: translateY(-6px); }

.package-badge {
  position: absolute;
  top: -1px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a8884e);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  font-family: var(--font-en-body);
}

.package-icon { font-size: 36px; margin-bottom: 20px; }

.package-name {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-en-body);
  font-weight: 600;
  margin-bottom: 8px;
}

.package-name-ar {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.package-price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.package-price-from {
  font-size: 13px;
  color: var(--gray);
}
.package-price-amount {
  font-family: var(--font-en-title);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.package-price-currency {
  font-size: 14px;
  color: var(--gray);
}

.package-divider {
  width: 100%;
  height: 1px;
  background: rgba(198,162,106,0.15);
  margin-bottom: 24px;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}
.package-features li .check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.package-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-2);
  margin-top: 32px;
  padding: 16px;
  background: rgba(198,162,106,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(198,162,106,0.1);
}


/* ═══════════════════════════════════════
   WHY DASHA
═══════════════════════════════════════ */
#why-dasha {
  background: var(--dark-2);
}

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

.why-content .section-subtitle { max-width: 100%; }

.why-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.why-item:hover {
  border-color: rgba(198,162,106,0.25);
  transform: translateX(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
body.lang-ar .why-item:hover { transform: translateX(4px); }

.why-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(198,162,106,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(198,162,106,0.2);
}

.why-item-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}
.why-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
}
.why-quote {
  position: absolute;
  bottom: -24px;
  inset-inline-start: -24px;
  background: linear-gradient(135deg, var(--gold), #a8884e);
  color: var(--dark);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  max-width: 260px;
  box-shadow: var(--shadow-dark);
}
.why-quote-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.why-quote-author {
  font-size: 11px;
  opacity: 0.7;
  font-family: var(--font-en-body);
  letter-spacing: 1px;
}


/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq {
  background: var(--dark);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}
.faq-header .section-label { justify-content: center; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(198,162,106,0.3);
  box-shadow: 0 0 20px rgba(198,162,106,0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(198,162,106,0.1);
  border: 1px solid rgba(198,162,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-a-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  border-top: 1px solid rgba(198,162,106,0.1);
  padding-top: 16px;
}


/* ═══════════════════════════════════════
   CONTACT / CTA
═══════════════════════════════════════ */
#contact {
  background: var(--dark-2);
}

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

.contact-info { }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.contact-method:hover {
  border-color: rgba(198,162,106,0.25);
  transform: translateX(-4px);
}
body.lang-ar .contact-method:hover { transform: translateX(4px); }

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-method-icon.wa  { background: rgba(37,211,102,0.12); }
.contact-method-icon.loc { background: rgba(198,162,106,0.12); }
.contact-method-icon.sp  { background: rgba(99,102,241,0.12); }

.contact-method-label {
  font-size: 11px;
  color: var(--gray-2);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-en-body);
  margin-bottom: 2px;
}
.contact-method-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* Form */
.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-title {
  font-family: var(--font-en-title);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}
body.lang-ar .form-title { font-family: var(--font-ar); }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 24px; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-en-body);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,162,106,0.1);
}
.form-input::placeholder { color: var(--gray-3); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select option { background: var(--dark-3); }


/* ═══════════════════════════════════════
   FINAL CTA BANNER
═══════════════════════════════════════ */
#cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/office.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.93), rgba(198,162,106,0.08), rgba(10,10,10,0.93));
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-en-title);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
body.lang-ar .cta-title {
  font-family: var(--font-ar);
  font-weight: 800;
}

.cta-subtitle {
  font-size: 16px;
  color: var(--beige);
  margin-bottom: 40px;
  opacity: 0.85;
  line-height: 1.8;
}

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

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-size: 15px;
  padding: 16px 36px;
}
.btn-whatsapp:hover {
  box-shadow: 0 8px 35px rgba(37,211,102,0.55);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(198,162,106,0.1);
  padding: 60px 0 28px;
}

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

.footer-brand {}
.footer-brand-logo {
  font-family: var(--font-en-title);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: 10px;
  color: var(--gray-2);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: var(--font-en-body);
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--gray-2);
  line-height: 1.8;
  max-width: 260px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-en-body);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray-2);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--gray-3);
  font-family: var(--font-en-body);
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════ */
#wa-float {
  position: fixed;
  bottom: 28px;
  inset-inline-end: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-bubble {
  background: rgba(15,15,15,0.95);
  border: 1px solid rgba(198,162,106,0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--beige);
  max-width: 220px;
  line-height: 1.5;
  box-shadow: var(--shadow-dark);
  animation: fadeSlide 0.4s ease;
  position: relative;
}
.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  inset-inline-end: 20px;
  border: 8px solid transparent;
  border-top-color: rgba(198,162,106,0.3);
  border-bottom: none;
}

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

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37,211,102,0.65);
}
.wa-btn span { line-height: 1; }

.wa-ping {
  position: absolute;
  top: -2px;
  inset-inline-end: -2px;
  width: 16px;
  height: 16px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--dark);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}


/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 100px rgba(0,0,0,0.9);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  inset-inline-end: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); }


/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .why-grid         { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid     { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .spec-grid        { grid-template-columns: repeat(3, 1fr); }
  .about-badge      { inset-inline-end: 16px; }
  .why-quote        { position: static; max-width: 100%; margin-top: 24px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-inline-end: none; border-bottom: 1px solid rgba(198,162,106,0.1); }
  .trust-item:last-child, .trust-item:nth-child(3) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; }
  .spec-grid     { grid-template-columns: repeat(2, 1fr); }
  .portfolio-masonry { columns: 2; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: scale(1); }
  .process-timeline::before { inset-inline-start: 24px; }
  .process-step, body.lang-ar .process-step { flex-direction: column !important; }
  .process-center { width: auto; flex-direction: row; margin-bottom: 16px; }
  .process-content { padding: 0; }
  .process-step:nth-child(odd) .process-content,
  .process-step:nth-child(even) .process-content,
  body.lang-ar .process-step:nth-child(odd) .process-content,
  body.lang-ar .process-step:nth-child(even) .process-content { text-align: start; }
  .process-blank { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { padding: 12px 24px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-masonry { columns: 1; }
  .contact-form { padding: 24px; }
  #wa-float { bottom: 16px; inset-inline-end: 16px; }
}

/* ── Hidden by language ── */
[data-en], [data-ar] { }
