/* ═══════════════════════════════════════════════════════════════════
   RAPID ATTESTATION — MASTER STYLESHEET & DESIGN SYSTEM
═══════════════════════════════════════════════════════════════════ */

:root {
  --ink:        #0A0C10;
  --ink-80:     rgba(10,12,16,.8);
  --ink-60:     rgba(10,12,16,.6);
  --ink-40:     rgba(10,12,16,.4);
  --ink-12:     rgba(10,12,16,.12);
  --ink-06:     rgba(10,12,16,.06);
  
  --gold:       #B8922A;
  --gold-lt:    #D4A94A;
  --gold-dark:  #94731E;
  --gold-pale:  #F9F3E3;
  --gold-glow:  rgba(184,146,42,.22);
  
  --cream:      #FDFBF7;
  --slate:      #1C2840;
  --slate-dark: #121B2D;
  --slate-md:   #2E4165;
  --slate-lt:   #4A6080;
  --white:      #FFFFFF;
  --line:       rgba(10,12,16,.09);
  --line-light: rgba(255,255,255,.1);

  --f-display:  'Playfair Display', Georgia, serif;
  --f-body:     'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --r4:  4px;  --r8: 8px; --r12: 12px; --r16: 16px; --r24: 24px; --r999: 999px;
  
  --shadow-xs:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:  0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.05);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
  --shadow-gold:0 8px 32px rgba(184,146,42,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: all .25s ease; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: var(--f-body); border: none; background: none; }
ul, ol { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-lt)); border-radius: 4px; }

/* ── LAYOUT UTILITIES ── */
.container { 
  width: 100%; 
  max-width: 1220px; 
  margin: 0 auto; 
  padding: 0 32px; 
}
.container-narrow {
  max-width: 900px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block; width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
}
.eyebrow-light { color: var(--gold-lt); }

h1.display, h2.display {
  font-family: var(--f-display); 
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700; 
  line-height: 1.14; 
  color: var(--ink); 
  letter-spacing: -.5px;
}
h2.display em, h1.display em { 
  font-style: italic; 
  color: var(--gold); 
}
.display-light,
h1.display-light,
h2.display-light,
.page-hero h1,
.page-hero h2,
.hero-left h1 { 
  color: #FFFFFF !important; 
}

.lead {
  font-size: clamp(15px, 1.3vw, 17px); 
  line-height: 1.75; 
  color: var(--slate-lt); 
  max-width: 600px;
  margin-top: 14px;
}
.lead-light,
.page-hero .lead,
.hero-desc { 
  color: rgba(255,255,255,.82) !important; 
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-body); font-weight: 600; font-size: 13.5px;
  letter-spacing: .3px; border: none; transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; position: relative; overflow: hidden;
  border-radius: var(--r6, 6px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--white) !important;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(184,146,42,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,42,.5);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 13px 26px; border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }
.btn-ghost-white {
  background: transparent; color: var(--white) !important;
  padding: 13px 26px; border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost-white:hover { border-color: var(--gold-lt); color: var(--gold-lt) !important; background: rgba(184,146,42,.15); }
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; transition: transform .3s; }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { padding: 9px 18px !important; font-size: 12.5px !important; }

/* ── ALERTS / FLASH MESSAGES ── */
.alert-box {
  padding: 14px 20px;
  border-radius: var(--r8);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  animation: dropIn 0.3s ease-out;
}
.alert-success {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: #2E7D32;
}
.alert-error {
  background: #FFEBEE;
  border: 1px solid #FFCDD2;
  color: #C62828;
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, var(--slate) 0%, #243352 100%);
  padding: 9px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 850;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--gold-lt); }
.topbar-dot { width: 3px; height: 3px; background: rgba(255,255,255,.3); border-radius: 50%; }
.topbar-iso {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(184,146,42,.18); border: 1px solid rgba(184,146,42,.35);
  color: var(--gold-lt); padding: 2px 10px; border-radius: var(--r999);
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
}

