/* ==========================================================================
   Immigration Expert Zone — Core Stylesheet
   Tokens: Red #E53935 / Navy #0F172A / Gold #C9A227 accent
   Type: Playfair Display (display) + Poppins (body/UI)
   ========================================================================== */

:root{
  --red: #E53935;
  --red-dark: #C62828;
  --red-glow: rgba(229,57,53,0.45);
  --navy: #0F172A;
  --navy-2: #16213A;
  --navy-3: #1E2A47;
  --white: #FFFFFF;
  --gray-50: #F6F7FB;
  --gray-100: #EDEFF5;
  --gray-400: #93A0B4;
  --gray-600: #5B6478;
  --gold: #C9A227;
  --gold-soft: #E4C766;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --container: 1240px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 20px 60px rgba(15,23,42,0.08);
  --shadow-strong: 0 30px 80px rgba(15,23,42,0.35);
  --ease: cubic-bezier(.22,1,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4{ font-family: var(--font-display); line-height:1.15; font-weight:700; color:var(--navy); }
section{ position:relative; }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; }

/* -------------------- Utility -------------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:.78rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--red); font-weight:600; margin-bottom:14px;
}
.eyebrow::before{ content:''; width:26px; height:2px; background:var(--red); display:inline-block; }
.section-head{ max-width:680px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom:16px; }
.section-head p{ color:var(--gray-600); font-size:1.05rem; }
.section-pad{ padding: 110px 0; }
.bg-navy{ background: var(--navy); color:var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy .section-head p{ color:var(--white); }
.bg-light{ background: var(--gray-50); }

.btn{
  position:relative; display:inline-flex; align-items:center; gap:10px;
  font-weight:600; font-size:.95rem; padding:16px 34px; border-radius:50px;
  overflow:hidden; isolation:isolate; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-primary{ background: linear-gradient(135deg, var(--red), var(--red-dark)); color:var(--white); box-shadow: 0 14px 34px var(--red-glow); }
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 20px 44px var(--red-glow); }
.btn-outline{ border:1.5px solid rgba(255,255,255,0.5); color:var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.btn-dark-outline{ border:1.5px solid var(--navy); color:var(--navy); }
.btn-dark-outline:hover{ background:var(--navy); color:var(--white); transform:translateY(-3px); }
.btn .ripple{ position:absolute; border-radius:50%; background: rgba(255,255,255,0.55); transform:scale(0); animation: rippleAnim .6s linear; pointer-events:none; }

.thread{ display:flex; align-items:center; gap:10px; margin: 6px 0 30px; }
.thread svg{ width:70px; height:14px; }

/* -------------------- Preloader -------------------- */
#preloader{
  position:fixed; inset:0; z-index:9999; background:var(--navy);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:18px;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.hide{ opacity:0; visibility:hidden; }
.preloader-mark{ font-family:var(--font-display); font-size:2rem; color:var(--white); letter-spacing:.05em; }
.preloader-mark span{ color:var(--red); }
.preloader-bar{ width:220px; height:3px; background:rgba(255,255,255,.15); border-radius:10px; overflow:hidden; }
.preloader-bar::after{ content:''; display:block; height:100%; width:40%; background:var(--red); animation: loadBar 1.1s ease-in-out infinite; border-radius:10px; }

/* -------------------- Scroll progress + cursor -------------------- */
#scroll-progress{ position:fixed; top:0; left:0; height:3px; background: linear-gradient(90deg,var(--red),var(--gold)); z-index:9998; width:0%; }
.cursor-dot, .cursor-ring{ position:fixed; top:0; left:0; pointer-events:none; z-index:9997; border-radius:50%; transform:translate(-50%,-50%); }
.cursor-dot{ width:8px; height:8px; background:var(--red); transition: opacity .2s; }
.cursor-ring{ width:34px; height:34px; border:1.5px solid rgba(229,57,53,0.55); transition: width .25s, height .25s, transform .12s linear, background .25s; }
.cursor-ring.grow{ width:56px; height:56px; background:rgba(229,57,53,0.08); }
@media (hover:none), (max-width: 900px){ .cursor-dot,.cursor-ring{ display:none; } }

/* -------------------- Top bar -------------------- */
.top-bar{ background:var(--navy); color: rgba(255,255,255,0.85); font-size:.82rem; }
.top-bar .container{ display:flex; justify-content:space-between; align-items:center; padding:9px 24px; flex-wrap:wrap; gap:8px; }
.top-bar .tb-left{ display:flex; gap:26px; flex-wrap:wrap; }
.top-bar .tb-left span, .top-bar .tb-right span{ display:inline-flex; align-items:center; gap:8px; }
.top-bar i{ color: var(--red); }
.top-bar .tb-right{ display:flex; align-items:center; gap:16px; }
.top-bar .socials a{ color:rgba(255,255,255,0.75); margin-left:12px; transition: color .25s, transform .25s; }
.top-bar .socials a:hover{ color:var(--red); transform: translateY(-2px); }

/* -------------------- Header -------------------- */
header.site-header{
  position: sticky; top:0; z-index:900; width:100%;
  background: rgba(255,255,255,0.98); transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
  box-shadow: 0 10px 35px rgba(15,23,42,0.06);
}
header.site-header.scrolled{
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(15,23,42,0.12); padding:12px 0;
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:30px; }
.logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:1.5rem; color:var(--navy); }
.logo .mark{ width:42px; height:42px; border-radius:50%; background: linear-gradient(135deg,var(--red),var(--gold)); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1.1rem; }
.logo small{ display:block; font-family: var(--font-body); font-size:.62rem; letter-spacing:.18em; text-transform:uppercase; color: var(--gray-600); font-weight:500; }

