/* ==========================================================================
   NUOVI MONDI — Design System & Stylesheet
   Structure:
   1.  Tokens (colors, type, space, radius, shadow, motion)
   2.  Reset & Base
   3.  Layout utilities
   4.  Typography utilities
   5.  Buttons
   6.  Header & Navigation
   7.  Hero
   8.  Trust strip
   9.  Services
   10. Headache (problems -> solutions)
   11. Journey timeline
   12. Process
   13. Why us / testimonial
   14. Projects
   15. Stats
   16. Contact
   17. Footer
   18. Reveal / animation states
   19. Responsive (mobile-first breakpoints)
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* Color */
  --color-bg: #181512;
  --color-bg-secondary: #221D18;
  --color-card: #2A241F;
  --color-gold: #C8A66A;
  --color-gold-soft: #D8B882;
  --color-text: #F6F3EE;
  --color-text-secondary: #C8C2B8;

  --color-border: rgba(200, 166, 106, 0.16);
  --color-border-soft: rgba(246, 243, 238, 0.08);
  --color-overlay: rgba(15, 13, 11, 0.72);
  --color-gold-glow: rgba(200, 166, 106, 0.35);

  /* Typography */
  --font-body: 'Cairo', 'Segoe UI', sans-serif;

  --fs-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --fs-sm: clamp(0.875rem, 0.84rem + 0.18vw, 0.9375rem);
  --fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-md: clamp(1.125rem, 1.06rem + 0.3vw, 1.3125rem);
  --fs-lg: clamp(1.375rem, 1.25rem + 0.6vw, 1.75rem);
  --fs-xl: clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  --fs-2xl: clamp(2.25rem, 1.8rem + 2.2vw, 3.5rem);
  --fs-3xl: clamp(2.75rem, 2rem + 3.6vw, 5rem);

  --lh-tight: 1.15;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.85;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  --ls-eyebrow: 0.14em;

  /* Spacing (8px grid) */
  --space-1: 0.25rem;   /* 4  */
  --space-2: 0.5rem;    /* 8  */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 3rem;      /* 48 */
  --space-8: 4rem;      /* 64 */
  --space-9: 6rem;      /* 96 */
  --space-10: 8rem;     /* 128 */

  --section-padding-y: clamp(4rem, 3rem + 4vw, 8rem);
  --container-width: 1280px;
  --container-pad: var(--space-5);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 28px var(--color-gold-glow);

  /* Motion */
  --ease-architect: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-instant: 150ms;
  --duration-fast: 280ms;
  --duration-base: 500ms;
  --duration-slow: 900ms;
  --duration-cinematic: 1400ms;

  --header-height: 88px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body { background: var(--color-bg); }

body {
  direction: rtl;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-gold-soft);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

/* ==========================================================================
   3. LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section { position: relative; }

.section-head { max-width: 640px; margin-bottom: var(--space-8); }
.section-head--center { max-width: 640px; margin-inline: auto; text-align: center; }

/* ==========================================================================
   4. TYPOGRAPHY UTILITIES
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-text);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  transition: transform var(--duration-fast) var(--ease-architect),
              box-shadow var(--duration-fast) var(--ease-architect),
              background-color var(--duration-fast) var(--ease-architect),
              border-color var(--duration-fast) var(--ease-architect),
              color var(--duration-fast) var(--ease-architect);
}

.btn--sm { padding: 0.65rem 1.4rem; font-size: var(--fs-xs); }
.btn--md { padding: 0.8rem 1.7rem; }
.btn--lg { padding: 1.05rem 2.3rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold-soft), var(--color-gold));
  color: #1c1712;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px var(--color-gold-glow); }

.btn--outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}
.btn--outline:hover { border-color: var(--color-gold); color: var(--color-gold-soft); transform: translateY(-2px); }

.btn--outline-light {
  border: 1px solid rgba(246, 243, 238, 0.35);
  color: var(--color-text);
  background: rgba(246, 243, 238, 0.04);
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover { border-color: var(--color-text); transform: translateY(-2px); }

.btn--ghost-light {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 6px;
  padding-inline: var(--space-3);
}
.btn--ghost-light:hover { color: var(--color-gold-soft); }

/* Magnetic hover lift, refined by JS transform on desktop pointer devices */
.magnetic { will-change: transform; }

/* ==========================================================================
   6. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: var(--space-4);
  background: transparent;
  transition: background-color var(--duration-base) var(--ease-architect),
              padding-block var(--duration-base) var(--ease-architect),
              box-shadow var(--duration-base) var(--ease-architect),
              backdrop-filter var(--duration-base) var(--ease-architect);
}

.site-header.is-scrolled {
  background: rgba(24, 21, 18, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: var(--space-3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--color-border-soft);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.brand__mark { width: 30px; height: 30px; color: var(--color-gold); flex-shrink: 0; }
.brand__mark--footer { width: 34px; height: 34px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-size: var(--fs-sm); font-weight: var(--fw-bold); letter-spacing: 0.06em; color: var(--color-text); }
.brand__tagline { font-size: 0.62rem; letter-spacing: 0.16em; color: var(--color-text-secondary); text-transform: uppercase; }

.main-nav__list { display: flex; align-items: center; gap: var(--space-6); }
.main-nav__link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  padding-block: var(--space-2);
  transition: color var(--duration-fast) var(--ease-architect);
}
.main-nav__link::after {
  content: '';
  position: absolute;
  right: 0; left: 0; bottom: -2px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-architect);
}
.main-nav__link:hover,
.main-nav__link.is-active { color: var(--color-text); }
.main-nav__link:hover::after,
.main-nav__link.is-active::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: var(--space-4); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  margin-inline: auto;
  transition: transform var(--duration-fast) var(--ease-architect), opacity var(--duration-fast) var(--ease-architect);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-6);
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 99;
  background: rgba(20, 17, 14, 0.98);
  backdrop-filter: blur(16px);
  padding: var(--space-7) var(--space-5);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-architect),
              transform var(--duration-base) var(--ease-architect),
              visibility var(--duration-base);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--space-5); }
.mobile-nav__link { font-size: var(--fs-lg); font-weight: var(--fw-semibold); color: var(--color-text); }

/* ==========================================================================
   7. HERO - LAYOUT
   ========================================================================== */

.hero{
    position:relative;
    min-height:100svh;
    display:flex;
    align-items:center;
    overflow:hidden;
    isolation:isolate;
    background:#F5F1EA;
}

/* ===========================
   BACKGROUND
=========================== */

.hero__media{
    position:absolute;
    inset:0;
    z-index:1;
    overflow:hidden;
}

.hero__image{

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transform:scale(1.04);

    filter:
    saturate(108%)
    contrast(103%)
    brightness(104%);

}

/* الطبقة الأساسية */

.hero__gradient{

    position:absolute;
    inset:0;

    background:

    radial-gradient(
        circle at 82% 42%,
        rgba(255,248,235,.18),
        transparent 32%
    ),

    linear-gradient(
        to left,
        rgba(18,18,18,.46),
        rgba(18,18,18,.18) 40%,
        transparent 72%
    ),

    linear-gradient(
        to top,
        rgba(18,18,18,.82) 0%,
        rgba(18,18,18,.38) 38%,
        rgba(18,18,18,.08) 70%
    );

}

