/* ==========================================================================
   Buzoogh Al Hazm Holding Co. — Corporate Website
   Design system: sunrise/sunburst brand (orange/gold) on deep navy + white
   ========================================================================== */

:root{
  --c-primary: #E8720C;
  --c-primary-dark: #C6590A;
  --c-gold: #FDB813;
  --c-gold-soft: #FFD873;
  --c-navy: #131A24;
  --c-navy-2: #1D2734;
  --c-navy-3: #262F3D;
  --c-ink: #1B2027;
  --c-gray: #5B6472;
  --c-gray-light: #8892A0;
  --c-light: #F7F6F4;
  --c-light-2: #EFEDE9;
  --c-border: #E6E3DD;
  --c-white: #FFFFFF;
  --c-success: #1E8E5A;
  --shadow-sm: 0 2px 10px rgba(19,26,36,.06);
  --shadow-md: 0 12px 32px rgba(19,26,36,.10);
  --shadow-lg: 0 24px 60px rgba(19,26,36,.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --font: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 100px; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; }

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

/* ---------------- Utility ---------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--c-primary-dark);
  font-weight:700;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:26px; height:3px;
  border-radius:2px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-gold));
  display:inline-block;
}
[dir="rtl"] .eyebrow::before{ order:2; }

.section-title{
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight:800;
  color: var(--c-navy);
  line-height:1.25;
  margin-bottom:16px;
}
.section-subtitle{
  color: var(--c-gray);
  font-size:16px;
  line-height:1.8;
  max-width:720px;
}
.section-head{ margin-bottom:48px; }
.section-head.center{ text-align:center; margin-inline:auto; }
.section-head.center .section-subtitle{ margin-inline:auto; }

.section{ padding: 88px 0; }
.section.tight{ padding: 64px 0; }
.bg-light{ background: var(--c-light); }
.bg-navy{ background: var(--c-navy); color: var(--c-white); }
.bg-navy .section-subtitle{ color:#B7BFCC; }

.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns: repeat(2,1fr); }
.grid-3{ grid-template-columns: repeat(3,1fr); }
.grid-4{ grid-template-columns: repeat(4,1fr); }

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background: rgba(232,114,12,.1);
  color: var(--c-primary-dark);
  font-weight:700;
  font-size:12.5px;
  padding:7px 14px;
  border-radius:999px;
}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:10px;
  font-weight:700;
  font-size:15px;
  border:2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(120deg, var(--c-primary), var(--c-gold) 130%);
  color:#fff;
  box-shadow: 0 10px 24px rgba(232,114,12,.32);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(232,114,12,.42); }
.btn-outline-light{
  border-color: rgba(255,255,255,.5);
  color:#fff;
}
.btn-outline-light:hover{ background:#fff; color: var(--c-navy); border-color:#fff; }
.btn-outline-navy{
  border-color: var(--c-navy);
  color: var(--c-navy);
}
.btn-outline-navy:hover{ background: var(--c-navy); color:#fff; }
.btn-sm{ padding:10px 20px; font-size:13.5px; border-radius:8px; }
.btn-block{ width:100%; }
.btn svg{ width:18px; height:18px; flex-shrink:0; }

/* ---------------- Header ---------------- */
.site-header-wrap{
  position:fixed; inset-inline:0; top:0;
  z-index:1000;
}
.site-header{
  height: var(--header-h);
  background: rgba(19,26,36,.0);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.site-header .container{ height:100%; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.site-header.solid{
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-sm);
  height:76px;
}
.top-strip{
  background: var(--c-navy);
  color:#C9CFD8;
  font-size:12.5px;
}
.top-strip .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px;
  gap:16px;
}
.top-strip a{ color:#C9CFD8; }
.top-strip .top-links{ display:flex; gap:20px; align-items:center; flex-wrap:wrap; }
.top-strip .top-links span{ display:inline-flex; align-items:center; gap:6px; }
.top-strip svg{ width:14px; height:14px; }
.top-strip .lang-switch{ display:flex; gap:6px; }
.lang-btn{
  background:transparent; border:1px solid rgba(255,255,255,.25); color:#C9CFD8;
  font-size:11.5px; font-weight:700; padding:4px 10px; border-radius:6px; letter-spacing:.03em;
}
.lang-btn.active{ background: var(--c-gold); border-color: var(--c-gold); color: var(--c-navy); }

.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:52px; width:auto; }
.brand-name{ line-height:1.15; }
.brand-name strong{ display:block; font-size:16px; font-weight:800; color: var(--c-navy); }
.site-header.solid .brand-name strong{ color: var(--c-navy); }
.site-header:not(.solid) .brand-name strong{ color:#fff; }
.brand-name small{ display:block; font-size:11px; color: var(--c-primary); font-weight:700; letter-spacing:.04em; }

.main-nav{ display:flex; align-items:center; gap:6px; }
.main-nav a{
  padding:10px 16px; border-radius:8px; font-weight:700; font-size:14.5px;
  color: inherit; transition: background .15s ease, color .15s ease;
}
.site-header:not(.solid) .main-nav a{ color:#fff; }
.site-header.solid .main-nav a{ color: var(--c-navy-2); }
.main-nav a:hover, .main-nav a.active{ background: rgba(232,114,12,.12); color: var(--c-primary-dark); }

.header-cta{ display:flex; align-items:center; gap:14px; }
.header-phone{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:14px; }
.site-header:not(.solid) .header-phone{ color:#fff; }
.site-header.solid .header-phone{ color: var(--c-navy); }
.header-phone .icon-circle{ background: var(--c-primary); color:#fff; }

.icon-circle{
  width:36px; height:36px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.icon-circle svg{ width:17px; height:17px; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; width:26px; background:transparent; border:0; padding:0;
}
.nav-toggle span{ height:2.5px; width:100%; background: currentColor; border-radius:2px; }
.site-header:not(.solid) .nav-toggle{ color:#fff; }
.site-header.solid .nav-toggle{ color: var(--c-navy); }

/* ---------------- Hero (home) ---------------- */
.hero{
  position:relative;
  min-height: 94vh;
  background: radial-gradient(120% 140% at 15% 10%, #263248 0%, var(--c-navy) 46%, #0D1218 100%);
  color:#fff;
  overflow:hidden;
}
.hero-content{ max-width:760px; }
.hero-content .eyebrow{ color: var(--c-gold-soft); }
.hero-content .eyebrow::before{ background: linear-gradient(90deg, var(--c-gold), var(--c-primary)); }
.hero h1{
  font-size: clamp(32px, 5vw, 58px);
  font-weight:800;
  line-height:1.18;
  margin-bottom:22px;
}
.hero h1 .accent{
  background: linear-gradient(120deg, var(--c-gold), var(--c-primary));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero p.lead{
  font-size:17.5px; line-height:1.85; color:#C3CAD6; max-width:640px; margin-bottom:38px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-rays{
  position:absolute; z-index:1; pointer-events:none;
  top:50%; inset-inline-end:-10%; transform: translateY(-50%);
  width:900px; height:900px; max-width:80vw; max-height:80vw;
  opacity:.9;
}
.hero-wave{
  position:absolute; bottom:-2px; left:0; right:0; z-index:3; line-height:0;
}
.hero-wave svg{ width:100%; height:auto; display:block; }

/* ---- Hero slider ---- */
.hero-slide{
  position:absolute; inset:0;
  display:flex; align-items:center;
  padding-top:120px; padding-bottom:80px;
  opacity:0; visibility:hidden; z-index:1;
  transition: opacity .8s ease;
  pointer-events:none;
}
.hero-slide.is-active{
  opacity:1; visibility:visible; z-index:2; pointer-events:auto;
}
.hero-slide .container{ position:relative; z-index:2; }
.hero-slide.has-image{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero-slide-overlay{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(100deg, rgba(13,18,24,.94) 0%, rgba(15,20,28,.82) 38%, rgba(15,20,28,.42) 75%);
}
[dir="rtl"] .hero-slide-overlay{
  background: linear-gradient(260deg, rgba(13,18,24,.94) 0%, rgba(15,20,28,.82) 38%, rgba(15,20,28,.42) 75%);
}
.hero-arrow{
  position:absolute; top:44%; transform:translateY(-50%);
  z-index:4;
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.12);
  border:1.5px solid rgba(255,255,255,.3);
  color:#fff;
  backdrop-filter: blur(4px);
  transition: background .18s ease, transform .18s ease;
}
.hero-arrow:hover{ background: rgba(255,255,255,.24); }
.hero-arrow svg{ width:20px; height:20px; }
.hero-arrow.prev{ inset-inline-start:24px; }
.hero-arrow.next{ inset-inline-start:auto; inset-inline-end:24px; }
.hero-arrow.prev svg{ transform: rotate(180deg); }
[dir="rtl"] .hero-arrow.prev svg{ transform: none; }
[dir="rtl"] .hero-arrow.next svg{ transform: rotate(180deg); }
.hero-dots{
  position:absolute; z-index:4; bottom:104px; inset-inline:0;
  display:flex; align-items:center; justify-content:center; gap:10px;
}
.hero-dot{
  width:9px; height:9px; border-radius:50%;
  background: rgba(255,255,255,.35);
  border:0; padding:0;
  transition: background .2s ease, transform .2s ease, width .2s ease;
}
.hero-dot.is-active{ background: var(--c-gold); width:26px; border-radius:5px; }

.stat-bar{
  position:relative; z-index:3;
  background: var(--c-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  margin-top:-64px;
  padding: 34px 10px;
}
.stat-bar .grid-4{ gap:8px; }
.stat-item{ text-align:center; padding: 10px 16px; position:relative; }
.stat-item:not(:last-child)::after{
  content:""; position:absolute; inset-inline-end:0; top:10%; bottom:10%; width:1px; background: var(--c-border);
}
.stat-icon{
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-gold));
  color:#fff;
  margin: 0 auto 14px;
  flex-shrink:0;
}
.stat-icon svg{ width:21px; height:21px; }
.stat-num{ font-size: clamp(22px,3vw,32px); font-weight:800; color: var(--c-navy); white-space:nowrap; }
.stat-num span{ color: var(--c-primary); }
.stat-label{ font-size:13px; color: var(--c-gray); font-weight:600; margin-top:6px; }

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero{
  position:relative;
  padding: 170px 0 70px;
  background-color: var(--c-navy);
  background-image: radial-gradient(130% 160% at 85% 0%, #2A3750 0%, var(--c-navy) 50%, #0D1218 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:#fff;
  overflow:hidden;
}
.page-hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(11,16,24,.93) 0%, rgba(23,32,48,.86) 45%, rgba(11,16,24,.95) 100%);
  z-index:1;
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ font-size: clamp(28px,4vw,44px); font-weight:800; margin-bottom:14px; }
.page-hero p{ color:#C3CAD6; font-size:16px; max-width:620px; line-height:1.8; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:13.5px; color:#9AA3B2; margin-bottom:18px; font-weight:600; }
.breadcrumb a:hover{ color: var(--c-gold); }
.page-hero .hero-rays{ z-index:1; opacity:.55; width:700px; height:700px; }

/* ---------------- Cards ---------------- */
.card{
  background:#fff;
  border:1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding:34px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon-badge{
  width:58px; height:58px; border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-gold));
  color:#fff;
  margin-bottom:20px;
  box-shadow: 0 10px 22px rgba(232,114,12,.28);
}
.icon-badge svg{ width:28px; height:28px; }
.icon-badge.navy{ background: linear-gradient(135deg, var(--c-navy-2), var(--c-navy)); box-shadow:none; }

.service-card h3{ font-size:19px; font-weight:800; color: var(--c-navy); margin-bottom:10px; }
.service-card p{ color: var(--c-gray); font-size:14.5px; line-height:1.75; margin-bottom:16px; }
.service-card .more-link{ font-weight:700; font-size:14px; color: var(--c-primary-dark); display:inline-flex; align-items:center; gap:6px; }
.service-card .more-link svg{ width:15px; height:15px; transition: transform .15s ease; }
.service-card:hover .more-link svg{ transform: translateX(4px); }
[dir="rtl"] .service-card:hover .more-link svg{ transform: translateX(-4px) rotate(180deg); }
[dir="rtl"] .service-card .more-link svg{ transform: rotate(180deg); }

/* Value cards */
.value-card{ text-align:center; }
.value-card .icon-badge{ margin-inline:auto; }
.value-card h3{ font-size:17px; font-weight:800; color: var(--c-navy); margin-bottom:8px; }
.value-card p{ color: var(--c-gray); font-size:14px; line-height:1.7; }

/* Team cards */
.team-card{ text-align:center; padding:0; overflow:hidden; }
.team-photo{ width:100%; aspect-ratio: 4/3.1; overflow:hidden; background: var(--c-light-2); position:relative; }
.team-photo img{ width:100%; height:100%; object-fit:cover; object-position: top center; }
.team-photo.placeholder{
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(150deg,var(--c-navy-2),var(--c-navy));
}
.team-photo.placeholder .avatar-circle{
  width:88px; height:88px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-gold));
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
}
.team-photo.placeholder .avatar-circle span{ font-size:28px; font-weight:800; color:#fff; }
.team-info{ padding:22px 20px 26px; }
.team-info h3{ font-size:17px; font-weight:800; color: var(--c-navy); }
.team-info .role{ color: var(--c-primary-dark); font-weight:700; font-size:13px; margin-top:4px; }
.team-info .phone{ margin-top:10px; font-size:13px; color: var(--c-gray); display:inline-flex; align-items:center; gap:6px; white-space:nowrap; }
.team-info .phone svg{ width:15px; height:15px; flex-shrink:0; }

/* Project cards */
.project-card{ display:flex; flex-direction:column; gap:16px; overflow:hidden; }
.project-image{ margin:-34px -28px 0; aspect-ratio:16/9; overflow:hidden; background: var(--c-light-2); }
.project-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.project-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.project-client{ font-size:12.5px; font-weight:700; color: var(--c-primary-dark); text-transform:uppercase; letter-spacing:.03em; }
.project-title{ font-size:18px; font-weight:800; color: var(--c-navy); margin-top:6px; line-height:1.4; }
.status-pill{
  font-size:11.5px; font-weight:800; padding:6px 12px; border-radius:999px; white-space:nowrap; flex-shrink:0;
}
.status-pill.done{ background: rgba(30,142,90,.12); color: var(--c-success); }
.status-pill.progress{ background: rgba(253,184,19,.16); color: #A9700A; }
.project-scope{ color: var(--c-gray); font-size:14px; line-height:1.7; }
.progress-track{ height:8px; border-radius:6px; background: var(--c-light-2); overflow:hidden; }
.progress-fill{ height:100%; border-radius:6px; background: linear-gradient(90deg, var(--c-primary), var(--c-gold)); }
.project-meta{ display:flex; justify-content:flex-start; font-size:13px; color: var(--c-gray); font-weight:700; }
.project-meta b{ color: var(--c-navy); }

/* Client badges */
.client-badge{
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:28px 18px; border:1px solid var(--c-border); border-radius: var(--radius-md);
  background:#fff; min-height:104px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.client-badge:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.client-badge img{
  max-width:150px; max-height:52px; width:auto; height:auto; object-fit:contain;
  filter: grayscale(100%) opacity(.7); transition: filter .25s ease;
}
.client-badge:hover img{ filter:none; }
.client-fallback{ display:none; font-weight:800; color: var(--c-navy-2); font-size:15px; }

/* Contact cards */
.contact-info-card{ display:flex; gap:16px; align-items:flex-start; }
.contact-info-card h4{ font-size:15px; font-weight:800; color: var(--c-navy); margin-bottom:6px; }
.contact-info-card p, .contact-info-card a{ font-size:14.5px; color: var(--c-gray); line-height:1.7; display:block; }
.contact-info-card a:hover{ color: var(--c-primary-dark); }

/* ---------------- Forms ---------------- */
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:13.5px; font-weight:700; color: var(--c-navy); margin-bottom:8px; }
.field input, .field textarea{
  width:100%; padding:14px 16px; border:1.5px solid var(--c-border); border-radius:10px;
  font-size:14.5px; color: var(--c-ink); background:#fbfaf9; transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus{ outline:none; border-color: var(--c-primary); background:#fff; }
.field textarea{ resize:vertical; min-height:130px; }
.form-note{ font-size:12.5px; color: var(--c-gray-light); margin-top:14px; }
.form-success{
  display:none; align-items:center; gap:10px; background: rgba(30,142,90,.1); color: var(--c-success);
  padding:14px 16px; border-radius:10px; font-weight:700; font-size:13.5px; margin-top:16px;
}
.form-success.show{ display:flex; }

/* Map */
.map-wrap{ border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--c-border); }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; }

/* ---------------- CTA banner ---------------- */
.cta-banner{
  background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-navy-2) 60%, #2B2016 130%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
  position:relative; overflow:hidden; color:#fff;
}
.cta-banner .hero-rays{ width:500px; height:500px; opacity:.4; inset-inline-end:-8%; }
.cta-banner h3{ font-size: clamp(22px,2.6vw,30px); font-weight:800; margin-bottom:10px; position:relative; z-index:2; }
.cta-banner p{ color:#C3CAD6; font-size:15px; position:relative; z-index:2; }
.cta-banner .cta-actions{ position:relative; z-index:2; display:flex; gap:14px; flex-wrap:wrap; }

/* ---------------- Footer ---------------- */
.site-footer{ background: var(--c-navy); color:#AEB6C2; padding-top:72px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:36px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand .brand-name strong{ color:#fff; }
.footer-brand p{ font-size:14px; line-height:1.8; color:#9BA4B2; margin-bottom:18px; }
.footer-reg{ font-size:12.5px; color:#7C8494; line-height:1.8; }
.footer-col h4{ color:#fff; font-size:14.5px; font-weight:800; margin-bottom:20px; letter-spacing:.02em; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul a{ font-size:14px; color:#AEB6C2; transition: color .15s ease; }
.footer-col ul a:hover{ color: var(--c-gold); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:13.5px; line-height:1.7; }
.footer-contact svg{ width:16px; height:16px; flex-shrink:0; margin-top:3px; color: var(--c-gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:12.5px; color:#7C8494; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:#9BA4B2; }
.footer-bottom a:hover{ color: var(--c-gold); }

/* WhatsApp float */
.wa-float{
  position:fixed; bottom:26px; inset-inline-end:26px; z-index:900;
  width:60px; height:60px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
}
.wa-float svg{ width:30px; height:30px; }
.wa-float::after{
  content:""; position:absolute; inset:0; border-radius:50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: waPulse 2.2s infinite;
}
@keyframes waPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5); }
  70%{ box-shadow:0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* ---------------- Mobile nav panel ---------------- */
.mobile-panel{
  position:fixed; inset:0; z-index:1100; background: var(--c-navy);
  transform: translateX(100%); transition: transform .3s ease;
  padding: 26px 24px; overflow-y:auto;
}
[dir="rtl"] .mobile-panel{ transform: translateX(-100%); }
.mobile-panel.open{ transform: translateX(0); }
.mobile-panel-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-panel-close{ background:transparent; border:0; color:#fff; font-size:28px; line-height:1; }
.mobile-nav a{ display:block; padding:16px 4px; font-size:18px; font-weight:700; color:#fff; border-bottom:1px solid rgba(255,255,255,.08); }
.mobile-nav a.active{ color: var(--c-gold); }
.mobile-cta{ margin-top:28px; display:flex; flex-direction:column; gap:12px; }
.mobile-lang{ display:flex; gap:8px; margin-top:24px; }

/* ---------------- Reveal animation ---------------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity:1; transform:none; }

/* ---------------- Services detail sections ---------------- */
.service-detail{ display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:center; padding: 56px 0; border-bottom:1px solid var(--c-border); }
.service-detail:last-child{ border-bottom:0; }
.service-detail.reverse{ direction: rtl; }
.service-detail.reverse > *{ direction: ltr; }
[dir="rtl"] .service-detail.reverse{ direction:ltr; }
[dir="rtl"] .service-detail{ direction: rtl; }
[dir="rtl"] .service-detail.reverse{ direction: ltr; }
.service-visual{
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--c-navy-2), var(--c-navy));
  min-height:280px; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.service-visual svg.big-icon{ width:110px; height:110px; color: var(--c-gold-soft); position:relative; z-index:2; opacity:.95; }
.service-visual .glow{ position:absolute; width:280px; height:280px; background: radial-gradient(circle, rgba(232,114,12,.45), transparent 70%); filter: blur(10px); }
.service-visual.has-image{ background-size:cover; background-position:center; }
.service-visual-overlay{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(160deg, rgba(19,26,36,.88) 0%, rgba(19,26,36,.55) 45%, rgba(19,26,36,.15) 100%);
}
.service-icon-badge{
  position:absolute; z-index:2; inset-inline-start:20px; bottom:20px;
  width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-gold));
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.service-icon-badge svg{ width:28px; height:28px; color:#fff; }
.service-detail-body .num{ font-size:13px; font-weight:800; color: var(--c-primary-dark); letter-spacing:.05em; margin-bottom:10px; display:block; }
.service-detail-body h3{ font-size:24px; font-weight:800; color: var(--c-navy); margin-bottom:14px; }
.service-detail-body > p{ color: var(--c-gray); font-size:15px; line-height:1.8; margin-bottom:20px; }
.check-list{ display:grid; grid-template-columns:1fr 1fr; gap:10px 20px; }
.check-list li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color: var(--c-ink); line-height:1.6; }
.check-list svg{ width:17px; height:17px; color: var(--c-primary); flex-shrink:0; margin-top:2px; }

/* ---------------- Key contact / values quote ---------------- */
.quote-card{ background: var(--c-light); border-radius: var(--radius-lg); padding:44px; position:relative; }
.quote-card svg.quote-mark{ width:44px; height:44px; color: var(--c-primary); opacity:.35; margin-bottom:14px; }
.quote-card p{ font-size:19px; line-height:1.8; color: var(--c-navy); font-weight:600; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px){
  .main-nav, .header-cta .btn, .top-strip .top-links{ display:none; }
  .header-cta .lang-inline{ display:none; }
  .nav-toggle{ display:flex; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .service-detail{ grid-template-columns:1fr; }
  .service-detail.reverse{ direction:ltr; }
  .service-visual{ order:-1; min-height:220px; }
  .hero-arrow{ display:none; }
}
@media (max-width: 900px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .grid-2{ grid-template-columns: 1fr; }
  .stat-item:nth-child(2)::after{ display:none; }
  .form-row{ grid-template-columns:1fr; }
  .cta-banner{ flex-direction:column; align-items:flex-start; text-align:start; }
}
@media (max-width: 640px){
  .grid-4, .grid-3{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .stat-item::after{ display:none; }
  .check-list{ grid-template-columns: 1fr; }
  .hero{ min-height:720px; }
  .hero-slide{ padding-top:130px; padding-bottom:70px; }
  .hero-dots{ bottom:78px; }
  .cta-banner{ padding:36px 24px; }
  .header-phone span.txt{ display:none; }
}