.main-nav{ display:flex; align-items:center; gap:34px; }
.main-nav > ul{ display:flex; gap:30px; }
.main-nav > ul > li{ position:relative; }
.main-nav > ul > li > a{
  color: var(--navy); font-weight:600; font-size:.94rem; padding:8px 2px; position:relative;
}
.main-nav > ul > li > a::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--red); transition: width .3s var(--ease);
}
.main-nav > ul > li > a:hover::after, .main-nav > ul > li.active > a::after{ width:100%; }
.main-nav > ul > li > a i.chev{ font-size:.65rem; margin-left:6px; transition: transform .3s; }
.main-nav > ul > li:hover > a i.chev{ transform: rotate(180deg); }

.mega, .dropdown{
  position:absolute; top: calc(100% + 18px); left:0; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong); opacity:0; visibility:hidden; transform: translateY(14px);
  transition: all .35s var(--ease); padding: 22px; z-index:50;
}
.dropdown{ min-width:260px; right:0; left:auto; }
.dropdown a{ display:block; padding:9px 10px; border-radius:8px; color:var(--navy); font-size:.9rem; transition: background .25s, color .25s, padding-left .25s; }
.dropdown a:hover{ background: var(--gray-50); color:var(--red); padding-left:16px; }
.mega{ width: min(760px, calc(100vw - 64px)); display:grid; grid-template-columns: repeat(3,1fr); gap: 34px; left:50%; transform: translate(-50%,14px); }
.mega.show, .dropdown.show, li:hover > .mega, li:hover > .dropdown{ opacity:1; visibility:visible; transform: translate(-50%,0); }
.dropdown:not(.mega):hover, li:hover > .dropdown:not(.mega){ transform: translateY(0); }
.mega-col h4{ font-family: var(--font-body); font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:var(--red); margin-bottom:10px; }
.mega-col a{ display:block; padding:7px 0; color:var(--gray-600); font-size:.88rem; transition:color .25s, padding-left .25s; }
.mega-col a:hover{ color:var(--red); padding-left:6px; }

