/* ============================================================
   AL-SAFA QALEEN & CARPET WASHING FACTORY
   Design tokens
   ============================================================ */
:root{
  --deep-blue:#0B5ED7;
  --deep-blue-dark:#073E8F;
  --deep-blue-darker:#052a63;
  --emerald:#16A34A;
  --emerald-dark:#0F7A38;
  --sky:#38BDF8;
  --white:#FFFFFF;
  --gray-50:#F7FAFC;
  --gray-100:#EEF3F8;
  --gray-200:#E3EAF2;
  --ink:#0E1B2C;
  --ink-soft:#51637A;
  --ink-faint:#8496AC;
  --gold:#F2A93B;

  --font-display:'Poppins',sans-serif;
  --font-body:'Inter',sans-serif;

  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --radius-pill:999px;

  --shadow-sm:0 4px 16px rgba(11,94,215,0.08);
  --shadow-md:0 12px 32px rgba(11,94,215,0.12);
  --shadow-lg:0 24px 60px rgba(7,33,80,0.16);

  --container:1240px;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
h1,h2,h3,h4{font-family:var(--font-display); color:var(--deep-blue-darker); line-height:1.15; font-weight:700;}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

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

/* ---------- utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--emerald-dark);
  background:rgba(22,163,74,0.09);
  padding:8px 16px; border-radius:var(--radius-pill);
  margin-bottom:18px;
}
.eyebrow::before{content:''; width:6px; height:6px; border-radius:50%; background:var(--emerald); box-shadow:0 0 0 4px rgba(22,163,74,.18);}
.section{padding:100px 0;}
.section-tight{padding:70px 0;}
.section-head{max-width:680px; margin-bottom:56px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{font-size:clamp(28px,4vw,42px); margin-bottom:16px;}
.section-head p{color:var(--ink-soft); font-size:17px;}
.bg-soft{background:linear-gradient(180deg,var(--gray-50) 0%, var(--white) 100%);}
.bg-band{background:var(--gray-50);}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 30px; border-radius:var(--radius-pill);
  font-weight:600; font-size:15px; letter-spacing:.01em;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, background .35s, color .35s;
  white-space:nowrap;
}
.btn-primary{
  background:linear-gradient(135deg,var(--deep-blue) 0%, var(--deep-blue-dark) 100%);
  color:#fff; box-shadow:0 10px 26px rgba(11,94,215,.32);
}
.btn-primary:hover{transform:translateY(-3px); box-shadow:0 16px 34px rgba(11,94,215,.4);}
.btn-outline{
  background:#fff; color:var(--deep-blue); border:1.5px solid var(--gray-200);
  box-shadow:var(--shadow-sm);
}
.btn-outline:hover{border-color:var(--deep-blue); transform:translateY(-3px); box-shadow:var(--shadow-md);}
.btn-ghost-light{
  background:rgba(255,255,255,.14); color:#fff; border:1.5px solid rgba(255,255,255,.55);
  backdrop-filter:blur(6px);
}
.btn-ghost-light:hover{background:rgba(255,255,255,.26); transform:translateY(-3px);}
.btn-sm{padding:11px 20px; font-size:13.5px;}

/* ---------- reveal ---------- */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:translateY(0);}
.reveal-scale{opacity:0; transform:scale(.92); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);}
.reveal-scale.in{opacity:1; transform:scale(1);}
.stagger > *{transition-delay:calc(var(--i,0) * 90ms);}

/* ============================================================
   HEADER
   ============================================================ */
.topbar{
  background:var(--deep-blue-darker); color:#dce8ff; font-size:13px;
}
.topbar .container{display:flex; justify-content:space-between; align-items:center; height:38px;}
.topbar-links{display:flex; gap:22px;}
.topbar-links a{display:flex; align-items:center; gap:6px; opacity:.9; transition:opacity .25s;}
.topbar-links a:hover{opacity:1; color:var(--sky);}
.topbar-social{display:flex; gap:14px;}
.topbar-social a{width:26px; height:26px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:rgba(255,255,255,.1); transition:background .25s, transform .25s;}
.topbar-social a:hover{background:var(--emerald); transform:translateY(-2px);}

