/* ============================================================
   ALMASOUD — Global Design System v2
   Fonts: Montserrat (EN) + Tajawal (AR)
   Colors: #BD8D27 gold · #808285 steel · #1C1C1C charcoal
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ── Tokens ── */
:root {
  --gold:         #BD8D27;
  --gold-light:   #D4A84B;
  --gold-pale:    #F5E8C8;
  --gold-dark:    #8A6510;
  --gold-glow:    rgba(189,141,39,.22);
  --steel:        #808285;
  --steel-light:  #B0B2B5;
  --charcoal:     #1C1C1C;
  --charcoal-2:   #252525;
  --charcoal-3:   #333333;
  --off-white:    #F7F4EF;
  --white:        #FFFFFF;
  --border:       rgba(189,141,39,.18);

  --font-en:      'Montserrat', sans-serif;
  --font-ar:      'Tajawal', sans-serif;

  --ease-out:  cubic-bezier(.22,.61,.36,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
  --trans:     .4s var(--ease-out);

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;

  --shadow-card: 0 8px 40px rgba(0,0,0,.09);
  --shadow-gold: 0 6px 32px rgba(189,141,39,.24);

  --nav-h: 76px;
  --max-w: 1200px;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html {
  scroll-behavior:smooth;
  font-size:16px;
  -webkit-text-size-adjust:100%;
  overflow-x:hidden;
}
body {
  font-family: var(--font-en);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  width:100%;
  position:relative;
}
body[dir="rtl"]  { font-family: var(--font-ar); }
img  { display:block; max-width:100%; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }

/* ── Layout helpers ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section-pad { padding: clamp(4rem,8vw,7rem) 0; }

/* ── Typography scale ── */
.display {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.heading-1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}
.heading-2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}
.heading-3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}
.body-lg { font-size: clamp(.95rem, 1.5vw, 1.1rem); font-weight:300; line-height:1.85; }
.body-sm { font-size: .85rem; line-height:1.7; }

[dir="rtl"] .display  { font-weight:800; letter-spacing:0; }
[dir="rtl"] .heading-1 { letter-spacing:0; }

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content:'';
  display:block;
  width:24px; height:1.5px;
  background: var(--gold);
  flex-shrink:0;
}
[dir="rtl"] .eyebrow { flex-direction:row-reverse; }
[dir="rtl"] .eyebrow::before { order:2; }

/* ── Gold rule ── */
.gold-rule {
  display:block;
  width:52px; height:3px;
  background: var(--gold);
  border-radius:2px;
  margin-bottom:1.2rem;
}
.gold-rule.center { margin-left:auto; margin-right:auto; }

/* ── Buttons ── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.82rem 1.9rem;
  border-radius:var(--r-sm);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
  transition: var(--trans);
  cursor:pointer;
  white-space:nowrap;
}
.btn svg { width:16px; height:16px; flex-shrink:0; }
.btn-gold  { background:var(--gold); color:var(--white); }
.btn-gold:hover { background:var(--gold-dark); transform:translateY(-2px); box-shadow:var(--shadow-gold); }
.btn-outline { background:transparent; color:var(--gold); border:1.5px solid var(--gold); }
.btn-outline:hover { background:var(--gold); color:var(--white); transform:translateY(-2px); }
.btn-white  { background:var(--white); color:var(--charcoal); }
.btn-white:hover { background:var(--off-white); transform:translateY(-2px); }
.btn-ghost  { background:rgba(255,255,255,.1); color:var(--white); border:1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background:rgba(255,255,255,.2); transform:translateY(-2px); }

/* ── Utility ── */
.text-gold   { color:var(--gold); }
.text-steel  { color:var(--steel); }
.text-white  { color:var(--white); }
.sr-only     { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
.text-center { text-align:center; }

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */

/* Fade-up (default) */
[data-anim] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
[data-anim="fade-left"]  { transform: translateX(-40px); }
[data-anim="fade-right"] { transform: translateX( 40px); }
[data-anim="fade-scale"] { transform: scale(.92) translateY(20px); }
[data-anim="fade-up"]    { transform: translateY(36px); }
[data-anim="fade"]       { transform: none; }

[data-anim].anim-in {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="1"] { transition-delay:.1s; }
[data-delay="2"] { transition-delay:.22s; }
[data-delay="3"] { transition-delay:.34s; }
[data-delay="4"] { transition-delay:.46s; }
[data-delay="5"] { transition-delay:.58s; }
[data-delay="6"] { transition-delay:.70s; }

/* ============================================================
   HEADER / NAV — clean rebuild
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
#site-header.scrolled {
  background: #141414;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
  height: 64px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 62px; width: auto; transition: height .35s ease; }
#site-header.scrolled .logo-wrap img { height: 46px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  position: relative;
  padding-bottom: 3px;
  transition: color .3s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.lang-btn {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
  padding: .42rem .85rem;
  border-radius: 30px;
  border: 1px solid rgba(189,141,39,.4);
  background: rgba(189,141,39,.09);
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s ease;
}
.lang-btn:hover { background: rgba(189,141,39,.22); }

/* Hamburger — hidden desktop, visible mobile */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 9002;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile fullscreen overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 8999;
  background: #111111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .25s ease;
  text-align: center;
}
.mobile-menu a:hover,
.mobile-menu a:active { color: var(--gold); }
.mobile-menu .lang-btn {
  margin-top: .5rem;
  font-size: .8rem;
  padding: .55rem 1.4rem;
}
.mobile-menu-divider {
  width: 40px; height: 1px;
  background: rgba(189,141,39,.35);
  margin: .2rem 0;
}