.header-cta{ display:flex; align-items:center; gap:18px; }
.header-cta .btn-primary{ padding:13px 26px; font-size:.88rem; }
.burger{ display:none; flex-direction:column; gap:5px; width:30px; z-index:60; }
.burger span{ height:2px; background:var(--navy); border-radius:2px; transition: all .35s var(--ease); }

/* -------------------- Hero -------------------- */
.hero{ position:relative; min-height:calc(100vh - 104px); display:flex; align-items:center; background: var(--navy); overflow:hidden; color:var(--white); }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; opacity:.28; transition: opacity 1.4s ease; }
.hero-bg::after{ content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.75) 55%, rgba(229,57,53,0.28)); }
.blob{ position:absolute; border-radius:50%; filter:blur(70px); opacity:.5; z-index:0; }
.blob-1{ width:480px; height:480px; background: radial-gradient(circle, var(--red), transparent 70%); top:-140px; right:-120px; animation: floatBlob 9s ease-in-out infinite; }
.blob-2{ width:360px; height:360px; background: radial-gradient(circle, var(--gold), transparent 70%); bottom:-100px; left:-80px; animation: floatBlob 11s ease-in-out infinite reverse; }
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns: 1.15fr .85fr; gap:50px; align-items:center; padding-top:40px; }
.hero-text .eyebrow{ color: var(--gold-soft); }
.hero-text .eyebrow::before{ background:var(--gold-soft); }
.hero-text h1{ font-size: clamp(2.4rem, 5vw, 3.9rem); color:var(--white); margin-bottom:22px; }
.hero-text h1 .accent{ color: var(--red); font-style: italic; }
.hero-text p.lead{ font-size:1.12rem; color: rgba(255,255,255,0.78); max-width:520px; margin-bottom:36px; }
.hero-cta{ display:flex; gap:18px; flex-wrap:wrap; margin-bottom:52px; }
.hero-stats{ display:flex; gap:40px; flex-wrap:wrap; }
.hero-stats .stat b{ font-family:var(--font-display); font-size:2.1rem; color:var(--white); display:block; }
.hero-stats .stat span{ font-size:.8rem; color: rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:.08em; }

.hero-visual{ position:relative; }
.route-card{
  background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.14); backdrop-filter: blur(18px);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-strong);
}
.route-card svg{ width:100%; height:auto; }
.route-card .route-caption{ display:flex; justify-content:space-between; margin-top:18px; font-size:.82rem; color: rgba(255,255,255,0.7); }
.floating-chip{
  position:absolute; background: var(--white); color:var(--navy); border-radius: 16px; padding:14px 18px;
  box-shadow: var(--shadow-soft); display:flex; align-items:center; gap:12px; font-size:.85rem; font-weight:600;
  animation: floatChip 5s ease-in-out infinite;
}
.floating-chip i{ color:var(--red); font-size:1.3rem; }
.chip-1{ top:-24px; left:-30px; animation-delay:.2s; }
.chip-2{ bottom:-18px; right:-20px; animation-delay:1.1s; }

.scroll-cue{ position:absolute; bottom:32px; left:50%; transform:translateX(-50%); z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px; color: rgba(255,255,255,0.6); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; }
.mouse{ width:26px; height:42px; border:2px solid rgba(255,255,255,0.5); border-radius:16px; position:relative; }
.mouse::before{ content:''; position:absolute; top:8px; left:50%; width:4px; height:8px; background:var(--white); border-radius:2px; transform:translateX(-50%); animation: mouseScroll 1.8s ease-in-out infinite; }