/* تركيز النظر على النص */

.hero__vignette{

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at 24% 48%,

        transparent 0%,

        transparent 26%,

        rgba(18,18,18,.14) 55%,

        rgba(18,18,18,.42) 100%

    );

    pointer-events:none;

}

/* ===========================
   GRID
=========================== */

.hero__grid{

    position:absolute;

    inset:0;

    z-index:2;

    pointer-events:none;

    opacity:.08;

    background:

    linear-gradient(rgba(214,177,98,.22) 1px,transparent 1px),

    linear-gradient(90deg,rgba(214,177,98,.22) 1px,transparent 1px);

    background-size:64px 64px;

    mask-image:linear-gradient(to bottom,transparent 0%,black 18%,black 80%,transparent);

}

/* ===========================
   BLUEPRINT
=========================== */

.hero__blueprint{

    position:absolute;

    inset:0;

    z-index:2;

    color:var(--color-gold);

    opacity:.08;

    pointer-events:none;

    mix-blend-mode:screen;

    animation:blueprintFloat 18s ease-in-out infinite;

}

.hero__blueprint-svg{

    width:100%;
    height:100%;

}

.blueprint-line{

    stroke-dasharray:1500;

    stroke-dashoffset:1500;

    animation:

    draw-line 3.2s var(--ease-architect) .4s forwards;

}

@keyframes draw-line{

    to{

        stroke-dashoffset:0;

    }

}

@keyframes blueprintFloat{

    0%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(18px);

    }

    100%{

        transform:translateX(0);

    }

}

/* ===========================
   CONTENT WRAPPER
=========================== */

.hero__wrapper{

    position:relative;

    z-index:5;

    width:100%;

}

.hero__content{

    position:relative;

    z-index:5;

    width:100%;

    max-width:560px;

    margin-right:0;

    margin-left:auto;

    transform:translateX(120px);

    text-align:right;

    padding-top:120px;

    padding-bottom:90px;

}

/* ===========================
   BADGE
=========================== */

.hero__badge{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:12px 20px;

    margin-bottom:28px;

    border-radius:999px;

    background:rgba(214,177,98,.12);

    border:1px solid rgba(214,177,98,.18);

    color:var(--color-gold-soft);

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    backdrop-filter:blur(12px);

}

.hero__badge::before{

    content:"";

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--color-gold);

    box-shadow:0 0 16px rgba(214,177,98,.7);

}

/* ===========================
   HEADLINE
=========================== */

.hero__headline{
    margin:0 0 24px;
    font-size:clamp(38px,3.8vw,58px);
    line-height:1.65;
    font-weight:900;
    letter-spacing:-1px;
    text-wrap:balance;
    overflow:visible;
}

.hero__line{

    display:block;

}

.hero__line + .hero__line{

    margin-top:12px;

}

.hero__line--gold{
    display:inline-block;

    background:

    linear-gradient(

        90deg,

        #fff5cf 0%,

        #e6c271 35%,

        #c89433 70%,

        #fff1b6 100%

    );

    background-size:220%;

    animation:goldMove 8s linear infinite;

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;

}

@keyframes goldMove{

    from{

        background-position:0%;

    }

    to{

        background-position:220%;

    }

}

/* ===========================
   DESCRIPTION
=========================== */

.hero__desc{

    max-width:560px;

    margin-bottom:34px;

    color:#E5DDD2;

    font-size:17px;

    line-height:1.9;

}

.hero__desc strong{

    color:#fff;

    font-weight:700;

}

/* ===========================
   BUTTONS
=========================== */

.hero__actions{

display:flex;

justify-content:flex-start;

gap:18px;

margin-top:36px;

}

.hero__actions .btn{

    min-width:215px;

    height:64px;

    border-radius:60px;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.hero__actions .btn--gold{

    box-shadow:

    0 18px 40px rgba(214,177,98,.28);

}

.hero__actions .btn--gold:hover{

    transform:translateY(-4px);

    box-shadow:

    0 28px 60px rgba(214,177,98,.38);

}

.hero__actions .btn--outline{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

}

.hero__actions .btn--outline:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-4px);

}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:992px){

.hero__glass{

padding:42px;

}

.hero__headline{

font-size:64px;

}

.hero__desc{

font-size:18px;

}

}

@media (max-width:768px){

.hero__glass{

padding:32px 26px;

border-radius:24px;

}

.hero__headline{

font-size:46px;

line-height:1.05;

}

.hero__desc{

font-size:16px;

line-height:1.9;

}

.hero__actions{

flex-direction:column;

}

.hero__actions .btn{

width:100%;

}

}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-secondary);
}
.hero__scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; right: 0; left: 0;
  height: 100%;
  background: var(--color-gold-soft);
  animation: scroll-drip 2.2s var(--ease-architect) infinite;
}
@keyframes scroll-drip {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
.hero__scroll-text { font-size: var(--fs-xs); letter-spacing: var(--ls-eyebrow); }

/* Cursor glow (desktop, decorative) */
.cursor-glow {
  position: fixed;
  z-index: 9999;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold-glow), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity var(--duration-base) var(--ease-architect);
  mix-blend-mode: screen;
}
.cursor-glow.is-active { opacity: 0.5; }

/*==================================================
8. WE HANDLE EVERYTHING
==================================================*/

.we-handle{

    position:relative;

    overflow:hidden;

    padding:140px 0;

    background:
    radial-gradient(circle at top,#2b241e 0%,#171412 35%,#111111 100%);

}


.we-handle::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 15% 25%,
    rgba(201,168,111,.12),
    transparent 40%),

    radial-gradient(circle at 85% 70%,
    rgba(201,168,111,.08),
    transparent 35%);

    pointer-events:none;

}


.we-handle::after{

    content:"";

    position:absolute;

    left:0;

    right:0;

    top:0;

    height:1px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(201,168,111,.45),
        transparent
    );

}


.we-handle .container{

    position:relative;

    z-index:5;

}


.we-handle__content{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}


.we-handle .eyebrow{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

    color:#C9A86F;

    font-size:.85rem;

    letter-spacing:3px;

    text-transform:uppercase;

}


.we-handle .eyebrow::before{

    content:"";

    width:38px;

    height:1px;

    background:#C9A86F;

}


.we-handle__title{

    font-size:clamp(2.4rem,5vw,4.8rem);

    line-height:1.15;

    color:#F7F3EC;

    margin-bottom:26px;

    font-weight:700;

}


.we-handle__title span{

    display:block;

    margin-top:10px;

    color:#C9A86F;

}


.we-handle__desc{

    max-width:720px;

    margin:auto;

    color:#BFB8AF;

    font-size:1.08rem;

    line-height:2;

}


.we-handle__desc strong{

    color:#ffffff;

    font-weight:600;

}


.we-handle__stage{

    position:relative;

    margin:90px auto 0;

    width:min(1150px,100%);

    height:520px;

    border-radius:34px;

    overflow:hidden;

    background:

    linear-gradient(
        180deg,
        #2d2824 0%,
        #1d1a18 45%,
        #151313 100%
    );

    border:1px solid rgba(255,255,255,.05);

    box-shadow:

    0 40px 120px rgba(0,0,0,.45),

    inset 0 1px rgba(255,255,255,.05);

}


