/* ══════════════════════════════════════
   TOKENS
   ══════════════════════════════════════ */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #162436;
  --navy-soft:  #1E3350;
  --gold:       #C8952A;
  --gold-lt:    #E8B84B;
  --gold-pale:  #F5E6C4;
  --white:      #FAFAFA;
  --off:        #F4EFE6;
  --text:       #1C1C2E;
  --muted:      #6B7A8D;
  --border:     rgba(200,149,42,.18);
  --r:          3px;
  --ease:       cubic-bezier(.22,.68,0,1.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Cairo','Tajawal',sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════
   UTILITY
   ══════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem;
}
.section-eyebrow::before { content:''; width: 22px; height: 2px; background: var(--gold); }
.section-title { font-size: clamp(1.7rem,4vw,2.6rem); font-weight: 900; color: var(--navy); line-height: 1.22; }
.section-title.light { color: var(--white); }
.section-lead { font-size: 1rem; color: var(--muted); line-height: 1.95; max-width: 540px; margin-top: .75rem; }
.section-lead.light { color: rgba(255,255,255,.58); }
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: 'Cairo',sans-serif; font-weight: 700; font-size: .9rem;
  padding: .75rem 1.75rem; border-radius: var(--r); border: none; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 8px 24px rgba(200,149,42,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* ══════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
#nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 200;
  padding: 1.1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,27,42,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
#nav.shrunk { padding: .65rem 2rem; }
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-logo-mark {
  width: 44px; height: 46px;
  display: grid; place-items: center; flex-shrink: 0;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-brand-text { line-height: 1.25; }
.nav-brand-name { color: var(--white); font-size: .92rem; font-weight: 700; }
.nav-brand-tagline { color: var(--gold-lt); font-size: .68rem; font-weight: 300; letter-spacing: .04em; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.65); font-size: .85rem; font-weight: 600;
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after {
  content:''; position: absolute; bottom: 0; inset-inline-start: 0;
  width: 0; height: 1.5px; background: var(--gold-lt); transition: width .3s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .3rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; }
.nav-mobile { display: none; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 8rem 2rem 5rem;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(200,149,42,.055) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(200,149,42,.055) 0 1px, transparent 1px 72px);
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(200,149,42,.07); top: -100px; left: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(30,51,80,.5); bottom: -80px; right: -60px; }
.hero-diamond-ring {
  position: absolute; pointer-events: none;
  border: 1px solid rgba(200,149,42,.1);
  transform: rotate(45deg); animation: ring-pulse 8s ease-in-out infinite;
}
.hr1 { width: 520px; height: 520px; top: 50%; left: 50%; translate: -50% -50%; }
.hr2 { width: 750px; height: 750px; top: 50%; left: 50%; translate: -50% -50%; animation-delay: 2s; opacity: .6; }
.hr3 { width: 980px; height: 980px; top: 50%; left: 50%; translate: -50% -50%; animation-delay: 4s; opacity: .3; }
@keyframes ring-pulse { 0%,100%{opacity:.08} 50%{opacity:.22} }

.hero-watermark {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: min(620px, 90vw); opacity: .05; pointer-events: none;
  filter: brightness(0) invert(1);
}

.hero-content { position: relative; text-align: center; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(200,149,42,.1); border: 1px solid rgba(200,149,42,.3);
  padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 2rem;
  color: var(--gold-lt); font-size: .75rem; font-weight: 600; letter-spacing: .1em;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-name {
  font-size: clamp(2.8rem,7vw,5rem); font-weight: 900; line-height: 1.1;
  color: var(--white); letter-spacing: -.02em; margin-bottom: .5rem;
}
.hero-name em { color: var(--gold-lt); font-style: normal; }
.hero-title-en {
  font-size: 1rem; color: rgba(255,255,255,.38); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.9;
  max-width: 560px; margin: 0 auto 2.5rem;
}
.hero-btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.stat { text-align: center; }
.stat-n { font-size: 2.1rem; font-weight: 900; color: var(--gold-lt); line-height: 1; }
.stat-l { font-size: .7rem; color: rgba(255,255,255,.38); margin-top: .3rem; letter-spacing: .06em; }
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; translate: -50% 0;
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  color: rgba(255,255,255,.25); font-size: .65rem; letter-spacing: .1em;
  animation: cue-bounce 2.2s ease-in-out infinite;
}
.scroll-cue svg { width: 18px; }
@keyframes cue-bounce { 0%,100%{translate:-50% 0} 50%{translate:-50% 7px} }

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
#about { padding: 7rem 2rem; background: var(--off); }
.about-grid { display: grid; grid-template-columns: .95fr 1.3fr; gap: 5rem; align-items: center; }
.about-visual-wrap { position: relative; display: flex; justify-content: center; }
.about-photo-frame {
  position: relative; width: 100%; max-width: 340px;
}
.about-photo-frame::before {
  content: ''; position: absolute; z-index: 0;
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  inset-block-start: 18px;
  inset-block-end: -18px;
  inset-inline-start: -18px;
  inset-inline-end: 18px;
}
.about-photo {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 480/622;
  object-fit: cover; border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(13,27,42,.22);
  display: block;
}
.about-logo-badge {
  position: absolute; z-index: 2; bottom: -1.6rem; inset-inline-start: -1.6rem;
  width: 92px; height: 97px;
  background: var(--white); border-radius: var(--r);
  display: grid; place-items: center; padding: .6rem;
  box-shadow: 0 10px 30px rgba(13,27,42,.18);
}
.about-logo-badge img { width: 100%; height: 100%; object-fit: contain; }
.about-badges-wrap {
  position: absolute; z-index: 2; top: 1.2rem; inset-inline-start: -1rem;
  display: flex; flex-direction: column; gap: .5rem; align-items: flex-start;
}
.badge-pill {
  background: var(--navy); color: var(--gold-lt); font-size: .68rem; font-weight: 800;
  padding: .35rem .85rem; border-radius: 50px; white-space: nowrap;
  letter-spacing: .04em; box-shadow: 0 6px 18px rgba(13,27,42,.2);
}
.about-content .section-lead { max-width: 100%; }
.about-traits { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.8rem; }
.trait-item { display: flex; align-items: center; gap: .6rem; font-size: .87rem; color: var(--navy-mid); font-weight: 600; }
.trait-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ══════════════════════════════════════
   PROFESSIONAL PROFILE / BIO SLIDER
   ══════════════════════════════════════ */
#profile { padding: 7rem 2rem; background: var(--navy); position: relative; overflow: hidden; }
.profile-intro { max-width: 720px; }
.profile-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin: 3rem 0 3.5rem; }
.profile-stat { text-align: center; padding: 0 1rem; border-inline-end: 1px solid rgba(255,255,255,.08); }
.profile-stat:last-child { border-inline-end: none; }
.profile-stat-n { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 900; color: var(--gold-lt); line-height: 1; }
.profile-stat-l { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .5rem; line-height: 1.5; }