/* -------------------- About -------------------- */
.about-grid{ display:grid; grid-template-columns: .9fr 1.1fr; gap:70px; align-items:center; }
.about-media{ position:relative; }
.about-media .img-main{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); }
.about-media .img-main img{ transition: transform .8s var(--ease); }
.about-media:hover .img-main img{ transform: scale(1.06); }
.badge-exp{
  position:absolute; bottom:-30px; right:-30px; background: linear-gradient(135deg,var(--red),var(--red-dark));
  color:var(--white); width:150px; height:150px; border-radius:50%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; text-align:center; box-shadow: 0 20px 44px var(--red-glow);
  animation: spinSlow 16s linear infinite;
}
.badge-exp b{ font-family:var(--font-display); font-size:2rem; animation: counterHold 16s linear infinite; }
.badge-exp span{ font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; max-width:90px; }
.about-copy p{ color:var(--gray-600); margin-bottom:18px; }
.mv-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin:26px 0; }
.mv-card{ background:var(--gray-50); border-radius: var(--radius-md); padding:22px; border-left:3px solid var(--red); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.mv-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.mv-card i{ color:var(--red); font-size:1.4rem; margin-bottom:10px; }
.mv-card h4{ font-size:1.02rem; margin-bottom:6px; }
.mv-card p{ font-size:.86rem; color:var(--gray-600); margin:0; }
.why-list{ display:flex; flex-direction:column; gap:14px; margin-top:10px; }
.why-list li{ display:flex; align-items:center; gap:12px; font-size:.94rem; color:var(--navy); }
.why-list i{ color:var(--white); background: var(--red); width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; flex-shrink:0; }

/* -------------------- Services -------------------- */
.tabs{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-bottom:50px; }
.tab-btn{ padding:12px 26px; border-radius:50px; font-size:.88rem; font-weight:600; border:1.5px solid var(--gray-100); color:var(--gray-600); transition: all .3s var(--ease); }
.tab-btn:hover{ border-color:var(--red); color:var(--red); }
.tab-btn.active{ background: var(--navy); border-color:var(--navy); color:var(--white); }
.tab-panel{ display:none; }
.tab-panel:not(.active){ display:none !important; }
.tab-panel.active{ display:grid; }
.card-grid{ grid-template-columns: repeat(4, 1fr); gap:26px; }
.services-overview{ display:grid; margin-bottom:70px; }
.service-card{
  position:relative; background:var(--white); border-radius: var(--radius-lg); padding: 34px 26px;
  box-shadow: var(--shadow-soft); overflow:hidden; transform-style: preserve-3d; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  border: 1px solid var(--gray-100);
}
.service-card::before{
  content:''; position:absolute; inset:0; background: linear-gradient(135deg, rgba(229,57,53,0.06), transparent 60%);
  opacity:0; transition: opacity .4s var(--ease);
}
.service-card:hover{ transform: translateY(-10px) rotateX(3deg); box-shadow: var(--shadow-strong); }
.service-card:hover::before{ opacity:1; }
.service-icon{ width:60px; height:60px; border-radius:16px; background: linear-gradient(135deg,var(--red),var(--red-dark)); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1.5rem; margin-bottom:22px; box-shadow: 0 14px 30px var(--red-glow); }
.service-card h3{ font-size:1.18rem; margin-bottom:10px; }
.service-card p{ color:var(--gray-600); font-size:.9rem; margin-bottom:18px; }
.service-card .read-more{ font-size:.85rem; font-weight:600; color:var(--red); display:inline-flex; align-items:center; gap:8px; }
.service-card .read-more i{ transition: transform .3s var(--ease); }
.service-card:hover .read-more i{ transform: translateX(6px); }

/* -------------------- Countries -------------------- */
.country-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.country-card{ position:relative; border-radius: var(--radius-md); overflow:hidden; height:230px; box-shadow: var(--shadow-soft); background:var(--navy); }
.country-card img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.country-card:hover img{ transform: scale(1.12); }
.country-card .overlay{ position:absolute; inset:0; background: linear-gradient(0deg, rgba(15,23,42,0.92), rgba(15,23,42,0.18) 58%, rgba(229,57,53,0.12)); display:flex; align-items:flex-end; padding:20px; }
.country-card h4{ color:var(--white); font-size:1.15rem; display:flex; align-items:center; gap:8px; }
.country-card span{ position:absolute; top:16px; right:16px; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); color:var(--white); font-size:.72rem; padding:5px 12px; border-radius:20px; opacity:0; transform: translateY(-8px); transition: all .35s var(--ease); }
.country-card:hover span{ opacity:1; transform: translateY(0); }