.we-handle__stage::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:.25;

    background-image:

    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);

    background-size:70px 70px;

}


.we-handle__stage::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at center,
    transparent 20%,
    rgba(0,0,0,.18) 100%);

    pointer-events:none;

}


.we-handle__cta{

    position:absolute;

    left:50%;

    bottom:45px;

    transform:translateX(-50%);

    z-index:30;

}


.we-handle__cta .btn{

    min-width:240px;

}


/*==================================================
TOOLS
==================================================*/

.tool{

    position:absolute;

    z-index:5;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:
    transform .45s ease,
    filter .45s ease,
    opacity .45s ease;

    opacity:.92;

}

.tool svg{

    width:100%;

    height:100%;

    overflow:visible;

}

.tool svg *{

    fill:none;

    stroke:#d8c6a0;

    stroke-width:4;

    stroke-linecap:round;

    stroke-linejoin:round;

    vector-effect:non-scaling-stroke;

    transition:all .45s ease;

}

.we-handle__stage:hover .tool{

    opacity:1;

}

.we-handle__stage:hover .tool svg *{

    stroke:#f0d6a3;

    filter:drop-shadow(0 0 10px rgba(201,168,111,.35));

}

/* ===========================
ROLLER
=========================== */

.roller{

    width:170px;

    height:170px;

    top:55px;

    left:85px;

    transform:rotate(-18deg);

}

/* ===========================
DRILL
=========================== */

.drill{

    width:180px;

    height:180px;

    top:220px;

    left:210px;

    transform:rotate(12deg);

}

/* ===========================
HAMMER
=========================== */

.hammer{

    width:150px;

    height:150px;

    top:78px;

    left:420px;

    transform:rotate(32deg);

}

/* ===========================
TAPE
=========================== */

.tape{

    width:135px;

    height:135px;

    top:265px;

    left:520px;

    transform:rotate(-8deg);

}

/* ===========================
LEVEL
=========================== */

.level{

    width:230px;

    height:90px;

    top:95px;

    right:230px;

    transform:rotate(-6deg);

}

/* ===========================
WRENCH
=========================== */

.wrench{

    width:170px;

    height:170px;

    right:95px;

    top:235px;

    transform:rotate(22deg);

}

/* ===========================
BRUSH
=========================== */

.brush{

    width:110px;

    height:180px;

    right:355px;

    top:235px;

    transform:rotate(-20deg);

}

/* ===========================
TILE
=========================== */

.tile{

    width:125px;

    height:125px;

    right:485px;

    top:315px;

    transform:rotate(9deg);

}

/* ===========================
PIPE
=========================== */

.pipe{

    width:170px;

    height:170px;

    top:170px;

    left:690px;

    transform:rotate(-24deg);

}

/*===========================
DEPTH
===========================*/

.roller,
.drill,
.hammer,
.wrench{

    filter:drop-shadow(0 14px 18px rgba(0,0,0,.35));

}

.tape,
.level,
.pipe,
.tile,
.brush{

    filter:drop-shadow(0 10px 14px rgba(0,0,0,.28));

}

/*===========================
HOVER LIFT
===========================*/

.tool:hover{

    transform:translateY(-6px) scale(1.04);

}

.tool:hover svg *{

    stroke:#ffe5b3;

}

/*===========================
CTA
===========================*/

.we-handle__cta{

    z-index:50;

}

.we-handle__cta .btn{

    backdrop-filter:blur(18px);

    border-color:rgba(201,168,111,.45);

    background:rgba(18,18,18,.55);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

}

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

/* ---------- Roller ---------- */

.roller{

    animation:rollerFloat 7s ease-in-out infinite;

}

.roller svg{

    transform-origin:45px 30px;

    animation:rollerRotate 6s ease-in-out infinite;

}

@keyframes rollerFloat{

    0%,100%{

        transform:translateY(0) rotate(-18deg);

    }

    50%{

        transform:translateY(-4px) rotate(-16deg);

    }

}

@keyframes rollerRotate{

    0%,100%{

        transform:rotate(0deg);

    }

    50%{

        transform:rotate(8deg);

    }

}

/* ---------- Drill ---------- */

.drill{

    animation:drillFloat 5s ease-in-out infinite;

}

.drill:hover{

    animation:drillRun .08s linear infinite;

}

@keyframes drillFloat{

    0%,100%{

        transform:translateY(0) rotate(12deg);

    }

    50%{

        transform:translateY(-3px) rotate(13deg);

    }

}

@keyframes drillRun{

    0%{

        transform:translate(0,0) rotate(12deg);

    }

    25%{

        transform:translate(1px,-1px) rotate(12deg);

    }

    50%{

        transform:translate(-1px,1px) rotate(12deg);

    }

    75%{

        transform:translate(1px,1px) rotate(12deg);

    }

    100%{

        transform:translate(0,0) rotate(12deg);

    }

}

/* ---------- Hammer ---------- */

.hammer{

    transform-origin:55% 85%;

    animation:hammerMove 6s ease-in-out infinite;

}

@keyframes hammerMove{

    0%,100%{

        transform:rotate(32deg);

    }

    50%{

        transform:rotate(40deg);

    }

}

/* ---------- Tape ---------- */

.tape{

    animation:tapeFloat 6s ease-in-out infinite;

}

.tape::after{

    content:"";

    position:absolute;

    right:12%;

    top:48%;

    width:0;

    height:3px;

    background:#d7b57d;

    border-radius:4px;

    animation:tapeOpen 5s ease-in-out infinite;

}

@keyframes tapeFloat{

    0%,100%{

        transform:rotate(-8deg);

    }

    50%{

        transform:rotate(-5deg);

    }

}

@keyframes tapeOpen{

    0%,100%{

        width:0;

        opacity:.4;

    }

    50%{

        width:48px;

        opacity:1;

    }

}

/* ---------- Brush ---------- */

.brush{

    animation:brushMove 6s ease-in-out infinite;

}

@keyframes brushMove{

    0%,100%{

        transform:rotate(-20deg);

    }

    50%{

        transform:rotate(-13deg);

    }

}

/* ---------- Pipe ---------- */

.pipe{

    animation:pipeFloat 8s ease-in-out infinite;

}

@keyframes pipeFloat{

    0%,100%{

        transform:translateY(0) rotate(-24deg);

    }

    50%{

        transform:translateY(-5px) rotate(-22deg);

    }

}

/* ---------- Wrench ---------- */

.wrench{

    animation:wrenchMove 7s ease-in-out infinite;

}

@keyframes wrenchMove{

    0%,100%{

        transform:rotate(22deg);

    }

    50%{

        transform:rotate(15deg);

    }

}

/* ---------- Level ---------- */

.level{

    animation:levelMove 8s ease-in-out infinite;

}

@keyframes levelMove{

    0%,100%{

        transform:translateY(0) rotate(-6deg);

    }

    50%{

        transform:translateY(-2px) rotate(-4deg);

    }

}