/* ============================================================
   HERO (Home page only)
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

/* ── Carousel Background ── */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
/* Dark overlay on carousel */
.hero-carousel::after {
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right, rgba(18,18,18,.85) 0%, rgba(18,18,18,.5) 60%, rgba(18,18,18,.3) 100%),
    linear-gradient(to top,   rgba(18,18,18,.7)  0%, transparent 60%);
  z-index:1;
}

/* ── Animated overlay effects ── */
.hero-particles {
  position:absolute; inset:0; z-index:2; pointer-events:none; overflow:hidden;
}
.hero-particle {
  position:absolute;
  width:1px; height:1px;
  background:var(--gold);
  border-radius:50%;
  animation: particle-float linear infinite;
  opacity:0;
}
@keyframes particle-float {
  0%   { opacity:0; transform:translateY(0) scale(1); }
  10%  { opacity:.6; }
  90%  { opacity:.3; }
  100% { opacity:0; transform:translateY(-120vh) scale(0.3); }
}

/* Gold diagonal light sweep */
.hero-sweep {
  position:absolute; inset:0; z-index:2; pointer-events:none;
  overflow:hidden;
}
.hero-sweep::before {
  content:'';
  position:absolute;
  top:-50%; left:-30%;
  width:60%; height:200%;
  background: linear-gradient(105deg, transparent 40%, rgba(189,141,39,.04) 50%, transparent 60%);
  animation: sweep 8s ease-in-out infinite;
}
@keyframes sweep {
  0%,100% { transform: translateX(-20%) rotate(10deg); opacity:0; }
  40%      { opacity:1; }
  50%      { transform: translateX(180%) rotate(10deg); opacity:0; }
}

/* Gold corner accent */
.hero-corner {
  position:absolute;
  bottom:0; right:0;
  width:40vw; height:50%;
  background: linear-gradient(135deg, transparent 60%, rgba(189,141,39,.07) 100%);
  z-index:2; pointer-events:none;
}

/* ── Hero Content ── */
.hero-content {
  position:relative;
  z-index:3;
  max-width:800px;
  padding-top:var(--nav-h);
}

.hero-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:.7rem;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1.4rem;
  opacity:0;
  animation: hero-fadein .8s .3s var(--ease-out) forwards;
}
.hero-eyebrow span { display:block; width:28px; height:1px; background:var(--gold); }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight:800;
  line-height:1.07;
  letter-spacing:-.025em;
  color:var(--white);
  margin-bottom:1.4rem;
  opacity:0;
  animation: hero-fadein .9s .5s var(--ease-out) forwards;
}
.hero-title em { font-style:normal; color:var(--gold); display:block; }