/* -------------------- Visa guide -------------------- */
.visa-guide{ background:linear-gradient(180deg, var(--white), var(--gray-50)); overflow:hidden; }
.visa-showcase{ display:grid; grid-template-columns: 1.05fr .95fr; gap:52px; align-items:center; margin-bottom:34px; }
.visa-feature{
  position:relative; background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-lg);
  padding:42px; box-shadow:var(--shadow-soft); overflow:hidden;
}
.visa-feature::before{
  content:''; position:absolute; inset:0 0 auto 0; height:5px; background:linear-gradient(90deg,var(--red),var(--gold));
}
.visa-tag{ display:inline-flex; align-items:center; gap:8px; background:rgba(229,57,53,0.08); color:var(--red); border-radius:50px; padding:8px 14px; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom:18px; }
.visa-feature h3{ font-size:clamp(1.8rem,3vw,2.45rem); margin-bottom:14px; }
.visa-feature p{ color:var(--gray-600); margin-bottom:22px; max-width:620px; }
.visa-feature ul{ display:grid; grid-template-columns:1fr 1fr; gap:13px 18px; margin-bottom:30px; }
.visa-feature li{ display:flex; align-items:flex-start; gap:10px; color:var(--navy); font-size:.92rem; }
.visa-feature li i{ color:var(--red); margin-top:5px; }
.visa-orbit{ position:relative; min-height:420px; border-radius:var(--radius-lg); background:radial-gradient(circle at center, rgba(229,57,53,.12), rgba(15,23,42,.04) 42%, transparent 70%); }
.orbit-ring{ position:absolute; inset:42px; border:1px dashed rgba(15,23,42,.22); border-radius:50%; animation: visaSpin 24s linear infinite; }
.ring-two{ inset:92px; border-color:rgba(229,57,53,.25); animation-duration:18s; animation-direction:reverse; }
.orbit-core{ position:absolute; left:50%; top:50%; width:150px; height:150px; transform:translate(-50%,-50%); border-radius:50%; background:linear-gradient(135deg,var(--navy),var(--navy-3)); color:var(--white); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; box-shadow:var(--shadow-strong); text-align:center; font-weight:700; }
.orbit-core i{ color:var(--gold-soft); font-size:2rem; }
.orbit-core span{ line-height:1.2; }
.orbit-chip{ position:absolute; display:inline-flex; align-items:center; gap:8px; background:var(--white); color:var(--navy); border:1px solid var(--gray-100); border-radius:50px; padding:12px 16px; box-shadow:var(--shadow-soft); font-weight:700; font-size:.9rem; animation: floatChip 4.8s ease-in-out infinite; }
.orbit-chip i{ color:var(--red); }
.chip-a{ left:8%; top:22%; }
.chip-b{ right:9%; top:24%; animation-delay:.6s; }
.chip-c{ left:12%; bottom:20%; animation-delay:1.1s; }
.chip-d{ right:8%; bottom:22%; animation-delay:1.7s; }
.visa-card-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.visa-card{ position:relative; background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-md); padding:28px 22px; box-shadow:var(--shadow-soft); overflow:hidden; transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.visa-card::after{ content:''; position:absolute; width:120px; height:120px; right:-48px; top:-48px; background:rgba(229,57,53,.08); border-radius:50%; transition:transform .4s var(--ease); }
.visa-card > i{ width:54px; height:54px; border-radius:16px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--red),var(--red-dark)); color:var(--white); font-size:1.25rem; margin-bottom:18px; box-shadow:0 14px 30px var(--red-glow); }
.visa-card h3{ font-size:1.08rem; margin-bottom:10px; }
.visa-card p{ color:var(--gray-600); font-size:.88rem; margin-bottom:18px; }
.visa-card span{ color:var(--red); font-size:.84rem; font-weight:700; display:inline-flex; align-items:center; gap:8px; }
.visa-card:hover{ transform:translateY(-10px); box-shadow:var(--shadow-strong); border-color:rgba(229,57,53,.28); }
.visa-card:hover::after{ transform:scale(1.35); }