/*==================================================
Particles
==================================================*/

.particles{

    position:absolute;

    inset:0;

    pointer-events:none;

    overflow:hidden;

}

.particles::before,
.particles::after{

    content:"";

    position:absolute;

    bottom:45px;

    left:50%;

    width:5px;

    height:5px;

    border-radius:50%;

    background:rgba(201,168,111,.35);

    box-shadow:

        -140px -20px 0 rgba(201,168,111,.18),

        120px -40px 0 rgba(201,168,111,.25),

        -70px -80px 0 rgba(201,168,111,.22),

        80px -110px 0 rgba(201,168,111,.18),

        160px -65px 0 rgba(201,168,111,.15),

        -180px -55px 0 rgba(201,168,111,.15);

    animation:dustRise 9s linear infinite;

}

.particles::after{

    animation-delay:4.5s;

    opacity:.5;

}

@keyframes dustRise{

    0%{

        transform:translate(-50%,40px) scale(.6);

        opacity:0;

    }

    20%{

        opacity:.5;

    }

    100%{

        transform:translate(-50%,-180px) scale(1.4);

        opacity:0;

    }

}

/*==================================================
Glow
==================================================*/

.tool svg{

    animation:toolGlow 6s ease-in-out infinite;

}

@keyframes toolGlow{

    0%,100%{

        filter:drop-shadow(0 0 0 rgba(201,168,111,0));

    }

    50%{

        filter:drop-shadow(0 0 10px rgba(201,168,111,.30));

    }

}


/*==================================================
RESPONSIVE + PREMIUM FINISH
==================================================*/

/* ---------- Premium Lighting ---------- */

.we-handle__stage{

    isolation:isolate;

}

.we-handle__stage::before{

    animation:gridMove 20s linear infinite;

}

@keyframes gridMove{

    from{

        background-position:0 0,0 0;

    }

    to{

        background-position:70px 70px,-70px 70px;

    }

}

/* Soft Spotlight */

.we-handle__stage .light{

    position:absolute;

    inset:0;

    pointer-events:none;

}

.we-handle__stage .light::before{

    content:"";

    position:absolute;

    top:-180px;

    left:50%;

    width:520px;

    height:520px;

    transform:translateX(-50%);

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,221,160,.12),
    rgba(255,221,160,0));

    filter:blur(30px);

}

/* Hover */

.we-handle__stage:hover{

    transform:translateY(-3px);

    transition:.45s ease;

    box-shadow:

        0 45px 120px rgba(0,0,0,.45),

        0 0 60px rgba(201,168,111,.08),

        inset 0 1px rgba(255,255,255,.08);

}

.we-handle__stage:hover .tool{

    filter:

    drop-shadow(0 15px 25px rgba(0,0,0,.45));

}

/* Button */

.we-handle__cta .btn{

    transition:.35s;

}

.we-handle__cta .btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 20px 45px rgba(0,0,0,.35),

    0 0 30px rgba(201,168,111,.18);

}

/*==================================================
Tablet
==================================================*/

@media (max-width:1100px){

.we-handle__stage{

    height:430px;

}

.roller{

    left:35px;

    top:40px;

    width:145px;

}

.drill{

    left:150px;

    top:190px;

    width:155px;

}

.hammer{

    left:330px;

}

.level{

    right:130px;

}

.pipe{

    left:520px;

}

.wrench{

    right:45px;

}

}

/*==================================================
Mobile
==================================================*/

@media (max-width:768px){

.we-handle{

    padding:90px 0;

}

.we-handle__content{

    margin-bottom:45px;

}

.we-handle__title{

    font-size:2.2rem;

}

.we-handle__desc{

    font-size:.97rem;

    line-height:1.9;

}

.we-handle__stage{

    height:auto;

    padding:40px 20px 140px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:26px;

}

.tool{

    position:relative !important;

    left:auto !important;

    right:auto !important;

    top:auto !important;

    bottom:auto !important;

    width:95px !important;

    height:95px !important;

    transform:none !important;

    margin:auto;

}

.we-handle__cta{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

}

.we-handle__cta .btn{

    min-width:220px;

}

}

/*==================================================
Small Phones
==================================================*/

@media (max-width:480px){

.we-handle__stage{

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.tool{

    width:82px !important;

    height:82px !important;

}

.we-handle__title{

    font-size:1.9rem;

}

.we-handle__desc{

    font-size:.92rem;

}

.we-handle .eyebrow{

    letter-spacing:2px;

}

}

/*==================================================
Reduced Motion
==================================================*/

@media (prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

}

}




/*==================================================
9. SERVICES
==================================================*/

.services{

    padding:140px 0;

    background:var(--color-bg);

    position:relative;

}


.services .section-head{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span{

    display:block;

    color:var(--color-gold);

}

.section-subtitle{

    margin-top:20px;

    color:var(--color-text-secondary);

    line-height:1.9;

    font-size:1rem;

}


/*==============================
GRID
==============================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}


/*==============================
CARD
==============================*/

.service-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#171717;

    aspect-ratio:4/5;

    cursor:pointer;

    isolation:isolate;

    border:1px solid rgba(255,255,255,.05);

    transition:
    transform .45s,
    border-color .45s,
    box-shadow .45s;

}


/* الصورة نفسها */

.service-card img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:

    transform .7s ease,

    filter .7s ease;

}


/* Overlay */

.service-card__overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to top,

        rgba(0,0,0,.82) 5%,

        rgba(0,0,0,.45) 45%,

        rgba(0,0,0,.05) 100%

    );

    z-index:1;

}


/* النص */

.service-card__content{

    position:absolute;

    inset:auto 24px 24px 24px;

    z-index:2;

}

.service-number{

    display:inline-block;

    margin-bottom:14px;

    color:var(--color-gold);

    font-size:.8rem;

    letter-spacing:2px;

}

.service-card h3{

    color:#fff;

    font-size:1.55rem;

    margin-bottom:10px;

}

.service-card p{

    color:rgba(255,255,255,.78);

    line-height:1.8;

    font-size:.92rem;

}


/*==============================
HERO CARD
==============================*/

.service-card--hero{

    grid-column:span 2;

    grid-row:span 2;

    aspect-ratio:auto;

    min-height:620px;

}

.service-card--hero h3{

    font-size:2.5rem;

}

.service-card--hero p{

    max-width:420px;

    font-size:1.05rem;

}


/*==============================
HOVER
==============================*/

.service-card:hover{

    transform:translateY(-8px);

    border-color:rgba(201,168,111,.5);

    box-shadow:

    0 25px 60px rgba(0,0,0,.35);

}

.service-card:hover img{

    transform:scale(1.08);

    filter:

    saturate(1.08)

    contrast(1.03);

}

.service-card:hover .service-card__overlay{

    background:

    linear-gradient(

        to top,

        rgba(0,0,0,.68),

        rgba(0,0,0,.28),

        transparent

    );

}

.service-card h3,

.service-card p{

    transition:.4s;

}

.service-card:hover h3{

    transform:translateY(-4px);

    color:var(--color-gold-soft);

}

.service-card:hover p{

    transform:translateY(-2px);

}