[dir="rtl"] .hero-title { letter-spacing:0; font-size:clamp(2.2rem,5.5vw,4.5rem); }

.hero-sub {
  font-size:clamp(.95rem,1.6vw,1.15rem);
  font-weight:300;
  color:rgba(255,255,255,.65);
  max-width:560px;
  margin-bottom:2.4rem;
  line-height:1.8;
  opacity:0;
  animation: hero-fadein .9s .7s var(--ease-out) forwards;
}
.hero-actions {
  display:flex; flex-wrap:wrap; gap:.9rem;
  opacity:0;
  animation: hero-fadein .9s .9s var(--ease-out) forwards;
}

/* Carousel dots */
.hero-dots {
  position:absolute;
  bottom:2.2rem; left:50%;
  transform:translateX(-50%);
  display:flex; gap:.6rem;
  z-index:4;
  opacity:0;
  animation: hero-fadein .6s 1.2s forwards;
}
.hero-dot {
  width:6px; height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.3);
  transition: background .4s, transform .4s;
  cursor:pointer;
}
.hero-dot.active { background:var(--gold); transform:scale(1.5); }

/* Scroll indicator */
.hero-scroll-hint {
  position:absolute;
  bottom:2.5rem; right:3rem;
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  z-index:4;
  opacity:0;
  animation: hero-fadein .6s 1.4s forwards;
}
[dir="rtl"] .hero-scroll-hint { right:auto; left:3rem; }
.scroll-line {
  width:1px; height:50px;
  background:linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%,100% { transform:scaleY(1); opacity:.5; }
  50%      { transform:scaleY(.6); opacity:.2; }
}
.scroll-text {
  font-size:.58rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.35);
  writing-mode:vertical-rl;
}

@keyframes hero-fadein {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:none; }
}

/* ── Stats bar ── */
.stats-bar { background:var(--charcoal-2); border-top:1px solid var(--border); }
.stats-inner {
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat-item {
  padding:2.2rem 1.2rem;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.06);
}
.stat-item:last-child { border-right:none; }
.stat-num {
  font-size:2.2rem;
  font-weight:800;
  color:var(--gold);
  letter-spacing:-.02em;
  line-height:1;
  margin-bottom:.3rem;
}
.stat-lbl { font-size:.72rem; color:var(--steel-light); letter-spacing:.08em; }

/* ── Services grid (home teaser) ── */
.serv-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.4rem;
}
.serv-card {
  background:var(--white);
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  border:1px solid rgba(0,0,0,.05);
  transition: transform var(--trans), box-shadow var(--trans);
  display:flex; flex-direction:column;
}
.serv-card:hover { transform:translateY(-8px); box-shadow:0 20px 56px rgba(0,0,0,.13); }
.serv-card-thumb {
  height:200px;
  background:var(--charcoal-3);
  position:relative; overflow:hidden;
}
.serv-card-thumb img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .7s ease; opacity:.9;
  display:block;
}
.serv-card:hover .serv-card-thumb img { transform:scale(1.06); }
.serv-icon-wrap {
  width:68px; height:68px; border-radius:50%;
  background:rgba(189,141,39,.14);
  display:flex; align-items:center; justify-content:center;
}
.serv-icon-wrap svg { width:32px; height:32px; stroke:var(--gold); fill:none; stroke-width:1.5; }
.serv-card-body { padding:1.6rem 1.8rem 1.6rem; flex:1; display:flex; flex-direction:column; }
.serv-card-body h3 { font-size:1.05rem; font-weight:700; margin-bottom:.55rem; color:var(--charcoal); }
.serv-card-body p  { font-size:.84rem; color:var(--steel); line-height:1.75; flex:1; }
.serv-tags { display:flex; flex-wrap:wrap; gap:.35rem; margin:.9rem 0 1.2rem; }
.serv-tag  { font-size:.62rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:.25rem .7rem; border-radius:30px; background:var(--gold-pale); color:var(--gold-dark); }

