@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&display=swap');

/* =========================================================
   AdThrust LLC — Global Stylesheet
   Brand colors derived from the logo: navy #1B2A6B + red #E1251B
   ========================================================= */

:root {
  /* Brand palette */
  --navy: #1B2A6B;
  --navy-dark: #0F1A45;
  --navy-light: #2c3d8f;
  --red: #E1251B;
  --red-dark: #b91d15;
  --green: #14b866;
  --ink: #1a1f36;
  --muted: #5b6376;
  --line: #e4e8f2;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-soft-2: #eef2fb;
  --white: #ffffff;

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(15, 26, 69, 0.06);
  --shadow: 0 12px 34px rgba(15, 26, 69, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 26, 69, 0.16);
  --gradient: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 60%, var(--red) 140%);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: 'Sora', 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

/* Fluid root size — text scales gently with the screen (≈15px mobile → 16px desktop) */
html { scroll-behavior: smooth; font-size: clamp(15px, 0.35vw + 14px, 16px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; color: var(--navy); letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Responsive side gutters — tighter on phones, roomier on large screens */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(18px, 4vw, 44px); }

/* Responsive vertical rhythm */
.section { padding: clamp(58px, 7vw, 96px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-dark); color: #dfe4f5; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; cursor: pointer;
  border: 2px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(225, 37, 27, 0.32); }
.btn--primary:hover { background: var(--red-dark); box-shadow: 0 16px 30px rgba(225, 37, 27, 0.40); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(27,42,107,.28); }
.btn--navy:hover { background: var(--navy-dark); }
.btn--lg { padding: 17px 36px; font-size: 16px; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height .35s var(--ease); }
.header.scrolled .brand img { height: 40px; }
.brand span { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--navy); position: relative; padding: 6px 0; transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* When header sits on a dark hero and is NOT scrolled, use light text */
.header:not(.scrolled) .nav-links a,
.header:not(.scrolled) .brand span { color: #fff; }
.header:not(.scrolled) .nav-links a:hover { color: #fff; }

.nav-cta { display: inline-flex; }
/* CTA button text must stay white in every header state (scrolled, hover, active) */
.header .nav-links a.nav-cta,
.header .nav-links a.nav-cta:hover,
.header .nav-links a.nav-cta.active { color: #fff !important; }
.header .nav-links a.nav-cta::after { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1100; }
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: var(--navy); transition: transform .3s var(--ease), opacity .3s; }
.header:not(.scrolled) .hamburger span { background: #fff; }
.mobile-open .hamburger span { background: var(--navy); }
.mobile-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 180px 0 0; overflow: hidden;
  background: var(--gradient); color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 15%, rgba(225,37,27,.38), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(255,255,255,.14), transparent 48%);
  animation: floatGlow 12s ease-in-out infinite alternate;
}
/* subtle grid texture */
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(circle at 70% 40%, #000, transparent 70%);
          mask-image: radial-gradient(circle at 70% 40%, #000, transparent 70%);
}
@keyframes floatGlow { from { transform: translate(0,0) scale(1); } to { transform: translate(-2%, 2%) scale(1.06); } }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 30px; align-items: center; }
.hero-copy { padding-bottom: 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500; margin-bottom: 22px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(20,184,102,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(20,184,102,.6);} 70%{ box-shadow: 0 0 0 10px rgba(20,184,102,0);} 100%{ box-shadow:0 0 0 0 rgba(20,184,102,0);} }
.hero h1 { font-size: clamp(1.95rem, 3.3vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; color: #fff; margin-bottom: 16px; }
.hero h1 .accent { position: relative; background: linear-gradient(100deg, #ffd7d4, #ff8a80); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: .97rem; line-height: 1.62; color: rgba(255,255,255,.9); max-width: 510px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-metrics { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero-metrics .m b { font-family: var(--font-head); font-weight: 800; font-size: 1.65rem; display: block; color: #fff; line-height: 1; }
.hero-metrics .m span { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 6px; display: block; }

/* Hero visual — circular-framed professional portrait + floating cards */
.hero-visual { position: relative; align-self: center; display: flex; align-items: center; justify-content: center; }
.hero-photo { position: relative; width: 100%; max-width: 360px; aspect-ratio: 1 / 1; display: flex; justify-content: center; align-items: flex-end; }
/* circular brand disc behind the portrait */
.hero-photo::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.28), rgba(255,255,255,.08) 55%, rgba(255,255,255,0) 72%),
              linear-gradient(180deg, rgba(225,37,27,.35), rgba(27,42,107,.15));
  box-shadow: inset 0 0 60px rgba(255,255,255,.18);
  z-index: 0;
}
/* dashed ring accent */
.hero-photo::after {
  content: ''; position: absolute; inset: -14px; border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,.35); z-index: 0;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-photo img {
  position: relative; z-index: 2; width: auto; max-width: 108%; max-height: 118%;
  display: block; margin-bottom: -2%;
  filter: drop-shadow(0 20px 32px rgba(0,0,0,.30));
  animation: heroRise 1s var(--ease) both;
}
@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.float-card {
  position: absolute; z-index: 3; background: rgba(255,255,255,.97); color: var(--ink);
  border-radius: 13px; padding: 11px 14px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; backdrop-filter: blur(6px);
  animation: floatY 4s ease-in-out infinite;
}
.float-card .fc-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.float-card .fc-ic svg { width: 18px; height: 18px; }
.float-card b { font-family: var(--font-head); font-weight: 700; font-size: .98rem; display: block; line-height: 1.1; color: var(--navy); }
.float-card span { font-size: 11.5px; color: var(--muted); }
.float-card--1 { top: 20%; left: -8%; animation-delay: .2s; }
.float-card--1 .fc-ic { background: var(--green); }
.float-card--2 { bottom: 24%; right: -9%; animation-delay: 1.4s; }
.float-card--2 .fc-ic { background: var(--red); }
.float-card--3 { display: none; }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

/* Wave divider */
.wave { display: block; width: 100%; height: auto; margin-top: -1px; }

/* ---------- Section headings ---------- */
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head--left { margin-left: 0; text-align: left; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.card::before { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; background: var(--bg-soft-2); color: var(--navy); margin-bottom: 20px; transition: background .35s, color .35s; }
.card:hover .icon { background: var(--navy); color: #fff; }
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .97rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--red); font-weight: 600; font-family: var(--font-head); font-size: .92rem; }
.card .more svg { transition: transform .25s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* ---------- Services showcase (homepage) ---------- */
.services-showcase { position: relative; overflow: hidden; }
.services-showcase::before {
  content: ''; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,37,27,.10), transparent 68%); pointer-events: none;
}
.services-showcase::after {
  content: ''; position: absolute; bottom: -140px; left: -120px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,42,107,.10), transparent 68%); pointer-events: none;
}
.services-showcase .container { position: relative; z-index: 1; }
.services-showcase .grid-3 { counter-reset: svc; }