/*==============================
BOTTOM TEXT
==============================*/

.services-bottom-text{

    margin-top:55px;

    text-align:center;

    color:var(--color-text-secondary);

    line-height:2;

}


/*==============================
TABLET
==============================*/

@media(max-width:1100px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

.service-card--hero{

grid-column:span 2;

min-height:520px;

}

}


/*==============================
MOBILE
==============================*/

@media(max-width:700px){

.services-grid{

grid-template-columns:1fr;

}

.service-card{

aspect-ratio:16/10;

}

.service-card--hero{

grid-column:auto;

grid-row:auto;

min-height:430px;

}

.service-card--hero h3{

font-size:2rem;

}

}

/*==================================================
SERVICES PREMIUM EFFECTS
==================================================*/

/* Gold Border Animation */

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    border:1px solid rgba(201,168,111,.15);

    z-index:5;

    transition:.45s;

}

.service-card::after{

    content:"";

    position:absolute;

    inset:-1px;

    border-radius:22px;

    padding:1px;

    background:
    linear-gradient(
        135deg,
        rgba(201,168,111,0),
        rgba(201,168,111,.9),
        rgba(201,168,111,0)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    opacity:0;

    transition:.55s;

    z-index:6;

}

.service-card:hover::after{

    opacity:1;

}


/*=================================
Image
=================================*/

.service-card img{

    filter:
    grayscale(100%)
    brightness(.78);

}

.service-card:hover img{

    filter:
    grayscale(0%)
    brightness(1);

}


/*=================================
Overlay
=================================*/

.service-card__overlay{

    transition:.55s;

}

.service-card:hover .service-card__overlay{

    background:

    linear-gradient(

    to top,

    rgba(0,0,0,.80),

    rgba(0,0,0,.18),

    transparent

    );

}


/*=================================
Content Animation
=================================*/

.service-card__content{

    transition:.45s;

}

.service-card p{

    opacity:0;

    transform:translateY(16px);

}

.service-card:hover p{

    opacity:1;

    transform:translateY(0);

}

.service-card:hover .service-card__content{

    transform:translateY(-8px);

}


/*=================================
Gold Shine
=================================*/

.service-card .shine{

    position:absolute;

    inset:0;

    pointer-events:none;

}

.service-card::selection{

    background:transparent;

}

.service-card::before{

    background:

    linear-gradient(

        120deg,

        transparent 15%,

        rgba(255,255,255,.03) 50%,

        transparent 85%

    );

}


/*=================================
Hero Card
=================================*/

.service-card--hero{

    overflow:hidden;

}

.service-card--hero img{

    transition:

    transform 8s linear,

    filter .6s;

}

.service-card--hero:hover img{

    transform:scale(1.12);

}

.service-card--hero h3{

    transition:.45s;

}

.service-card--hero:hover h3{

    letter-spacing:.5px;

}


/*=================================
Soft Glow
=================================*/

.service-card:hover{

    box-shadow:

    0 20px 50px rgba(0,0,0,.35),

    0 0 35px rgba(201,168,111,.15);

}


/*=================================
Floating Animation
=================================*/

.service-card{

    animation:cardFloat 9s ease-in-out infinite;

}

.service-card:nth-child(2){

    animation-delay:.5s;

}

.service-card:nth-child(3){

    animation-delay:1s;

}

.service-card:nth-child(4){

    animation-delay:1.5s;

}

.service-card:nth-child(5){

    animation-delay:2s;

}

.service-card:nth-child(6){

    animation-delay:2.5s;

}

.service-card:nth-child(7){

    animation-delay:3s;

}

.service-card:nth-child(8){

    animation-delay:3.5s;

}

.service-card:nth-child(9){

    animation-delay:4s;

}

.service-card:nth-child(10){

    animation-delay:4.5s;

}

.service-card:nth-child(11){

    animation-delay:5s;

}

@keyframes cardFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-4px);

    }

}


/*=================================
Section Fade
=================================*/

.services-grid{

    perspective:1200px;

}

.service-card{

    transform-style:preserve-3d;

}

/*==================================================
10. BEFORE / AFTER
==================================================*/

.headache{

    position:relative;

    padding:150px 0;

    background:var(--color-bg-secondary);

    overflow:hidden;

}

.headache::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 20% 20%,
    rgba(201,168,111,.05),
    transparent 35%),

    radial-gradient(circle at 80% 80%,
    rgba(201,168,111,.04),
    transparent 40%);

    pointer-events:none;

}

.headache .section-head{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.headache .section-title span{

    display:block;

    color:var(--color-gold);

}

.headache .section-subtitle{

    margin-top:18px;

    color:var(--color-text-secondary);

    line-height:1.9;

    font-size:1rem;

}


/*==========================================
CARD
==========================================*/

.compare-card{

    position:relative;

    display:grid;

    grid-template-columns:1fr 180px 1fr;

    gap:60px;

    align-items:center;

    padding:70px;

    border-radius:34px;

    overflow:hidden;

    background:

    linear-gradient(

        180deg,

        rgba(255,255,255,.03),

        rgba(255,255,255,.015)

    );

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(12px);

    box-shadow:

    0 40px 120px rgba(0,0,0,.28);

}


/*==========================================
COLUMN
==========================================*/

.compare-side{

    display:flex;

    flex-direction:column;

}

.compare-side__badge{

    display:inline-flex;

    align-self:flex-start;

    padding:10px 18px;

    margin-bottom:34px;

    border-radius:999px;

    font-size:.82rem;

    letter-spacing:1px;

    color:var(--color-gold);

    border:1px solid rgba(201,168,111,.25);

    background:rgba(201,168,111,.08);

}


/*==========================================
LIST
==========================================*/

.compare-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.compare-list li{

    display:flex;

    align-items:center;

    gap:16px;

    font-size:1.05rem;

    line-height:1.8;

    color:var(--color-text);

}

.compare-list--negative li{

    color:rgba(255,255,255,.70);

}

.compare-list--positive li{

    color:#fff;

    font-weight:500;

}


/*==========================================
ICONS
==========================================*/

.compare-icon{

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    flex-shrink:0;

    font-size:.95rem;

}

.compare-list--negative .compare-icon{

    color:#d9806d;

    background:rgba(217,128,109,.08);

    border:1px solid rgba(217,128,109,.25);

}

.compare-list--positive .compare-icon{

    color:var(--color-gold);

    background:rgba(201,168,111,.08);

    border:1px solid rgba(201,168,111,.25);

}


/*==========================================
CENTER
==========================================*/

.compare-middle{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.compare-middle::before{

    content:"";

    position:absolute;

    top:-80px;

    bottom:-80px;

    width:1px;

    background:

    linear-gradient(

    transparent,

    rgba(201,168,111,.35),

    transparent

    );

}

.compare-circle{

    width:150px;

    height:150px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:

    radial-gradient(circle,
    rgba(201,168,111,.12),
    transparent);

    border:1px solid rgba(201,168,111,.20);

    color:var(--color-gold);

}

.compare-circle svg{

    width:90px;

    height:90px;

}

.compare-circle svg *{

    fill:none;

    stroke:currentColor;

    stroke-width:3;

    stroke-linecap:round;

    stroke-linejoin:round;

}

/*==================================================
BEFORE / AFTER EFFECTS
==================================================*/

/*------------------------------
Hover Card
------------------------------*/

.compare-card{

    transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

}

.compare-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 45px 120px rgba(0,0,0,.35),
        0 0 45px rgba(201,168,111,.08);

}


/*------------------------------
Border Glow
------------------------------*/

.compare-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:34px;

    padding:1px;

    background:
    linear-gradient(
        135deg,
        rgba(201,168,111,0),
        rgba(201,168,111,.65),
        rgba(201,168,111,0)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    opacity:0;

    transition:.55s;

    pointer-events:none;

}

.compare-card:hover::before{

    opacity:1;

}


/*------------------------------
Circle
------------------------------*/

.compare-circle{

    transition:
    transform .5s,
    box-shadow .5s;

    animation:circlePulse 5s ease-in-out infinite;

}

.compare-card:hover .compare-circle{

    transform:scale(1.06);

    box-shadow:

    0 0 35px rgba(201,168,111,.18);

}

@keyframes circlePulse{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.03);

    }

}


