/* ==================================================================
   Masarat Logistics — Main Stylesheet
   مسارات لوجستكس
   Design tokens:
   - Primary Blue  #0059D0
   - Orange        #FF6100
   - White         #FFFFFF
   - Light Gray    #F4F6FA
   - Ink (black-ish)#0B1220 (used sparingly)
   Fonts: Cairo (Display/Headings) + IBM Plex Sans Arabic (Body)
   Signature element: "Route Line" — منحنى الطريق البرتقالي المتحرك
   المستوحى من شعار الشركة، يظهر كخيط بصري يربط الأقسام ويقود العين.
   ================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@600;700;800;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root{
  --blue: #0059D0;
  --blue-dark: #003E94;
  --blue-light: #E8F0FD;
  --orange: #FF6100;
  --orange-light: #FFF1E8;
  --white: #FFFFFF;
  --gray-50: #F7F8FB;
  --gray-100: #F4F6FA;
  --gray-200: #E7EAF2;
  --gray-400: #A6ADBD;
  --gray-600: #6B7280;
  --ink: #0B1220;

  --font-display: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;

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

  --shadow-sm: 0 2px 10px rgba(11,18,32,.06);
  --shadow-md: 0 12px 30px rgba(0,62,148,.10);
  --shadow-lg: 0 24px 60px rgba(0,62,148,.16);

  --container: 1240px;
  --header-h: 84px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; padding:0; }

body{
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  direction: rtl;
  text-align: right;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll{ overflow:hidden; height:100vh; }

h1,h2,h3,h4,h5{
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 .6em;
  color: var(--ink);
}

p{ margin:0 0 1em; color: var(--gray-600); }
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

::selection{ background: var(--orange); color:#fff; }

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

.section{ padding: 96px 0; position:relative; }
.section--tight{ padding: 64px 0; }
.section--gray{ background: var(--gray-100); }

@media (max-width:900px){
  .section{ padding: 64px 0; }
}

/* ---------------- Eyebrow / Section head ---------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight:700;
  font-size:13px;
  letter-spacing:.03em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:'';
  width:6px; height:6px; border-radius:50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-light);
}

.section-head{ max-width: 720px; margin-bottom: 52px; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 42px); }
.section-head p{ font-size: 17px; }

/* ---------------- Buttons ---------------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family: var(--font-display);
  font-weight:700;
  font-size:15px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  overflow:hidden;
  isolation:isolate;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; transition: transform .3s var(--ease); }
.btn:hover svg{ transform: translateX(-4px); }
.btn:active{ transform: scale(.97); }

.btn--primary{ background: var(--orange); color:#fff; box-shadow: 0 10px 24px rgba(255,97,0,.30); }
.btn--primary:hover{ box-shadow: 0 14px 32px rgba(255,97,0,.42); transform: translateY(-2px); }

.btn--outline{ background: transparent; border-color: rgba(255,255,255,.5); color:#fff; }
.btn--outline:hover{ background: rgba(255,255,255,.12); border-color:#fff; }

.btn--outline-blue{ background: transparent; border-color: var(--blue); color: var(--blue); }
.btn--outline-blue:hover{ background: var(--blue); color:#fff; }

.btn--ghost{ background: var(--blue-light); color: var(--blue); }
.btn--ghost:hover{ background: var(--blue); color:#fff; }

.btn--sm{ padding: 10px 20px; font-size:13px; }

/* Ripple */
.ripple{ position:absolute; border-radius:50%; background: rgba(255,255,255,.55); transform: scale(0); animation: ripple .6s var(--ease); pointer-events:none; }
@keyframes ripple{ to{ transform: scale(3); opacity:0; } }

/* ==================================================================
   Loader
   ================================================================== */
#loader{
  position:fixed; inset:0; z-index:9999;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
#loader.loader--hide{ opacity:0; visibility:hidden; }

.loader-stage{
  display:flex; flex-direction:column; align-items:center; gap:26px;
  width: min(420px, 84vw);
}
.loader-logo-img{
  height: 46px; width:auto;
  opacity:0;
  transform: translateY(6px);
}
.loader-track{
  position:relative;
  width:100%; height:4px;
  background: var(--gray-200);
  border-radius:99px;
  overflow:visible;
}
.loader-track .fill{
  position:absolute; inset:0 100% 0 0;
  background: var(--orange);
  border-radius:99px;
  animation: loaderFill 1.5s var(--ease) forwards .35s;
}
@keyframes loaderFill{ to{ inset:0 0 0 0; } }