/* ═══════════════════════════════════════════
   STICKY NAVBAR
═══════════════════════════════════════════ */
.nav-wrap {
  position: sticky; top: 0; z-index: 800;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.nav-wrap.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  background: rgba(255,255,255,.98);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px; max-width: 1280px; margin: 0 auto;
}
.logo-mark {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.logo-emblem {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--slate) 0%, #2a3d5c 100%);
  border-radius: var(--r8);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(28,40,64,.3);
}
.logo-emblem::after {
  content: 'R';
  font-family: var(--f-display); font-weight: 900; font-size: 22px;
  color: var(--gold); position: absolute;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--f-display); font-size: 20px; font-weight: 700;
  color: var(--slate); letter-spacing: -.3px;
}
.logo-tagline { 
  font-size: 9.5px; font-weight: 600; letter-spacing: 1.8px; 
  color: var(--gold); text-transform: uppercase; margin-top: 3px; 
}

/* Nav Links */
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 14px; border-radius: var(--r6, 6px);
  font-size: 14px; font-weight: 500; color: var(--ink-80);
  transition: all .2s;
}
.nav-list > li > a:hover { color: var(--slate); background: var(--ink-06); }
.nav-list > li > a.active { color: var(--gold); font-weight: 600; }
.nav-chevron { width: 12px; height: 12px; fill: currentColor; transition: transform .25s ease; }
.nav-list > li:hover .nav-chevron { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-drop {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r12); box-shadow: 0 20px 50px rgba(0,0,0,.12);
  min-width: 250px; padding: 12px 8px; z-index: 900;
  animation: dropIn .25s cubic-bezier(.22,1,.36,1);
}
.nav-list > li:hover .mega-drop { display: block; }
@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mega-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--r8);
  font-size: 13px; font-weight: 500; color: var(--ink-80);
}
.mega-drop a:hover { background: var(--gold-pale); color: var(--gold); padding-left: 18px; }
.mega-drop a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; opacity: .4; transition: all .2s;
}
.mega-drop a:hover::before { opacity: 1; transform: scale(1.4); }
.drop-divider { height: 1px; background: var(--line); margin: 6px 0; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ── BURGER TOGGLE ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: none; border: none; padding: 0;
  flex-shrink: 0; z-index: 950; border-radius: 6px;
}
.nav-burger:hover { background: var(--ink-06); }
.nav-burger span {
  display: block; width: 22px; height: 2.2px; background: var(--slate);
  border-radius: 2px; transition: all .3s cubic-bezier(.4,0,.2,1); margin: 0 auto;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw); background: var(--white); z-index: 940;
  padding: 85px 24px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1), visibility .35s;
  box-shadow: -12px 0 40px rgba(0,0,0,.15);
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open { 
  transform: translateX(0); 
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(10,12,16,.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  z-index: 930; opacity: 0; pointer-events: none;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-menu-overlay.open { 
  opacity: 1; 
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; }
.mobile-nav-list > li { border-bottom: 1px solid var(--line); }
.mobile-nav-list > li > a {
  display: block; padding: 14px 4px; font-size: 15px; font-weight: 500; color: var(--ink);
}
.mobile-nav-list > li > a.active { color: var(--gold); font-weight: 600; }
.mobile-drop-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 14px 4px; font-family: var(--f-body);
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.mobile-drop-toggle svg { width: 14px; height: 14px; fill: var(--ink-40); transition: transform .25s; }
.mobile-drop-toggle.open svg { transform: rotate(180deg); }
.mobile-drop {
  display: none; flex-direction: column; padding: 0 0 10px 14px;
}
.mobile-drop.open { display: flex; }
.mobile-drop a { padding: 9px 4px; font-size: 13.5px; color: var(--slate-lt); }
.mobile-drop a:hover { color: var(--gold); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.mobile-menu-actions .btn { justify-content: center; }
body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   FLOATING CONTACT & WHATSAPP
═══════════════════════════════════════════ */
.float-strip {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 700; display: flex; flex-direction: column; gap: 1px;
}
.float-strip a {
  display: flex; align-items: center; gap: 0;
  background: var(--slate); color: rgba(255,255,255,.8);
  padding: 13px 15px; transition: all .35s cubic-bezier(.4,0,.2,1); overflow: hidden;
  max-width: 48px; border-left: 3px solid transparent;
}
.float-strip a:hover {
  max-width: 190px; background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  border-left-color: var(--gold-lt); color: var(--white); gap: 10px;
}
.float-strip a svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.float-strip span { white-space: nowrap; font-size: 12px; font-weight: 600; opacity: 0; transition: opacity .15s .1s; }
.float-strip a:hover span { opacity: 1; }
.float-strip a:first-child { border-radius: var(--r8) 0 0 0; }
.float-strip a:last-child  { border-radius: 0 0 0 var(--r8); }

.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 700;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #20ba5a);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: all .35s cubic-bezier(.4,0,.2,1);
}
.wa-fab:hover { transform: scale(1.1) rotate(-6deg); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
.wa-fab svg { width: 28px; height: 28px; fill: white; }
.wa-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(37,211,102,.3); animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--slate); min-height: 90vh;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(184,146,42,.14) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at -10% 80%, rgba(44,65,101,.6) 0%, transparent 60%);
}
.hero-orb {
  position: absolute; top: -10%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,.08) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 30px) scale(1.05); }
}