/* Redesigned Learn More — clean bottom CTA strip */
.serv-card-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:auto;
  padding-top:1.1rem;
  border-top:1px solid rgba(0,0,0,.07);
}
.serv-link {
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--white);
  background:var(--gold);
  padding:.55rem 1.2rem;
  border-radius:var(--r-sm);
  transition:background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space:nowrap;
}
.serv-link svg {
  width:13px; height:13px;
  stroke:currentColor; fill:none; stroke-width:2.2;
  flex-shrink:0;
  transition:transform var(--trans);
}
.serv-link:hover {
  background:var(--gold-dark);
  transform:translateY(-1px);
  box-shadow:0 4px 16px rgba(189,141,39,.3);
}
.serv-link:hover svg { transform:translateX(3px); }
[dir="rtl"] .serv-link:hover svg { transform:translateX(-3px); }
[dir="rtl"] .serv-link svg { transform:scaleX(-1); }

/* ── Carousel (home image strip) ── */
.img-carousel { background:var(--charcoal); overflow:hidden; padding:4.5rem 0; }
.img-carousel-track {
  display:flex;
  gap:1.2rem;
  animation: carousel-scroll 32s linear infinite;
  width:max-content;
  will-change: transform;
}
.img-carousel-track:hover { animation-play-state:paused; }
.carousel-img {
  width:320px; height:220px;
  border-radius:var(--r-md);
  overflow:hidden;
  flex-shrink:0;
  background:var(--charcoal-3);
  border:1px solid rgba(189,141,39,.12);
}
.carousel-img img { width:100%; height:100%; object-fit:cover; opacity:.75; transition:opacity .4s; }
.carousel-img:hover img { opacity:1; }
/* placeholder when no image */
.carousel-img-ph {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#222,#2e2e2e);
}

@keyframes carousel-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}
/* RTL: flip scroll direction so Arabic version scrolls correctly */
[dir="rtl"] .img-carousel-track {
  animation-name: carousel-scroll-rtl;
}
@keyframes carousel-scroll-rtl {
  0%   { transform:translateX(0); }
  100% { transform:translateX(50%); }
}

/* ── About preview (home) ── */
.about-home-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem);
  align-items:center;
}
.about-visual { position:relative; border-radius:var(--r-lg); overflow:hidden; height:480px; }
.about-visual img { width:100%; height:100%; object-fit:cover; }
.about-visual-ph {
  width:100%; height:100%;
  background:linear-gradient(145deg,var(--charcoal-2),var(--charcoal-3));
  display:flex; align-items:center; justify-content:center;
}
.about-badge {
  position:absolute; bottom:1.5rem; left:1.5rem; right:1.5rem;
  background:rgba(18,18,18,.88);
  backdrop-filter:blur(10px);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:1.2rem 1.4rem;
}
[dir="rtl"] .about-badge { left:1.5rem; right:1.5rem; }
.about-badge-num { font-size:2.4rem; font-weight:800; color:var(--gold); line-height:1; }
.about-badge-txt { font-size:.75rem; color:rgba(255,255,255,.55); margin-top:.2rem; }

.about-home-text h2 { margin-bottom:1rem; }
.about-home-text p  { color:var(--steel); margin-bottom:1.4rem; font-weight:300; }
.values-mini { display:flex; flex-direction:column; gap:.6rem; margin-bottom:2rem; }
.value-row {
  display:flex; align-items:flex-start; gap:.8rem;
  padding:.9rem 1rem;
  border-radius:var(--r-md);
  border:1px solid rgba(0,0,0,.06);
  background:var(--off-white);
  transition:border-color var(--trans), background var(--trans);
}
.value-row:hover { border-color:rgba(189,141,39,.3); background:var(--gold-pale); }
.value-dot { width:8px; height:8px; border-radius:50%; background:var(--gold); flex-shrink:0; margin-top:.45rem; }
.value-row h4 { font-size:.85rem; font-weight:700; color:var(--charcoal); }
.value-row p  { font-size:.76rem; color:var(--steel); }