/*------------------------------
Arrow Animation
------------------------------*/

.compare-circle svg{

    animation:arrowMove 3.5s ease-in-out infinite;

}

@keyframes arrowMove{

    0%,100%{

        transform:translateX(0);

    }

    50%{

        transform:translateX(7px);

    }

}


/*------------------------------
Lists
------------------------------*/

.compare-list li{

    transition:

    transform .35s,

    color .35s,

    opacity .35s;

}

.compare-side:hover li{

    opacity:.55;

}

.compare-side li:hover{

    opacity:1;

    transform:translateX(-10px);

}


/*------------------------------
Positive
------------------------------*/

.compare-list--positive li{

    position:relative;

}

.compare-list--positive li::after{

    content:"";

    position:absolute;

    right:-20px;

    top:50%;

    width:0;

    height:1px;

    background:rgba(201,168,111,.55);

    transition:.35s;

}

.compare-list--positive li:hover::after{

    width:12px;

}


/*------------------------------
Icons
------------------------------*/

.compare-icon{

    transition:

    transform .35s,

    background .35s,

    border-color .35s;

}

.compare-list li:hover .compare-icon{

    transform:scale(1.12);

}

.compare-list--positive li:hover .compare-icon{

    background:rgba(201,168,111,.18);

}

.compare-list--negative li:hover .compare-icon{

    background:rgba(217,128,109,.18);

}


/*------------------------------
Badge
------------------------------*/

.compare-side__badge{

    transition:.35s;

}

.compare-card:hover .compare-side__badge{

    letter-spacing:1.5px;

}


/*------------------------------
Responsive
------------------------------*/

@media(max-width:1100px){

.compare-card{

grid-template-columns:1fr;

gap:45px;

padding:55px 40px;

}

.compare-middle{

order:-1;

}

.compare-middle::before{

display:none;

}

.compare-circle{

width:120px;

height:120px;

}

}


@media(max-width:768px){

.headache{

padding:100px 0;

}

.compare-card{

padding:35px 22px;

border-radius:26px;

}

.compare-side__badge{

margin-bottom:22px;

}

.compare-list{

gap:18px;

}

.compare-list li{

font-size:.95rem;

line-height:1.8;

}

.compare-circle{

width:95px;

height:95px;

}

.compare-circle svg{

width:60px;

height:60px;

}

.headache .section-head{

margin-bottom:55px;

}

}

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

:root{
  --bg: #F8F6F1;
  --card: #FFFFFF;
  --gold: #C6A56A;
  --gold-soft: #DCC79A;
  --gold-dark: #A8875A;
  --dark: #1D1D1D;
  --gray: #7A7A7A;
  --border: #E8E2D7;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-soft: cubic-bezier(.16,.84,.44,1);
}

