/* ============================================================
   قلب المتوسط الذهبي — Golden Mediterranean Heart
   Palette: Deep Emerald + Metallic Gold + Warm Cream
   Type: El Messiri (display) · Tajawal (body)
   ============================================================ */

:root{
  /* Colors */
  --ink:#08150F;
  --emerald:#0E4D3A;
  --emerald-deep:#08301F;
  --emerald-soft:#12634A;
  --gold:#C9A24B;
  --gold-bright:#E8CE86;
  --gold-deep:#9A7A2E;
  --cream:#F6F1E7;
  --sand:#EAE0CC;
  --text:#14261E;
  --text-light:#EAF3EC;
  --muted:#5C6B62;
  --muted-light:#9FB3A6;
  --line:rgba(201,162,75,.22);

  /* Gradients */
  --grad-gold:linear-gradient(135deg,#E8CE86 0%,#C9A24B 55%,#9A7A2E 100%);
  --grad-emerald:linear-gradient(160deg,#0E4D3A 0%,#08301F 100%);
  --grad-ink:linear-gradient(180deg,#0A1B13 0%,#08150F 100%);

  /* Typography */
  --f-display:'El Messiri','Tajawal',system-ui,sans-serif;
  --f-body:'Tajawal',system-ui,sans-serif;

  /* Layout */
  --wrap:1200px;
  --radius:20px;
  --radius-sm:12px;
  --gap:clamp(1rem,3vw,2rem);

  /* Shadows */
  --shadow-sm:0 4px 18px rgba(8,21,15,.10);
  --shadow:0 18px 50px rgba(8,21,15,.16);
  --shadow-gold:0 12px 40px rgba(201,162,75,.28);

  --nav-h:76px;
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--f-body);
  background:var(--cream);
  color:var(--text);
  line-height:1.75;
  overflow-x:hidden;
  cursor:none;
}
@media (hover:none),(pointer:coarse){ body{cursor:auto} }
img,svg{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:none;border:none;background:none}
@media (hover:none),(pointer:coarse){ button{cursor:pointer} }
section{position:relative}

/* ---------- Utilities ---------- */
.wrap{width:min(var(--wrap),92%);margin-inline:auto}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.82rem;font-weight:700;letter-spacing:.14em;
  color:var(--gold-deep);text-transform:uppercase;
  margin-bottom:1rem;
}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--grad-gold);border-radius:2px}
.gold-text{
  background:var(--grad-gold);-webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}
.section-head{max-width:640px;margin-bottom:clamp(2rem,5vw,3.5rem)}
.section-head h2{
  font-family:var(--f-display);font-weight:700;line-height:1.25;
  font-size:clamp(1.8rem,4.4vw,2.9rem);color:var(--emerald);
}
.section-head p{color:var(--muted);margin-top:.9rem;font-size:1.05rem}
.pad{padding-block:clamp(4rem,9vw,7rem)}

