/* ============================================================
   PEACH_WOOD — LUXURY ARABIC FURNITURE
   style.css
============================================================ */

/* ----- CSS VARIABLES ----- */
:root {
  --ivory:      #F8F3EC;
  --beige:      #E8D8C3;
  --wood:       #7A5635;
  --deep-brown: #2B1A12;
  --gold:       #C7A46B;
  --gold-light: #D9BA8A;
  --charcoal:   #252525;
  --white:      #FFFFFF;

  --nav-h: 80px;
  --radius: 2px;

  --font-ar:  'Tajawal', 'Cairo', sans-serif;
  --font-en:  'Inter', sans-serif;
  --font-heading-en: 'Playfair Display', serif;

  --shadow-soft: 0 4px 24px rgba(43,26,18,0.10);
  --shadow-card: 0 2px 16px rgba(43,26,18,0.08);
  --shadow-strong: 0 8px 40px rgba(43,26,18,0.18);

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

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

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

body {
  font-family: var(--font-ar);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
:focus-visible { outline: 3px solid rgba(199,164,107,0.45); outline-offset: 3px; }
.hero-title, .section-title { white-space: pre-line; }

/* ----- TYPOGRAPHY HELPERS ----- */
[lang="en"] body,
[lang="en"] *:not([dir="rtl"]) {
  font-family: var(--font-en);
}
[lang="en"] h1,
[lang="en"] h2,
[lang="en"] h3,
[lang="en"] .section-title,
[lang="en"] .hero-title {
  font-family: var(--font-heading-en);
}

/* ----- LAYOUT ----- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-pad {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .container { padding: 0 20px; }
}

/* ----- SECTION LABELS / TITLES ----- */
.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-title.light { color: var(--ivory); }

.section-sub {
  font-size: 1.05rem;
  color: #7a6858;
  margin-top: 12px;
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

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

.gold-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-divider.centered { margin-inline: auto; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 1px;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--deep-brown);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,164,107,0.35);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-dark-sm {
  background: var(--deep-brown);
  color: var(--ivory);
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 1px;
}
.btn-dark-sm:hover {
  background: var(--charcoal);
}
.btn-wa-sm {
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-wa-sm:hover {
  background: #1ebe5d;
}
.btn-lg {
  padding: 17px 42px;
  font-size: 1.05rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(248,243,236,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(199,164,107,0.15);
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
}
.navbar.scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(248,243,236,0.98);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 20px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 2px;
}
.nav-logo-fallback {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--deep-brown);
  color: var(--gold);
  font-family: var(--font-heading-en);
  font-size: 1.3rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.nav-brandname {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brandname .ar-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-brown);
}
.nav-brandname .en-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--wood);
  letter-spacing: 0.05em;
}
[lang="ar"] .nav-brandname .en-text { display: none; }
[lang="ar"] .nav-brandname .ar-text { display: block; }
[lang="en"] .nav-brandname .ar-text { display: none; }
[lang="en"] .nav-brandname .en-text { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 6px 12px;
  border-radius: 2px;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--wood);
  background: rgba(122,86,53,0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--beige);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--deep-brown);
  transition: var(--transition-fast);
  background: transparent;
  letter-spacing: 0.05em;
}
.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(199,164,107,0.08);
}
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--deep-brown);
  color: var(--ivory);
  padding: 9px 18px;
  border-radius: 1px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition-fast);
}
.nav-whatsapp:hover { background: var(--charcoal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--deep-brown);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast), width var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(43,26,12,0.82) 0%,
    rgba(43,26,12,0.65) 50%,
    rgba(43,26,12,0.28) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - var(--nav-h));
}
.hero-text {
  max-width: 620px;
  color: var(--white);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.eyebrow-line {
  flex: 0 0 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
[lang="en"] .hero-title {
  font-family: var(--font-heading-en);
  font-weight: 700;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.trust-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.trust-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.hero-mark {
  flex-shrink: 0;
  opacity: 0.12;
}
.hero-logo-mark {
  width: 240px;
  height: 240px;
  object-fit: contain;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text {
  font-size: 1.05rem;
  color: #5a4a3a;
  line-height: 1.85;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--ivory);
  border: 1px solid rgba(199,164,107,0.2);
  border-radius: 2px;
  padding: 36px;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading-en);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-num svg { color: var(--gold); }
.stat-label {
  font-size: 0.9rem;
  color: var(--wood);
  font-weight: 500;
}
.stat-icon {
  display: flex;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 10px;
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(199,164,107,0.3);
  flex-shrink: 0;
}

/* ============================================================
   COLLECTIONS
============================================================ */
.collections {
  background: var(--ivory);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 280px;
  gap: 12px;
}
.coll-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 1px;
}
.coll-tile.coll-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.coll-img-wrap {
  position: absolute;
  inset: 0;
}
.coll-img-wrap img {
  transition: transform 0.6s ease;
}
.coll-tile:hover .coll-img-wrap img {
  transform: scale(1.06);
}
.coll-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(43,26,18,0.88) 0%,
    rgba(43,26,18,0.1) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background var(--transition);
}
.coll-tile:hover .coll-overlay {
  background: linear-gradient(
    to top,
    rgba(43,26,18,0.92) 0%,
    rgba(43,26,18,0.4) 60%,
    rgba(43,26,18,0.1) 100%
  );
}
.coll-info {
  color: var(--white);
}
.coll-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.coll-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.coll-large .coll-info h3 { font-size: 1.55rem; }
.coll-sub {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  font-family: var(--font-en);
  margin-bottom: 14px;
}
.coll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  font-size: 1rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.coll-tile:focus-visible .coll-arrow,
.coll-tile:hover .coll-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-brown);
}
[dir="ltr"] .coll-arrow { transform: scaleX(-1); }