body{
  background: var(--bg);
  font-family: 'Cairo', sans-serif;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ============ SECTION SHELL ============ */
.journey{
  position: relative;
  width: 100%;
  padding: 140px 24px 160px;
  background: var(--bg);
  overflow: hidden;
}

.journey__glow{
  position: absolute;
  top: -200px;
  right: 50%;
  transform: translateX(50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(198,165,106,.10) 0%, rgba(198,165,106,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.journey__container{
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* ============ HEADER ============ */
.journey__header{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 88px;
}

.journey__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.eyebrow-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.journey__title{
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.journey__dots{ color: var(--gray); font-weight: 400; }

.journey__title-gold{
  display: block;
  color: var(--gold-dark);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 45%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 6px;
}

.journey__desc{
  margin-top: 26px;
  font-size: 17px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.9;
}

/* ============ STATUS CARD ============ */
.status-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 56px;
  box-shadow: 0 30px 70px -40px rgba(29,29,29,.18);
  margin-bottom: 96px;
}

.status-card__ring{
  position: relative;
  width: 160px;
  height: 160px;
  flex: 0 0 160px;
}

.ring-svg{ width: 100%; height: 100%; transform: rotate(-90deg); }

.ring-track{
  fill: none;
  stroke: var(--bg);
  stroke-width: 8;
}

.ring-fill{
  fill: none;
  stroke: var(--gold);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 1.6s var(--ease-soft) .2s;
}

.ring-center{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ring-value{
  font-size: 34px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.ring-label{
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.status-card__divider{
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex: 0 0 1px;
}

.status-card__grid{
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 32px;
  column-gap: 32px;
}

.status-item{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-item__label{
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 500;
}

.status-item__value{
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  direction: ltr;
  unicode-bidi: isolate;
  text-align: right;
}

.status-item__value--lg{ font-size: 22px; font-weight: 700; }
.status-item__value--gold{ color: var(--gold-dark); }
.status-item__value--muted{
  color: var(--gray);
  font-weight: 500;
  font-size: 15px;
  direction: rtl;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  position: relative;
}
.pulse-dot::after{
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulseRing 2.4s ease-out infinite;
}

@keyframes pulseRing{
  0%{ transform: scale(.6); opacity: .8; }
  100%{ transform: scale(1.8); opacity: 0; }
}

/* ============ TIMELINE WRAP ============ */
.timeline-wrap{ margin-bottom: 64px; }

.timeline-hint{
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.timeline-scroll{
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-soft) transparent;
  padding-bottom: 8px;
}
.timeline-scroll::-webkit-scrollbar{ height: 5px; }
.timeline-scroll::-webkit-scrollbar-thumb{ background: var(--border); border-radius: 10px; }

.timeline{
  position: relative;
  min-width: 1360px;
  padding: 70px 20px 0;
}

.timeline__track{
  position: absolute;
  top: 92px;
  right: 40px;
  left: 40px;
  height: 2px;
  background: var(--border);
  border-radius: 4px;
}

.timeline__track-fill{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  border-radius: 4px;
  transition: width 1.8s var(--ease-soft) .3s;
}

.timeline__marker{
  position: absolute;
  top: 92px;
  right: 0%;
  transform: translate(50%, -50%);
  width: 52px;
  height: 52px;
  z-index: 5;
  transition: right 1.8s var(--ease-soft) .3s;
  pointer-events: none;
}

.marker__glow{
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,165,106,.35), rgba(198,165,106,0) 70%);
  animation: markerBreathe 2.6s ease-in-out infinite;
}

@keyframes markerBreathe{
  0%, 100%{ transform: scale(.9); opacity: .7; }
  50%{ transform: scale(1.15); opacity: 1; }
}

.marker__icon{
  position: relative;
  width: 52px;
  height: 52px;
  background: var(--card);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(198,165,106,.55);
}

.marker__icon svg{
  width: 26px;
  height: 26px;
  position: absolute;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.icon-blueprint{ opacity: 1; transform: rotate(0deg) scale(1); }
.icon-key{ opacity: 0; transform: rotate(-90deg) scale(.5); }

.timeline.is-complete .icon-blueprint{ opacity: 0; transform: rotate(90deg) scale(.5); }
.timeline.is-complete .icon-key{ opacity: 1; transform: rotate(0deg) scale(1); }

/* ============ STEPS ============ */
.timeline__steps{
  position: relative;
  display: flex;
  justify-content: space-between;
  list-style: none;
  z-index: 2;
}

.timeline__step{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88px;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
}

.step__node{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--card);
  border: 2.5px solid var(--border);
  position: relative;
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease), box-shadow .45s var(--ease);
}

.timeline__step:hover .step__node{ transform: scale(1.25); }

.timeline__step.is-done .step__node{
  border-color: var(--gold);
  background: var(--gold);
}

.timeline__step.is-current .step__node{
  border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 5px rgba(198,165,106,.18);
}

.timeline__step.is-current .step__node::after{
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  animation: currentPulse 1.8s ease-in-out infinite;
}

@keyframes currentPulse{
  0%, 100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(1.35); opacity: .55; }
}

.step__index{
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .04em;
  opacity: .0;
  height: 0;
  overflow: hidden;
}

.step__label{
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
  transition: color .3s var(--ease);
}

.timeline__step.is-done .step__label{ color: var(--dark); }
.timeline__step.is-current .step__label{ color: var(--gold-dark); font-weight: 700; }

.timeline__step.is-selected .step__node{ transform: scale(1.3); }
.timeline__step.is-selected .step__label{ color: var(--dark); }

/* ============ TOOLTIP ============ */
.stage-tooltip{
  position: fixed;
  z-index: 60;
  min-width: 220px;
  max-width: 260px;
  background: rgba(29,29,29,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -14px) scale(.94);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.45);
}

.stage-tooltip.is-visible{
  opacity: 1;
  transform: translate(-50%, -22px) scale(1);
}

.stage-tooltip__title{
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.stage-tooltip__desc{
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin-bottom: 12px;
}

.stage-tooltip__meta{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 10px;
}

.stage-tooltip__sep{
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}

/* ============ DETAIL PANEL ============ */
.detail-panel{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .7s var(--ease-soft), opacity .5s var(--ease-soft), margin-top .7s var(--ease-soft);
}

.detail-panel.is-open{
  max-height: 1400px;
  opacity: 1;
  margin-top: 8px;
}

.detail-panel__inner{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px;
  box-shadow: 0 30px 70px -40px rgba(29,29,29,.18);
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 48px;
}

.dp-visual{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background: linear-gradient(160deg, #efe9dd, #e2d9c4);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.dp-visual__badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dark);
}

.dp-visual__badge.status-done{ color: #6b8f5f; }
.dp-visual__badge.status-current{ color: var(--gold-dark); }
.dp-visual__badge.status-upcoming{ color: var(--gray); }

.dp-visual__badge i{
  width: 7px; height: 7px; border-radius: 50%; background: currentColor; display: inline-block;
}

.dp-body{ display: flex; flex-direction: column; }

.dp-header{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 16px;
}

.dp-header__index{
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .1em;
}

.dp-title{
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.dp-desc{
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 32px;
}

.dp-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 32px;
  margin-bottom: 8px;
}

.dp-field{ display: flex; flex-direction: column; gap: 6px; }

.dp-field__label{
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dp-field__value{
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.7;
}

.dp-field--wide{ grid-column: 1 / -1; }

.dp-close{
  position: absolute;
  top: 28px;
  left: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.dp-close:hover{ background: var(--gold); color: #fff; transform: rotate(90deg); }

.detail-panel__inner{ position: relative; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px){
  .timeline-hint{ display: flex; }
  .status-card{ flex-direction: column; gap: 36px; padding: 40px; }
  .status-card__divider{ width: 100%; height: 1px; }
  .status-card__grid{ grid-template-columns: repeat(2, 1fr); width: 100%; }
  .detail-panel__inner{ grid-template-columns: 1fr; padding: 36px; }
  .dp-visual{ min-height: 220px; }
}

@media (max-width: 768px){
  .journey{ padding: 90px 18px 100px; }
  .journey__header{ margin-bottom: 56px; }
  .status-card{ margin-bottom: 64px; border-radius: 22px; }
  .status-card__grid{ grid-template-columns: 1fr 1fr; row-gap: 24px; }

  .timeline-hint{ display: none; }
  .timeline-scroll{ overflow: visible; }

  .timeline{
    min-width: 0;
    padding: 0;
  }
  .timeline__track{ display: none; }
  .timeline__marker{ display: none; }

  .timeline__steps{
    flex-direction: column;
    gap: 0;
  }

  .timeline__step{
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    text-align: right;
    gap: 20px;
    padding: 0 0 34px 0;
    position: relative;
  }

  .timeline__step::before{
    content: '';
    position: absolute;
    top: 22px;
    right: 8px;
    bottom: -4px;
    width: 2px;
    background: var(--border);
  }
  .timeline__step:last-child::before{ display: none; }
  .timeline__step.is-done::before{ background: var(--gold); }

  .step__node{ flex: 0 0 18px; margin-top: 2px; }
  .step__label{ margin-top: 0; text-align: right; flex: 1; font-size: 15px; }

  .timeline__step.is-current .step__label::after{
    content: 'المرحلة الحالية';
    display: block;
    font-size: 11.5px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 4px;
  }

  .detail-panel__inner{ padding: 28px; border-radius: 20px; }
  .dp-grid{ grid-template-columns: 1fr; }
  .dp-title{ font-size: 23px; }
  .dp-close{ top: 20px; left: 20px; }
}

@media (max-width: 480px){
  .journey__title{ font-size: 30px; }
  .status-card__grid{ grid-template-columns: 1fr; }
  .status-card__ring{ width: 128px; height: 128px; flex-basis: 128px; }
  .ring-value{ font-size: 28px; }
}



/* ==========================================================================
   12. PROCESS
   ========================================================================== */
.process { padding-block: var(--section-padding-y); background: var(--color-bg-secondary); }

.process__timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  position: relative;
}

.process__step {
  position: relative;
  padding-inline-start: var(--space-7);
  padding-block: var(--space-2);
  border-inline-start: 1px solid var(--color-border);
}

.process__number {
  position: absolute;
  right: -18px;
  top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
}

.process__title { font-size: var(--fs-md); font-weight: var(--fw-semibold); margin-bottom: var(--space-2); }
.process__desc { font-size: var(--fs-sm); color: var(--color-text-secondary); max-width: 480px; }

.process__cta { margin-top: var(--space-8); text-align: center; }

/* ==========================================================================
   13. WHY US / TESTIMONIAL
   ========================================================================== */
.why-us { padding-block: var(--section-padding-y); background: var(--color-bg); }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.why-us__body { display: flex; flex-direction: column; }
.why-us__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.why-us__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.why-us__list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-6); }
.why-us__list li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--fs-base); color: var(--color-text-secondary); }
.why-us__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.why-us__quote {
  grid-column: 1 / -1;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  position: relative;
}
.why-us__quote-mark { position: absolute; top: var(--space-4); left: var(--space-6); font-size: 4rem; color: var(--color-border); font-family: Georgia, serif; line-height: 1; }
.why-us__quote-text { font-size: var(--fs-lg); font-weight: var(--fw-medium); line-height: var(--lh-snug); color: var(--color-text); margin-bottom: var(--space-6); }
.why-us__quote-brand { display: flex; align-items: center; gap: var(--space-3); color: var(--color-gold); font-size: var(--fs-sm); font-weight: var(--fw-semibold); }
.why-us__quote-mark-icon { width: 22px; height: 22px; }

/* ==========================================================================
   14. PROJECTS
   ========================================================================== */
.projects { padding-block: var(--section-padding-y); background: var(--color-bg-secondary); }

.projects__filters { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-7); }
.filter-btn {
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
  transition: all var(--duration-fast) var(--ease-architect);
}
.filter-btn:hover { color: var(--color-text); border-color: var(--color-gold-soft); }
.filter-btn.is-active { background: var(--color-gold); border-color: var(--color-gold); color: #1c1712; font-weight: var(--fw-semibold); }

.projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-card);
  border: 1px solid var(--color-border-soft);
  transition: transform var(--duration-base) var(--ease-architect), box-shadow var(--duration-base) var(--ease-architect);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.project-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-architect); }
.project-card:hover .project-card__media img { transform: scale(1.06); }

.project-card__info { padding: var(--space-5); display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.project-card__title { font-size: var(--fs-base); font-weight: var(--fw-semibold); }
.project-card__tag { font-size: var(--fs-xs); color: var(--color-gold-soft); border: 1px solid var(--color-border); padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); white-space: nowrap; }

.project-card.is-hidden { display: none; }

/* ==========================================================================
   15. STATS
   ========================================================================== */
.stats { padding-block: var(--space-8); background: var(--color-bg); border-block: 1px solid var(--color-border-soft); }
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); text-align: center; }
.stat { display: flex; flex-direction: column; gap: var(--space-2); align-items: center; }
.stat__number { display: block; font-size: var(--fs-2xl); font-weight: var(--fw-black); color: var(--color-gold); }
.stat__label { font-size: var(--fs-sm); color: var(--color-text-secondary); }