.hero-left {
  padding: 110px 60px 90px 60px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,146,42,.12); border: 1px solid rgba(184,146,42,.3);
  color: var(--gold-lt); padding: 7px 16px; border-radius: var(--r999);
  font-size: 11.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-lt); box-shadow: 0 0 6px var(--gold-lt);
}
.hero h1 {
  font-family: var(--f-display); font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900; line-height: 1.08; color: var(--white);
  letter-spacing: -.5px; margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-desc {
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.8; color: rgba(255,255,255,.65);
  max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: var(--f-display); font-size: clamp(26px, 2.5vw, 36px); font-weight: 700;
  color: var(--gold); line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.trust-label { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; }

/* Hero Right */
.hero-right {
  position: relative; z-index: 2;
  padding: 100px 48px 80px 10px;
  display: flex; flex-direction: column; gap: 12px;
}
.hero-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r12); padding: 18px 22px;
  backdrop-filter: blur(12px);
  display: flex; align-items: center; gap: 16px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.hero-card:hover {
  background: rgba(255,255,255,.1); border-color: rgba(184,146,42,.45);
  transform: translateX(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.hc-icon {
  width: 46px; height: 46px; border-radius: var(--r10, 10px);
  background: rgba(184,146,42,.14); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s;
}
.hero-card:hover .hc-icon { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.hc-icon svg { width: 20px; height: 20px; fill: var(--gold); transition: fill .3s; }
.hero-card:hover .hc-icon svg { fill: var(--white); }
.hc-title { font-size: 14.5px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.hc-sub { font-size: 12px; color: rgba(255,255,255,.45); }
.hc-arrow { margin-left: auto; width: 18px; height: 18px; fill: rgba(255,255,255,.2); flex-shrink: 0; transition: all .3s; }
.hero-card:hover .hc-arrow { fill: var(--gold); transform: translateX(3px); }

/* ═══════════════════════════════════════════
   PAGE HERO (SUBPAGES)
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(145deg, var(--slate) 0%, #172235 100%);
  padding: 85px 0 75px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(184,146,42,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 15% 90%, rgba(46,65,101,.4) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; right: 40px; top: -40px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(184,146,42,.12);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2; max-width: 850px;
}
.page-breadcrumbs {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.65);
  margin-bottom: 16px; font-weight: 500;
}
.page-breadcrumbs a { color: var(--gold-lt); }
.page-breadcrumbs a:hover { color: #FFFFFF; text-decoration: underline; }

/* ═══════════════════════════════════════════
   MARQUEE BAND
═══════════════════════════════════════════ */
.service-band {
  background: linear-gradient(135deg, var(--gold) 0%, #c9a535 50%, var(--gold) 100%);
  overflow: hidden; position: relative;
}
.band-track {
  display: flex;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.band-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.band-item {
  display: flex; align-items: center; gap: 9px;
  padding: 16px 32px;
  color: var(--white); font-size: 13px; font-weight: 600;
  white-space: nowrap; border-right: 1px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.band-item svg { width: 16px; height: 16px; fill: currentColor; }

/* ═══════════════════════════════════════════
   SERVICES GRID & CARDS
═══════════════════════════════════════════ */
.sec-services { padding: 90px 0; background: var(--cream); position: relative; }
.sec-header { margin-bottom: 48px; }
.sec-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.svc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r12); padding: 30px 24px 26px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.svc-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-5px); border-color: rgba(184,146,42,.3); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico {
  width: 50px; height: 50px; border-radius: var(--r10, 10px);
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all .3s;
}
.svc-ico svg { width: 22px; height: 22px; fill: var(--gold); transition: fill .3s; }
.svc-card:hover .svc-ico { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); transform: scale(1.05); }
.svc-card:hover .svc-ico svg { fill: var(--white); }
.svc-card h3 {
  font-family: var(--f-display); font-size: 19px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px; line-height: 1.25;
}
.svc-card p { font-size: 13.5px; color: var(--slate-lt); line-height: 1.65; flex: 1; }
.svc-link {
  display: flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; font-weight: 600;
  color: var(--gold); transition: gap .25s;
}
.svc-link svg { width: 14px; height: 14px; fill: currentColor; }
.svc-card:hover .svc-link { gap: 10px; }

.svc-card.featured {
  background: linear-gradient(145deg, var(--slate) 0%, #243352 100%);
  border-color: transparent; grid-row: span 2;
}
.svc-card.featured .svc-ico { background: rgba(184,146,42,.15); }
.svc-card.featured h3 { color: var(--white); }
.svc-card.featured p  { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════
   WHY US SPLIT SECTION
═══════════════════════════════════════════ */
.sec-why {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.why-visual {
  background: linear-gradient(145deg, var(--slate) 0%, #182335 100%);
  position: relative; overflow: hidden;
  padding: 70px 50px; display: flex; flex-direction: column; justify-content: center;
}
.why-metrics { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.metric-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r12); padding: 24px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.metric-card:hover { background: rgba(184,146,42,.1); border-color: rgba(184,146,42,.3); transform: translateY(-4px); }
.metric-num {
  font-family: var(--f-display); font-size: clamp(32px, 3.5vw, 44px); font-weight: 900;
  line-height: 1; display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.metric-desc { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 6px; line-height: 1.5; }
.metric-card.wide { grid-column: 1 / -1; }

.why-content {
  padding: 70px 60px; display: flex; flex-direction: column; justify-content: center;
}
.why-features { margin-top: 36px; display: flex; flex-direction: column; }
.why-feat {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.why-feat:first-child { border-top: 1px solid var(--line); }
.wf-icon {
  width: 40px; height: 40px; border-radius: var(--r8);
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wf-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.wf-title { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.wf-desc  { font-size: 13px; color: var(--slate-lt); line-height: 1.55; }

/* ═══════════════════════════════════════════
   ATTESTATION TABS
═══════════════════════════════════════════ */
.sec-attest { padding: 90px 0; background: var(--cream); }
.attest-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r12); padding: 5px; width: fit-content; margin-bottom: 32px;
}
.atab {
  padding: 10px 22px; border-radius: var(--r8);
  font-size: 13.5px; font-weight: 600;
  background: none; border: none; color: var(--ink-60);
  transition: all .25s; font-family: var(--f-body);
}
.atab.on { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--white); box-shadow: 0 2px 8px rgba(184,146,42,.3); }
.atab:hover:not(.on) { color: var(--gold); background: var(--gold-pale); }
.atab-panel { display: none; }
.atab-panel.on { display: block; animation: fadeIn .3s cubic-bezier(.22,1,.36,1); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.attest-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px;
}
.attest-pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r8); padding: 14px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-80);
  transition: all .25s ease;
}
.attest-pill::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  flex-shrink: 0;
}
.attest-pill:hover {
  border-color: var(--gold); color: var(--slate); background: var(--gold-pale);
  transform: translateX(3px); box-shadow: 0 4px 12px rgba(184,146,42,.12);
}

/* ═══════════════════════════════════════════
   PROCESS TIMELINE (RESPONSIVE)
═══════════════════════════════════════════ */
.sec-process {
  background: linear-gradient(160deg, var(--slate) 0%, #131c2e 100%);
  padding: 90px 0; position: relative; overflow: hidden;
}
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; position: relative; margin-top: 50px;
}
.proc-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 10px; position: relative;
}
.proc-num {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1.5px solid rgba(184,146,42,.35);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; margin-bottom: 20px;
  transition: all .3s;
}
.proc-num span {
  font-family: var(--f-display); font-size: 24px; font-weight: 700; color: var(--gold-lt);
}
.proc-step h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.proc-step p { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ═══════════════════════════════════════════
   VISA CARDS
═══════════════════════════════════════════ */
.sec-visa { padding: 90px 0; background: var(--cream); }
.visa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.visa-card {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r12); overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.visa-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.09); transform: translateY(-6px); border-color: rgba(184,146,42,.3); }
.vc-top {
  background: linear-gradient(145deg, var(--slate) 0%, #243352 100%);
  padding: 28px 26px 24px; position: relative;
}
.vc-tag {
  display: inline-block; background: rgba(184,146,42,.15);
  border: 1px solid rgba(184,146,42,.3);
  color: var(--gold-lt); padding: 4px 12px; border-radius: var(--r999);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 12px;
}
.vc-top h3 {
  font-family: var(--f-display); font-size: 24px; font-weight: 700;
  color: var(--white); line-height: 1.2; margin-bottom: 8px;
}
.vc-top p { font-size: 13px; color: rgba(255,255,255,.6); }
.vc-body { padding: 26px 26px 30px; }
.vc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vc-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--slate-lt);
}
.vc-list li::before {
  content: '✓'; color: var(--gold); font-weight: 700; font-size: 11px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.vc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; font-size: 13px; font-weight: 600; color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  padding: 10px 20px; border-radius: var(--r8);
}

/* ═══════════════════════════════════════════
   BLOG / ARTICLE CARDS & LAYOUTS
═══════════════════════════════════════════ */
.sec-blog { padding: 90px 0; background: var(--cream); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px;
}
.blog-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r12); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
  border-color: rgba(184,146,42,.3);
}
.blog-thumb-wrap {
  position: relative; width: 100%; height: 200px; overflow: hidden; background: #e5e9f0;
}
.blog-thumb {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.blog-card:hover .blog-thumb { transform: scale(1.06); }
.blog-category-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(28,40,64,.85); backdrop-filter: blur(8px);
  color: var(--gold-lt); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: var(--r999); text-transform: uppercase; letter-spacing: .5px;
}
.blog-card-body {
  padding: 24px; display: flex; flex-direction: column; flex: 1;
}
.blog-meta {
  display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--ink-40); margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--f-display); font-size: 18px; font-weight: 700;
  color: var(--ink); line-height: 1.3; margin-bottom: 10px;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-desc {
  font-size: 13.5px; color: var(--slate-lt); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 18px; flex: 1;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 14px; margin-top: auto;
}
.blog-author-mini {
  display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--slate);
}
.blog-author-avatar {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold-pale);
  color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
}
.blog-read-more {
  font-size: 12.5px; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 4px;
}