/* ── CTA band ── */
.cta-band {
  background:var(--charcoal-2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  text-align:center;
  padding:6rem 0;
  position:relative; overflow:hidden;
}
.cta-band::before {
  content:'';
  position:absolute; top:-60%; left:-5%;
  width:50%; aspect-ratio:1;
  background:radial-gradient(circle,rgba(189,141,39,.07) 0%,transparent 70%);
  pointer-events:none;
}
.cta-band h2 { color:var(--white); margin-bottom:.9rem; }
.cta-band p  { color:rgba(255,255,255,.55); max-width:480px; margin:0 auto 2.2rem; font-weight:300; }
.cta-actions { display:flex; justify-content:center; gap:.9rem; flex-wrap:wrap; }

/* ── Page-level hero (inner pages) ── */
.page-hero {
  background:var(--charcoal);
  min-height:320px;
  display:flex; align-items:flex-end;
  padding-bottom:3rem;
  position:relative; overflow:hidden;
  padding-top:var(--nav-h);
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(189,141,39,.08) 0%,transparent 60%);
  pointer-events:none;
}
.page-hero-line {
  position:absolute;
  top:0; right:0;
  width:40%; height:100%;
  background:linear-gradient(to left,rgba(189,141,39,.05),transparent);
  pointer-events:none;
}
.page-hero h1 { color:var(--white); margin-bottom:.6rem; }
.page-hero p  { color:rgba(255,255,255,.5); font-weight:300; }
.breadcrumb {
  display:flex; align-items:center; gap:.4rem;
  font-size:.72rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold); margin-bottom:1rem;
}
.breadcrumb span { color:rgba(255,255,255,.3); }

/* ── About page ── */
.about-full-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,5rem); align-items:center;
}
.about-full-visual {
  position:relative; border-radius:var(--r-lg);
  overflow:hidden; height:520px;
}
.about-full-visual img { width:100%; height:100%; object-fit:cover; }
.about-full-visual-ph {
  width:100%; height:100%;
  background:linear-gradient(145deg,var(--charcoal-2),var(--charcoal-3));
  display:flex; align-items:center; justify-content:center;
}
.about-full-text p { color:var(--steel); font-weight:300; margin-bottom:1.2rem; line-height:1.85; }

/* Values full grid */
.values-section { background:var(--off-white); }
.values-full-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.2rem;
}
.value-card {
  background:var(--white);
  border-radius:var(--r-lg);
  padding:2rem 1.8rem;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:var(--shadow-card);
  transition:transform var(--trans),box-shadow var(--trans),border-color var(--trans);
}
.value-card:hover { transform:translateY(-6px); box-shadow:0 16px 50px rgba(0,0,0,.1); border-color:rgba(189,141,39,.25); }
.value-icon-wrap {
  width:52px; height:52px; border-radius:50%;
  background:var(--gold-pale);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.2rem;
}
.value-icon-wrap svg { width:24px; height:24px; stroke:var(--gold); fill:none; stroke-width:1.8; }
.value-card h3 { font-size:.95rem; font-weight:700; margin-bottom:.5rem; color:var(--charcoal); }
.value-card p  { font-size:.82rem; color:var(--steel); line-height:1.7; }

/* Geographic presence */
.geo-section { background:var(--charcoal); }
.geo-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.geo-card {
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:1.6rem 1.4rem;
  display:flex; align-items:flex-start; gap:.9rem;
  transition:border-color var(--trans),background var(--trans);
}
.geo-card:hover { background:rgba(189,141,39,.05); border-color:rgba(189,141,39,.35); }
.geo-dot { width:10px; height:10px; border-radius:50%; background:var(--gold); flex-shrink:0; margin-top:.5rem; }
.geo-card h4 { font-size:.9rem; font-weight:600; color:var(--white); margin-bottom:.2rem; }
.geo-card p  { font-size:.75rem; color:rgba(255,255,255,.4); }