/* -------------------- Why choose / timeline -------------------- */
.feature-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:24px; }
.feature-card{ background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding:30px 24px; transition: all .4s var(--ease); }
.feature-card:hover{ background: rgba(229,57,53,0.12); border-color: rgba(229,57,53,0.4); transform: translateY(-8px); }
.feature-card i{ font-size:1.7rem; color: var(--gold-soft); margin-bottom:16px; display:block; }
.feature-card h4{ color:var(--white); font-size:1.02rem; margin-bottom:8px; }
.feature-card p{ color: rgba(255,255,255,0.6); font-size:.85rem; margin:0; }

/* -------------------- Process -------------------- */
.process-track{ position:relative; display:grid; grid-template-columns: repeat(6,1fr); gap:20px; }
.process-track::before{ content:''; position:absolute; top:38px; left:5%; right:5%; height:2px; background: repeating-linear-gradient(90deg, var(--red) 0 10px, transparent 10px 20px); z-index:0; }
.process-step{ position:relative; z-index:1; text-align:center; }
.process-num{ width:76px; height:76px; margin:0 auto 18px; border-radius:50%; background: var(--white); border:2px solid var(--red); color:var(--red); font-family:var(--font-display); font-size:1.5rem; display:flex; align-items:center; justify-content:center; transition: all .4s var(--ease); }
.process-step:hover .process-num{ background: var(--red); color:var(--white); transform: scale(1.1); }
.process-step h4{ font-size:.98rem; margin-bottom:6px; }
.process-step p{ font-size:.8rem; color:var(--gray-600); }

/* -------------------- Stats -------------------- */
.stats-strip{ background: linear-gradient(120deg, var(--red), var(--red-dark)); padding:48px 0; }
.stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:0; text-align:center; align-items:stretch; }
.stats-grid .stat{ min-height:132px; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:18px 22px; border-right:1px solid rgba(255,255,255,0.2); }
.stats-grid .stat:last-child{ border-right:0; }
.stats-grid .stat b{ font-family:var(--font-body); font-size: clamp(3.8rem,6.5vw,5.8rem); line-height:1; color:var(--white); display:block; margin-bottom:10px; font-weight:700; letter-spacing:0; }
.stats-grid .stat b span{ font-size:inherit; line-height:inherit; letter-spacing:0; }
.stats-grid .stat span:last-child{ color: rgba(255,255,255,0.94); font-size: clamp(.9rem,1.2vw,1rem); font-weight:700; text-transform:uppercase; letter-spacing:.14em; }

/* -------------------- Testimonials -------------------- */
.testi-track{ display:flex; gap:26px; overflow:hidden; }
.testi-card{ min-width:100%; background: var(--white); border-radius: var(--radius-lg); padding:40px; box-shadow: var(--shadow-soft); text-align:center; max-width:680px; margin:0 auto; }
.testi-card .stars{ color:var(--gold); margin-bottom:18px; letter-spacing:4px; }
.testi-card p.quote{ font-size:1.08rem; color:var(--navy); font-style:italic; margin-bottom:26px; }
.testi-person{ display:flex; align-items:center; justify-content:center; gap:14px; }
.testi-person img{ width:52px; height:52px; border-radius:50%; object-fit:cover; }
.testi-person b{ display:block; font-size:.92rem; }
.testi-person span{ font-size:.78rem; color:var(--gray-600); }
.testi-dots{ display:flex; justify-content:center; gap:9px; margin-top:30px; }
.testi-dots button{ width:9px; height:9px; border-radius:50%; background: var(--gray-100); transition: all .3s; }
.testi-dots button.active{ background:var(--red); width:26px; border-radius:5px; }