.services-showcase .grid-3 { gap: 20px; max-width: 1020px; margin: 0 auto; }
.services-showcase .card { counter-increment: svc; border-radius: 16px; padding: 24px 22px 22px; background: #fff; }
.services-showcase .card .icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px; }
.services-showcase .card .icon svg { width: 23px; height: 23px; }
.services-showcase .card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.services-showcase .card p { font-size: .9rem; }
.services-showcase .card .more { margin-top: 12px; font-size: .86rem; }
.services-showcase .card::after {
  content: counter(svc, decimal-leading-zero); position: absolute; top: 14px; right: 18px;
  font-family: var(--font-head); font-weight: 800; font-size: 2.3rem; line-height: 1;
  color: var(--navy); opacity: .07; transition: opacity .35s var(--ease), color .35s;
}
.services-showcase .card:hover { transform: translateY(-10px); box-shadow: 0 26px 52px rgba(15,26,69,.17); }
.services-showcase .card:hover::after { opacity: .13; color: var(--red); }

.services-showcase .card .icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  box-shadow: 0 10px 22px rgba(27,42,107,.30);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .4s var(--ease);
}
.services-showcase .card:hover .icon {
  background: linear-gradient(135deg, var(--red), #ff6f66); color: #fff;
  box-shadow: 0 12px 26px rgba(225,37,27,.38); transform: rotate(-6deg) scale(1.06);
}
.services-showcase .card h3 { transition: color .3s; }
.services-showcase .card:hover h3 { color: var(--red); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.stat b { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; display: block; line-height: 1; white-space: nowrap; }
.stat b .plus { color: var(--red); }
.stat span { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: 8px; display: block; }

/* ---------- Stats — attractive animated variant ---------- */
.stats-section .section-head h2 { color: #fff; }
.stats-section .section-head p { color: rgba(255,255,255,.8); }
.stats-section .stat {
  position: relative; overflow: hidden; padding: 38px 22px 30px;
  border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s, border-color .4s;
}
.stats-section .stat:hover { transform: translateY(-9px); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.26); box-shadow: 0 26px 52px rgba(0,0,0,.38); }
.stats-section .stat-ic {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%; position: relative; z-index: 1;
  display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.28);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  animation: statIconFloat 4s ease-in-out infinite;
}
.stats-section .stat:nth-child(2) .stat-ic { animation-delay: .6s; }
.stats-section .stat:nth-child(3) .stat-ic { animation-delay: 1.2s; }
.stats-section .stat:nth-child(4) .stat-ic { animation-delay: 1.8s; }
.stats-section .stat-ic svg { width: 26px; height: 26px; transition: transform .5s var(--ease); }
.stats-section .stat:hover .stat-ic { animation: none; transform: rotate(-8deg) scale(1.12); box-shadow: 0 14px 30px rgba(27,42,107,.55); }
@keyframes statIconFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-7px); }
}
.stats-section .stat b { font-size: clamp(2.1rem, 4vw, 3rem); margin-top: 4px; }
.stats-section .stat > span { font-size: .98rem; color: rgba(255,255,255,.82); }