.bio-slider { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); background: var(--navy-soft); }
.bio-slider-track { display: flex; direction: ltr; transition: transform .6s var(--ease); }
.bio-slide { flex: 0 0 100%; display: grid; grid-template-columns: .9fr 1.3fr; min-height: 380px; }
.bio-slide-visual { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); display: grid; place-items: center; }
.bio-slide-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-slide-year { font-size: 4.5rem; font-weight: 900; color: rgba(200,149,42,.2); line-height: 1; letter-spacing: -.02em; }
.bio-slide-content { padding: 3rem 3.5rem; display: flex; flex-direction: column; justify-content: center; gap: .9rem; }
.bio-slide-tag { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-lt); font-size: .78rem; font-weight: 700; letter-spacing: .08em; }
.bio-slide-title { font-size: 1.4rem; font-weight: 800; color: var(--white); line-height: 1.35; }
.bio-slide-text { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.9; }

.slider-arrow {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(13,27,42,.55); border: 1px solid rgba(200,149,42,.3);
  color: var(--gold-lt); display: grid; place-items: center; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s; backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slider-arrow.prev { left: 1rem; }
.slider-arrow.next { right: 1rem; }
.slider-arrow svg { width: 18px; height: 18px; }

.slider-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.slider-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.18); border: none; cursor: pointer; transition: background .2s, transform .2s var(--ease); padding: 0; }
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

.expertise-block { margin-top: 4rem; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.expertise-tag { background: rgba(200,149,42,.07); border: 1px solid rgba(200,149,42,.22); color: var(--gold-lt); font-size: .82rem; font-weight: 600; padding: .5rem 1.1rem; border-radius: 50px; }

.certs-block { margin-top: 4rem; }
.certs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.5rem; }
.cert-badge { background: rgba(255,255,255,.025); border: 1px solid var(--border); border-radius: var(--r); padding: 1.3rem 1rem; text-align: center; transition: border-color .2s, transform .2s var(--ease); }
.cert-badge:hover { border-color: var(--gold); transform: translateY(-3px); }
.cert-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.cert-name { font-size: .8rem; font-weight: 700; color: var(--white); line-height: 1.4; }
.cert-year { font-size: .7rem; color: var(--gold-lt); margin-top: .2rem; }