/* -------------------- FAQ -------------------- */
.faq-list{ max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ background:var(--gray-50); border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--gray-100); }
.faq-q{ display:flex; justify-content:space-between; align-items:center; padding:20px 24px; cursor:pointer; font-weight:600; font-size:.98rem; }
.faq-q i{ color:var(--red); transition: transform .35s var(--ease); }
.faq-item.open .faq-q i{ transform: rotate(135deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p{ padding:0 24px 22px; color:var(--gray-600); font-size:.92rem; }

/* -------------------- Book consultation form -------------------- */
.book-wrap{ display:grid; grid-template-columns: .9fr 1.1fr; gap:0; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-strong); }
.book-info{ background: var(--navy); color:var(--white); padding:56px 44px; position:relative; overflow:hidden; }
.book-info::after{ content:''; position:absolute; width:260px; height:260px; background: radial-gradient(circle, rgba(229,57,53,0.35), transparent 70%); bottom:-80px; right:-80px; border-radius:50%; }
.book-info h3{ color:var(--white); font-size:1.7rem; margin-bottom:16px; }
.book-info p{ color: rgba(255,255,255,0.7); margin-bottom:30px; }
.book-info ul li{ display:flex; gap:12px; align-items:center; margin-bottom:14px; font-size:.9rem; color: rgba(255,255,255,0.85); }
.book-info ul i{ color:var(--gold-soft); }
.book-form{ background:var(--white); padding:56px 44px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:.82rem; font-weight:600; color:var(--navy); }
.field input, .field select, .field textarea{
  border:1.5px solid var(--gray-100); border-radius: var(--radius-sm); padding:13px 16px; font-family:inherit; font-size:.92rem;
  transition: border-color .3s, box-shadow .3s; background:var(--gray-50);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--red); box-shadow: 0 0 0 4px rgba(229,57,53,0.1); background:var(--white); }
.field.error input, .field.error select{ border-color:var(--red-dark); }
.field .err-msg{ font-size:.74rem; color:var(--red-dark); display:none; }
.field.error .err-msg{ display:block; }
.book-form .btn-primary{ width:100%; justify-content:center; margin-top:6px; }

/* Success popup */
.popup-overlay{ position:fixed; inset:0; background: rgba(15,23,42,0.6); backdrop-filter: blur(6px); z-index:9990; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition: all .35s var(--ease); }
.popup-overlay.show{ opacity:1; visibility:visible; }
.popup-box{ background:var(--white); border-radius: var(--radius-lg); padding:46px; text-align:center; max-width:380px; transform: scale(.85); transition: transform .4s var(--ease); }
.popup-overlay.show .popup-box{ transform:scale(1); }
.popup-box i{ font-size:3rem; color:#2E7D32; margin-bottom:16px; }
.popup-box h3{ margin-bottom:10px; }
.popup-box p{ color:var(--gray-600); margin-bottom:24px; font-size:.9rem; }
.popup-box button{ position:absolute; top:16px; right:20px; font-size:1.3rem; color:var(--gray-400); }

/* -------------------- Map + contact -------------------- */
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); height:420px; }
.map-frame iframe{ width:100%; height:100%; border:0; filter: grayscale(.2) contrast(1.05); }
.contact-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; margin-top:50px; }
.contact-card{ background:var(--white); border-radius: var(--radius-md); padding:28px; text-align:center; box-shadow: var(--shadow-soft); transition: transform .35s var(--ease); }
.contact-card:hover{ transform: translateY(-8px); }
.contact-card i{ width:54px; height:54px; border-radius:50%; background: linear-gradient(135deg,var(--red),var(--red-dark)); color:var(--white); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; font-size:1.2rem; }
.contact-card h4{ font-size:1rem; margin-bottom:8px; }
.contact-card p{ font-size:.86rem; color:var(--gray-600); }

