/* =========================================================
   ASVA TRANSPORT SOLUTIONS (OPC) PVT LTD
   Premium Corporate Website — Core Stylesheet
   Palette: Primary #163B72 | Secondary #2563EB | Accent #F59E0B
   Fonts: Poppins (headings) | Inter (body) | Montserrat (accents)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --primary: #163B72;
  --primary-dark: #0E2A54;
  --primary-900: #0A1F40;
  --secondary: #2563EB;
  --secondary-light: #3B82F6;
  --accent: #F59E0B;
  --accent-dark: #D97706;

  --sky: #4A6FB5;          /* horse-blue mid tone */
  --sky-light: #6E8FD0;

  --ink: #0F1B2D;
  --text: #1F2937;
  --muted: #5B6577;
  --line: #E5EAF2;

  --bg: #FFFFFF;
  --bg-soft: #F5F7FB;
  --bg-gray: #EEF2F8;

  --grad-blue: linear-gradient(135deg, #163B72 0%, #2563EB 100%);
  --grad-deep: linear-gradient(135deg, #0A1F40 0%, #163B72 55%, #2563EB 100%);
  --grad-accent: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);

  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);

  --shadow-sm: 0 4px 14px rgba(16, 42, 84, 0.08);
  --shadow-md: 0 12px 30px rgba(16, 42, 84, 0.12);
  --shadow-lg: 0 24px 60px rgba(16, 42, 84, 0.18);
  --shadow-accent: 0 12px 28px rgba(245, 158, 11, 0.35);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --nav-h: 90px;
  --topbar-h: 44px;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-accent: 'Montserrat', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--ff-head); color: var(--ink); font-weight: 700; line-height: 1.2; margin: 0 0 .6rem; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--grad-deep); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.row-gap > [class*="col-"] { margin-bottom: 26px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-accent); font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; font-size: .74rem; color: var(--secondary);
  background: rgba(37, 99, 235, .09); padding: 7px 16px; border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.section--dark .eyebrow { color: #cfe0ff; background: rgba(255,255,255,.1); }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.9rem); letter-spacing: -.5px; }
.section-title span { color: var(--secondary); }
.section-lead { font-size: 1.08rem; color: var(--muted); max-width: 720px; }
.section--dark .section-lead { color: rgba(255,255,255,.82); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-accent); font-weight: 600; font-size: .95rem;
  padding: 14px 28px; border-radius: var(--radius-pill); border: 2px solid transparent;
  cursor: pointer; transition: all .3s var(--ease); white-space: nowrap; line-height: 1;
  position: relative;
}
.btn i { font-size: .95em; }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }
.btn-accent { background: var(--grad-accent); color: #1a1200; box-shadow: var(--shadow-accent); }
.btn-accent:hover { transform: translateY(-3px); filter: brightness(1.05); color: #1a1200; }
.btn-outline { background: transparent; border-color: var(--secondary); color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
.btn-ghost-light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: #fff; backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); color: var(--secondary); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 17px 36px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn.is-loading { pointer-events: none; opacity: .8; }
.btn.is-loading::after {
  content: ""; width: 16px; height: 16px; border: 2px solid currentColor;
  border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--grad-deep); color: #dfe8fb; height: var(--topbar-h);
  font-size: .84rem; font-family: var(--ff-body);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar__info { display: flex; align-items: center; gap: 26px; }
.topbar__info a, .topbar__info span { display: inline-flex; align-items: center; gap: 8px; color: #dfe8fb; }
.topbar__info a:hover { color: var(--accent); }
.topbar__info i { color: var(--accent); }
.topbar__cta { display: flex; align-items: center; gap: 12px; }
.topbar__cta .chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px;
  border-radius: var(--radius-pill); font-weight: 600; font-size: .8rem; transition: all .25s var(--ease);
}
.chip--wa { background: #25D366; color: #063d1b; }
.chip--wa:hover { filter: brightness(1.08); transform: translateY(-1px); color: #063d1b; }
.chip--quote { background: var(--grad-accent); color: #1a1200; }
.chip--quote:hover { transform: translateY(-1px); color: #1a1200; }

/* ---------- Header / Navigation ---------- */
/* z-index MUST stay above .nav__backdrop (1090).
   `position: sticky` + an explicit z-index makes .header a stacking context, so the mobile
   drawer nested inside it (.nav__menu, z-index 1100) cannot rise above a SIBLING of the header.
   At 1000 the backdrop painted over the open drawer and swallowed every tap — its click handler
   is closeDrawer, so tapping a menu link just closed the menu. */
.header {
  position: sticky; top: 0; z-index: 1100; background: #fff;
  border-bottom: 1px solid var(--line); transition: box-shadow .3s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: nowrap; }
.nav__logo { flex: 0 0 auto; }
.nav__logo img { height: 48px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; justify-content: center; }
.nav__menu > li > a {
  display: block; padding: 10px 13px; font-family: var(--ff-accent); font-weight: 600;
  font-size: .93rem; color: var(--ink); border-radius: 10px; position: relative;
}
.nav__menu > li > a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px;
  background: var(--secondary); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__menu > li > a:hover, .nav__menu > li > a.active { color: var(--secondary); }
.nav__menu > li > a:hover::after, .nav__menu > li > a.active::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav__actions .nav__login { white-space: nowrap; }
.nav__actions .btn { padding: 11px 22px; font-size: .9rem; }
.nav__toggle {
  display: none; width: 46px; height: 46px; border: none; background: var(--bg-soft);
  border-radius: 12px; cursor: pointer; color: var(--primary); font-size: 1.35rem;
}
.nav__login { color: var(--primary); font-weight: 600; font-family: var(--ff-accent); }

/* Mobile drawer */
.nav__backdrop {
  position: fixed; inset: 0; background: rgba(10, 31, 64, .5); z-index: 1090;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
}
.nav__backdrop.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(10,31,64,.94) 0%, rgba(22,59,114,.82) 45%, rgba(37,99,235,.42) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 90px 0; max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--glass-bg);
  border: 1px solid var(--glass-border); backdrop-filter: blur(12px); padding: 9px 18px;
  border-radius: var(--radius-pill); font-size: .82rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 22px;
}
.hero__badge i { color: var(--accent); }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); color: #fff; line-height: 1.08; letter-spacing: -1px; }
.hero h1 .grad { background: linear-gradient(90deg, #FBBF24, #F59E0B); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,.9); max-width: 620px; margin: 20px 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 50px; }
.hero__stat b { display: block; font-family: var(--ff-head); font-size: 1.9rem; color: #fff; }
.hero__stat span { font-size: .86rem; color: rgba(255,255,255,.75); }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: calc(var(--nav-h) - 20px) 0 70px; background: var(--grad-deep); color: #fff; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .18;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 59h60M59 0v60' stroke='%23ffffff' stroke-width='.5'/%3E%3C/svg%3E");
}
.page-hero__inner { position: relative; z-index: 2; text-align: center; padding-top: 40px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; margin-inline: auto; font-size: 1.05rem; }
.breadcrumb-nav { display: inline-flex; gap: 10px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 18px; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav i { font-size: .7rem; }

/* ---------- Glass Card ---------- */
.glass {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--radius);
}

/* ---------- Feature / Service Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-blue); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.6rem; color: #fff; background: var(--grad-blue); margin-bottom: 20px;
  box-shadow: var(--shadow-md); transition: transform .4s var(--ease);
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.06); }
.card__icon.is-accent { background: var(--grad-accent); color: #1a1200; }
.card h3 { font-size: 1.24rem; }
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 16px; }
.card__link { font-family: var(--ff-accent); font-weight: 600; color: var(--secondary); display: inline-flex; align-items: center; gap: 8px; }
.card__link i { transition: transform .3s var(--ease); }
.card__link:hover i { transform: translateX(5px); }

/* Compact service tile */
.stile {
  display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); height: 100%;
  transition: all .35s var(--ease);
}
.stile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stile__ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(37,99,235,.1); color: var(--secondary); font-size: 1.25rem; }
.stile h4 { font-size: 1.05rem; margin-bottom: 4px; }
.stile p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ---------- Section header ---------- */
.sec-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }

/* ---------- About visuals ---------- */
.about-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 24px; left: 24px; background: var(--grad-accent); color: #1a1200;
  padding: 18px 24px; border-radius: var(--radius); box-shadow: var(--shadow-md); font-family: var(--ff-head);
}
.about-badge b { font-size: 1.7rem; display: block; line-height: 1; }
.about-badge span { font-size: .82rem; font-weight: 600; }
.mvv { display: grid; gap: 16px; margin-top: 24px; }
.mvv__item { display: flex; gap: 16px; padding: 20px; background: var(--bg-soft); border-radius: var(--radius); border-left: 4px solid var(--secondary); }
.mvv__item i { color: var(--secondary); font-size: 1.4rem; }
.mvv__item h4 { margin-bottom: 4px; }
.mvv__item p { margin: 0; color: var(--muted); font-size: .94rem; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-weight: 500; }
.check-list i { color: #16a34a; margin-top: 4px; }

/* ---------- Counters ---------- */
.counter-strip { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.counter-strip::before { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%); }
.counter { text-align: center; padding: 20px; }
.counter b { font-family: var(--ff-head); font-size: clamp(2.4rem, 4vw, 3.4rem); display: block; line-height: 1; background: linear-gradient(90deg,#fff,#cfe0ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.counter span { display: block; margin-top: 10px; color: rgba(255,255,255,.8); font-family: var(--ff-accent); font-weight: 500; letter-spacing: .5px; }
.counter i { font-size: 1.6rem; color: var(--accent); margin-bottom: 12px; display: block; }

/* ---------- GPS dashboard mockup ---------- */
.gps-dash {
  background: linear-gradient(160deg, #0A1F40, #163B72); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.1); position: relative;
}
.gps-dash__bar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.gps-dash__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.3); }
.gps-dash__bar span:nth-child(1){ background:#ef4444;} .gps-dash__bar span:nth-child(2){ background:#f59e0b;} .gps-dash__bar span:nth-child(3){ background:#22c55e;}
.gps-dash__bar b { margin-left: auto; color: #cfe0ff; font-size: .8rem; font-family: var(--ff-accent); }
.gps-map { position: relative; height: 260px; border-radius: var(--radius); overflow: hidden; background: #0d2247; }
.gps-map img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.gps-pin { position: absolute; width: 16px; height: 16px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 6px rgba(245,158,11,.3); animation: pulse 2s infinite; }
.gps-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 16px; }
.gps-metric { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 12px; text-align: center; }
.gps-metric i { color: var(--accent); font-size: 1.1rem; }
.gps-metric b { display: block; color: #fff; font-family: var(--ff-head); font-size: 1.1rem; margin-top: 6px; }
.gps-metric span { color: rgba(255,255,255,.6); font-size: .72rem; }

/* ---------- Steps / How it works ---------- */
.step { text-align: center; padding: 20px; position: relative; }
.step__num {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line); font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700;
  color: var(--secondary); position: relative; z-index: 2; box-shadow: var(--shadow-sm); transition: all .35s var(--ease);
}
.step:hover .step__num { background: var(--grad-blue); color: #fff; border-color: transparent; transform: scale(1.08); }
.step h4 { font-size: 1.12rem; }
.step p { color: var(--muted); font-size: .93rem; }
.steps-row { position: relative; }
.steps-row::before { content: ""; position: absolute; top: 37px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 12px, transparent 12px 22px); z-index: 1; }

/* ---------- Timeline (process) ---------- */
.timeline { position: relative; max-width: 820px; margin-inline: auto; padding-left: 8px; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 3px; background: linear-gradient(var(--secondary), var(--accent)); border-radius: 3px; }
.tl-item { position: relative; padding: 0 0 34px 66px; }
.tl-item__dot { position: absolute; left: 10px; top: 2px; width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 3px solid var(--secondary); display: grid; place-items: center; color: var(--secondary); font-size: .8rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item h4 { margin-bottom: 4px; }
.tl-item p { color: var(--muted); margin: 0; }

/* ---------- Industries ---------- */
.ind-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 18px;
  text-align: center; box-shadow: var(--shadow-sm); transition: all .35s var(--ease); height: 100%;
}
.ind-tile i { font-size: 2rem; color: var(--secondary); margin-bottom: 14px; transition: all .35s var(--ease); }
.ind-tile span { display: block; font-family: var(--ff-accent); font-weight: 600; font-size: .95rem; color: var(--ink); }
.ind-tile:hover { background: var(--grad-blue); border-color: transparent; transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ind-tile:hover i, .ind-tile:hover span { color: #fff; }

/* ---------- Benefits ---------- */
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit__ic { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: rgba(245,158,11,.14); color: var(--accent-dark); font-size: 1.35rem; }
.benefit h4 { margin-bottom: 4px; font-size: 1.08rem; }
.benefit p { margin: 0; color: var(--muted); font-size: .93rem; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); height: 100%; }
.testi__stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.testi__text { font-size: 1.02rem; color: var(--text); font-style: italic; }
.testi__person { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.testi__person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--line); }
.testi__person b { display: block; font-family: var(--ff-head); }
.testi__person span { font-size: .85rem; color: var(--muted); }
.swiper { padding-bottom: 10px !important; }
.swiper-pagination-bullet-active { background: var(--secondary) !important; }

/* ---------- Logos strip ---------- */
.trust-strip { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .lbl { text-align: center; font-family: var(--ff-accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .78rem; color: var(--muted); margin-bottom: 18px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 44px; align-items: center; opacity: .7; }
.trust-logos span { font-family: var(--ff-head); font-weight: 700; color: var(--primary); font-size: 1.05rem; display: inline-flex; align-items: center; gap: 8px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-deep); color: #fff; border-radius: 0; padding: 84px 0; text-align: center; }
.cta-band::before { content: ""; position: absolute; left: -100px; bottom: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(245,158,11,.3), transparent 70%); }
.cta-band::after { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(59,130,246,.4), transparent 70%); }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.15rem; position: relative; }
.cta-band .hero__actions { justify-content: center; position: relative; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--ff-accent); font-weight: 600; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.form-control, .form-select, textarea.form-control {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--ff-body); font-size: .96rem; color: var(--text); background: var(--bg-soft); transition: all .25s var(--ease);
}
.form-control:focus, .form-select:focus, textarea.form-control:focus { border-color: var(--secondary); background: #fff; box-shadow: 0 0 0 4px rgba(37,99,235,.12); outline: none; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-status { display: none; padding: 14px 18px; border-radius: 12px; font-weight: 500; margin-top: 8px; }
.form-status.ok { display: block; background: #dcfce7; color: #166534; }
.form-status.err { display: block; background: #fee2e2; color: #991b1b; }
.field-error { color: #dc2626; font-size: .82rem; margin-top: 6px; display: none; }
.form-control.invalid, .form-select.invalid { border-color: #dc2626; }

/* ---------- Contact info cards ---------- */
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--bg-soft); border-radius: var(--radius); border: 1px solid var(--line); }
.contact-info-card .ic { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-blue); color: #fff; font-size: 1.2rem; }
.contact-info-card h4 { margin-bottom: 4px; font-size: 1.05rem; }
.contact-info-card p, .contact-info-card a { margin: 0; color: var(--muted); font-size: .94rem; }
.contact-info-card a:hover { color: var(--secondary); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Accordion (FAQ) ---------- */
.accordion-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius) !important; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.accordion-button { font-family: var(--ff-accent); font-weight: 600; font-size: 1.02rem; color: var(--ink); padding: 20px 24px; background: #fff; }
.accordion-button:not(.collapsed) { color: var(--secondary); background: rgba(37,99,235,.05); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--line); }
.accordion-button::after { background-size: 1rem; }
.accordion-body { color: var(--muted); padding: 4px 24px 22px; }
.faq-cat-title { font-size: 1.3rem; margin: 40px 0 20px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.faq-cat-title i { color: var(--accent); }

/* ---------- Legal / rich text pages ---------- */
.legal { background: #fff; }
.legal-body { max-width: 860px; margin-inline: auto; }
.legal-body h2 { font-size: 1.5rem; margin: 38px 0 14px; color: var(--primary); scroll-margin-top: 120px; }
.legal-body h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.legal-body p, .legal-body li { color: var(--text); }
.legal-body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-body ul li { margin-bottom: 8px; }
.legal-meta { background: var(--bg-soft); border-left: 4px solid var(--secondary); padding: 16px 22px; border-radius: 12px; margin-bottom: 30px; font-size: .92rem; color: var(--muted); }
.legal-toc { position: sticky; top: 120px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.legal-toc h4 { font-size: 1rem; margin-bottom: 14px; }
.legal-toc a { display: block; padding: 7px 0; font-size: .9rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.legal-toc a:hover { color: var(--secondary); }
.legal-toc a:last-child { border-bottom: none; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-900); color: #c3cfe4; padding: 72px 0 0; position: relative; }
.footer h5 { color: #fff; font-family: var(--ff-head); font-size: 1.05rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; background: var(--accent); border-radius: 3px; }
.footer__logo { background: #fff; padding: 14px 18px; border-radius: 14px; display: inline-block; margin-bottom: 20px; }
.footer__logo img { height: 40px; }
.footer p { color: #a9b8d4; font-size: .93rem; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: #a9b8d4; font-size: .93rem; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a::before { content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent); font-size: .8rem; }
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .92rem; color: #a9b8d4; }
.footer__contact i { color: var(--accent); margin-top: 4px; }
.footer__map { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.footer__map iframe { width: 100%; height: 160px; border: 0; display: block; filter: grayscale(.3) saturate(1.1); }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; font-size: 1rem; transition: all .3s var(--ease); }
.footer__social a:hover { background: var(--accent); color: #1a1200; transform: translateY(-4px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 56px; padding: 22px 0; }
.footer__bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { margin: 0; font-size: .86rem; color: #91a2c4; }
.footer__bottom .fbottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__bottom .fbottom-links a { font-size: .84rem; color: #91a2c4; }
.footer__bottom .fbottom-links a:hover { color: #fff; }
.footer__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.footer__badges span { font-size: .74rem; background: rgba(255,255,255,.08); padding: 6px 12px; border-radius: 8px; color: #c3cfe4; display: inline-flex; align-items: center; gap: 6px; }
.footer__badges i { color: #22c55e; }

/* ---------- Floating actions ---------- */
.float-wa { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 1.5rem; box-shadow: 0 10px 26px rgba(37,211,102,.5); animation: floaty 3s ease-in-out infinite; }
.float-wa:hover { color: #fff; transform: scale(1.08); }
.back-top { position: fixed; right: 22px; bottom: 90px; z-index: 899; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; border: none; display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all .3s var(--ease); box-shadow: var(--shadow-md); }
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* Floating Request Quote (bottom-left, all pages) */
.float-quote {
  position: fixed; left: 22px; bottom: 22px; z-index: 900;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-pill);
  background: var(--grad-blue); color: #fff; border: none;
  font-family: var(--ff-accent); font-weight: 600; font-size: .93rem; line-height: 1;
  box-shadow: 0 12px 28px rgba(22, 59, 114, .45); overflow: hidden;
}
.float-quote i { color: #FBBF24; font-size: 1rem; }
.float-quote:hover { color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.float-quote::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.float-quote:hover::before { left: 130%; }

/* ---------- Utility ---------- */
.mb-0 { margin-bottom: 0 !important; }
.mt-gap { margin-top: 40px; }
.divider-wave { display: block; width: 100%; height: auto; }
.badge-soft { display: inline-block; background: rgba(37,99,235,.1); color: var(--secondary); font-family: var(--ff-accent); font-weight: 600; font-size: .78rem; padding: 5px 14px; border-radius: var(--radius-pill); }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 6px rgba(245,158,11,.3);} 50% { box-shadow: 0 0 0 14px rgba(245,158,11,0);} }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-8px);} }