/* Service specialization tags */
.svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.svc-tag { font-size: .7rem; font-weight: 700; color: var(--navy); background: var(--gold-pale); padding: .25rem .65rem; border-radius: 50px; }

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
#services { padding: 7rem 2rem; background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.svc-card {
  background: var(--white); border: 1px solid rgba(0,0,0,.07);
  padding: 2.2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  cursor: default; border-radius: var(--r);
}
.svc-card::before {
  content:''; position: absolute; top: 0; inset-inline-start: 0;
  width: 0; height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-lt));
  transition: width .4s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.09); border-color: rgba(200,149,42,.15); }
.svc-card:hover::before { width: 100%; }
.svc-icon {
  width: 50px; height: 50px; border-radius: var(--r);
  background: var(--off); display: grid; place-items: center; margin-bottom: 1.4rem;
  transition: background .3s;
}
.svc-card:hover .svc-icon { background: rgba(200,149,42,.12); }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--gold); stroke-width: 1.6; fill: none; }
.svc-num { font-size: .65rem; font-weight: 800; color: var(--gold); letter-spacing: .1em; margin-bottom: .4rem; }
.svc-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .6rem; line-height: 1.35; }
.svc-desc { font-size: .83rem; color: var(--muted); line-height: 1.85; }
.svc-bg-num {
  position: absolute; bottom: .8rem; inset-inline-end: 1.2rem;
  font-size: 4rem; font-weight: 900; color: rgba(0,0,0,.03);
  line-height: 1; pointer-events: none; user-select: none;
}

/* ══════════════════════════════════════
   APPROACH
   ══════════════════════════════════════ */
#approach { padding: 7rem 2rem; background: var(--navy); }
.approach-steps { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 3.5rem; }
.step-item {
  padding: 2.4rem 2rem; border-inline-end: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}
.step-item:last-child { border-inline-end: none; }
.step-item:hover { background: rgba(255,255,255,.03); }
.step-number { font-size: 3.2rem; font-weight: 900; color: rgba(200,149,42,.2); line-height: 1; margin-bottom: 1.1rem; display: block; font-variant-numeric: tabular-nums; }
.step-title { font-size: .98rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.step-desc { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.82; }

/* ══════════════════════════════════════
   CUSTOMER JOURNEY
   ══════════════════════════════════════ */
#journey { padding: 7rem 2rem; background: var(--off); }
.journey-track {
  position: relative; margin-top: 3.5rem;
  display: flex; flex-direction: column; gap: 0;
}
.journey-track::before {
  content:''; position: absolute; top: 0; bottom: 0; inset-inline-start: 30px;
  width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,149,42,.1));
}
.journey-step {
  display: flex; align-items: flex-start; gap: 2rem;
  padding: 1.8rem 1.8rem 1.8rem 0; position: relative;
  transition: background .2s; border-radius: var(--r);
}
.journey-step:hover { background: rgba(200,149,42,.04); }
.journey-node {
  width: 60px; height: 60px; flex-shrink: 0; position: relative; z-index: 1;
  background: var(--navy); border: 2px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem;
}
.journey-content { flex: 1; padding-top: .4rem; }
.journey-phase { font-size: .68rem; font-weight: 800; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .3rem; }
.journey-need { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.journey-touch { font-size: .84rem; color: var(--muted); line-height: 1.7; }
.journey-emotion {
  flex-shrink: 0; align-self: flex-start; margin-top: .4rem;
  background: var(--navy); color: var(--gold-lt); font-size: .72rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 50px; letter-spacing: .05em; white-space: nowrap;
}

/* ══════════════════════════════════════
   HOW TO GET SERVICE
   ══════════════════════════════════════ */
#how { padding: 7rem 2rem; background: var(--white); }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 3.5rem; }
.how-step {
  background: var(--navy); padding: 2.5rem 2rem;
  border-radius: var(--r); position: relative; overflow: hidden;
  transition: transform .3s var(--ease);
}
.how-step:hover { transform: translateY(-4px); }
.how-step-num { font-size: 4.5rem; font-weight: 900; color: rgba(200,149,42,.15); line-height: 1; margin-bottom: .5rem; }
.how-step-title { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: .7rem; }
.how-step-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.8; }
.how-step::after {
  content:''; position: absolute; bottom: 0; inset-inline-start: 0; inset-inline-end: 0;
  height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-lt));
}

.channels-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.channel-card {
  border: 1px solid var(--border); padding: 1.5rem 1.2rem; border-radius: var(--r);
  display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.channel-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(200,149,42,.1); transform: translateY(-2px); }