/* -------------------- Footer -------------------- */
footer.site-footer{ background: var(--navy); color: rgba(255,255,255,0.7); padding-top:80px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer-grid h4{ color:var(--white); font-size:1rem; margin-bottom:20px; }
.footer-grid p{ font-size:.88rem; }
.footer-about .logo{ margin-bottom:18px; }
.site-footer .logo{ color:var(--white); }
.site-footer .logo small{ color:rgba(255,255,255,0.55); }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{ width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; transition: all .3s var(--ease); }
.footer-social a:hover{ background:var(--red); border-color:var(--red); transform: translateY(-4px); }
.footer-links li{ margin-bottom:11px; font-size:.88rem; }
.footer-links a{ transition: color .25s, padding-left .25s; }
.footer-links a:hover{ color:var(--red); padding-left:6px; }
.newsletter-form{ display:flex; margin-top:16px; border-radius:50px; overflow:hidden; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); }
.newsletter-form input{ flex:1; background:transparent; border:0; padding:13px 18px; color:var(--white); font-size:.85rem; }
.newsletter-form input::placeholder{ color: rgba(255,255,255,0.45); }
.newsletter-form button{ background: var(--red); color:var(--white); padding:0 20px; }
.footer-bottom{ display:flex; justify-content:space-between; padding:26px 0; font-size:.82rem; flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color: rgba(255,255,255,0.6); margin-left:18px; }
.footer-bottom a:hover{ color:var(--white); }

/* -------------------- Floating action buttons -------------------- */
.fab-group{ position:fixed; right:26px; bottom:26px; display:flex; flex-direction:column; gap:14px; z-index:850; }
.fab{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--white); font-size:1.35rem; box-shadow: var(--shadow-soft); transition: transform .3s var(--ease); }
.fab.whatsapp{ background:#25D366; }
.fab.call{ background: var(--red); animation: pulseRing 2.4s ease-in-out infinite; }
.fab:hover{ transform: scale(1.1) translateY(-3px); }
.back-top{ width:48px; height:48px; border-radius:50%; background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transform: translateY(10px); transition: all .35s var(--ease); }
.back-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }

/* -------------------- Page hero (inner pages) -------------------- */
.page-hero{ background: var(--navy); position:relative; overflow:hidden; padding:170px 0 90px; color:var(--white); text-align:center; }
.page-hero h1{ color:var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom:14px; }
.page-hero .crumbs{ color: rgba(255,255,255,0.6); font-size:.88rem; }
.page-hero .crumbs a{ color: var(--gold-soft); }
.page-hero .crumbs i{ font-size:.65rem; margin:0 8px; }

/* -------------------- Detail pages -------------------- */
.detail-grid{ display:grid; grid-template-columns: 1.1fr .9fr; gap:40px; align-items:start; }
.detail-panel{ background:var(--gray-50); border:1px solid var(--gray-100); border-radius:var(--radius-lg); padding:34px; }
.detail-panel h3{ margin-bottom:14px; }
.detail-panel p{ color:var(--gray-600); margin-bottom:18px; }
.check-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:22px; }
.check-item{ display:flex; gap:12px; align-items:flex-start; background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-md); padding:18px; }
.check-item i{ color:var(--red); margin-top:4px; }
.image-band{ min-height:360px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); }
.image-band img{ width:100%; height:100%; object-fit:cover; }
.legal-copy{ max-width:900px; margin:0 auto; color:var(--gray-600); }
.legal-copy h2{ margin:34px 0 12px; }

/* Reveal base state (JS toggles .in-view) */
[data-reveal]{ opacity:0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in-view{ opacity:1; transform:none; }
[data-reveal="scale"]{ transform: scale(.92); }
[data-reveal="scale"].in-view{ transform: scale(1); }
[data-reveal="left"]{ transform: translateX(-50px); }
[data-reveal="left"].in-view{ transform:none; }
[data-reveal="right"]{ transform: translateX(50px); }
[data-reveal="right"].in-view{ transform:none; }