/* ── Services page ── */
.serv-full-card {
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(2rem,5vw,4rem); align-items:center;
  padding:clamp(2.5rem,5vw,4rem);
  background:var(--white);
  border-radius:var(--r-lg);
  border:1px solid rgba(0,0,0,.05);
  box-shadow:var(--shadow-card);
  margin-bottom:2rem;
  transition:box-shadow var(--trans);
}
.serv-full-card:hover { box-shadow:0 16px 60px rgba(0,0,0,.1); }
.serv-full-card.reverse { }
.serv-full-visual {
  border-radius:var(--r-md); overflow:hidden;
  height:360px;
}
.serv-full-visual img { width:100%; height:100%; object-fit:cover; }
.serv-full-visual-ph {
  width:100%; height:100%;
  background:linear-gradient(145deg,var(--off-white),#e8e4dd);
  display:flex; align-items:center; justify-content:center;
}
.serv-full-text h2 { margin-bottom:.8rem; }
.serv-full-text p  { color:var(--steel); font-weight:300; line-height:1.8; margin-bottom:1.2rem; }
.serv-sub-list { display:flex; flex-direction:column; gap:.5rem; margin-bottom:1.5rem; }
.serv-sub-item {
  display:flex; align-items:center; gap:.7rem;
  font-size:.84rem; color:var(--charcoal);
}
.serv-sub-item::before { content:''; display:block; width:6px; height:6px; border-radius:50%; background:var(--gold); flex-shrink:0; }

/* ── Projects page — simple photo gallery ── */
.projects-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1rem;
}
.proj-card {
  border-radius:var(--r-md); overflow:hidden;
  position:relative; aspect-ratio:4/3;
  background:var(--charcoal-3);
  transition:transform var(--trans),box-shadow var(--trans);
}
.proj-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.15); }
.proj-card img { width:100%; height:100%; object-fit:cover; transition:transform .7s ease; display:block; }
.proj-card:hover img { transform:scale(1.04); }
.proj-card-ph {
  width:100%; height:100%;
  background:linear-gradient(145deg,var(--charcoal-2),#383838);
  display:flex; align-items:center; justify-content:center;
}

/* Projects table on about/inner */
.projects-table { width:100%; border-collapse:collapse; font-size:.85rem; }
.projects-table th {
  text-align:left; padding:.9rem 1rem;
  font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold); background:var(--charcoal-2);
  border-bottom:1px solid var(--border);
}
[dir="rtl"] .projects-table th { text-align:right; }
.projects-table td { padding:.85rem 1rem; border-bottom:1px solid rgba(0,0,0,.06); color:var(--charcoal); }
.projects-table tr:hover td { background:var(--off-white); }
.projects-table tr:last-child td { border-bottom:none; }

/* ── Contact page ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:start; }
.contact-info h2 { margin-bottom:.8rem; }
.contact-info p  { color:var(--steel); font-weight:300; line-height:1.8; margin-bottom:2rem; }
.contact-rows { display:flex; flex-direction:column; gap:1rem; }
.contact-row {
  display:flex; align-items:flex-start; gap:1rem;
  padding:1rem 1.2rem;
  background:var(--white);
  border-radius:var(--r-md);
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 2px 12px rgba(0,0,0,.04);
  transition:border-color var(--trans),box-shadow var(--trans);
}
.contact-row:hover { border-color:rgba(189,141,39,.3); box-shadow:var(--shadow-gold); }
.contact-icon-wrap {
  width:42px; height:42px; border-radius:50%;
  background:var(--gold-pale); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.contact-icon-wrap svg { width:18px; height:18px; stroke:var(--gold); fill:none; stroke-width:1.8; }
.contact-row-lbl { font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--steel); margin-bottom:.2rem; }
.contact-row-val { font-size:.88rem; color:var(--charcoal); font-weight:500; }
.contact-map {
  border-radius:var(--r-lg); overflow:hidden;
  background:var(--charcoal-2);
  height:420px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(0,0,0,.08);
}
.map-ph { text-align:center; color:rgba(255,255,255,.35); font-size:.8rem; padding:2rem; }
.map-ph p { margin-top:.5rem; font-size:.7rem; opacity:.5; }

/* ── Footer ── */
.site-footer {
  background:var(--charcoal);
  border-top:1px solid var(--border);
  color:rgba(255,255,255,.45);
  padding:4.5rem 0 1.8rem;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3.5rem; margin-bottom:3.5rem; }
.footer-logo { height:36px; margin-bottom:1.2rem; }
.footer-brand p { font-size:.8rem; line-height:1.75; max-width:280px; }
.footer-col h4 { font-size:.65rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.footer-col ul { display:flex; flex-direction:column; gap:.55rem; }
.footer-col a { font-size:.8rem; color:rgba(255,255,255,.4); transition:color var(--trans); }
.footer-col a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07);
  padding-top:1.4rem;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:.5rem;
  font-size:.72rem;
}
.footer-bottom a { color:var(--gold); }