.channel-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--r);
  background: rgba(200,149,42,.08); border: 1px solid rgba(200,149,42,.18);
  display: grid; place-items: center; font-size: 1.1rem;
}
.channel-info { flex: 1; }
.channel-name { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .15rem; }
.channel-link { font-size: .78rem; color: var(--gold); margin-bottom: .25rem; word-break: break-all; }
.channel-use { font-size: .75rem; color: var(--muted); line-height: 1.5; }
.channel-actions { display: flex; gap: .5rem; margin-top: .7rem; }
.chip-action {
  font-size: .72rem; font-weight: 700; color: var(--navy);
  background: var(--gold-pale); border: 1px solid rgba(200,149,42,.3);
  padding: .35rem .8rem; border-radius: 50px; transition: background .2s, color .2s;
}
.chip-action:hover { background: var(--gold); color: var(--navy); }

.payment-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.pay-card {
  background: var(--off); border-top: 3px solid var(--gold);
  padding: 1.5rem 1rem; border-radius: 0 0 var(--r) var(--r); text-align: center;
  transition: transform .2s var(--ease);
}
.pay-card:hover { transform: translateY(-3px); }
.pay-icon { font-size: 1.8rem; margin-bottom: .6rem; }
.pay-name { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.pay-desc { font-size: .75rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   AUDIENCE (WHO)
   ══════════════════════════════════════ */
#audience { padding: 7rem 2rem; background: var(--navy); }
.audience-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3.5rem; }
.audience-card {
  border: 1px solid rgba(255,255,255,.08); padding: 3rem 2.5rem; border-radius: var(--r);
  position: relative; overflow: hidden; transition: border-color .3s;
}
.audience-card:hover { border-color: rgba(200,149,42,.4); }
.audience-card::before {
  content:''; position: absolute; top: 0; inset-inline-start: 0; inset-inline-end: 0;
  height: 3px; background: linear-gradient(90deg,var(--gold),var(--gold-lt));
}
.audience-emoji { font-size: 2.5rem; margin-bottom: 1.2rem; }
.audience-label { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: .8rem; }
.audience-desc { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.85; margin-bottom: 1.5rem; }
.audience-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.audience-list li { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.65); }
.audience-list li::before { content:'◆'; color: var(--gold); font-size: .5rem; flex-shrink: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
#testimonials { padding: 7rem 2rem; background: var(--off); }
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.rating-badge {
  background: var(--white); border: 1px solid rgba(0,0,0,.06); border-radius: var(--r);
  padding: 1.2rem 1.6rem; text-align: center; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.rating-stars { display: flex; gap: .15rem; justify-content: center; margin-bottom: .4rem; }
.rating-stars .star { width: 18px; height: 18px; fill: var(--gold); }
.rating-num { font-size: 1.3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.rating-count { font-size: .72rem; color: var(--muted); margin-top: .2rem; }
.testi-track { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 3.5rem; }
.testi-card {
  background: var(--white); padding: 2.2rem; border-radius: var(--r);
  border-bottom: 3px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,.05);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.star-rating { display: flex; gap: .15rem; margin-bottom: .9rem; }
.star-rating .star { width: 15px; height: 15px; fill: var(--gold); }
.testi-quote { font-size: 2.8rem; color: var(--gold-pale); line-height: 1; margin-bottom: .2rem; }
.testi-text { font-size: .9rem; color: var(--navy); line-height: 1.85; margin-bottom: 1.4rem; }
.testi-author { font-size: .82rem; font-weight: 700; color: var(--gold); }
.testi-role { font-size: .75rem; color: var(--muted); margin-top: .15rem; }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
#contact { padding: 7rem 2rem; background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; margin-top: 3.5rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon-box {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--r);
  background: rgba(200,149,42,.1); border: 1px solid rgba(200,149,42,.2);
  display: grid; place-items: center;
}
.contact-icon-box svg { width: 18px; stroke: var(--gold); stroke-width: 1.6; fill: none; }
.contact-label { font-size: .72rem; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .15rem; }
.contact-val { font-size: .9rem; color: var(--white); font-weight: 600; }
.contact-val a { color: var(--white); transition: color .2s; }
.contact-val a:hover { color: var(--gold-lt); }
.contact-sub { margin-top: .2rem; }
.contact-sub a { font-size: .76rem; color: var(--gold-lt); font-weight: 600; transition: color .2s; }
.contact-sub a:hover { color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .7rem; color: rgba(255,255,255,.4); letter-spacing: .09em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-family: 'Cairo',sans-serif; font-size: .88rem;
  padding: .7rem .95rem; border-radius: var(--r); outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold); background: rgba(255,255,255,.06);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select option { background: var(--navy); }
.form-submit {
  width: 100%; padding: .9rem; font-size: 1rem; border-radius: var(--r);
  background: linear-gradient(90deg,var(--gold),var(--gold-lt));
  color: var(--navy); font-family: 'Cairo',sans-serif; font-weight: 800;
  border: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,149,42,.4); }

/* ══════════════════════════════════════
   SOCIAL ICONS
   ══════════════════════════════════════ */
.social-row { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1.6rem; }
.social-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: rgba(200,149,42,.08); border: 1px solid rgba(200,149,42,.2);
  display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s var(--ease);
}
.social-icon svg { width: 18px; height: 18px; fill: var(--gold-lt); transition: fill .2s; }
.social-icon:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.social-icon:hover svg { fill: var(--navy); }
.social-row.on-light .social-icon { background: var(--off); border-color: rgba(13,27,42,.08); }
.social-row.on-light .social-icon svg { fill: var(--navy); }
.social-row.on-light .social-icon:hover { background: var(--gold); border-color: var(--gold); }
.social-row.on-light .social-icon:hover svg { fill: var(--navy); }
.footer-social { display: flex; gap: .5rem; }
.footer-social .social-icon { width: 36px; height: 36px; }
.footer-social .social-icon svg { width: 15px; height: 15px; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: #07111c; padding: 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo-img { width: 64px; height: auto; opacity: .92; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.28); line-height: 1.7; }
.footer-copy span { color: var(--gold); }
.footer-links-list { display: flex; gap: 1.5rem; list-style: none; }
.footer-links-list a { font-size: .72rem; color: rgba(255,255,255,.28); transition: color .2s; }
.footer-links-list a:hover { color: var(--gold-lt); }

/* ══════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; inset-inline-end: 2rem; z-index: 300;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.4); cursor: pointer;
  animation: wa-pulse 3s ease-in-out infinite;
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; fill: #fff; }
@keyframes wa-pulse { 0%,100%{box-shadow:0 6px 20px rgba(37,211,102,.4)} 50%{box-shadow:0 6px 36px rgba(37,211,102,.7)} }

/* ══════════════════════════════════════
   BOOKING MODAL
   ══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(7,17,28,.85); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: calc(var(--r)*2); padding: 2.5rem; max-width: 500px; width: 100%;
  transform: translateY(20px); transition: transform .3s var(--ease);
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.8rem; }
.modal-title { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.modal-close { background: none; border: none; color: rgba(255,255,255,.4); font-size: 1.4rem; cursor: pointer; padding: .2rem; line-height: 1; transition: color .2s; }
.modal-close:hover { color: var(--white); }

/* ══════════════════════════════════════
   POLICY CARD
   ══════════════════════════════════════ */
.policy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2rem; }
.policy-item {
  border: 1px solid rgba(0,0,0,.07); padding: 1.5rem 1.2rem; border-radius: var(--r);
  background: var(--white);
}
.policy-icon { font-size: 1.5rem; margin-bottom: .7rem; }
.policy-title { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.policy-text { font-size: .78rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .approach-steps { grid-template-columns: repeat(2,1fr); }
  .step-item { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .testi-track { grid-template-columns: repeat(2,1fr); }
  .bio-slide { grid-template-columns: 1fr; }
  .bio-slide-visual { min-height: 200px; }
  .bio-slide-content { padding: 2rem; }
  .certs-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, #nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile {
    display: none; position: fixed; top: 65px; inset-inline: 0;
    background: rgba(13,27,42,.97); backdrop-filter: blur(14px);
    padding: 1.5rem; flex-direction: column; gap: .3rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { display: block; padding: .85rem 1rem; color: rgba(255,255,255,.75); font-size: .95rem; font-weight: 600; border-radius: var(--r); transition: background .2s; }
  .nav-mobile a:hover { background: rgba(255,255,255,.05); color: var(--gold-lt); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .audience-split { grid-template-columns: 1fr; }
  .testi-track { grid-template-columns: 1fr; }
  .policy-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .profile-stats { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .profile-stat { border-inline-end: none; }
}
@media (max-width: 480px) {
  .channels-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-badges-wrap { display: none; }
  .about-logo-badge { width: 70px; height: 74px; bottom: -1.1rem; inset-inline-start: -1.1rem; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .bio-slide-content { padding: 1.5rem; }
  .bio-slide-title { font-size: 1.15rem; }
  .slider-arrow { width: 36px; height: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}