/* Impact — "Our Unique Value" two-column intro */
.impact-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.impact-copy h2 { color: #fff; font-size: clamp(1.55rem, 2.8vw, 2.25rem); line-height: 1.2; margin-bottom: 16px; }
.impact-copy p { color: rgba(255,255,255,.82); font-size: .98rem; margin-bottom: 14px; }
.impact-copy .btn { margin-top: 14px; }
.impact-art { position: relative; }
.impact-art svg { width: 100%; height: auto; display: block; animation: floatY 5s ease-in-out infinite; }
@media (max-width: 900px) {
  .impact-intro { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .impact-copy p { margin-left: auto; margin-right: auto; max-width: 560px; }
  .impact-art { max-width: 420px; margin: 0 auto; }
}

/* ---------- Why us / feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: grid; gap: 20px; margin-top: 26px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .fi { flex: 0 0 46px; height: 46px; border-radius: 12px; background: var(--bg-soft-2); color: var(--navy); display: grid; place-items: center; }
.feature .fi svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.08rem; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: .95rem; }
.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; background: var(--gradient); min-height: 380px; display: grid; place-items: center; color: #fff; padding: 40px; }
.media-frame .mf-inner { text-align: center; }
.media-frame .mf-inner .big { font-family: var(--font-head); font-size: 3.4rem; font-weight: 800; }

/* Who We Are — photo background band */
.who-we-are { background-size: cover; background-position: center; background-attachment: fixed; }
.who-we-are h2, .who-we-are p { text-shadow: 0 2px 12px rgba(15,26,69,.45); }
@media (max-width: 760px) { .who-we-are { background-attachment: scroll; } }

/* image-filled panel (Why Choose Us) */
.media-frame--img { padding: 0; background: var(--navy-dark); min-height: 440px; }
.media-frame--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* Services page — smaller cards + animations */
.services-page .grid-3 { gap: 20px; max-width: 1020px; margin: 0 auto; }
.services-page .card { padding: 24px 22px 22px; border-radius: 16px; }
.services-page .card .icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  box-shadow: 0 8px 18px rgba(27,42,107,.28);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .45s var(--ease);
}
.services-page .card .icon svg { width: 23px; height: 23px; }
.services-page .card h3 { font-size: 1.12rem; margin-bottom: 8px; transition: color .3s; }
.services-page .card p { font-size: .9rem; }
.services-page .card:hover { transform: translateY(-8px); box-shadow: 0 24px 46px rgba(15,26,69,.16); }
.services-page .card:hover .icon { background: linear-gradient(135deg, var(--red), #ff6f66); box-shadow: 0 12px 24px rgba(225,37,27,.35); transform: rotate(-8deg) scale(1.08); }
.services-page .card:hover h3 { color: var(--red); }
/* shine sweep on hover */
.services-page .card::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 65%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.services-page .card:hover::after { left: 150%; transition: left .85s var(--ease); }

/* ============ ABOUT PAGE — attractive cards + animations ============ */
/* Story stat panel with animated ring */
.media-frame--stat { position: relative; overflow: hidden; }
.media-frame--stat .stat-ring {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.30); top: 50%; left: 50%;
  transform: translate(-50%,-50%); animation: spin 26s linear infinite;
}
.media-frame--stat::after {
  content: ''; position: absolute; width: 210px; height: 210px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18); top: 50%; left: 50%; transform: translate(-50%,-50%);
  box-shadow: 0 0 0 0 rgba(255,255,255,.25); animation: pulseRing 3s ease-out infinite;
}
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.28);} 70% { box-shadow: 0 0 0 26px rgba(255,255,255,0);} 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0);} }
.media-frame--stat .mf-inner { position: relative; z-index: 2; }