.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid rgba(11,94,215,.08);
  transition:box-shadow .3s, padding .3s;
}
.site-header.scrolled{box-shadow:0 8px 24px rgba(11,94,215,.09);}
.site-header .container{display:flex; align-items:center; justify-content:space-between; height:84px; transition:height .3s;}
.site-header.scrolled .container{height:68px;}
.brand{display:flex; align-items:center; gap:12px;}
.brand img{height:52px; width:auto; transition:height .3s;}
.site-header.scrolled .brand img{height:42px;}
.brand-text{display:flex; flex-direction:column; line-height:1.15;}
.brand-text strong{font-family:var(--font-display); font-weight:700; font-size:17px; color:var(--deep-blue-darker);}
.brand-text span{font-size:11.5px; letter-spacing:.08em; color:var(--emerald-dark); font-weight:600; text-transform:uppercase;}

.main-nav{display:flex; align-items:center; gap:38px;}
.main-nav a{
  font-weight:600; font-size:14.5px; color:var(--ink); position:relative; padding:6px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--emerald);
  transition:width .3s;
}
.main-nav a:hover::after, .main-nav a.active::after{width:100%;}
.main-nav a.active{color:var(--deep-blue);}

.header-cta{display:flex; align-items:center; gap:14px;}
.header-phone{display:flex; align-items:center; gap:10px; font-weight:700; color:var(--deep-blue-darker);}
.header-phone .icon-circle{width:38px; height:38px; border-radius:50%; background:rgba(11,94,215,.1); display:flex; align-items:center; justify-content:center;}

.nav-toggle{display:none; flex-direction:column; gap:5px; width:32px;}
.nav-toggle span{height:2.5px; background:var(--deep-blue-darker); border-radius:2px; transition:.3s;}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(1100px 500px at 82% -10%, rgba(56,189,248,.16), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(22,163,74,.10), transparent 60%),
    linear-gradient(180deg,#F7FBFF 0%, #FFFFFF 60%);
  padding:76px 0 60px;
}
.hero .container{display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;}
.hero-badge-row{display:flex; align-items:center; gap:14px; margin-bottom:22px;}
.hero-badge-row .stars{color:var(--gold); font-size:14px; letter-spacing:2px;}
.hero-badge-row span.txt{font-size:13.5px; color:var(--ink-soft); font-weight:600;}
.hero h1{font-size:clamp(34px,4.6vw,54px); letter-spacing:-.01em; margin-bottom:20px;}
.hero h1 em{
  font-style:normal; color:var(--emerald);
  background:linear-gradient(180deg,transparent 62%, rgba(22,163,74,.18) 62%);
}
.hero p.lead{font-size:18px; color:var(--ink-soft); max-width:520px; margin-bottom:34px;}
.hero-actions{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:44px;}
.hero-trust{display:flex; gap:34px; flex-wrap:wrap;}
.hero-trust .item{display:flex; flex-direction:column;}
.hero-trust .item b{font-family:var(--font-display); font-size:26px; color:var(--deep-blue);}
.hero-trust .item span{font-size:13px; color:var(--ink-soft); font-weight:500;}