/* Featured Blog Banner */
.featured-blog-banner {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r16); overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr; margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.featured-blog-img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover;
}
.featured-blog-content {
  padding: 44px; display: flex; flex-direction: column; justify-content: center;
}

/* Blog Detail Template */
.article-header { margin-bottom: 32px; }
.article-title {
  font-family: var(--f-display); font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800; line-height: 1.15; color: var(--slate); margin: 16px 0;
}
.article-meta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--slate-lt);
}
.article-banner-wrap {
  width: 100%; max-height: 480px; overflow: hidden; border-radius: var(--r12);
  margin-bottom: 40px; box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.article-banner { width: 100%; height: 100%; object-fit: cover; }
.article-body {
  font-size: 16.5px; line-height: 1.85; color: #2C3E50;
}
.article-body h2 { font-family: var(--f-display); font-size: 26px; color: var(--slate); margin: 36px 0 16px; }
.article-body h3 { font-family: var(--f-display); font-size: 21px; color: var(--slate); margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 24px 20px; list-style: disc; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--gold); padding: 16px 24px;
  background: var(--gold-pale); border-radius: 0 var(--r8) var(--r8) 0;
  font-style: italic; font-size: 17px; color: var(--slate); margin: 28px 0;
}

/* ═══════════════════════════════════════════
   COUNTRIES FLAG CLOUD
═══════════════════════════════════════════ */
.sec-countries {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #f5edd5 100%);
  padding: 70px 0; border-top: 1px solid rgba(184,146,42,.15); border-bottom: 1px solid rgba(184,146,42,.15);
}
.countries-wrap { display: flex; align-items: center; gap: 48px; }
.countries-label { flex-shrink: 0; max-width: 280px; }
.flag-cloud { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.flag-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid rgba(184,146,42,.15);
  border-radius: var(--r999); padding: 8px 16px;
  font-size: 13px; font-weight: 500; color: var(--slate);
  box-shadow: 0 1px 4px rgba(0,0,0,.03); transition: all .2s;
}
.flag-chip:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(184,146,42,.15); }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.sec-faq { padding: 90px 0; background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 360px 1fr; gap: 60px; align-items: start; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-cta-box {
  margin-top: 32px; background: linear-gradient(145deg, var(--slate), #243352);
  border-radius: var(--r12); padding: 28px 24px; color: var(--white);
}
.faq-cta-box p { font-size: 13.5px; color: rgba(255,255,255,.65); margin: 8px 0 20px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; font-size: 15px; font-weight: 600; color: var(--ink);
  transition: color .2s;
}
.faq-q:hover, .faq-q.open { color: var(--gold); }
.faq-ico {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--ink-06); display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.faq-ico svg { width: 14px; height: 14px; fill: var(--ink-40); transition: transform .3s; }
.faq-q.open .faq-ico { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.faq-q.open .faq-ico svg { fill: var(--white); transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 0 22px 0;
  font-size: 14px; color: var(--slate-lt); line-height: 1.8;
}
.faq-a.open { display: block; }

/* ═══════════════════════════════════════════
   CONTACT SECTION & FORMS
═══════════════════════════════════════════ */
.sec-contact { padding: 90px 0; background: var(--cream); position: relative; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contact-blocks { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.cblock {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r12); transition: all .3s ease;
}
.cblock:hover { border-color: rgba(184,146,42,.3); transform: translateX(3px); }
.cb-ico {
  width: 42px; height: 42px; border-radius: var(--r8);
  background: linear-gradient(135deg, var(--slate), #243352);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cb-ico svg { width: 18px; height: 18px; fill: var(--gold); }
.cb-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-40); margin-bottom: 2px; }
.cb-val { font-size: 14px; font-weight: 600; color: var(--ink); }

/* Form wrapper */
.contact-form-wrap {
  background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--r16); padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,.05);
  position: relative; overflow: hidden;
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}
.form-title { font-family: var(--f-display); font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.form-sub { font-size: 13.5px; color: var(--slate-lt); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--ink-60);
  margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea, .form-control {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--r8);
  font-family: var(--f-body); font-size: 14px; color: var(--ink);
  background: var(--cream); outline: none; transition: all .25s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus, .form-control:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,146,42,.1);
}
.fg textarea { min-height: 110px; resize: vertical; }
.submit-btn { width: 100%; justify-content: center; padding: 15px !important; font-size: 14px !important; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: linear-gradient(180deg, var(--ink) 0%, #070910 100%);
  color: rgba(255,255,255,.6);
}
.footer-main {
  padding: 70px 32px 48px; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}
.f-brand .logo-name { color: var(--white); font-size: 22px; }
.f-desc { font-size: 13.5px; line-height: 1.7; max-width: 300px; margin-top: 16px; }
.f-iso {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; background: rgba(184,146,42,.1);
  border: 1px solid rgba(184,146,42,.25); border-radius: var(--r8);
  padding: 10px 14px; font-size: 11.5px; color: var(--gold-lt); font-weight: 600;
}
.f-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white); margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.f-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 22px; height: 2px; background: var(--gold);
}
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 6px;
}
.f-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 32px; max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.f-copy { font-size: 12.5px; color: rgba(255,255,255,.35); }
.socials { display: flex; gap: 8px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: var(--r8);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.soc-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.soc-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ═══════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES
═══════════════════════════════════════════ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card.featured { grid-row: span 1; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 90px 32px 60px; }
  .sec-why { grid-template-columns: 1fr; }
  .why-visual { min-height: 360px; padding: 50px 32px; }
  .why-content { padding: 50px 32px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .featured-blog-banner { grid-template-columns: 1fr; }
  .featured-blog-img { min-height: 240px; }
  .featured-blog-content { padding: 32px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-list, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .float-strip { display: none !important; pointer-events: none !important; }
  nav { padding: 0 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .visa-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar, .float-strip { display: none; }
  .container { padding: 0 20px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .countries-wrap { flex-direction: column; align-items: flex-start; gap: 24px; }
  .countries-label { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .why-metrics { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  
  /* Vertical process stepped line */
  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
    gap: 28px;
  }
  .proc-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 0;
  }
  .proc-num {
    margin-bottom: 0;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }
  .proc-num span { font-size: 18px; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .f-bottom { flex-direction: column; text-align: center; gap: 14px; }
  .attest-tabs { width: 100%; }
  .atab { flex: 1 1 45%; text-align: center; padding: 8px 10px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .wa-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-fab svg { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════════
   HERO BANNER SLIDER (ATTESTGLOBAL STYLE)
═══════════════════════════════════════════ */
.hero-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--slate);
}
.hero-slider-track {
  display: flex;
  width: 300%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  position: relative;
  width: 33.333333%;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 8s ease-out;
  pointer-events: none;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1.1);
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,23,40,0.92) 0%, rgba(12,23,40,0.78) 52%, rgba(12,23,40,0.48) 100%);
  pointer-events: none;
}
.hero-slide-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  padding: 110px 0 110px;
}
.hero-slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,146,42,0.22);
  border: 1px solid rgba(184,146,42,0.45);
  color: var(--gold-lt);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-slide-title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF !important;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero-slide-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-slide-desc {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 640px;
  margin-bottom: 32px;
}
.hero-slide-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12, 23, 40, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}
.slider-dot.active {
  width: 38px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

/* Floating Trust Ribbon Below Slider */
.slider-trust-strip {
  background: #0E1726;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.slider-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.slider-trust-col {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
}
.slider-trust-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(184, 146, 42, 0.15);
  border: 1px solid rgba(184, 146, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.slider-trust-ico svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}
.slider-trust-val {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}
.slider-trust-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .hero-slide { min-height: 520px; }
  .slider-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .slider-arrow { width: 42px; height: 42px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
}
@media (max-width: 600px) {
  .hero-slide { min-height: 460px; }
  .hero-slide-content { padding: 70px 0 80px; }
  .slider-trust-grid { grid-template-columns: 1fr; }
  .hero-slide-btns { flex-direction: column; width: 100%; }
  .hero-slide-btns .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   ABOUT US & ATTESTATION RESPONSIVE SYSTEM
═══════════════════════════════════════════ */
.about-overview-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.about-commitments-card {
  background: linear-gradient(145deg, var(--slate), #22314d);
  padding: 44px;
  border-radius: var(--r16);
  color: var(--white);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.about-stats-row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.about-stat-box {
  background: var(--gold-pale);
  border: 1.5px solid rgba(184,146,42,.3);
  padding: 18px 24px;
  border-radius: var(--r12);
  flex: 1;
  min-width: 180px;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r12);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.attest-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.attest-card-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r12);
  padding: 32px;
  box-shadow: var(--shadow-xs);
}

@media (max-width: 992px) {
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .attest-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-commitments-card {
    padding: 28px 20px;
  }
  .about-stats-row {
    flex-direction: column;
    width: 100%;
  }
  .about-stat-box {
    width: 100%;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-team-card {
    padding: 24px 18px;
  }
  .attest-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .attest-card-item {
    padding: 24px 18px;
  }
}