/* "What Drives Us" — full-section dartboard background */
.drives-us { background-size: cover; background-position: center; background-attachment: fixed; }
.drives-us .section-head h2 { color: #fff; }
.drives-us .section-head p { color: rgba(255,255,255,.85); }
@media (max-width: 760px) { .drives-us { background-attachment: scroll; } }

/* Mission / Vision / Values cards — gradient icons + hover animation + shine */
.about-cards .card { overflow: hidden; }
.about-cards .card .icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  box-shadow: 0 10px 22px rgba(27,42,107,.28);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .45s var(--ease);
}
.about-cards .card:hover { transform: translateY(-9px); box-shadow: 0 26px 50px rgba(15,26,69,.17); }
.about-cards .card:hover .icon { background: linear-gradient(135deg, var(--red), #ff6f66); box-shadow: 0 14px 26px rgba(225,37,27,.36); transform: rotate(-8deg) scale(1.08); }
.about-cards .card:hover h3 { color: var(--red); }
.about-cards .card h3 { transition: color .3s; }
.about-cards .card::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 65%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.about-cards .card:hover::after { left: 150%; transition: left .85s var(--ease); }

/* Why Choose Us — animated feature tiles */
.about-features .feature {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 22px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.about-features .feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.about-features .feature .fi {
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  transition: background .35s var(--ease), transform .45s var(--ease), box-shadow .35s;
}
.about-features .feature:hover .fi { background: linear-gradient(135deg, var(--red), #ff6f66); transform: rotate(-8deg) scale(1.08); box-shadow: 0 12px 22px rgba(225,37,27,.32); }
.about-features .feature:hover h4 { color: var(--red); }
.about-features .feature h4 { transition: color .3s; }

/* Why Choose section — compact text + smaller image box */
.why-choose .split { gap: 42px; align-items: center; }
.why-choose h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.why-choose > .container > .reveal > p { font-size: .95rem; }
.why-choose .feature-list { gap: 15px; margin-top: 22px; }
.why-choose .feature .fi { flex: 0 0 40px; height: 40px; border-radius: 10px; }
.why-choose .feature .fi svg { width: 19px; height: 19px; }
.why-choose .feature h4 { font-size: 1rem; }
.why-choose .feature p { font-size: .88rem; }
.why-choose .btn { margin-top: 24px !important; padding: 12px 24px; font-size: 14px; }
.why-choose .media-frame--img { min-height: 360px; }

/* photo-backed panel (partnership image) */
.media-frame--photo { background-size: cover; background-position: center; place-items: end start; min-height: 420px; padding: 32px; }
.media-frame--photo .mf-badge { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); border-radius: 14px; padding: 18px 22px; max-width: 300px; }
.media-frame--photo .mf-badge b { font-family: var(--font-head); font-weight: 800; font-size: 2.8rem; color: #fff; display: block; line-height: 1; }
.media-frame--photo .mf-badge span { color: rgba(255,255,255,.9); font-size: .95rem; display: block; margin-top: 8px; }

/* ---------- Process steps (connected timeline) ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
/* dashed connector line running behind the badges (desktop) */
.steps::before {
  content: ''; position: absolute; top: 64px; left: 12.5%; right: 12.5%; height: 3px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--navy) 0 9px, transparent 9px 18px); opacity: .28;
}
.step {
  position: relative; z-index: 1; padding: 30px 22px 26px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.step::before { content: ''; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--gradient); border-radius: 18px 18px 0 0; transform: scaleX(0); transition: transform .4s var(--ease); }
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.step:hover::before { transform: scaleX(1); }
.step .num {
  width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; line-height: 1;
  background: var(--gradient); color: #fff !important; -webkit-text-fill-color: #fff;
  -webkit-background-clip: border-box; background-clip: border-box;
  border: 4px solid var(--bg-soft); box-shadow: 0 10px 22px rgba(27,42,107,.30);
  transition: transform .45s var(--ease), box-shadow .35s var(--ease);
}
.step:hover .num { transform: scale(1.1) rotate(6deg); box-shadow: 0 14px 26px rgba(225,37,27,.34); }
.step h4 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .9rem; }
@media (max-width: 980px) { .steps::before { display: none; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--gradient); color: #fff; border-radius: 26px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-band--img { background-size: cover; background-position: center; }
.cta-band--img h2, .cta-band--img p { text-shadow: 0 2px 12px rgba(9,15,40,.5); }
.cta-band::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 85% 30%, rgba(255,255,255,.16), transparent 40%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,3.6vw,2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 28px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-info .ci { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.contact-info .ci .ci-ic { flex: 0 0 50px; height: 50px; border-radius: 12px; background: var(--navy); color:#fff; display: grid; place-items: center; }
.contact-info .ci .ci-ic svg { width: 22px; height: 22px; }
.contact-info .ci h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-info .ci p, .contact-info .ci a { color: var(--muted); font-size: .97rem; }
.contact-info .ci a:hover { color: var(--red); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: 7px; color: var(--navy); }
.field label .req { color: var(--red); }
.field label .optional { color: var(--muted); font-weight: 400; font-size: .85em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .97rem; color: var(--ink); background: #fbfcfe; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(27,42,107,.10); background:#fff; }
.field textarea { resize: vertical; min-height: 120px; }

.consent { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 16px; margin-bottom: 20px; }
.consent input { margin-top: 4px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--red); }
.consent label { font-size: .82rem; color: var(--muted); line-height: 1.55; font-family: var(--font-body); }
.consent label a { color: var(--navy); font-weight: 600; text-decoration: underline; }

.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-status { display: none; padding: 13px 16px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .92rem; font-weight: 500; }
.form-status.show { display: block; animation: fadeInUp .4s var(--ease); }
.form-status.success { background: #e6f9f0; color: #0b7d47; border: 1px solid #b8ebd2; }
.form-status.error { background: #fdeceb; color: var(--red-dark); border: 1px solid #f6c9c6; }

.map-frame { border: 0; width: 100%; height: 320px; border-radius: var(--radius); margin-top: 44px; box-shadow: var(--shadow-sm); }

/* ---------- Legal pages ---------- */
.legal { padding: 150px 0 90px; }
.legal .container { max-width: 900px; }
.legal h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.legal h3 { font-size: 1.12rem; margin: 22px 0 8px; }
.legal p, .legal li { color: #3a4258; margin-bottom: 12px; font-size: 1rem; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--red); text-decoration: underline; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--gradient); color: #fff; padding: 160px 0 90px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 75% 25%, rgba(225,37,27,.30), transparent 45%); }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero--img { background-size: cover; background-position: center; }
.page-hero--img::before { background: radial-gradient(circle at 75% 25%, rgba(225,37,27,.22), transparent 50%); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem,4.5vw,3.2rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: .9rem; color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: #b9c1e0; padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer .brand span { color: #fff; }
.footer p { font-size: .94rem; color: #9aa4cc; margin-top: 16px; max-width: 320px; }
.footer h5 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 18px; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .94rem; color: #b9c1e0; transition: color .2s, padding .2s; }
.footer ul a:hover { color: #fff; padding-left: 4px; }
.footer .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer .socials a:hover { background: var(--red); transform: translateY(-3px); }
.footer .socials svg { width: 18px; height: 18px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .93rem; }
.footer-contact svg { width: 17px; height: 17px; margin-top: 3px; flex: 0 0 auto; color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .87rem; color: #8b95bd; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(14px);} to { opacity:1; transform:none; } }

/* Back to top */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s var(--ease); z-index: 900; border: 0; cursor: pointer; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding-top: 150px; text-align: center; }
  .hero .container { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding-bottom: 40px; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-metrics { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-photo img { max-height: 480px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: #fff;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    padding: 40px; box-shadow: -10px 0 40px rgba(15,26,69,.15);
    transform: translateX(105%); transition: transform .38s var(--ease); z-index: 1050;
  }
  .mobile-open .nav-links { transform: translateX(0); }
  .nav-links a { color: var(--navy) !important; font-size: 18px; }
  .nav-links .nav-cta { margin-top: 6px; }
  .hamburger { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .hero { padding-top: 130px; }
  .hero-photo img { max-height: 400px; }
  .float-card { padding: 10px 12px; }
  .float-card b { font-size: .95rem; }
  .float-card--1 { left: -2%; }
  .float-card--2 { right: -2%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