.hero-media{position:relative;}
.hero-media-frame{
  position:relative; border-radius:32px; overflow:hidden;
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3.1;
}
.hero-media-frame img{width:100%; height:100%; object-fit:cover; object-position:60% 40%;}
.hero-media-frame::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(200deg, rgba(7,33,80,0) 55%, rgba(7,33,80,.35) 100%);
}
.hero-float-badge{
  position:absolute; top:-22px; left:-22px; z-index:3;
  width:118px; height:118px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#E08B1A);
  color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; box-shadow:0 16px 30px rgba(224,139,26,.4);
  font-family:var(--font-display); animation:floaty 5s ease-in-out infinite;
}
.hero-float-badge b{font-size:24px; line-height:1;}
.hero-float-badge small{font-size:10.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;}
.hero-exp-card{
  position:absolute; bottom:-28px; right:-14px; z-index:3;
  background:#fff; border-radius:20px; padding:18px 22px;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:14px;
  animation:floaty 5.5s ease-in-out infinite reverse;
}
.hero-exp-card .num{font-family:var(--font-display); font-size:30px; font-weight:800; color:var(--deep-blue);}
.hero-exp-card .txt{font-size:12.5px; color:var(--ink-soft); font-weight:600; line-height:1.25; max-width:110px;}
@keyframes floaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}

.hero-dots{position:absolute; width:120px; height:120px; background-image:radial-gradient(var(--deep-blue) 1.6px, transparent 1.6px); background-size:16px 16px; opacity:.15; z-index:0;}
.hero-dots.d1{top:60px; right:-10px;}
.hero-dots.d2{bottom:20px; left:6%;}

/* wave divider */
.wave{display:block; width:100%; line-height:0;}
.wave svg{width:100%; height:70px; display:block;}