.loader-plane{
  position:absolute; top:50%; right:100%;
  transform: translate(50%,-50%);
  width:26px; height:26px; color: var(--orange);
  animation: planeMove 1.5s var(--ease) forwards .35s;
}
@keyframes planeMove{ to{ right:0%; transform: translate(50%,-50%) rotate(0); } }

.loader-text{ text-align:center; opacity:0; transform: translateY(6px); }
.loader-text .ar{ font-family: var(--font-display); font-weight:800; font-size:20px; color: var(--ink); display:block; }
.loader-text .en{ font-size:12px; letter-spacing:.12em; color: var(--gray-600); text-transform:uppercase; }

.loader-anim .loader-logo-img{ animation: fadeUp .6s var(--ease) forwards; }
.loader-anim .loader-text{ animation: fadeUp .6s var(--ease) forwards 1.9s; }
@keyframes fadeUp{ to{ opacity:1; transform:none; } }

/* ==================================================================
   Header
   ================================================================== */
#site-header{
  position: fixed; top:0; inset-inline:0; z-index: 1000;
  height: var(--header-h);
  display:flex; align-items:center;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
#site-header .header-inner{
  width:100%; max-width: var(--container); margin-inline:auto; padding-inline:24px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
#site-header.is-solid{
  background: rgba(255,255,255,.92);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:34px; width:auto; display:block; }
.brand .logo-color{ display:none; }
.brand .logo-white{ display:block; }
#site-header.is-solid .brand .logo-color{ display:block; }
#site-header.is-solid .brand .logo-white{ display:none; }

.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  position:relative;
  padding:10px 16px;
  font-weight:600; font-size:14.5px;
  color:#fff; border-radius: var(--radius-pill);
  transition: color .35s, background .35s;
}
.main-nav a::after{
  content:''; position:absolute; right:16px; left:16px; bottom:6px; height:2px;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after{ transform: scaleX(1); }
#site-header.is-solid .main-nav a{ color: var(--ink); }
#site-header.is-solid .main-nav a:hover{ background: var(--blue-light); color: var(--blue); }

.header-cta{ display:flex; align-items:center; gap:14px; }
.header-cta .btn{ padding:12px 22px; font-size:14px; }

.burger{
  display:none; width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,.5); background:transparent;
  position:relative; flex:none;
}
#site-header.is-solid .burger{ border-color: var(--gray-200); }
.burger span{
  position:absolute; right:12px; left:12px; height:2px; background:#fff;
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .35s;
}
#site-header.is-solid .burger span{ background: var(--ink); }
.burger span:nth-child(1){ top:16px; }
.burger span:nth-child(2){ top:21px; }
.burger span:nth-child(3){ top:26px; }
.burger.is-open span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