/* ---------- Buttons ---------- */
.btn{
  position:relative;display:inline-flex;align-items:center;gap:.6rem;
  padding:.85rem 1.7rem;border-radius:999px;font-weight:700;font-size:.98rem;
  overflow:hidden;transition:transform .35s cubic-bezier(.2,.9,.3,1),box-shadow .35s,color .3s;
  will-change:transform;
}
.btn svg{width:18px;height:18px}
.btn-gold{background:var(--grad-gold);color:#20180a;box-shadow:var(--shadow-gold)}
.btn-gold:hover{box-shadow:0 16px 46px rgba(201,162,75,.42)}
.btn-ghost{border:1.5px solid var(--line);color:var(--text-light)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold-bright)}
.btn-outline{border:1.5px solid var(--emerald);color:var(--emerald)}
.btn-outline:hover{background:var(--emerald);color:#fff}
.btn .ripple{position:absolute;border-radius:50%;transform:scale(0);background:rgba(255,255,255,.45);pointer-events:none;animation:ripple .6s ease-out}
@keyframes ripple{to{transform:scale(4);opacity:0}}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,.cursor-ring{position:fixed;top:0;left:0;pointer-events:none;z-index:9999;border-radius:50%;transform:translate(-50%,-50%);mix-blend-mode:normal}
.cursor-dot{width:7px;height:7px;background:var(--gold-bright)}
.cursor-ring{width:38px;height:38px;border:1.5px solid rgba(201,162,75,.6);transition:width .25s,height .25s,background .25s,border-color .25s}
.cursor-ring.hovered{width:58px;height:58px;background:rgba(201,162,75,.10);border-color:var(--gold)}
@media (hover:none),(pointer:coarse){ .cursor-dot,.cursor-ring{display:none} }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loader{
  position:fixed;inset:0;z-index:10000;display:grid;place-items:center;
  background:var(--grad-ink);transition:opacity .6s ease,visibility .6s;
}
#loader.done{opacity:0;visibility:hidden}
.loader-seal{width:96px;height:96px;animation:seal-spin 2.4s linear infinite}
.loader-seal circle{fill:none;stroke:var(--gold);stroke-width:2;stroke-dasharray:190;stroke-dashoffset:190;animation:draw 1.6s ease forwards}
.loader-txt{margin-top:1.4rem;font-family:var(--f-display);color:var(--gold-bright);font-size:1.15rem;letter-spacing:.06em;opacity:0;animation:fade-up .8s .5s forwards}
@keyframes draw{to{stroke-dashoffset:0}}
@keyframes seal-spin{to{transform:rotate(360deg)}}
@keyframes fade-up{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}

/* ---------- Scroll progress ---------- */
#progress{position:fixed;top:0;right:0;height:3px;width:0;background:var(--grad-gold);z-index:9998;box-shadow:0 0 12px rgba(201,162,75,.6)}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:fixed;top:0;inset-inline:0;z-index:900;height:var(--nav-h);
  display:flex;align-items:center;
  transition:background .4s,backdrop-filter .4s,box-shadow .4s,height .4s;
}
.nav.scrolled{
  height:66px;background:rgba(8,21,15,.72);backdrop-filter:blur(16px);
  box-shadow:0 8px 30px rgba(8,21,15,.28);border-bottom:1px solid var(--line);
}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-logo{height:46px;transition:transform .3s}
.nav-logo:hover{transform:scale(1.03)}
.nav-links{display:flex;align-items:center;gap:.3rem}
.nav-links a{
  color:var(--text-light);font-weight:600;font-size:.96rem;padding:.5rem .9rem;border-radius:999px;
  position:relative;transition:color .25s,background .25s;
}
.nav-links a::after{content:"";position:absolute;bottom:.3rem;right:50%;transform:translateX(50%);width:0;height:2px;background:var(--grad-gold);transition:width .3s;border-radius:2px}
.nav-links a:hover{color:var(--gold-bright)}
.nav-links a:hover::after{width:40%}
.nav-cta{display:flex;align-items:center;gap:.6rem}
.nav-cta .btn{padding:.6rem 1.2rem;font-size:.9rem}
.icon-btn{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;border:1.5px solid var(--line);color:var(--gold-bright);transition:.25s}
.icon-btn:hover{background:var(--gold);color:#20180a;transform:translateY(-2px)}
.icon-btn svg{width:19px;height:19px}
.burger{display:none;flex-direction:column;gap:5px;width:44px;height:44px;justify-content:center;align-items:center;border-radius:12px;border:1px solid var(--line)}
.burger span{width:22px;height:2px;background:var(--gold-bright);border-radius:2px;transition:.3s}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile drawer */
.mobile-menu{
  position:fixed;inset:0 0 0 auto;width:min(320px,84%);z-index:899;
  background:var(--grad-emerald);border-inline-start:1px solid var(--line);
  transform:translateX(100%);transition:transform .45s cubic-bezier(.4,0,.2,1),visibility .45s;
  visibility:hidden;
  padding:calc(var(--nav-h) + 1.5rem) 1.8rem 2rem;display:flex;flex-direction:column;gap:.4rem;
}
.mobile-menu.open{transform:translateX(0);visibility:visible;box-shadow:-20px 0 60px rgba(0,0,0,.4)}
.mobile-menu a{color:var(--text-light);font-weight:600;font-size:1.1rem;padding:.85rem 0;border-bottom:1px solid rgba(255,255,255,.06)}
.mobile-menu a:hover{color:var(--gold-bright);padding-inline-start:.5rem}
.mobile-menu .btn{margin-top:1rem;justify-content:center}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);backdrop-filter:blur(3px);z-index:898;opacity:0;visibility:hidden;transition:.3s}
.overlay.show{opacity:1;visibility:visible}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height:100vh;display:flex;align-items:center;
  background:var(--grad-ink);color:var(--text-light);overflow:hidden;
  padding-top:var(--nav-h);
}
.hero-bg{position:absolute;inset:0;overflow:hidden;z-index:0}
.blob{position:absolute;border-radius:50%;filter:blur(70px);opacity:.5;animation:blob 18s ease-in-out infinite}
.blob.b1{width:520px;height:520px;background:radial-gradient(circle,#12634A,transparent 70%);top:-140px;inset-inline-start:-120px}
.blob.b2{width:460px;height:460px;background:radial-gradient(circle,#C9A24B44,transparent 70%);bottom:-160px;inset-inline-end:-100px;animation-delay:-6s}
.blob.b3{width:360px;height:360px;background:radial-gradient(circle,#0E4D3A,transparent 70%);top:40%;inset-inline-end:24%;animation-delay:-11s}
@keyframes blob{0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(40px,-30px) scale(1.08)}66%{transform:translate(-30px,25px) scale(.95)}}
#particles{position:absolute;inset:0;z-index:1}
.hero-grid-lines{position:absolute;inset:0;z-index:0;background-image:linear-gradient(rgba(201,162,75,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(201,162,75,.05) 1px,transparent 1px);background-size:64px 64px;mask-image:radial-gradient(ellipse at center,#000 30%,transparent 78%)}

.hero .wrap{position:relative;z-index:3;display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4rem);align-items:center;padding-block:3rem}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem 1rem;border:1px solid var(--line);border-radius:999px;font-size:.85rem;color:var(--gold-bright);background:rgba(201,162,75,.06);margin-bottom:1.4rem}
.hero-badge .pin{width:8px;height:8px;border-radius:50%;background:var(--gold-bright);box-shadow:0 0 0 0 rgba(232,206,134,.7);animation:pulse 2.2s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(232,206,134,.6)}70%{box-shadow:0 0 0 10px transparent}100%{box-shadow:0 0 0 0 transparent}}
.hero h1{
  font-family:var(--f-display);font-weight:700;line-height:1.15;
  font-size:clamp(2.4rem,6.2vw,4.4rem);letter-spacing:-.01em;
}
.hero h1 .line{display:block;overflow:hidden}
.hero p.lead{margin-top:1.4rem;font-size:clamp(1.05rem,2.2vw,1.28rem);color:var(--muted-light);max-width:36ch}
.typed{color:var(--gold-bright);font-weight:700;border-inline-end:2px solid var(--gold);padding-inline-end:2px}
.hero-cta{margin-top:2.2rem;display:flex;gap:1rem;flex-wrap:wrap}
.hero-trust{margin-top:2.4rem;display:flex;gap:1.8rem;flex-wrap:wrap;color:var(--muted-light);font-size:.92rem}
.hero-trust div{display:flex;align-items:center;gap:.5rem}
.hero-trust svg{width:18px;height:18px;color:var(--gold)}

.hero-visual{position:relative;display:grid;place-items:center}
.hero-card{
  position:relative;width:100%;max-width:420px;aspect-ratio:4/5;border-radius:28px;overflow:hidden;
  background:var(--grad-emerald);border:1px solid var(--line);box-shadow:var(--shadow);
}
.hero-card img{width:100%;height:100%;object-fit:cover;opacity:.9}
.hero-card .glass-tag{
  position:absolute;bottom:18px;inset-inline:18px;padding:1rem 1.2rem;border-radius:16px;
  background:rgba(8,21,15,.5);backdrop-filter:blur(12px);border:1px solid var(--line);
  display:flex;align-items:center;gap:.9rem;
}
.glass-tag .seal{width:44px;height:44px;flex:0 0 auto}
.glass-tag b{display:block;color:var(--gold-bright);font-family:var(--f-display);font-size:1.05rem}
.glass-tag span{color:var(--muted-light);font-size:.85rem}
.float-chip{
  position:absolute;padding:.7rem 1rem;border-radius:14px;background:rgba(8,21,15,.55);
  backdrop-filter:blur(10px);border:1px solid var(--line);color:var(--text-light);
  font-size:.85rem;font-weight:600;display:flex;align-items:center;gap:.5rem;box-shadow:var(--shadow);
  animation:float 5s ease-in-out infinite;
}
.float-chip svg{width:18px;height:18px;color:var(--gold-bright)}
.float-chip.c1{top:6%;inset-inline-start:-6%;animation-delay:-1s}
.float-chip.c2{bottom:16%;inset-inline-start:-9%;animation-delay:-3s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}

.hero-wave{position:absolute;bottom:-1px;inset-inline:0;z-index:2;line-height:0}
.hero-wave svg{width:100%;height:auto}

/* ============================================================
   MARQUEE (values strip)
   ============================================================ */
.marquee{background:var(--emerald-deep);border-block:1px solid var(--line);overflow:hidden;padding-block:1rem}
.marquee-track{display:flex;gap:3rem;white-space:nowrap;animation:marquee 26s linear infinite;width:max-content}
.marquee:hover .marquee-track{animation-play-state:paused}
.marquee span{display:inline-flex;align-items:center;gap:.7rem;color:var(--gold-bright);font-family:var(--f-display);font-size:1.15rem;font-weight:600}
.marquee span::before{content:"◆";color:var(--gold);font-size:.7rem}
@keyframes marquee{to{transform:translateX(50%)}}

/* ============================================================
   ABOUT
   ============================================================ */
.about .wrap{display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.about-media{position:relative}
.about-media .frame{border-radius:24px;overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--line)}
.about-media .frame img{width:100%;height:100%;object-fit:cover}
.about-media .accent{position:absolute;inset-inline-end:-18px;bottom:-18px;width:150px;height:150px;border:2px solid var(--gold);border-radius:24px;z-index:-1}
.about-media .badge-years{
  position:absolute;top:-22px;inset-inline-start:-22px;width:120px;height:120px;border-radius:50%;
  background:var(--grad-gold);display:grid;place-content:center;text-align:center;color:#20180a;
  box-shadow:var(--shadow-gold);font-family:var(--f-display);
}
.about-media .badge-years b{font-size:1.9rem;line-height:1}
.about-media .badge-years span{font-size:.78rem;font-weight:700}
.about-text h2{font-family:var(--f-display);color:var(--emerald);font-size:clamp(1.8rem,4.2vw,2.7rem);line-height:1.25}
.about-text p{color:var(--muted);margin-top:1.1rem}
.about-points{margin-top:1.8rem;display:grid;gap:1rem}
.about-point{display:flex;gap:1rem;align-items:flex-start}
.about-point .ico{flex:0 0 auto;width:46px;height:46px;border-radius:14px;background:rgba(14,77,58,.08);display:grid;place-items:center;color:var(--emerald)}
.about-point .ico svg{width:22px;height:22px}
.about-point b{color:var(--emerald);font-family:var(--f-display);font-size:1.1rem}
.about-point p{margin-top:.2rem;font-size:.95rem}

/* ============================================================
   SERVICES
   ============================================================ */
.services{background:var(--grad-ink);color:var(--text-light)}
.services .section-head h2{color:var(--text-light)}
.services .section-head p{color:var(--muted-light)}
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.4rem}
.svc-card{
  position:relative;border-radius:var(--radius);overflow:hidden;background:rgba(255,255,255,.03);
  border:1px solid rgba(201,162,75,.14);transition:transform .5s cubic-bezier(.2,.9,.3,1),box-shadow .5s,border-color .5s;
  transform-style:preserve-3d;will-change:transform;
}
.svc-card:hover{border-color:var(--gold);box-shadow:var(--shadow-gold)}
.svc-media{position:relative;aspect-ratio:16/10;overflow:hidden}
.svc-media img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.svc-card:hover .svc-media img{transform:scale(1.08)}
.svc-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(8,21,15,.85))}
.svc-num{position:absolute;top:1rem;inset-inline-start:1rem;z-index:2;font-family:var(--f-display);font-size:1.1rem;color:var(--gold-bright);background:rgba(8,21,15,.5);backdrop-filter:blur(6px);width:42px;height:42px;border-radius:12px;display:grid;place-items:center;border:1px solid var(--line)}
.svc-body{padding:1.4rem 1.5rem 1.6rem}
.svc-body h3{font-family:var(--f-display);font-size:1.3rem;color:var(--gold-bright);margin-bottom:.5rem}
.svc-body p{color:var(--muted-light);font-size:.96rem}
.svc-more{margin-top:1rem;display:inline-flex;align-items:center;gap:.4rem;color:var(--gold);font-weight:700;font-size:.9rem}
.svc-more svg{width:16px;height:16px;transition:transform .3s}
.svc-card:hover .svc-more svg{transform:translateX(-5px)}

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.why .wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.why-list{display:grid;gap:1.2rem}
.why-item{
  display:flex;gap:1.1rem;padding:1.3rem;border-radius:var(--radius-sm);background:#fff;
  border:1px solid var(--line);box-shadow:var(--shadow-sm);transition:transform .35s,box-shadow .35s;
}
.why-item:hover{transform:translateX(-8px);box-shadow:var(--shadow)}
.why-item .n{flex:0 0 auto;width:52px;height:52px;border-radius:14px;background:var(--grad-gold);color:#20180a;display:grid;place-items:center}
.why-item .n svg{width:24px;height:24px}
.why-item h4{font-family:var(--f-display);color:var(--emerald);font-size:1.15rem;margin-bottom:.25rem}
.why-item p{color:var(--muted);font-size:.95rem}
.why-visual{position:relative;border-radius:var(--radius);overflow:hidden;background:var(--grad-emerald);color:var(--text-light);padding:2.5rem;box-shadow:var(--shadow);border:1px solid var(--line)}
.why-visual h3{font-family:var(--f-display);font-size:1.8rem;color:var(--gold-bright)}
.why-visual p{color:var(--muted-light);margin-top:1rem}
.why-visual .mini-stats{margin-top:2rem;display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.why-visual .mini-stats div b{font-family:var(--f-display);font-size:2rem;color:var(--gold-bright);display:block}
.why-visual .mini-stats div span{color:var(--muted-light);font-size:.9rem}
.why-visual .seal-watermark{position:absolute;bottom:-40px;inset-inline-start:-40px;width:200px;opacity:.08}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats{background:var(--emerald-deep);color:var(--text-light);position:relative;overflow:hidden}
.stats::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 20%,rgba(201,162,75,.10),transparent 40%),radial-gradient(circle at 80% 80%,rgba(18,99,74,.4),transparent 40%)}
.stats-grid{position:relative;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem;text-align:center}
.stat .num{font-family:var(--f-display);font-size:clamp(2.4rem,5vw,3.4rem);font-weight:700;line-height:1}
.stat .num .gold-text{display:inline-block}
.stat .suffix{color:var(--gold-bright)}
.stat p{color:var(--muted-light);margin-top:.6rem;font-size:1rem}
.stat .bar{width:44px;height:3px;background:var(--grad-gold);border-radius:3px;margin:1rem auto 0}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem;grid-auto-rows:220px}
.gallery-grid figure{position:relative;overflow:hidden;border-radius:var(--radius-sm);cursor:none;border:1px solid var(--line)}
@media (hover:none){.gallery-grid figure{cursor:pointer}}
.gallery-grid figure:nth-child(1),.gallery-grid figure:nth-child(6){grid-row:span 2}
.gallery-grid img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease,filter .5s}
.gallery-grid figure::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(8,48,31,.7));opacity:0;transition:.4s}
.gallery-grid figcaption{position:absolute;inset-inline:1rem;bottom:1rem;color:#fff;font-family:var(--f-display);z-index:2;opacity:0;transform:translateY(10px);transition:.4s;display:flex;align-items:center;gap:.5rem}
.gallery-grid figcaption svg{width:20px;height:20px;color:var(--gold-bright)}
.gallery-grid figure:hover img{transform:scale(1.1)}
.gallery-grid figure:hover::after{opacity:1}
.gallery-grid figure:hover figcaption{opacity:1;transform:none}

/* Lightbox */
#lightbox{position:fixed;inset:0;z-index:9500;background:rgba(6,16,11,.94);backdrop-filter:blur(6px);display:grid;place-items:center;opacity:0;visibility:hidden;transition:.3s;padding:2rem}
#lightbox.show{opacity:1;visibility:visible}
#lightbox img{max-width:90vw;max-height:82vh;border-radius:16px;box-shadow:var(--shadow);border:1px solid var(--line)}
#lightbox .lb-close{position:absolute;top:1.4rem;inset-inline-start:1.4rem;width:48px;height:48px;border-radius:50%;border:1px solid var(--line);color:var(--gold-bright);display:grid;place-items:center}
#lightbox .lb-nav{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;border-radius:50%;background:rgba(201,162,75,.12);border:1px solid var(--line);color:var(--gold-bright);display:grid;place-items:center}
#lightbox .lb-prev{inset-inline-end:1.4rem}
#lightbox .lb-next{inset-inline-start:1.4rem}
#lightbox svg{width:22px;height:22px}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{background:var(--grad-ink);color:var(--text-light)}
.contact .section-head h2{color:var(--text-light)}
.contact .section-head p{color:var(--muted-light)}
.contact-grid{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(2rem,5vw,3.5rem);align-items:start}
.contact-info{display:grid;gap:1.1rem}
.info-card{display:flex;gap:1rem;align-items:center;padding:1.2rem 1.3rem;border-radius:var(--radius-sm);background:rgba(255,255,255,.03);border:1px solid var(--line);transition:.3s}
.info-card:hover{border-color:var(--gold);background:rgba(201,162,75,.05)}
.info-card .ico{flex:0 0 auto;width:52px;height:52px;border-radius:14px;background:var(--grad-gold);color:#20180a;display:grid;place-items:center}
.info-card .ico svg{width:24px;height:24px}
.info-card span{display:block;color:var(--muted-light);font-size:.85rem}
.info-card b{color:var(--text-light);font-size:1.05rem;direction:ltr;unicode-bidi:plaintext}
.info-card b.ar{direction:rtl}
.hours-card{padding:1.3rem;border-radius:var(--radius-sm);background:rgba(255,255,255,.03);border:1px solid var(--line)}
.hours-card h4{font-family:var(--f-display);color:var(--gold-bright);margin-bottom:.8rem;display:flex;align-items:center;gap:.5rem}
.hours-card h4 svg{width:20px;height:20px}
.hours-row{display:flex;justify-content:space-between;padding:.45rem 0;border-bottom:1px dashed rgba(201,162,75,.14);color:var(--muted-light);font-size:.95rem}
.hours-row:last-child{border:none}
.hours-row .on{color:var(--gold-bright);font-weight:700}
.hours-row .off{color:#c98b8b;font-weight:700}

.contact-form{padding:2rem;border-radius:var(--radius);background:rgba(255,255,255,.04);border:1px solid var(--line);box-shadow:var(--shadow)}
.field{margin-bottom:1.2rem}
.field label{display:block;font-size:.9rem;color:var(--gold-bright);margin-bottom:.5rem;font-weight:600}
.field input,.field textarea,.field select{
  width:100%;padding:.9rem 1rem;border-radius:12px;background:rgba(8,21,15,.5);
  border:1px solid var(--line);color:var(--text-light);font-family:inherit;font-size:1rem;transition:.25s;cursor:none;
}
@media (hover:none){.field input,.field textarea,.field select{cursor:auto}}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,162,75,.14)}
.field textarea{resize:vertical;min-height:120px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-note{font-size:.85rem;color:var(--muted-light);margin-top:.4rem}
.contact-form .btn{width:100%;justify-content:center;margin-top:.4rem}



/* ============================================================
   FOOTER
   ============================================================ */
.footer{background:var(--ink);color:var(--muted-light);padding-block:clamp(3rem,6vw,4.5rem) 0;border-top:1px solid var(--line)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2.5rem}
.footer-brand img{height:56px;margin-bottom:1.2rem}
.footer-brand p{font-size:.95rem;max-width:34ch}
.footer h5{font-family:var(--f-display);color:var(--gold-bright);font-size:1.1rem;margin-bottom:1.1rem}
.footer-links a{display:block;padding:.35rem 0;transition:.25s;font-size:.95rem}
.footer-links a:hover{color:var(--gold-bright);padding-inline-start:.4rem}
.footer-contact li{display:flex;gap:.6rem;align-items:center;padding:.35rem 0;font-size:.95rem}
.footer-contact svg{width:17px;height:17px;color:var(--gold);flex:0 0 auto}
.footer-contact a{direction:ltr;unicode-bidi:plaintext}
.footer-social{display:flex;gap:.7rem;margin-top:1.2rem}
.footer-social a{width:42px;height:42px;border-radius:12px;border:1px solid var(--line);display:grid;place-items:center;color:var(--gold-bright);transition:.25s}
.footer-social a:hover{background:var(--gold);color:#20180a;transform:translateY(-3px)}
.footer-social svg{width:19px;height:19px}
.footer-bottom{margin-top:3rem;border-top:1px solid var(--line);padding-block:1.5rem;display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.88rem}
.footer-bottom a:hover{color:var(--gold-bright)}

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */
.fab-stack{position:fixed;bottom:1.4rem;inset-inline-start:1.4rem;z-index:850;display:flex;flex-direction:column;gap:.8rem}
.fab{width:56px;height:56px;border-radius:50%;display:grid;place-items:center;box-shadow:var(--shadow);transition:transform .3s;position:relative}
.fab:hover{transform:scale(1.1) translateY(-2px)}
.fab svg{width:26px;height:26px}
.fab-wa{background:#25D366;color:#fff}
.fab-wa::after{content:"";position:absolute;inset:0;border-radius:50%;border:2px solid #25D366;animation:ring 2s infinite}
@keyframes ring{0%{transform:scale(1);opacity:.7}100%{transform:scale(1.6);opacity:0}}
.fab-call{background:var(--grad-gold);color:#20180a}
#toTop{
  position:fixed;bottom:1.4rem;inset-inline-end:1.4rem;z-index:850;width:52px;height:52px;border-radius:14px;
  background:var(--emerald);color:var(--gold-bright);border:1px solid var(--line);display:grid;place-items:center;
  box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translateY(20px);transition:.35s;
}
#toTop.show{opacity:1;visibility:visible;transform:none}
#toTop:hover{background:var(--gold);color:#20180a}
#toTop svg{width:22px;height:22px}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal]{opacity:0;transform:translateY(34px);transition:opacity .8s cubic-bezier(.2,.7,.2,1),transform .8s cubic-bezier(.2,.7,.2,1)}
[data-reveal].in{opacity:1;transform:none}
[data-reveal="left"]{transform:translateX(-40px)}
[data-reveal="right"]{transform:translateX(40px)}
[data-reveal="zoom"]{transform:scale(.9)}
[data-reveal].in{transform:none}
[data-delay="1"]{transition-delay:.1s}[data-delay="2"]{transition-delay:.2s}
[data-delay="3"]{transition-delay:.3s}[data-delay="4"]{transition-delay:.4s}
[data-delay="5"]{transition-delay:.5s}

/* Legal pages */
.legal{padding-top:calc(var(--nav-h) + 3rem)}
.legal .wrap{max-width:820px}
.legal h1{font-family:var(--f-display);color:var(--emerald);font-size:clamp(2rem,5vw,3rem);margin-bottom:.5rem}
.legal .updated{color:var(--muted);margin-bottom:2.5rem}
.legal h2{font-family:var(--f-display);color:var(--emerald);font-size:1.5rem;margin:2rem 0 .8rem}
.legal p,.legal li{color:var(--text);margin-bottom:.8rem}
.legal ul{list-style:disc;padding-inline-start:1.5rem}
.legal a{color:var(--gold-deep);font-weight:700}
.back-home{display:inline-flex;align-items:center;gap:.5rem;margin-top:2.5rem;color:var(--emerald);font-weight:700}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:980px){
  .hero .wrap{grid-template-columns:1fr;text-align:center}
  .hero p.lead{margin-inline:auto}
  .hero-cta,.hero-trust{justify-content:center}
  .hero-visual{order:-1;max-width:360px;margin-inline:auto}
  .about .wrap,.why .wrap,.contact-grid{grid-template-columns:1fr}
  .about-media{max-width:440px;margin-inline:auto}
  .why-visual{order:-1}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .nav-links{display:none}
  .nav-cta .btn-quote{display:none}
  .burger{display:flex}
  .field-row{grid-template-columns:1fr}
  .gallery-grid{grid-auto-rows:180px}
  .gallery-grid figure:nth-child(1),.gallery-grid figure:nth-child(6){grid-row:span 1}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  body{cursor:auto}
}
@media (max-width:420px){
  .nav-cta .icon-btn.call-hide{display:none}
  .fab{width:52px;height:52px}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  [data-reveal]{opacity:1!important;transform:none!important}
  .blob,.marquee-track{animation:none!important}
  body{cursor:auto}
  .cursor-dot,.cursor-ring{display:none}
}

/* Focus visible for accessibility */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible{
  outline:2px solid var(--gold-bright);outline-offset:3px;border-radius:6px;
}