/* ============================================================
   PRODUCTS
============================================================ */
.products {
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  border: 1px solid rgba(232,216,195,0.8);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}
.prod-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.prod-img-wrap img {
  transition: transform 0.55s ease;
}
.product-card:hover .prod-img-wrap img {
  transform: scale(1.05);
}
.prod-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,26,18,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .prod-hover-overlay {
  opacity: 1;
}
.btn-view {
  background: var(--gold);
  color: var(--deep-brown);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 1px;
  font-family: inherit;
  letter-spacing: 0.04em;
  transition: background var(--transition-fast);
  cursor: pointer;
  border: none;
}
.btn-view:hover { background: var(--gold-light); }
.prod-info {
  padding: 22px 22px 20px;
}
.prod-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.prod-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 8px;
}
.prod-desc {
  font-size: 0.88rem;
  color: #7a6858;
  line-height: 1.65;
  margin-bottom: 14px;
}
.prod-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wood);
  background: rgba(122,86,53,0.08);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 1px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.prod-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   MAJLIS HIGHLIGHT
============================================================ */
.majlis-hl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.majlis-img-side {
  position: relative;
  overflow: hidden;
}
.majlis-img-side img {
  height: 100%;
  transition: transform 0.8s ease;
}
.majlis-hl:hover .majlis-img-side img { transform: scale(1.03); }
.majlis-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 50%,
    rgba(43,26,12,0.55) 100%
  );
}
[dir="ltr"] .majlis-img-overlay {
  background: linear-gradient(
    to left,
    transparent 50%,
    rgba(43,26,12,0.55) 100%
  );
}
.majlis-content-side {
  background: var(--deep-brown);
  display: flex;
  align-items: center;
}
.majlis-inner {
  padding: 70px 60px;
}
.majlis-text {
  font-size: 1.05rem;
  color: rgba(248,243,236,0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}
.majlis-feats {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.majlis-feats li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(248,243,236,0.85);
  font-size: 0.95rem;
}
.feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   CUSTOM ORDER
============================================================ */
.custom-order {
  background: var(--ivory);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 60px;
}
.step-item {
  text-align: center;
  padding: 0 12px;
}
.step-num {
  font-family: var(--font-heading-en);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(199,164,107,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 62px;
  height: 62px;
  background: var(--deep-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}
.step-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 10px;
}
.step-item p {
  font-size: 0.88rem;
  color: #7a6858;
  line-height: 1.65;
}
.step-conn {
  width: 40px;
  height: 2px;
  background: rgba(199,164,107,0.35);
  margin-top: 92px;
  flex-shrink: 0;
}
.custom-cta {
  text-align: center;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery {
  background: var(--white);
}
.gallery-editorial {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 10px;
  height: 600px;
}
.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-col-main { flex: 0 0 auto; }
.gallery-col-stack { flex: 1; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
  flex: 1;
}
.gallery-item img {
  height: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gal-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(43,26,18,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gal-caption { transform: translateY(0); }
.gi-tall { flex: 1; min-height: 100%; }
.gi-half { flex: 1; }


/* ============================================================
   MATERIALS
============================================================ */
.materials {
  background: linear-gradient(180deg, var(--white), var(--ivory));
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.material-card {
  position: relative;
  min-height: 260px;
  padding: 36px 30px;
  border: 1px solid rgba(232,216,195,0.9);
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.material-card::after {
  content: '';
  position: absolute;
  inset-inline-end: -50px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(199,164,107,0.10);
}
.material-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.material-num {
  display: inline-block;
  color: rgba(199,164,107,0.45);
  font-family: var(--font-heading-en);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 24px;
}
.material-card h3 {
  font-size: 1.08rem;
  color: var(--deep-brown);
  margin-bottom: 12px;
}
.material-card p {
  position: relative;
  z-index: 1;
  color: #7a6858;
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS / FAQ
============================================================ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  border: 1px solid rgba(232,216,195,0.9);
  background: var(--ivory);
}
.testimonial-card p {
  color: #5a4a3a;
  margin-bottom: 22px;
  line-height: 1.85;
}
.testimonial-card strong {
  display: block;
  color: var(--wood);
  font-size: 0.92rem;
}
.faq { background: var(--ivory); }
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(232,216,195,0.9);
  padding: 0 24px;
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--deep-brown);
  font-weight: 800;
}
.faq-item p {
  padding: 0 0 22px;
  color: #7a6858;
}

/* ============================================================
   WHY CHOOSE US - PREMIUM LAYOUT
============================================================ */
.why-us {
  background:
    radial-gradient(circle at 12% 20%, rgba(199,164,107,0.16), transparent 28%),
    linear-gradient(180deg, var(--ivory), var(--white));
  position: relative;
  overflow: hidden;
}

.why-us .section-header {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 58px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(210px, auto));
  gap: 18px;
  align-items: stretch;
}

.why-item {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(232,216,195,0.95);
  padding: 30px;
  text-align: start;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(43,26,18,0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(43,26,18,0.13);
  border-color: rgba(199,164,107,0.55);
}

/* الكارت الكبير */
.why-item:nth-child(1) {
  grid-row: 1 / 3;
  background:
    linear-gradient(145deg, rgba(43,26,18,0.96), rgba(122,86,53,0.92)),
    var(--deep-brown);
  color: var(--ivory);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
}

.why-item:nth-child(1)::before {
  content: "01";
  position: absolute;
  top: 28px;
  inset-inline-end: 32px;
  font-family: var(--font-heading-en);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(199,164,107,0.13);
}

.why-item:nth-child(1)::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(199,164,107,0.16);
  filter: blur(4px);
}

[dir="rtl"] .why-item:nth-child(1)::after {
  left: auto;
  right: -80px;
}

/* توزيع باقي الكروت */
.why-item:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.why-item:nth-child(3) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.why-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: center;
}

[dir="rtl"] .why-item:nth-child(4) {
  grid-template-columns: auto 1fr;
}

.why-icon {
  width: 58px;
  height: 58px;
  background: rgba(199,164,107,0.12);
  border: 1px solid rgba(199,164,107,0.22);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 22px;
  flex-shrink: 0;
}

.why-item:nth-child(1) .why-icon {
  width: 70px;
  height: 70px;
  background: rgba(248,243,236,0.08);
  border-color: rgba(199,164,107,0.35);
  border-radius: 22px;
  margin-bottom: 28px;
}

.why-item:nth-child(4) .why-icon {
  margin-bottom: 0;
}

.why-item h3 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--deep-brown);
  margin-bottom: 10px;
  line-height: 1.35;
}

.why-item p {
  font-size: 0.92rem;
  color: #7a6858;
  line-height: 1.8;
  max-width: 420px;
}

.why-item:nth-child(1) h3 {
  color: var(--ivory);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.why-item:nth-child(1) p {
  color: rgba(248,243,236,0.74);
  font-size: 1rem;
}

.why-item:nth-child(4) h3 {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .why-item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }

  .why-item:nth-child(2),
  .why-item:nth-child(3),
  .why-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .why-item:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-item,
  .why-item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    padding: 26px;
    border-radius: 18px;
  }

  .why-item:nth-child(4) {
    display: block;
  }

  .why-item:nth-child(4) .why-icon {
    margin-bottom: 22px;
  }

  .why-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
}