/* ==========================================================================
   16. CONTACT
   ========================================================================== */
.contact { position: relative; padding-block: var(--space-10); overflow: hidden; }
.contact__media { position: absolute; inset: 0; z-index: 1; }
.contact__media img { width: 100%; height: 100%; object-fit: cover; }
.contact__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--color-bg) 10%, rgba(24, 21, 18, 0.55) 55%, rgba(24, 21, 18, 0.35));
}

.contact__content { position: relative; z-index: 2; text-align: center; max-width: 720px; margin-inline: auto; }
.contact__headline { font-size: var(--fs-2xl); font-weight: var(--fw-bold); line-height: var(--lh-tight); margin-bottom: var(--space-7); }
.contact__headline span { display: block; }
.contact__headline--gold { color: var(--color-gold-soft); }

.contact__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-4); }

/* ==========================================================================
   17. FOOTER
   ========================================================================== */
.site-footer { position: relative; background: var(--color-bg-secondary); padding-top: var(--space-9); overflow: hidden; }
.site-footer__blueprint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--color-border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.site-footer__top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}

.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__brand-name { display: block; font-size: var(--fs-md); font-weight: var(--fw-bold); letter-spacing: 0.05em; margin: var(--space-3) 0 var(--space-3); }
.site-footer__brand-desc { color: var(--color-text-secondary); font-size: var(--fs-sm); max-width: 320px; margin-bottom: var(--space-5); line-height: var(--lh-relaxed); }
.site-footer__social { display: flex; gap: var(--space-3); }
.site-footer__social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) var(--ease-architect), border-color var(--duration-fast) var(--ease-architect);
}
.site-footer__social-link:hover { color: var(--color-gold); border-color: var(--color-gold); }

.site-footer__col-title { font-size: var(--fs-sm); font-weight: var(--fw-semibold); margin-bottom: var(--space-5); color: var(--color-text); }
.site-footer__col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer__col a { font-size: var(--fs-sm); color: var(--color-text-secondary); transition: color var(--duration-fast) var(--ease-architect); }
.site-footer__col a:hover { color: var(--color-gold-soft); }

.site-footer__contact li { display: flex; align-items: center; gap: var(--space-3); font-size: var(--fs-sm); color: var(--color-text-secondary); }
.site-footer__contact svg { flex-shrink: 0; color: var(--color-gold); }

.site-footer__gold-line { height: 1px; background: linear-gradient(to left, transparent, var(--color-gold), transparent); }

.site-footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-5);
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
}
.site-footer__back-top {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  transition: transform var(--duration-fast) var(--ease-architect), border-color var(--duration-fast) var(--ease-architect);
}
.site-footer__back-top:hover { transform: translateY(-4px); border-color: var(--color-gold); }

/* ==========================================================================
   18. REVEAL / ANIMATION STATES
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-slow) var(--ease-architect),
              transform var(--duration-slow) var(--ease-architect);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   19. RESPONSIVE (mobile-first; base styles above are mobile)
   ========================================================================== */

/* Tablet: 768px+ */
@media (min-width: 48em) {
  .trust-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .headache__grid { grid-template-columns: 1fr 0.6fr 1fr; }
  .headache__arrow { display: block; }
  .why-us__grid { grid-template-columns: 1fr 1fr; }
  .why-us__media { grid-row: span 2; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .process__timeline { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* Desktop: 1024px+ */
@media (min-width: 64em) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }

  .trust-strip__grid { grid-template-columns: repeat(5, 1fr); }
  .process__timeline { grid-template-columns: repeat(5, 1fr); }
  .process__number { top: -46px; right: 0; }
  .process__step { border-inline-start: none; border-top: 1px solid var(--color-border); padding-inline-start: 0; padding-top: var(--space-6); }

  .projects__grid { grid-template-columns: repeat(3, 1fr); }

  .cursor-glow { display: block; }
}

/* Below desktop: hide nav, show toggle */
@media (max-width: 63.9375em) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .cursor-glow { display: none; }
}

/* Small phones */
@media (max-width: 26em) {
  :root { --container-pad: var(--space-4); }
  .service-row__name { font-size: var(--fs-base); }
  .why-us__quote { padding: var(--space-5); }
}

/* Large desktop refinement */
@media (min-width: 90em) {
  :root { --container-width: 1400px; }
}