/* ── WhatsApp float ── */
.wa-float {
  position:fixed; bottom:2rem; right:2rem; z-index:900;
  display:flex; align-items:center; gap:.7rem;
  background:#25D366;
  color:var(--white);
  border-radius:50px;
  padding:.75rem 1.2rem .75rem .9rem;
  box-shadow:0 8px 32px rgba(37,211,102,.32);
  font-size:.78rem; font-weight:700;
  transition:transform var(--trans),box-shadow var(--trans);
}
.wa-float:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 14px 44px rgba(37,211,102,.42); }
.wa-float svg { width:22px; height:22px; fill:var(--white); flex-shrink:0; }
[dir="rtl"] .wa-float { right:auto; left:2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px) {
  .serv-grid          { grid-template-columns:repeat(2,1fr); }
  .values-full-grid   { grid-template-columns:repeat(2,1fr); }
  .projects-grid      { grid-template-columns:repeat(2,1fr); }
  .geo-grid           { grid-template-columns:repeat(2,1fr); }
  .footer-grid        { grid-template-columns:1fr 1fr; gap:2rem; }
  .serv-full-card     { grid-template-columns:1fr; }
  .serv-full-visual   { height:260px; }
}
@media (max-width:768px) {
  :root { --nav-h:64px; }
  .nav-links { display:none; }
  .burger    { display:flex; }
  /* Logo back to original size on mobile */
  .logo-wrap img              { height:38px; }
  #site-header.scrolled .logo-wrap img { height:32px; }
  .stats-inner            { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right:none; }
  .serv-grid              { grid-template-columns:1fr; }
  .about-home-grid        { grid-template-columns:1fr; }
  .about-visual           { height:280px; }
  .about-full-grid        { grid-template-columns:1fr; }
  .about-full-visual      { height:280px; }
  .values-full-grid       { grid-template-columns:1fr; }
  .projects-grid          { grid-template-columns:1fr; }
  .geo-grid               { grid-template-columns:1fr; }
  .contact-grid           { grid-template-columns:1fr; }
  .contact-map            { height:280px; }
  .footer-grid            { grid-template-columns:1fr; gap:1.5rem; }
  .footer-bottom          { flex-direction:column; text-align:center; }
  .hero-title             { font-size:clamp(2rem,7vw,3rem); }
  .hero-scroll-hint       { display:none; }
  .wa-float .wa-lbl       { display:none; }
  .wa-float               { padding:.9rem; border-radius:50%; }
  .carousel-img           { width:240px; height:165px; }
  .projects-table         { font-size:.78rem; }
  .projects-table td,
  .projects-table th      { padding:.65rem .7rem; }
  .nav-right .btn .dl-lbl { display:none; }
  .nav-right .btn         { padding:.55rem .75rem; font-size:.68rem; }
  .hero-bg, .hero-carousel { width:100%; max-width:100%; }
  .img-carousel           { overflow:hidden; width:100%; }
  .serv-full-card         { padding:1.5rem; }
  .vm-grid                { grid-template-columns:1fr !important; }
}
@media (max-width:480px) {
  .hero-actions      { flex-direction:column; }
  .hero-actions .btn { width:100%; justify-content:center; }
  .stats-inner       { grid-template-columns:1fr 1fr; }
  .cta-actions       { flex-direction:column; align-items:center; }
}

/* RTL specifics */
[dir="rtl"] .eyebrow::before { margin-inline-end:0; }
[dir="rtl"] .gold-rule:not(.center) { margin-right:0; margin-left:auto; }
[dir="rtl"] .footer-brand p { margin-right:0; }
[dir="rtl"] .projects-table th { text-align:right; }
[dir="rtl"] .projects-table td { text-align:right; }
/* Phone numbers always display LTR regardless of page direction */
[dir="rtl"] .wa-text-num,
[dir="rtl"] .cright-val a[href^="tel:"],
[dir="rtl"] .cright-val a[href^="https://wa.me"] { direction:ltr; unicode-bidi:plaintext; display:inline-block; }
