/* ==========================================================================
   KK IMMIGRATION — REDESIGN (FULLY RESPONSIVE)
   Design language: "Boarding Pass" — passport navy + foil gold + travel sky
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{

    /* KK Immigration Brand */
    --ink:        #111111;   /* Main dark */
    --navy:       #1A1A1A;   /* Dark sections */
    --navy-soft:  #2B2B2B;   /* Secondary dark */
    --navy-tint:  #F5F5F5;   /* Light dark-section tint */

    --paper:      #FFFFFF;   /* Main background */
    --paper-dim:  #F4F4F4;   /* Alternate background */

    --gold:       #B21F24;   /* Replace gold → Brand red */
    --gold-deep:  #8F171B;   /* Dark red */
    --gold-tint:  #F8E8E9;   /* Very light red */

    --sky:        #B21F24;   /* Replace blue → Brand red */
    --sky-tint:   #F8E8E9;

    --stamp:      #A51D22;   /* Logo red */

    --text:       #171717;   /* Main text */
    --muted:      #666666;   /* Secondary text */
    --line:       #DDDDDD;   /* Borders */

    --white:      #FFFFFF;

  /* type */
  --f-display: 'Besley', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* layout */
  --maxw: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.22,.9,.32,1);
}

/* ---------- reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; width:100vw}
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--text);
  background:var(--paper);
  -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; }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:1rem; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0; line-height:1.12; color:var(--navy); }
p{ margin:0; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 28px; }

:focus-visible{ outline:2px solid var(--gold-deep); outline-offset:3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- utility ---------- */
.eyebrow{
  font-family:var(--f-mono);
  font-size:.75rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-deep);
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:600;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--gold-deep);
  display:inline-block;
}
.section{ padding:96px 0; position:relative; }
.section-tight{ padding:64px 0; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-title{ font-size:clamp(1.9rem,3.4vw,2.6rem); margin-top:12px; font-weight:700; }
.section-sub{ margin-top:16px; color:var(--muted); font-size:1.02rem; line-height:1.7; }
.on-dark{ color:var(--white); }
.on-dark .section-title{ color:var(--white); }
.on-dark .section-sub{ color:#B9C2D6; }

.bg-ink{ background:var(--ink); }
.bg-navy{ background:var(--navy); }
.bg-paper-dim{ background:var(--paper-dim); }
.bg-white{ background:var(--white); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 28px;
  border-radius:100px;
  font-weight:700;
  font-size:.94rem;
  border:1px solid transparent;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
  position:relative;
}
.btn-gold{
  background:var(--gold);
  color:#fff;
  box-shadow: 0 10px 24px -10px rgba(166, 25, 30, 0.45);
}.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px -10px rgba(166, 25, 30, 0.85);
    color: var(--white);
}
.btn-outline{
  background:transparent;
  border-color:rgba(255,255,255,.4);
  color:var(--white);
}
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:#fff; transform:translateY(-3px); }
.btn-navy{
  background:var(--navy);
  color:var(--white);
}
.btn-navy:hover{ background:var(--ink); transform:translateY(-3px); }
.btn-sm{ padding:10px 20px; font-size:.82rem; }
.btn-arrow{ transition:transform .3s var(--ease); }
.btn:hover .btn-arrow{ transform:translateX(4px); }

/* ==========================================================================
   TOP UTILITY BAR
   ========================================================================== */
.topbar{
  background:var(--ink);
  color:#AEB7CC;
  font-family:var(--f-mono);
  font-size:.76rem;
  letter-spacing:.02em;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding-top:9px; padding-bottom:9px; flex-wrap:wrap; gap:10px; }
.topbar-left{ display:flex; gap:24px; align-items:center; flex-wrap:wrap; }
.topbar-left span{ display:inline-flex; align-items:center; gap:7px; }
.topbar-left svg{ width:13px; height:13px; opacity:.8; }
.topbar-right{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.topbar-right a{ opacity:.75; transition:opacity .25s, transform .25s; display:inline-flex; }
.topbar-right a:hover{ opacity:1; transform:translateY(-2px); color:var(--gold); }

@media (max-width: 640px) {
  .topbar .container { justify-content: center; }
  .topbar-left, .topbar-right { justify-content: center; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(244,246,245,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled{ box-shadow:0 8px 30px -20px rgba(14,24,48,.35); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:20px 0; transition:padding .3s var(--ease); }
.site-header.is-scrolled .header-inner{ padding:13px 0; }

.brand{ display:flex; align-items:center; gap:11px; }
.brand-mark{
  width:44px; height:44px; border-radius:11px;
  background:linear-gradient(150deg,var(--navy),var(--ink));
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-family:var(--f-display); font-weight:800; font-size:1.15rem;
  flex-shrink:0;
  box-shadow:inset 0 0 0 1px rgba(198,154,61,.4);
}
.brand-text{ line-height:1.05; }
.brand-text strong{ display:block; font-family:var(--f-display); font-weight:700; font-size:1.18rem; color:var(--navy); letter-spacing:.01em; }
.brand-text span{ display:block; font-family:var(--f-mono); font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-deep); margin-top:2px; }

.main-nav{ display:flex; align-items:center; gap:38px; }
.main-nav a{
  font-size:.92rem; font-weight:600; color:var(--navy);
  position:relative; padding:6px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold);
  transition:width .3s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }
.main-nav a.active{ color:var(--gold-deep); }

.header-cta{ display:flex; align-items:center; gap:22px; }
.header-phone{ display:flex; align-items:center; gap:10px; }
.header-phone .icon{
  width:38px; height:38px; border-radius:50%; background:var(--navy-tint);
  display:flex; align-items:center; justify-content:center; color:var(--navy); flex-shrink:0;
}
.header-phone .icon svg{ width:17px; height:17px; }
.header-phone small{ display:block; font-family:var(--f-mono); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.header-phone strong{ font-size:.92rem; color:var(--navy); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:none; padding:8px;
}
.nav-toggle span{ width:24px; height:2px; background:var(--navy); border-radius:2px; transition:transform .3s var(--ease), opacity .3s; }
.nav-toggle.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero{
  position:relative;
  background:var(--ink);
  overflow:hidden;
  min-height:640px;
  padding-top: 50px ;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 700px 500px at 85% 15%,
      rgba(166, 25, 30, 0.16),
      transparent 65%
    ),
    radial-gradient(
      ellipse 600px 500px at 10% 90%,
      rgba(166, 25, 30, 0.10),
      transparent 65%
    );
  pointer-events: none;
}
.hero-routes{ position:absolute; inset:0; opacity:.5; pointer-events:none; }
.hero-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center;
  padding:120px 0 90px;
  min-height:640px;
}
.hero-slide{
  display:none;
}
.hero-slide.is-active{ display:grid; grid-template-columns:1.05fr .95fr; gap:40px; align-items:center; grid-column:1/-1; grid-row:1/-1; }

.hero-text .eyebrow{ color:var(--gold); }
.hero-text .eyebrow::before{ background:var(--gold); }
.hero-title{
  color:var(--white);
  font-size:clamp(2.3rem,4.6vw,3.6rem);
  margin-top:18px;
  font-weight:700;
  letter-spacing:-.01em;
}
.hero-title em{ font-style:normal; color:var(--gold); }
.hero-sub{ color:#B9C2D6; font-size:1.08rem; margin-top:22px; max-width:480px; line-height:1.7; }
.hero-actions{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }

.hero-stats{ display:flex; gap:34px; margin-top:56px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family:var(--f-display); font-size:1.7rem; color:var(--white); }
.hero-stats div span{ font-family:var(--f-mono); font-size:.66rem; letter-spacing:.08em; text-transform:uppercase; color:#8792AC; }

/* boarding pass visual */
.ticket{
  --tick: var(--gold);
  background:linear-gradient(155deg,#fff,#F4F1E7);
  border-radius:18px;
  box-shadow:0 40px 70px -30px rgba(0,0,0,.55);
  position:relative;
  transform:rotate(3deg);
  max-width:420px;
  margin-left:auto;
  animation:float 6s ease-in-out infinite;
  width:100%;
}
@keyframes float{ 0%,100%{ transform:rotate(3deg) translateY(0);} 50%{ transform:rotate(1deg) translateY(-14px);} }
.ticket-top{ display:flex; justify-content:space-between; align-items:flex-start; padding:26px 26px 20px; }
.ticket-brand{ font-family:var(--f-mono); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-deep); font-weight:700; }
.ticket-class{ font-family:var(--f-mono); font-size:.62rem; letter-spacing:.1em; color:var(--muted); text-align:right; }
.ticket-route{ display:flex; align-items:center; justify-content:space-between; padding:0 26px; }
.ticket-city{ text-align:left; }
.ticket-city.to{ text-align:right; }
.ticket-city strong{ font-family:var(--f-display); font-size:1.9rem; color:var(--navy); display:block; }
.ticket-city span{ font-family:var(--f-mono); font-size:.66rem; color:var(--muted); letter-spacing:.05em; }
.ticket-plane{ width:34px; height:34px; color:var(--gold-deep); flex-shrink:0; }
.ticket-plane svg{ width:100%; height:100%; }
.ticket-divider{
  margin:22px 0; position:relative; height:1px;
  background:repeating-linear-gradient(90deg,var(--line) 0 8px,transparent 8px 16px);
}
.ticket-divider::before,.ticket-divider::after{
  content:""; position:absolute; top:50%; width:22px; height:22px; background:var(--paper);
  border-radius:50%; transform:translateY(-50%);
}
.ticket-divider::before{ left:-37px; }
.ticket-divider::after{ right:-37px; }
.ticket-meta{ display:flex; justify-content:space-between; padding:0 26px; flex-wrap:wrap; gap:10px; }
.ticket-meta div span{ display:block; font-family:var(--f-mono); font-size:.58rem; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.ticket-meta div strong{ font-family:var(--f-mono); font-size:.84rem; color:var(--navy); font-weight:600; }
.ticket-barcode{ margin:22px 26px 26px; height:34px; border-radius:4px;
  background:repeating-linear-gradient(90deg,var(--ink) 0 2px,transparent 2px 5px,var(--ink) 5px 6px,transparent 6px 10px);
  opacity:.85;
}
.ticket-stamp{
  position:absolute; top:-18px; right:-18px;
  width:88px; height:88px; border-radius:50%;
  border:2.5px dashed var(--stamp);
  color:var(--stamp);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-mono); font-size:.62rem; text-transform:uppercase; letter-spacing:.06em;
  text-align:center; font-weight:700;
  transform:rotate(-14deg);
  background:rgba(255,255,255,.92);
}

.hero-dots{ position:absolute; left:0; right:0; bottom:34px; z-index:3; display:flex; justify-content:center; gap:10px; }
.hero-dots button{
  width:34px; height:4px; border-radius:4px; border:none; background:rgba(255,255,255,.28);
  transition:background .3s;
}
.hero-dots button.is-active{ background:var(--gold); }
.hero-arrows{ position:absolute; z-index:3; bottom:30px; right:28px; display:flex; gap:10px; }
.hero-arrows button{
  width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.05); color:#fff; display:flex; align-items:center; justify-content:center;
  transition:background .3s, transform .3s;
}
.hero-arrows button:hover{ background:var(--gold); color:var(--ink); border-color:var(--gold); transform:scale(1.06); }
.hero-arrows svg{ width:16px; height:16px; }

@media (max-width:900px){
  .hero{ min-height: auto; }
  .hero-slide.is-active,.hero-inner{ grid-template-columns:1fr; padding:60px 0; text-align:center; }
  .ticket{ margin:0 auto; transform:rotate(1deg); max-width:380px; }
  .hero-arrows{ display:none; }
  .hero-dots{ bottom: 20px; }
  .hero-stats { justify-content: center; }
}

/* ==========================================================================
   MARQUEE STRIP
   ========================================================================== */
.marquee-strip{ background:var(--gold); overflow:hidden; padding:13px 0; }
.marquee-track{ display:flex; width:max-content; animation:scrollx 26s linear infinite; }
.marquee-track span{
  font-family:var(--f-mono); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--ink); padding:0 26px; display:flex; align-items:center; gap:10px; white-space:nowrap;
}
.marquee-track span::after{ content:"✈"; opacity:.6; }
@keyframes scrollx{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==========================================================================
   TRUST / FEATURE STRIP
   ========================================================================== */
.trust-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line);
  margin-top:-58px; position:relative; z-index:5; border-radius:var(--radius); overflow:hidden;
  box-shadow:0 30px 60px -30px rgba(14,24,48,.25);
}
.trust-card{
  background:var(--white); padding:34px 30px; transition:background .35s, transform .35s;
}
.trust-card:hover{ background:var(--navy); transform:translateY(-4px); }
.trust-card:hover .trust-title, .trust-card:hover p{ color:#fff; }
.trust-card:hover .trust-icon{ background:var(--gold); color:var(--ink); }
.trust-icon{
  width:48px; height:48px; border-radius:12px; background:var(--navy-tint); color:var(--navy);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px; transition:background .35s, color .35s;
}
.trust-icon svg{ width:22px; height:22px; }
.trust-title{ font-family:var(--f-display); font-size:1.08rem; color:var(--navy); transition:color .35s; margin-bottom:8px; font-weight:700;}
.trust-card p{ color:var(--muted); font-size:.9rem; line-height:1.6; transition:color .35s; }
@media (max-width:800px){ .trust-grid{ grid-template-columns:1fr; margin-top:0; } .hero{ min-height:auto; } }

/* ==========================================================================
   ABOUT / SPLIT SECTION
   ========================================================================== */
.split{ display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:center; }
.split.reverse{ grid-template-columns:1.15fr .85fr; }
.split.reverse .split-visual{ order:2; }
@media (max-width:900px){ .split, .split.reverse{ grid-template-columns:1fr; gap:40px; } .split.reverse .split-visual{ order:0; } }

.stack-visual{ position:relative; padding:20px; }
.stack-card{
  border-radius:20px; overflow:hidden; position:relative;
  background:linear-gradient(150deg,var(--navy),var(--ink));
  aspect-ratio:4/5;
  display:flex; align-items:flex-end;
  box-shadow:0 40px 60px -30px rgba(14,24,48,.5);
}
.stack-card svg{ position:absolute; inset:0; width:100%; height:100%; opacity:.9; }
.stack-badge{
  position:absolute; top:-24px; right:-24px; background:var(--white); border-radius:16px;
  padding:18px 22px; box-shadow:0 20px 40px -18px rgba(14,24,48,.4);
  display:flex; flex-direction:column; align-items:center; text-align:center;
  animation:float 5s ease-in-out infinite;
  z-index: 2;
}
.stack-badge strong{ font-family:var(--f-display); font-size:1.8rem; color:var(--gold-deep); }
.stack-badge span{ font-family:var(--f-mono); font-size:.6rem; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-top:2px; }

.check-list{ margin-top:28px; display:grid; gap:16px; }
.check-item{ display:flex; gap:14px; align-items:flex-start; }
.check-item .tick{
  width:26px; height:26px; border-radius:50%; background:var(--sky-tint); color:var(--sky);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}
.check-item .tick svg{ width:13px; height:13px; }
.check-item strong{ display:block; color:var(--navy); font-size:1rem; margin-bottom:3px; }
.check-item p{ color:var(--muted); font-size:.92rem; line-height:1.6; }

/* ==========================================================================
   BOARDING-PASS SERVICE CARDS
   ========================================================================== */
.pass-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
@media (max-width:1000px){ .pass-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .pass-grid{ grid-template-columns:1fr; } }

.pass-card{
  background:var(--white); border-radius:16px; padding:28px 24px; position:relative;
  border:1px solid var(--line);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.pass-card:hover{ transform:translateY(-8px) rotate(-.6deg); box-shadow:0 30px 50px -25px rgba(14,24,48,.35); border-color:transparent; }
.pass-card .pass-code{ font-family:var(--f-mono); font-size:.66rem; color:var(--gold-deep); letter-spacing:.1em; text-transform:uppercase; }
.pass-icon{
  width:52px; height:52px; border-radius:13px; background:var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center; margin:16px 0 20px;
  transition:transform .4s var(--ease);
}
.pass-card:hover .pass-icon{ transform:rotate(-8deg) scale(1.06); }
.pass-icon svg{ width:24px; height:24px; }
.pass-card h3{ font-size:1.18rem; margin-bottom:10px; }
.pass-card p{ color:var(--muted); font-size:.9rem; line-height:1.65; margin-bottom:18px; }
.pass-link{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.85rem; color:var(--navy); }
.pass-link svg{ width:14px; height:14px; transition:transform .3s var(--ease); }
.pass-card:hover .pass-link svg{ transform:translateX(5px); }
.pass-card::after{
  content:""; position:absolute; left:24px; right:24px; bottom:0; height:1px;
  background:repeating-linear-gradient(90deg,var(--line) 0 6px,transparent 6px 12px);
}

/* ==========================================================================
   WHY US — dark grid
   ========================================================================== */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,.08); border-radius:var(--radius); overflow:hidden; }
@media (max-width:800px){ .why-grid{ grid-template-columns:1fr; } }
.why-item{ background:var(--ink); padding:36px 32px; transition:background .4s; }
.why-item:hover{ background:var(--navy); }
.why-num{ font-family:var(--f-mono); font-size:.72rem; color:var(--gold); letter-spacing:.1em; }
.why-item h3{ color:#fff; font-size:1.1rem; margin:14px 0 10px; }
.why-item p{ color:#9AA4BC; font-size:.88rem; line-height:1.65; }

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.timeline{ display:flex; justify-content:space-between; position:relative; gap:20px; }
.timeline::before{
  content:""; position:absolute; top:26px; left:0; right:0; height:2px;
  background:repeating-linear-gradient(90deg,var(--line) 0 10px,transparent 10px 20px);
  z-index:0;
}
.timeline-step{ position:relative; z-index:1; flex:1; text-align:center; }
.timeline-dot{
  width:54px; height:54px; border-radius:50%; background:var(--white); border:2px solid var(--navy);
  color:var(--navy); display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
  font-family:var(--f-display); font-weight:700; transition:background .35s, color .35s, transform .35s;
}
.timeline-step:hover .timeline-dot{ background:var(--gold); border-color:var(--gold); color:var(--ink); transform:scale(1.1); }
.timeline-step h4{ font-family:var(--f-body); font-weight:700; font-size:.92rem; color:var(--navy); }
.timeline-step p{ font-size:.8rem; color:var(--muted); margin-top:6px; }
@media (max-width:800px){ .timeline{ flex-direction:column; gap:34px; } .timeline::before{ top:0; bottom:0; left:26px; width:2px; height:auto; right:auto; background:repeating-linear-gradient(180deg,var(--line) 0 10px,transparent 10px 20px);} .timeline-step{ display:flex; gap:20px; text-align:left; align-items:flex-start; } .timeline-dot{ margin:0; flex-shrink:0; } }

/* ==========================================================================
   TESTI2MONIALS
   ========================================================================== */
.testi2-wrap{ position:relative; }
.testi2-track{ display:flex; gap:24px; overflow:hidden; }
.testi2-card{
  flex:0 0 calc(33.333% - 16px); background:var(--white); border-radius:16px; padding:32px 28px;
  border:1px solid var(--line); transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.testi2-card:hover{ transform:translateY(-6px); box-shadow:0 30px 50px -28px rgba(14,24,48,.3); }
.testi2-stars{ color:var(--gold); display:flex; gap:3px; margin-bottom:16px; }
.testi2-stars svg{ width:15px; height:15px; }
.testi2-card p{ color:var(--text); font-size:.95rem; line-height:1.7; }
.testi2-person{ display:flex; align-items:center; gap:12px; margin-top:22px; }
.testi2-avatar{
  width:44px; height:44px; border-radius:50%; background:var(--navy); color:var(--gold);
  display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-weight:700;
  flex-shrink:0;
}
.testi2-person strong{ display:block; font-size:.9rem; color:var(--navy); }
.testi2-person span{ font-family:var(--f-mono); font-size:.68rem; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; }
.testi2-nav{ display:flex; gap:10px; justify-content:center; margin-top:36px; }
.testi2-nav button{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line); background:var(--white);
  display:flex; align-items:center; justify-content:center; transition:background .3s, color .3s, transform .3s;
}
.testi2-nav button:hover{ background:var(--navy); color:#fff; transform:scale(1.08); border-color:var(--navy); }
.testi2-nav svg{ width:15px; height:15px; }
@media (max-width:900px){ .testi2-card{ flex:0 0 100%; } }

/* ==========================================================================
   COUNTRIES
   ========================================================================== */
.country-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .country-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .country-grid{ grid-template-columns:1fr; } }
.country-card{
  position:relative; border-radius:16px; overflow:hidden; aspect-ratio:4/3;
  display:flex; align-items:flex-end; padding:24px;
}
.country-card::before{
  content:""; position:absolute; inset:0; z-index:0; transition:transform .6s var(--ease);
}
.c-canada::before{ background:linear-gradient(150deg,#7d1d2c,#2a0a10); }
.c-uk::before{ background:linear-gradient(150deg,#1f2c63,#0c1230); }
.c-australia::before{ background:linear-gradient(150deg,#0b4a52,#04191c); }
.c-usa::before{ background:linear-gradient(150deg,#2a3f6b,#0e1830); }
.c-nz::before{ background:linear-gradient(150deg,#12324a,#050f18); }
.c-europe::before{ background:linear-gradient(150deg,#4c3763,#160f24); }
.country-card:hover::before{ transform:scale(1.08); }
.country-card::after{
  content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.75),transparent 65%); z-index:1;
}
.country-content{ position:relative; z-index:2; color:#fff; width:100%; }
.country-tag{ font-family:var(--f-mono); font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-tint); opacity:.85; }
.country-card h3{ color:#fff; font-size:1.4rem; margin:8px 0 6px; }
.country-card p{ color:#D8DEE9; font-size:.85rem; }
.country-arrow{
  position:absolute; top:20px; right:20px; z-index:2; width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.14); backdrop-filter:blur(6px); display:flex; align-items:center; justify-content:center;
  color:#fff; opacity:0; transform:translate(-8px,8px); transition:opacity .35s, transform .35s;
}
.country-card:hover .country-arrow{ opacity:1; transform:translate(0,0); }
.country-arrow svg{ width:15px; height:15px; }

/* ==========================================================================
   LOGO MARQUEE
   ========================================================================== */
.logo-strip{ overflow:hidden; padding:8px 0; }
.logo-track{ display:flex; gap:64px; width:max-content; align-items:center; animation:scrollx 30s linear infinite; }
.logo-track span{
  font-family:var(--f-display); font-weight:700; font-size:1.15rem; color:var(--muted); opacity:.55;
  white-space:nowrap; transition:opacity .3s, color .3s;
}
.logo-track span:hover{ opacity:1; color:var(--navy); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner{
  background:linear-gradient(120deg,var(--navy),var(--ink));
  border-radius:22px; padding:56px 60px; display:flex; align-items:center; justify-content:space-between; gap:30px;
  position:relative; overflow:hidden;
}
.cta-banner::before{
  content:""; position:absolute; right:-60px; top:-60px; width:240px; height:240px; border-radius:50%;
  background: radial-gradient(
  circle,
  rgba(166, 25, 30, 0.35),
  transparent 70%
);
}
.cta-banner h3{ color:#fff; font-size:clamp(1.4rem,2.4vw,1.9rem); max-width:520px; position:relative; z-index:1; }
.cta-banner .btn{ position:relative; z-index:1; flex-shrink:0; }
@media (max-width:800px){ .cta-banner{ flex-direction:column; text-align:center; padding:40px 28px; } }

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
@media (max-width:900px){ .blog-grid{ grid-template-columns:1fr; } }
.blog-card{ background:var(--white); border-radius:16px; overflow:hidden; border:1px solid var(--line);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease); }
.blog-card:hover{ transform:translateY(-8px); box-shadow:0 30px 55px -28px rgba(14,24,48,.35); }
.blog-media{ aspect-ratio:16/10; position:relative; overflow:hidden; }
.blog-media svg{ width:100%; height:100%; transition:transform .6s var(--ease); }
.blog-card:hover .blog-media svg{ transform:scale(1.08) rotate(1deg); }
.blog-date{
  position:absolute; top:16px; left:16px; background:var(--white); border-radius:10px; padding:8px 12px; text-align:center;
  font-family:var(--f-mono); line-height:1.1; box-shadow:0 10px 20px -10px rgba(0,0,0,.3);
}
.blog-date strong{ display:block; font-size:1.05rem; color:var(--navy); }
.blog-date span{ font-size:.6rem; text-transform:uppercase; color:var(--muted); letter-spacing:.05em; }
.blog-body{ padding:26px 24px; }
.blog-tag{ font-family:var(--f-mono); font-size:.65rem; letter-spacing:.08em; text-transform:uppercase; color:var(--sky); }
.blog-card h3{ font-size:1.12rem; margin:12px 0 14px; line-height:1.4; }
.blog-meta{ display:flex; align-items:center; justify-content:space-between; margin-top:18px; padding-top:16px; border-top:1px solid var(--line); flex-wrap:wrap; gap:10px; }
.blog-readmore{ display:inline-flex; align-items:center; gap:7px; font-weight:700; font-size:.82rem; color:var(--navy); }
.blog-readmore svg{ width:13px; height:13px; transition:transform .3s var(--ease); }
.blog-card:hover .blog-readmore svg{ transform:translateX(5px); }
.blog-author{ font-size:.78rem; color:var(--muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--ink); color:#9AA4BC; padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.08); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand .brand-text strong{ color:#fff; }
.footer-brand p{ margin-top:18px; font-size:.9rem; line-height:1.7; max-width:300px; }
.footer-social{ display:flex; gap:10px; margin-top:22px; flex-wrap:wrap; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.16);
  display:flex; align-items:center; justify-content:center; transition:background .3s, transform .3s, border-color .3s;
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:var(--ink); transform:translateY(-3px); }
.footer-social svg{ width:15px; height:15px; }
.footer-col h4{ color:#fff; font-family:var(--f-display); font-size:1rem; margin-bottom:22px; }
.footer-col ul{ display:grid; gap:13px; }
.footer-col a{ font-size:.9rem; transition:color .25s, padding-left .25s; display:inline-block; }
.footer-col a:hover{ color:var(--gold); padding-left:5px; }
.footer-contact li{ display:flex; gap:12px; align-items:flex-start; font-size:.88rem; line-height:1.6; margin-bottom:16px; }
.footer-contact svg{ width:16px; height:16px; flex-shrink:0; margin-top:3px; color:var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:.8rem; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:var(--gold); }

/* ==========================================================================
   INNER PAGE HEADER (breadcrumb banner)
   ========================================================================== */
.page-hero{
  background:var(--ink); position:relative; overflow:hidden; padding:76px 0 64px;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(ellipse 600px 400px at 90% 0%, rgb(198 61 61 / 22%), transparent 60%), radial-gradient(ellipse 500px 400px at 0% 100%, rgb(201 76 76 / 20%), transparent 60%);
}
.page-hero .container{ position:relative; z-index:1; }
.breadcrumb{ display:flex; align-items:center; gap:10px; font-family:var(--f-mono); font-size:.78rem; color:#8792AC; margin-top:16px; flex-wrap:wrap; }
.breadcrumb a{ color:#8792AC; transition:color .25s; }
.breadcrumb a:hover{ color:var(--gold); }
.breadcrumb .sep{ opacity:.5; }
.breadcrumb .current{ color:var(--gold); }
.page-hero h1{ color:#fff; font-size:clamp(2rem,4vw,2.9rem); }

/* ==========================================================================
   MISC PAGE COMPONENTS (about / services / contact / blog detail)
   ========================================================================== */
.stat-row{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border-radius:var(--radius); overflow:hidden; margin-top:60px; }
@media (max-width:700px){ .stat-row{ grid-template-columns:1fr 1fr; } }
.stat-cell{ background:var(--white); padding:34px 24px; text-align:center; }
.stat-cell strong{ display:block; font-family:var(--f-display); font-size:clamp(1.6rem, 3vw, 2.2rem); color:var(--navy); }
.stat-cell span{ font-family:var(--f-mono); font-size:.68rem; text-transform:uppercase; letter-spacing:.07em; color:var(--muted); }

.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:800px){ .value-grid{ grid-template-columns:1fr; } }
.value-card{ background:var(--white); border:1px solid var(--line); border-radius:16px; padding:30px; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.value-card:hover{ transform:translateY(-6px); box-shadow:0 25px 45px -25px rgba(14,24,48,.3); }
.value-card .pass-icon{ margin-bottom:18px; }

.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
@media (max-width:900px){ .team-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:500px){ .team-grid{ grid-template-columns:1fr; } }
.team-card{ text-align:center; }
.team-photo{
  aspect-ratio:1; border-radius:16px; background:linear-gradient(150deg,var(--navy-soft),var(--ink));
  display:flex; align-items:center; justify-content:center; color:var(--gold); font-family:var(--f-display);
  font-size:2.2rem; font-weight:700; margin-bottom:16px; position:relative; overflow:hidden;
  transition:transform .4s var(--ease);
}
.team-card:hover .team-photo{ transform:translateY(-6px); }
.team-card h4{ font-size:1.02rem; }
.team-card span{ font-family:var(--f-mono); font-size:.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:.05em; }

/* accordion (FAQ) */
.accordion{ border-top:1px solid var(--line); }
.acc-item{ border-bottom:1px solid var(--line); }
.acc-head{
  width:100%; background:none; border:none; display:flex; justify-content:space-between; align-items:center;
  padding:24px 4px; text-align:left; font-family:var(--f-display); font-size:1.04rem; color:var(--navy); font-weight:600;
}
.acc-icon{ width:30px; height:30px; border-radius:50%; border:1px solid var(--line); flex-shrink:0; display:flex; align-items:center; justify-content:center; transition:background .3s, transform .3s, border-color .3s; margin-left:16px; }
.acc-icon svg{ width:13px; height:13px; transition:transform .3s; }
.acc-item.is-open .acc-icon{ background:var(--gold); border-color:var(--gold); }
.acc-item.is-open .acc-icon svg{ transform:rotate(45deg); }
.acc-body{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.acc-body p{ padding:0 4px 24px; color:var(--muted); font-size:.92rem; line-height:1.7; max-width:100%; }

/* contact page */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:50px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.info-card{ background:var(--navy); border-radius:18px; padding:40px 34px; color:#fff; }
.info-card h3{ color:#fff; font-size:1.3rem; }
.info-list{ margin-top:26px; display:grid; gap:22px; }
.info-list li{ display:flex; gap:16px; align-items:flex-start; }
.info-list .ic{ width:42px; height:42px; border-radius:11px; background:rgba(198,154,61,.16); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-list .ic svg{ width:18px; height:18px; }
.info-list strong{ display:block; font-size:.94rem; margin-bottom:3px; }
.info-list span, .info-list a{ font-size:.86rem; color:#B9C2D6; line-height:1.6; word-break: break-word; }
.info-social{ display:flex; gap:10px; margin-top:30px; flex-wrap:wrap; }

.form-card{ background:var(--white); border:1px solid var(--line); border-radius:18px; padding:40px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.8rem; font-weight:600; color:var(--navy); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius:10px; border:1px solid var(--line); background:var(--paper);
  transition:border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold-deep); box-shadow:0 0 0 4px rgba(198,154,61,.15);
}
.field textarea{ resize:vertical; min-height:120px; }

.map-frame{ border-radius:18px; overflow:hidden; border:1px solid var(--line); margin-top:60px; filter:saturate(.85); }
.map-frame iframe{ width:100%; height:380px; border:0; display:block; }

/* ==========================================================================
   FLOATING WHATSAPP + BACK TO TOP
   ========================================================================== */
.float-stack{ position:fixed; right:24px; bottom:24px; z-index:300; display:flex; flex-direction:column; gap:14px; align-items:flex-end; }
@media (max-width: 640px) {
  .float-stack { right: 16px; bottom: 16px; gap: 10px; }
}
.float-btn{
  width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  box-shadow:0 15px 30px -12px rgba(0,0,0,.4); transition:transform .3s var(--ease), opacity .3s;
}
.float-whatsapp{ background:#25D366; color:#fff; }
.float-whatsapp:hover{ transform:scale(1.08) rotate(-6deg); }
.float-whatsapp svg{ width:26px; height:26px; }
.float-top{ background:var(--navy); color:#fff; opacity:0; pointer-events:none; transform:translateY(10px); }
.float-top.is-visible{ opacity:1; pointer-events:auto; transform:translateY(0); }
.float-top:hover{ background:var(--gold); color:var(--ink); }
.float-top svg{ width:18px; height:18px; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* mobile nav drawer */
@media (max-width:1080px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; width:min(340px,86vw); background:var(--white);
    flex-direction:column; align-items:flex-start; padding:100px 32px 32px; gap:26px;
    transform:translateX(100%); transition:transform .4s var(--ease); box-shadow:-20px 0 50px rgba(0,0,0,.15);
    z-index: 250; height:100vh;
  }
  .main-nav.is-open{ transform:translateX(0); }
  .main-nav a{ font-size:1.05rem; }
  .nav-toggle{ display:flex; }
  .header-phone{ display:none; }
}
@media (max-width:640px){
  .section{ padding:64px 0; }
  .cta-banner{ border-radius:16px; }
  .container { padding: 0 20px; }
}
.d-none{display:none !important;}


/* ==========================================================================
   KK ABSTRACT GRADIENT BACKGROUNDS
   ========================================================================== */

/* Base abstract background class */
.kk-bg-abstract {
  position: relative;
  overflow: hidden;
}

/* Shared pseudo-elements for all variants */
.kk-bg-abstract::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ==========================================
   VARIANT 1: Warm Brand Gradient
   ========================================== */
.kk-bg-warm {
  background: linear-gradient(135deg, #1a1a1a 0%, #2B1A1A 30%, #1a1a1a 60%, #1A1520 100%);
}

.kk-bg-warm::before {
  background:
    radial-gradient(ellipse 600px 500px at 20% 30%, rgba(178, 31, 36, 0.18), transparent 60%),
    radial-gradient(ellipse 500px 400px at 80% 70%, rgba(143, 23, 27, 0.12), transparent 55%),
    radial-gradient(ellipse 400px 350px at 50% 50%, rgba(248, 232, 233, 0.04), transparent 50%);
}

/* ==========================================
   VARIANT 2: Deep Navy with Gold Accents
   ========================================== */
.kk-bg-navy-gold {
  background: linear-gradient(160deg, #111111 0%, #1a1a2e 35%, #111111 65%, #1a1520 100%);
}

.kk-bg-navy-gold::before {
  background:
    radial-gradient(ellipse 700px 600px at 10% 20%, rgba(178, 31, 36, 0.15), transparent 55%),
    radial-gradient(ellipse 500px 400px at 90% 80%, rgba(198, 154, 61, 0.08), transparent 50%),
    radial-gradient(ellipse 450px 450px at 60% 40%, rgba(178, 31, 36, 0.06), transparent 50%),
    radial-gradient(circle 300px at 30% 60%, rgba(248, 232, 233, 0.03), transparent 50%);
}

/* ==========================================
   VARIANT 3: Light Section with Subtle Accents
   ========================================== */
.kk-bg-light-accent {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F7 50%, #FFFFFF 100%);
}

.kk-bg-light-accent::before {
  background:
    radial-gradient(ellipse 500px 400px at 15% 25%, rgba(178, 31, 36, 0.05), transparent 60%),
    radial-gradient(ellipse 400px 350px at 85% 75%, rgba(143, 23, 27, 0.03), transparent 55%),
    radial-gradient(circle 200px at 50% 50%, rgba(248, 232, 233, 0.1), transparent 50%);
}

/* ==========================================
   VARIANT 4: Dark Abstract with Patterns
   ========================================== */
.kk-bg-dark-pattern {
  background: #0d0d0d;
}

.kk-bg-dark-pattern::before {
  background:
    radial-gradient(ellipse 800px 600px at 0% 0%, rgba(178, 31, 36, 0.12), transparent 50%),
    radial-gradient(ellipse 600px 500px at 100% 100%, rgba(143, 23, 27, 0.1), transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
}

/* Optional grid pattern overlay */
.kk-bg-dark-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

/* ==========================================
   VARIANT 5: Animated Gradient
   ========================================== */
.kk-bg-animated {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #2B1A1A 25%,
    #1a1a2e 50%,
    #1a1520 75%,
    #1a1a1a 100%
  );
  background-size: 400% 400%;
  animation: kkGradientShift 15s ease infinite;
}

.kk-bg-animated::before {
  background:
    radial-gradient(ellipse 500px 400px at 30% 40%, rgba(178, 31, 36, 0.15), transparent 55%),
    radial-gradient(ellipse 400px 350px at 70% 60%, rgba(143, 23, 27, 0.1), transparent 50%);
  animation: kkOrbFloat 10s ease-in-out infinite;
}

@keyframes kkGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes kkOrbFloat {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.05) translate(20px, -20px); }
  66% { transform: scale(0.95) translate(-15px, 15px); }
}

/* ==========================================
   VARIANT 6: Blob Abstract
   ========================================== */
.kk-bg-blob {
  background: #111111;
}

.kk-bg-blob::before {
  background:
    radial-gradient(ellipse 500px 400px at 20% 50%, rgba(178, 31, 36, 0.15), transparent 50%),
    radial-gradient(ellipse 400px 350px at 80% 50%, rgba(143, 23, 27, 0.1), transparent 50%),
    radial-gradient(circle 300px at 50% 50%, rgba(248, 232, 233, 0.04), transparent 50%);
}

/* Blob shapes */
.kk-bg-blob::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: rgba(178, 31, 36, 0.04);
  top: -200px;
  right: -200px;
  filter: blur(80px);
  animation: kkBlobMorph 12s ease-in-out infinite;
}

@keyframes kkBlobMorph {
  0%, 100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    transform: rotate(0deg) scale(1);
  }
  33% {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    transform: rotate(120deg) scale(1.1);
  }
  66% {
    border-radius: 70% 30% 50% 50% / 40% 50% 60% 40%;
    transform: rotate(240deg) scale(0.9);
  }
}

/* ==========================================
   VARIANT 7: Diagonal Split
   ========================================== */
.kk-bg-diagonal {
  background: #111111;
}

.kk-bg-diagonal::before {
  background: linear-gradient(
    135deg,
    transparent 0%,
    transparent 45%,
    rgba(178, 31, 36, 0.06) 45%,
    rgba(178, 31, 36, 0.06) 55%,
    transparent 55%,
    transparent 100%
  ),
  radial-gradient(ellipse 600px 500px at 30% 70%, rgba(178, 31, 36, 0.12), transparent 55%),
  radial-gradient(ellipse 500px 400px at 70% 30%, rgba(143, 23, 27, 0.08), transparent 50%);
}

/* ==========================================
   VARIANT 8: Dots Pattern Overlay
   ========================================== */
.kk-bg-dots {
  background: linear-gradient(160deg, #1a1a1a 0%, #1a1520 100%);
}

.kk-bg-dots::before {
  background:
    radial-gradient(ellipse 500px 400px at 25% 35%, rgba(178, 31, 36, 0.12), transparent 55%),
    radial-gradient(ellipse 400px 350px at 75% 65%, rgba(143, 23, 27, 0.08), transparent 50%);
}

.kk-bg-dots::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
}

/* ==========================================
   UTILITY: Ensure content stays above background
   ========================================== */
.kk-bg-abstract > * {
  position: relative;
  z-index: 1;
}