/* ============================================================
   CONTACT
============================================================ */
.contact {
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-desc {
  font-size: 1.02rem;
  color: #7a6858;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood);
  flex-shrink: 0;
}
.ci-icon.wa-color { color: #25d366; }
.ci-icon.ig-color { color: #e1306c; }
.ci-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 2px;
}
.ci-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-brown);
  transition: color var(--transition-fast);
}
.ci-value:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--ivory);
  border: 1px solid rgba(232,216,195,0.8);
  border-radius: 2px;
  padding: 40px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep-brown);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid rgba(232,216,195,0.9);
  border-radius: 1px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,164,107,0.15);
}
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 2px;
  padding: 14px 18px;
  color: #1e7e34;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--deep-brown);
  color: rgba(248,243,236,0.75);
}
.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(199,164,107,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.footer-logo-fb {
  display: none;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--deep-brown);
  font-family: var(--font-heading-en);
  font-size: 1.5rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.footer-brandname {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 16px;
  line-height: 1.4;
}
.footer-ar-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(248,243,236,0.65);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span {
  font-size: 0.82rem;
  color: rgba(248,243,236,0.4);
}
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(199,164,107,0.5);
  font-style: italic;
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
[dir="ltr"] .floating-wa { left: auto; right: 28px; }
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}
.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ============================================================
   MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,26,18,0.75);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: 2px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0;
  overflow-y: auto;
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(43,26,18,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-brown);
  transition: background var(--transition-fast);
}
[dir="ltr"] .modal-close { left: auto; right: 16px; }
.modal-close:hover { background: rgba(43,26,18,0.15); }
.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img-side {
  height: 420px;
  overflow: hidden;
}
.modal-img-side img {
  height: 100%;
  transition: transform 0.6s ease;
}
.modal-box:hover .modal-img-side img { transform: scale(1.04); }
.modal-content-side {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.modal-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--deep-brown);
  margin-bottom: 16px;
}
.modal-desc {
  font-size: 0.95rem;
  color: #7a6858;
  line-height: 1.75;
  margin-bottom: 20px;
}
.modal-feats {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.modal-feats li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.modal-price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wood);
  background: rgba(122,86,53,0.08);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 1px;
  margin-bottom: 22px;
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RTL / LTR ADJUSTMENTS
============================================================ */
[dir="rtl"] .coll-arrow { transform: none; }
[dir="ltr"] .about-inner { direction: ltr; }
[dir="ltr"] .nav-links a { letter-spacing: 0.01em; }
[dir="ltr"] .footer-bottom .container { flex-direction: row; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .step-conn { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid {
    grid-template-rows: 280px 240px;
  }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .majlis-hl { grid-template-columns: 1fr; }
  .majlis-img-side { height: 320px; }
  .gallery-editorial {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .gallery-col-main { grid-column: 1 / 3; height: 280px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / 3; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img-side { height: 260px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(199,164,107,0.2);
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-soft);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    font-size: 1rem;
    padding: 10px 14px;
    width: 100%;
  }
  .hamburger { display: flex; }
  .nav-whatsapp span { display: none; }
  .nav-whatsapp { padding: 9px 12px; }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 200px;
  }
  .coll-tile.coll-large { grid-column: 1 / 3; grid-row: 1 / 2; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-item { padding: 28px 18px; }

  .about-stats {
    flex-direction: column;
    gap: 0;
  }
  .stat-sep { width: 80px; height: 1px; margin: 12px auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-col { grid-column: auto; }

  .floating-wa { bottom: 20px; left: 20px; }
  [dir="ltr"] .floating-wa { left: auto; right: 20px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-mark { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-editorial { grid-template-columns: 1fr; height: auto; }
  .gallery-col-main { grid-column: auto; }
  .gallery-item { height: 220px; }
  .majlis-inner { padding: 48px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .modal-content-side { padding: 26px 22px; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .materials-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
}


@media (max-width: 768px) {
  .nav-links { max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
  .materials-grid { gap: 16px; }
}
/* ===== Mobile Navbar Fix ===== */

@media (max-width: 1100px) {
  :root {
    --nav-h: 68px;
  }

  .nav-inner {
    height: var(--nav-h);
    padding: 0 16px;
    gap: 10px;
    justify-content: space-between;
  }

  .nav-logo {
    width: 38px;
    height: 38px;
  }

  .nav-brand {
    gap: 8px;
    min-width: 0;
  }

  .nav-brandname {
    max-width: 120px;
    overflow: hidden;
  }

  .nav-brandname .ar-text,
  .nav-brandname .en-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 0.75rem;
  }

  .nav-whatsapp {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }

  .nav-whatsapp span {
    display: none;
  }

  .hamburger {
    display: flex;
    width: 34px;
    min-width: 34px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-h));
    overflow-y: auto;

    background: rgba(248, 243, 236, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    padding: 22px 18px 30px;
    gap: 6px;

    border-bottom: 1px solid rgba(199, 164, 107, 0.25);
    box-shadow: 0 18px 45px rgba(43, 26, 18, 0.14);

    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;

    transition: transform 0.35s ease, opacity 0.25s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 13px 14px;
    font-size: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.55);
  }

  .nav-links a:hover {
    background: rgba(199, 164, 107, 0.16);
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 12px;
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .nav-brandname {
    max-width: 92px;
  }

  .nav-brandname .ar-text {
    font-size: 0.8rem;
  }

  .nav-brandname .en-text {
    font-size: 0.68rem;
  }

  .nav-whatsapp {
    display: none;
  }

  .lang-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}