.mobile-nav{
  position: fixed; inset:0; z-index:999;
  background: var(--blue);
  background-image: radial-gradient(circle at 20% 10%, rgba(255,255,255,.12), transparent 40%);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-nav-logo{ height:38px; width:auto; margin-bottom:24px; }
.mobile-nav.is-open{ transform: translateY(0); }
.mobile-nav a{ color:#fff; font-family:var(--font-display); font-weight:700; font-size:22px; padding:12px 0; }
.mobile-nav .btn{ margin-top:20px; }

@media (max-width:1080px){
  .main-nav, .header-cta .btn--outline{ display:none; }
  .burger{ display:block; }
}

/* ==================================================================
   Hero
   ================================================================== */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex; align-items:center;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 58%, #0072FF 100%);
  overflow:hidden;
  padding-top: var(--header-h);
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg canvas{ position:absolute; inset:0; width:100%; height:100%; }
.hero-bg .grid-overlay{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 10%, transparent 70%);
}
.hero-bg .glow{
  position:absolute; border-radius:50%; filter: blur(90px); opacity:.55;
}
.hero-bg .glow--1{ width:520px; height:520px; background: var(--orange); top:-140px; left:-120px; animation: floatSlow 12s ease-in-out infinite; }
.hero-bg .glow--2{ width:420px; height:420px; background:#38BDF8; bottom:-160px; right:-100px; animation: floatSlow 14s ease-in-out infinite reverse; }
@keyframes floatSlow{ 0%,100%{ transform: translateY(0) translateX(0);} 50%{ transform: translateY(30px) translateX(-20px);} }

.hero-route{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.hero-route svg{ width:100%; height:100%; }
.hero-route path{
  fill:none; stroke: var(--orange); stroke-width:2; stroke-linecap:round;
  stroke-dasharray: 10 12; opacity:.55;
  animation: dashMove 3.6s linear infinite;
}
@keyframes dashMove{ to{ stroke-dashoffset: -220; } }
.hero-route .plane{ animation: planeFly 9s linear infinite; }
@keyframes planeFly{
  0%{ offset-distance: 0%; opacity:0; }
  5%{ opacity:1; }
  95%{ opacity:1; }
  100%{ offset-distance: 100%; opacity:0; }
}

.hero-content{ position:relative; z-index:3; max-width:760px; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  color:#fff; background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  padding:9px 18px; border-radius: var(--radius-pill);
  font-size:13px; font-weight:700; margin-bottom:26px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow span{ width:7px; height:7px; border-radius:50%; background: var(--orange); box-shadow:0 0 0 5px rgba(255,97,0,.28); }

.hero h1{
  color:#fff; font-size: clamp(40px, 6vw, 72px); margin-bottom:.2em; letter-spacing:-.01em;
}
.hero h1 .accent{ color: var(--orange); }
.hero .sub{
  color: rgba(255,255,255,.92); font-family: var(--font-display); font-weight:700;
  font-size: clamp(18px,2.2vw,24px); margin-bottom:18px;
}
.hero .desc{ color: rgba(255,255,255,.78); font-size:17px; max-width:560px; margin-bottom:36px; }

.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:56px; }

.hero-stats{ display:flex; flex-wrap:wrap; gap:36px; }
.hero-stats .stat{ color:#fff; }
.hero-stats .num{ font-family: var(--font-display); font-weight:900; font-size:30px; color:#fff; display:flex; align-items:baseline; gap:2px; }
.hero-stats .num .plus{ color: var(--orange); font-size:20px; }
.hero-stats .label{ font-size:13px; color: rgba(255,255,255,.7); }

.scroll-cue{
  position:absolute; bottom:34px; right:50%; transform:translateX(50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:8px; color: rgba(255,255,255,.65);
  font-size:11px; letter-spacing:.14em;
}
.scroll-cue .line{ width:1px; height:34px; background: linear-gradient(to bottom, #fff, transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine{ 0%{ transform: scaleY(0); transform-origin:top;} 50%{ transform: scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{ transform: scaleY(0); transform-origin:bottom;} }

/* Floating 3D shapes */
.float-shape{ position:absolute; z-index:2; opacity:.9; }
.float-shape svg{ width:100%; height:100%; }
.fs-1{ width:90px; top:22%; left:8%; animation: floatShape 7s ease-in-out infinite; }
.fs-2{ width:60px; top:64%; left:16%; animation: floatShape 8.5s ease-in-out infinite 1s; }
.fs-3{ width:70px; top:30%; right:8%; animation: floatShape 6.5s ease-in-out infinite .5s; }
@keyframes floatShape{ 0%,100%{ transform: translateY(0) rotate(0deg);} 50%{ transform: translateY(-22px) rotate(8deg);} }

@media (max-width:900px){
  .hero{ min-height:auto; padding-block: 140px 90px; }
  .float-shape{ display:none; }
}

/* ==================================================================
   Marquee / Trust strip
   ================================================================== */
.trust-strip{ background: var(--ink); padding: 22px 0; overflow:hidden; }
.trust-track{ display:flex; gap:64px; width:max-content; animation: marquee 26s linear infinite; }
.trust-track span{ color: rgba(255,255,255,.55); font-family: var(--font-display); font-weight:700; font-size:14px; letter-spacing:.08em; white-space:nowrap; }
.trust-track span b{ color:#fff; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==================================================================
   Services Cards
   ================================================================== */
.services-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
@media (max-width:1080px){ .services-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width:600px){ .services-grid{ grid-template-columns: 1fr;} }

.service-card{
  position:relative;
  background: var(--white);
  border:1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  overflow:hidden;
}
.service-card::before{
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 120%);
  opacity:0; transition: opacity .45s var(--ease);
  z-index:0;
}
.service-card > *{ position:relative; z-index:1; }
.service-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color:transparent; }
.service-card:hover::before{ opacity:1; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .card-link{ color:#fff !important; }
.service-card:hover .service-icon{ background: rgba(255,255,255,.18); color:#fff; }

.service-icon{
  width:56px; height:56px; border-radius:16px;
  background: var(--blue-light); color: var(--blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; transition: background .4s, color .4s, transform .4s var(--ease);
}
.service-icon svg{ width:26px; height:26px; }
.service-card:hover .service-icon{ transform: rotate(-8deg) scale(1.05); }

.service-card h3{ font-size:19px; margin-bottom:10px; }
.service-card p{ font-size:14.5px; margin-bottom:18px; }
.card-link{ display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:13.5px; color: var(--blue); }
.card-link svg{ width:15px; height:15px; transition: transform .3s var(--ease); }
.service-card:hover .card-link svg{ transform: translateX(-4px); }

.services-cta{ text-align:center; margin-top:44px; }

/* ==================================================================
   Corporate Solutions
   ================================================================== */
.corp-section{
  background: var(--ink);
  border-radius: var(--radius-lg);
  margin-inline: 24px;
  padding: 72px 48px;
  position:relative;
  overflow:hidden;
  color:#fff;
}
.corp-section .container{ max-width:none; padding:0; position:relative; z-index:2; }
.corp-section::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(600px 300px at 90% 0%, rgba(0,89,208,.55), transparent),
              radial-gradient(500px 260px at 5% 100%, rgba(255,97,0,.35), transparent);
}
.corp-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:center; }
@media (max-width:900px){ .corp-grid{ grid-template-columns:1fr; } .corp-section{ margin-inline:12px; padding:52px 26px;} }

.corp-list{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
@media (max-width:560px){ .corp-list{ grid-template-columns:1fr; } }
.corp-item{
  display:flex; align-items:center; gap:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding:16px 18px;
  transition: background .35s, transform .35s var(--ease);
}
.corp-item:hover{ background: rgba(255,255,255,.12); transform: translateY(-4px); }
.corp-item .ic{ width:38px; height:38px; border-radius:10px; background: var(--orange); display:flex; align-items:center; justify-content:center; flex:none; }
.corp-item .ic svg{ width:18px; height:18px; color:#fff; }
.corp-item span{ font-weight:600; font-size:14.5px; }

.corp-section h2{ color:#fff; }
.corp-section p{ color: rgba(255,255,255,.72); }

/* ==================================================================
   Why Us
   ================================================================== */
.why-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .why-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .why-grid{ grid-template-columns: 1fr; } }
.why-card{ text-align:center; padding: 20px 14px; }
.why-icon{
  width:82px; height:82px; margin-inline:auto 18px;
  border-radius:50%;
  background: conic-gradient(from 180deg, var(--blue), var(--orange), var(--blue));
  display:flex; align-items:center; justify-content:center; position:relative;
  animation: spinSlow 10s linear infinite;
}
.why-icon::after{ content:''; position:absolute; inset:4px; border-radius:50%; background:#fff; }
.why-icon svg{ width:30px; height:30px; color: var(--blue); position:relative; z-index:1; }
@keyframes spinSlow{ to{ transform: rotate(360deg); } }
.why-card h3{ font-size:17px; margin-bottom:8px; }
.why-card p{ font-size:14px; }

/* ==================================================================
   How it works — Timeline
   ================================================================== */
.timeline{ position:relative; display:grid; grid-template-columns: repeat(4,1fr); gap:30px; }
.timeline::before{
  content:''; position:absolute; top:34px; inset-inline:6%;
  height:2px; background: repeating-linear-gradient(to left, var(--gray-200) 0 8px, transparent 8px 16px);
  z-index:0;
}
.timeline-progress{ position:absolute; top:34px; right:6%; height:2px; width:0; background: var(--orange); z-index:1; transition: width 1.4s var(--ease); }
@media (max-width:900px){ .timeline{ grid-template-columns:1fr; } .timeline::before, .timeline-progress{ display:none; } }

.tl-step{ position:relative; z-index:2; text-align:center; }
.tl-num{
  width:68px; height:68px; margin-inline:auto 20px;
  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:800; font-size:22px; color: var(--blue);
  transition: border-color .4s, background .4s, color .4s, transform .4s var(--ease);
}
.tl-step.is-active .tl-num{ border-color: var(--orange); background: var(--orange); color:#fff; transform: scale(1.08); }
.tl-step h3{ font-size:16.5px; margin-bottom:6px; }
.tl-step p{ font-size:13.5px; }

/* ==================================================================
   Tracking widget (home teaser + page)
   ================================================================== */
.tracking-box{
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 54px 44px;
  color:#fff;
  display:flex; align-items:center; justify-content:space-between; gap:36px;
  flex-wrap:wrap;
  position:relative; overflow:hidden;
}
.tracking-box::after{
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.3) 0, transparent 3px),
                     radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,.25) 0, transparent 3px),
                     radial-gradient(2px 2px at 40% 80%, rgba(255,255,255,.2) 0, transparent 3px);
  background-size: 220px 220px;
}
.tracking-box > *{ position:relative; z-index:1; }
.tracking-text h2{ color:#fff; font-size:26px; margin-bottom:8px; }
.tracking-text p{ color: rgba(255,255,255,.78); margin-bottom:0; max-width:420px; }
.tracking-form{ display:flex; gap:12px; flex:1; min-width:280px; max-width:460px; }
.tracking-form input{
  flex:1; padding:16px 20px; border-radius: var(--radius-pill); border:none;
  font-family:var(--font-body); font-size:14.5px; outline:none;
}
.tracking-form button{
  background: var(--orange); color:#fff; border:none; border-radius: var(--radius-pill);
  padding:0 26px; font-family:var(--font-display); font-weight:700; font-size:14px;
  display:flex; align-items:center; gap:8px;
}

/* ==================================================================
   FAQ Accordion
   ================================================================== */
.faq-list{ max-width:820px; margin-inline:auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:#fff; border:1px solid var(--gray-200); border-radius:16px; overflow:hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.is-open{ border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px; background:transparent; border:none; text-align:right;
  font-family: var(--font-display); font-weight:700; font-size:15.5px; color: var(--ink);
}
.faq-q .plus{
  width:30px; height:30px; border-radius:50%; background: var(--blue-light); color: var(--blue);
  display:flex; align-items:center; justify-content:center; flex:none; transition: transform .4s var(--ease), background .3s, color .3s;
}
.faq-item.is-open .faq-q .plus{ transform: rotate(135deg); background: var(--orange); color:#fff; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a-inner{ padding:0 24px 22px; color: var(--gray-600); font-size:14.5px; }

/* ==================================================================
   CTA band
   ================================================================== */
.cta-band{
  position:relative;
  background: linear-gradient(120deg, var(--blue) 0%, #0072FF 60%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  margin-inline:24px;
  padding: 64px 40px;
  text-align:center;
  overflow:hidden;
}
.cta-band h2{ color:#fff; font-size: clamp(26px,3vw,36px); margin-bottom:12px; }
.cta-band p{ color: rgba(255,255,255,.8); margin-bottom:30px; }
.cta-band .actions{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; position:relative; z-index:2;}
.cta-plane{ position:absolute; top:20px; left:6%; width:70px; opacity:.5; animation: floatShape 6s ease-in-out infinite; }

/* ==================================================================
   Footer
   ================================================================== */
#site-footer{ background: var(--ink); color: rgba(255,255,255,.7); padding-top: 76px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.08); }
@media (max-width:900px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width:560px){ .footer-top{ grid-template-columns: 1fr; } }

.footer-brand .brand{ margin-bottom:16px; }
.footer-brand .brand .ar{ color:#fff; }
.footer-brand p{ font-size:14px; color: rgba(255,255,255,.55); max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center; transition: background .3s, border-color .3s, transform .3s;
}
.footer-social a:hover{ background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }

.footer-col h4{ color:#fff; font-size:15px; margin-bottom:20px; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a{ font-size:14px; color: rgba(255,255,255,.6); transition: color .3s, margin .3s; }
.footer-col a:hover{ color: var(--orange); margin-inline-start:4px; }

.footer-bottom{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; padding:26px 0; font-size:13px; color: rgba(255,255,255,.45); }
.footer-bottom a{ color: rgba(255,255,255,.7); font-weight:600; }
.footer-bottom a:hover{ color: var(--orange); }

/* ==================================================================
   Inner pages (generic hero band)
   ================================================================== */
.page-hero{
  background: linear-gradient(160deg, var(--blue-dark), var(--blue));
  padding: calc(var(--header-h) + 70px) 0 70px;
  position:relative; overflow:hidden;
}
.page-hero h1{ color:#fff; font-size: clamp(30px,4vw,46px); margin-bottom:10px; }
.page-hero .crumbs{ color: rgba(255,255,255,.65); font-size:13.5px; display:flex; gap:8px; align-items:center; }
.page-hero .crumbs a{ color: rgba(255,255,255,.85); }
.page-hero .crumbs a:hover{ color: var(--orange); }

/* Generic content blocks */
.prose{ max-width: 820px; margin-inline:auto; }
.prose h2{ font-size:22px; margin-top:1.6em; }
.prose p{ font-size:15.5px; }

/* Cards grid generic (blog) */
.blog-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .blog-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:600px){ .blog-grid{ grid-template-columns: 1fr; } }
.blog-card{ border:1px solid var(--gray-200); border-radius: var(--radius-md); overflow:hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); background:#fff; }
.blog-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .thumb{ aspect-ratio: 16/10; background: linear-gradient(135deg, var(--blue-light), var(--orange-light)); display:flex; align-items:center; justify-content:center; color: var(--blue); }
.blog-card .thumb svg{ width:40px; height:40px; }
.blog-card .body{ padding:22px; }
.blog-card .meta{ font-size:12px; color: var(--gray-400); margin-bottom:8px; }
.blog-card h3{ font-size:16.5px; margin-bottom:8px; }
.blog-card p{ font-size:13.5px; }
.empty-state{ text-align:center; padding:70px 20px; color: var(--gray-600); }
.empty-state svg{ width:56px; height:56px; color: var(--gray-400); margin-inline:auto 16px; }

/* Contact page */
.contact-grid{ display:grid; grid-template-columns: .85fr 1.15fr; gap:44px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-info{ display:flex; flex-direction:column; gap:18px; }
.info-card{ display:flex; gap:16px; align-items:flex-start; background:#fff; border:1px solid var(--gray-200); border-radius:16px; padding:20px; }
.info-card .ic{ width:44px; height:44px; border-radius:12px; background: var(--blue-light); color:var(--blue); display:flex; align-items:center; justify-content:center; flex:none; }
.info-card .ic svg{ width:20px; height:20px; }
.info-card h4{ font-size:14.5px; margin-bottom:4px; }
.info-card p{ font-size:13.5px; margin:0; }

.form-card{ background:#fff; border:1px solid var(--gray-200); border-radius: var(--radius-lg); padding:34px; box-shadow: var(--shadow-sm); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:14px 16px; border-radius:12px; border:1.5px solid var(--gray-200);
  font-family: var(--font-body); font-size:14.5px; outline:none; transition: border-color .3s, box-shadow .3s;
  background: var(--gray-50);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-light); background:#fff; }
.field textarea{ resize:vertical; min-height:120px; }

.alert{ padding:16px 20px; border-radius:12px; font-size:14px; margin-bottom:20px; }
.alert--success{ background:#E9F9EE; color:#0F7B3B; border:1px solid #BEEBCB; }
.alert--error{ background:#FDECEC; color:#C0392B; border:1px solid #F6C5C5; }

/* Service single */
.service-hero-icon{ width:74px; height:74px; border-radius:20px; background: rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.service-hero-icon svg{ width:34px; height:34px; color:#fff; }
.related-services{ display:grid; grid-template-columns: repeat(3,1fr); gap:20px; margin-top:20px; }
@media (max-width:900px){ .related-services{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .related-services{ grid-template-columns:1fr; } }

/* Scroll reveal */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-stagger > *{ opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.is-visible > *{ opacity:1; transform:none; }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay:.05s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay:.12s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay:.19s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay:.26s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay:.33s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay:.4s; }

/* Back to top */
#back-to-top{
  position:fixed; bottom:26px; left:26px; z-index:500;
  width:46px; height:46px; border-radius:50%; background: var(--blue); color:#fff;
  display:flex; align-items:center; justify-content:center; border:none;
  box-shadow: var(--shadow-md); opacity:0; visibility:hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s, background .3s;
}
#back-to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
#back-to-top:hover{ background: var(--orange); }
#back-to-top svg{ width:18px; height:18px; }

/* Utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}