/* marquee strip */
.marquee-strip{background:var(--deep-blue-darker); overflow:hidden; padding:16px 0;}
.marquee-track{display:flex; gap:52px; white-space:nowrap; animation:scrollx 26s linear infinite;}
.marquee-track span{color:#cfe0ff; font-weight:600; font-size:14.5px; letter-spacing:.03em; display:flex; align-items:center; gap:10px;}
.marquee-track span::before{content:'✦'; color:var(--emerald);}
@keyframes scrollx{from{transform:translateX(0);} to{transform:translateX(-50%);}}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{display:grid; grid-template-columns:.9fr 1.1fr; gap:64px; align-items:center;}
.about-media{position:relative;}
.about-media .frame-main{border-radius:26px; overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:1/1.02;}
.about-media .frame-main img{width:100%; height:100%; object-fit:cover;}
.about-badge{
  position:absolute; bottom:-24px; left:-24px; background:var(--emerald);
  color:#fff; padding:20px 24px; border-radius:20px; box-shadow:0 16px 30px rgba(22,163,74,.35);
  font-family:var(--font-display);
}
.about-badge b{font-size:28px; display:block;}
.about-badge span{font-size:12px; font-weight:600; opacity:.92;}
.about-points{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:30px 0 34px;}
.about-points li{display:flex; gap:12px; align-items:flex-start; font-size:14.5px; font-weight:600; color:var(--ink);}
.about-points li .tick{
  flex:none; width:24px; height:24px; border-radius:50%; background:rgba(11,94,215,.1); color:var(--deep-blue);
  display:flex; align-items:center; justify-content:center; font-size:12px;
}
.about-text p{color:var(--ink-soft); margin-bottom:16px;}

/* ============================================================
   SERVICES
   ============================================================ */
.service-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:26px;}
.service-card{
  position:relative; background:#fff; border-radius:22px; padding:34px 26px; border:1px solid var(--gray-200);
  box-shadow:var(--shadow-sm); transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .4s;
  overflow:hidden;
}
.service-card::before{
  content:''; position:absolute; inset:0; opacity:0; transition:opacity .4s;
  background:linear-gradient(160deg,var(--deep-blue) 0%, var(--emerald) 130%);
  z-index:0;
}
.service-card:hover{transform:translateY(-10px); box-shadow:var(--shadow-lg); border-color:transparent;}
.service-card:hover::before{opacity:1;}
.service-card > *{position:relative; z-index:1;}
.service-icon{
  width:58px; height:58px; border-radius:16px; background:rgba(11,94,215,.09); color:var(--deep-blue);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:.4s;
}
.service-card:hover .service-icon{background:rgba(255,255,255,.18); color:#fff;}
.service-card h3{font-size:18px; margin-bottom:10px; transition:.4s;}
.service-card:hover h3{color:#fff;}
.service-card p{font-size:14px; color:var(--ink-soft); transition:.4s;}
.service-card:hover p{color:rgba(255,255,255,.88);}
.service-link{display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:13.5px; font-weight:700; color:var(--deep-blue); transition:.4s;}
.service-card:hover .service-link{color:#fff;}
.service-link svg{transition:transform .3s;}
.service-card:hover .service-link svg{transform:translateX(4px);}

.services-cta{
  margin-top:56px; border-radius:26px; padding:50px 56px; display:flex; align-items:center; justify-content:space-between; gap:30px;
  background:linear-gradient(120deg,var(--deep-blue) 0%, var(--deep-blue-dark) 60%, var(--emerald-dark) 130%);
  color:#fff; flex-wrap:wrap;
}
.services-cta h3{color:#fff; font-size:24px; margin-bottom:8px;}
.services-cta p{color:rgba(255,255,255,.85); font-size:14.5px;}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.why-card{
  text-align:center; padding:36px 20px; border-radius:20px; background:var(--gray-50);
  transition:transform .4s, background .4s, box-shadow .4s;
}
.why-card:hover{transform:translateY(-8px); background:#fff; box-shadow:var(--shadow-md);}
.why-icon{
  width:64px; height:64px; margin:0 auto 18px; border-radius:50%;
  background:linear-gradient(135deg,var(--deep-blue),var(--sky)); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 10px 22px rgba(11,94,215,.28);
}
.why-card h4{font-size:15.5px; margin-bottom:8px;}
.why-card p{font-size:13px; color:var(--ink-soft);}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-wrap{position:relative;}
.process-track{display:grid; grid-template-columns:repeat(6,1fr); gap:18px; position:relative;}
.process-track::before{
  content:''; position:absolute; top:32px; left:6%; right:6%; height:2px;
  background:repeating-linear-gradient(90deg, var(--gray-200) 0 10px, transparent 10px 18px);
  z-index:0;
}
.process-step{position:relative; z-index:1; text-align:center;}
.process-num{
  width:64px; height:64px; margin:0 auto 18px; border-radius:50%; background:#fff; border:2px solid var(--gray-200);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700;
  font-size:15px; color:var(--deep-blue); transition:.4s;
}
.process-step:hover .process-num{background:var(--deep-blue); color:#fff; border-color:var(--deep-blue); transform:scale(1.08);}
.process-step h4{font-size:14.5px; margin-bottom:6px;}
.process-step p{font-size:12.5px; color:var(--ink-soft);}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px;}
.gfilter{
  padding:10px 20px; border-radius:var(--radius-pill); font-size:13.5px; font-weight:600;
  background:var(--gray-100); color:var(--ink-soft); transition:.3s;
}
.gfilter.active, .gfilter:hover{background:var(--deep-blue); color:#fff;}
.masonry{display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;}
.masonry .g-item{
  border-radius:18px; overflow:hidden; position:relative;
  box-shadow:var(--shadow-sm); cursor:zoom-in;
}
.masonry .g-item .g-visual{
  width:100%; aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; color:#fff; position:relative;
  overflow:hidden;
}
.masonry .g-item .g-visual img{width:100%; height:100%; object-fit:cover; display:block;}
.masonry .g-item::after{
  content:attr(data-label); position:absolute; left:0; right:0; bottom:0; padding:16px;
  background:linear-gradient(0deg, rgba(5,20,45,.82), transparent);
  color:#fff; font-weight:600; font-size:14px; transform:translateY(8px); opacity:0; transition:.35s;
}
.masonry .g-item:hover::after{opacity:1; transform:translateY(0);}
.masonry .g-item img, .masonry .g-item .g-visual{transition:transform .5s cubic-bezier(.2,.8,.2,1);}
.masonry .g-item:hover img, .masonry .g-item:hover .g-visual{transform:scale(1.06);}

.lightbox{
  position:fixed; inset:0; background:rgba(5,15,35,.92); z-index:999; display:none;
  align-items:center; justify-content:center; padding:40px;
}
.lightbox.open{display:flex;}
.lightbox-inner{max-width:800px; width:100%; border-radius:20px; overflow:hidden; position:relative;}
.lightbox-close{position:absolute; top:-46px; right:0; color:#fff; font-size:30px; background:none;}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-track-wrap{overflow:hidden; position:relative; touch-action:pan-y;}
.testi-track{display:flex; gap:26px; transition:transform 1s cubic-bezier(.22,.7,.2,1);}
.testi-card{
  flex:0 0 calc(33.333% - 17.4px); background:#fff; border:1px solid var(--gray-200); border-radius:22px; padding:32px;
  box-shadow:var(--shadow-sm);
}
.testi-stars{color:var(--gold); font-size:14px; margin-bottom:16px; letter-spacing:2px;}
.testi-card p{color:var(--ink-soft); font-size:14.5px; margin-bottom:22px;}
.testi-person{display:flex; align-items:center; gap:12px;}
.testi-avatar{
  width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:var(--font-display); font-weight:700; font-size:16px;
  background:linear-gradient(135deg,var(--deep-blue),var(--emerald));
}
.testi-person b{display:block; font-size:14.5px;}
.testi-person span{font-size:12.5px; color:var(--ink-faint);}
.testi-controls{display:flex; justify-content:center; gap:12px; margin-top:36px;}
.testi-dot{width:9px; height:9px; border-radius:50%; background:var(--gray-200); transition:.3s;}
.testi-dot.active{background:var(--deep-blue); width:26px; border-radius:6px;}

/* ============================================================
   STATS
   ============================================================ */
.stats-band{
  background:linear-gradient(120deg,var(--deep-blue-darker) 0%, var(--deep-blue) 60%, var(--emerald-dark) 130%);
  padding:64px 0; position:relative; overflow:hidden;
}
.stats-band::before{
  content:''; position:absolute; inset:0; opacity:.12;
  background-image:radial-gradient(#fff 1.4px, transparent 1.4px); background-size:22px 22px;
}
.stats-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; position:relative; z-index:1;}
.stat-item{text-align:center; color:#fff;}
.stat-item .num{font-family:var(--font-display); font-size:clamp(32px,4vw,48px); font-weight:800;}
.stat-item .label{font-size:13.5px; font-weight:600; color:rgba(255,255,255,.82); text-transform:uppercase; letter-spacing:.06em; margin-top:6px;}

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap{max-width:800px; margin:0 auto;}
.faq-item{border-bottom:1px solid var(--gray-200);}
.faq-q{
  width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:24px 4px; text-align:left; font-family:var(--font-display); font-weight:600; font-size:16.5px; color:var(--ink);
}
.faq-q .plus{
  flex:none; width:30px; height:30px; border-radius:50%; background:var(--gray-100); color:var(--deep-blue);
  display:flex; align-items:center; justify-content:center; transition:.35s; font-size:16px;
}
.faq-item.open .faq-q .plus{transform:rotate(135deg); background:var(--deep-blue); color:#fff;}
.faq-a{max-height:0; overflow:hidden; transition:max-height .4s ease;}
.faq-a p{padding:0 4px 24px; color:var(--ink-soft); font-size:14.5px; max-width:680px;}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid{display:grid; grid-template-columns:1fr 1.15fr; gap:56px;}
.contact-info-card{
  background:linear-gradient(150deg,var(--deep-blue-darker), var(--deep-blue) 70%);
  border-radius:26px; padding:44px 36px; color:#fff; position:relative; overflow:hidden;
}
.contact-info-card::after{content:''; position:absolute; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.06); top:-80px; right:-80px;}
.contact-info-card h3{color:#fff; font-size:22px; margin-bottom:8px;}
.contact-info-card > p{color:rgba(255,255,255,.78); font-size:14.5px; margin-bottom:30px;}
.contact-row{display:flex; gap:16px; align-items:flex-start; margin-bottom:22px; position:relative; z-index:1;}
.contact-row .ic{
  flex:none; width:44px; height:44px; border-radius:14px; background:rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
}
.contact-row b{display:block; font-size:14px; margin-bottom:3px;}
.contact-row span, .contact-row a{font-size:13.5px; color:rgba(255,255,255,.85);}
.contact-socials{display:flex; gap:12px; margin-top:26px; position:relative; z-index:1;}
.contact-socials a{
  width:42px; height:42px; border-radius:12px; background:rgba(255,255,255,.14); display:flex;
  align-items:center; justify-content:center; transition:.3s;
}
.contact-socials a:hover{background:var(--emerald); transform:translateY(-3px);}

.contact-form{background:#fff; border-radius:26px; padding:44px 40px; border:1px solid var(--gray-200); box-shadow:var(--shadow-sm);}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
.field label{display:block; font-size:13px; font-weight:600; margin-bottom:8px; color:var(--ink);}
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:12px; border:1.5px solid var(--gray-200); font-family:inherit;
  font-size:14.5px; transition:.3s; background:var(--gray-50);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--deep-blue); background:#fff; box-shadow:0 0 0 4px rgba(11,94,215,.1);
}
.field-full{grid-column:1/-1;}

.map-embed{border-radius:22px; overflow:hidden; height:340px; box-shadow:var(--shadow-sm); border:1px solid var(--gray-200);}

.float-actions{position:fixed; right:22px; bottom:22px; display:flex; flex-direction:column; gap:14px; z-index:150;}
.float-btn{
  width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; box-shadow:0 12px 26px rgba(0,0,0,.22); transition:transform .3s;
}
.float-btn:hover{transform:translateY(-4px) scale(1.05);}
.float-btn.wa{background:#25D366;}
.float-btn.call{background:var(--deep-blue);}
.float-btn.top{background:var(--ink); opacity:0; pointer-events:none; transition:opacity .3s, transform .3s;}
.float-btn.top.show{opacity:1; pointer-events:auto;}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero{
  position:relative; padding:150px 0 90px; text-align:center; overflow:hidden;
  background:linear-gradient(150deg,var(--deep-blue-darker) 0%, var(--deep-blue) 70%, var(--emerald-dark) 140%);
  color:#fff;
}
.page-hero::before{content:''; position:absolute; inset:0; opacity:.12; background-image:radial-gradient(#fff 1.4px, transparent 1.4px); background-size:24px 24px;}
.page-hero .container{position:relative; z-index:1;}
.page-hero .crumbs{font-size:13.5px; color:rgba(255,255,255,.75); margin-bottom:16px; font-weight:600; letter-spacing:.04em;}
.page-hero h1{color:#fff; font-size:clamp(30px,4.4vw,48px);}
.page-hero p{color:rgba(255,255,255,.82); max-width:560px; margin:16px auto 0; font-size:16px;}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{background:var(--deep-blue-darker); color:#c8d8f4; padding-top:80px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.3fr; gap:44px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.1);}
.footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:18px;}
.footer-brand img{height:44px; border-radius:8px; background:#fff; padding:3px;}
.footer-brand strong{font-family:var(--font-display); color:#fff; font-size:16px;}
.site-footer p{font-size:13.5px; color:#a9bfe6; margin-bottom:18px;}
.footer-col h5{color:#fff; font-family:var(--font-display); font-size:15px; margin-bottom:20px;}
.footer-col ul li{margin-bottom:12px;}
.footer-col ul a{font-size:13.5px; color:#a9bfe6; transition:.25s;}
.footer-col ul a:hover{color:#fff; padding-left:4px;}
.footer-social{display:flex; gap:10px; margin-top:8px;}
.footer-social a{width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:.3s;}
.footer-social a:hover{background:var(--emerald);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding:24px 0; font-size:12.5px; color:#8fa8d6; flex-wrap:wrap; gap:10px;}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  .service-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
  .process-track{grid-template-columns:repeat(3,1fr); row-gap:40px;}
  .process-track::before{display:none;}
  .stats-grid{grid-template-columns:repeat(2,1fr); row-gap:32px;}
  .masonry{grid-template-columns:repeat(2, 1fr);}
  .testi-card{flex:0 0 calc(50% - 13px);}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:860px){
  .topbar{display:none;}
  .main-nav, .header-phone{display:none;}
  .nav-toggle{display:flex;}
  .hero .container{grid-template-columns:1fr; text-align:center;}
  .hero p.lead{margin-left:auto; margin-right:auto;}
  .hero-actions, .hero-trust{justify-content:center;}
  .hero-media{margin-top:50px;}
  .about-grid{grid-template-columns:1fr;}
  .about-media{max-width:420px; margin:0 auto;}
  .contact-grid{grid-template-columns:1fr;}
  .services-cta{flex-direction:column; text-align:center;}
}
@media (max-width:640px){
  .section{padding:70px 0;}
  .service-grid{grid-template-columns:1fr;}
  .why-grid{grid-template-columns:1fr 1fr;}
  .process-track{grid-template-columns:1fr 1fr;}
  .masonry{grid-template-columns:1fr;}
  .testi-card{flex:0 0 100%;}
  .form-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .stats-grid{grid-template-columns:1fr 1fr;}
  .hero-exp-card, .hero-float-badge{position:static; margin:14px auto 0; animation:none;}
  .hero-media-frame{margin-bottom:14px;}
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:32px;}
.product-card{
  background:#fff; border:1px solid var(--gray-200); border-radius:24px; overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
  display:flex; flex-direction:column;
}
.product-card:hover{transform:translateY(-8px); box-shadow:var(--shadow-lg);}
.product-media{
  position:relative; aspect-ratio:1/0.82; overflow:hidden; background:var(--gray-50);
}
.product-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:opacity .5s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.product-media img.img-front{opacity:1; z-index:1;}
.product-media img.img-back{opacity:0; z-index:2;}
.product-card:hover .product-media img.img-back{opacity:1;}
.product-card:hover .product-media img.img-front{transform:scale(1.04);}
.product-badge{
  position:absolute; top:16px; left:16px; z-index:3; background:rgba(255,255,255,.92);
  color:var(--deep-blue); font-size:11.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  padding:7px 14px; border-radius:var(--radius-pill); box-shadow:var(--shadow-sm);
}
.product-body{padding:28px 26px 26px; display:flex; flex-direction:column; flex:1;}
.product-body h3{font-size:20px; margin-bottom:8px;}
.product-body p{color:var(--ink-soft); font-size:14px; margin-bottom:18px;}
.product-chips{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px;}
.product-chip{
  font-size:12px; font-weight:600; color:var(--emerald-dark); background:rgba(22,163,74,.09);
  padding:6px 12px; border-radius:var(--radius-pill);
}
.product-actions{display:flex; gap:12px; margin-top:auto; flex-wrap:wrap;}
.product-actions .btn{flex:1; min-width:140px;}

@media (max-width:860px){
  .product-grid{grid-template-columns:1fr;}
}

/* mobile nav drawer */
.mobile-nav{
  position:fixed; top:0; right:-320px; width:300px; height:100vh; background:#fff; z-index:300;
  box-shadow:-16px 0 40px rgba(0,0,0,.15); padding:30px 26px; transition:right .4s cubic-bezier(.2,.8,.2,1);
  display:flex; flex-direction:column; gap:6px;
}
.mobile-nav.open{right:0;}
.mobile-nav a{padding:14px 6px; font-weight:600; border-bottom:1px solid var(--gray-100);}
.mobile-nav-close{align-self:flex-end; font-size:26px; margin-bottom:10px;}
.nav-scrim{position:fixed; inset:0; background:rgba(5,15,35,.5); z-index:290; display:none;}
.nav-scrim.open{display:block;}
