/* ============================================================
   MISHIKAS ELECTRONICS — WordPress Theme CSS
   Brand: #003995 blue | #F5B042 orange | #000000 black
   Fonts: Playfair Display (display) + Poppins (body)
   ============================================================ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --blue: #003995;
  --blue-deep: #002A6E;
  --blue-darker: #001B47;
  --blue-light: #4D7BD6;
  --orange: #F5B042;
  --orange-warm: #E89A2B;
  --bg: #FFFFFF;
  --bg-soft: #F4F7FF;
  --bg-tint: #FAFBFE;
  --border: #E5EAF5;
  --border-strong: #C9D3E8;
  --ink: #000000;
  --ink-mid: #4A5570;
  --ink-soft: #7B8499;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05), 0 1px 1px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px -8px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 24px 48px -16px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.06);
  --shadow-blue: 0 16px 32px -12px rgba(0,57,149,.45);
  --shadow-orange: 0 16px 32px -12px rgba(0,57,149,.45);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ─── BASE RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, .display {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
}
.num { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; position: relative; isolation: isolate; }
.section--tight { padding: 72px 0; }

/* ─── EYEBROW ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--orange); }
.eyebrow--blue { color: var(--blue); }
.eyebrow--blue::before { background: var(--blue); }
.eyebrow--white { color: rgba(255,255,255,.9); }
.eyebrow--white::before { background: var(--orange); }

/* ─── SECTION HEAD ───────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--ink-mid); text-wrap: pretty; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; border: 2px solid transparent; cursor: pointer;
  will-change: transform;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); }
.btn:active:not(:disabled) { transform: translateY(0); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-deep); box-shadow: 0 24px 40px -12px rgba(19,61,141,.55); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--orange:hover { background: var(--orange-warm); }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { background: var(--orange); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--ghost-dark { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--ghost-dark:hover { background: var(--blue); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn__short { display: none; }
.btn__full { display: inline; }
.btn--pulse { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: var(--shadow-orange); }
  50% { box-shadow: 0 16px 32px -12px rgba(246,104,0,.65), 0 0 0 12px rgba(246,104,0,.0); }
}

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(12,23,51,.04);
  transition: box-shadow .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 8px 24px -16px rgba(12,23,51,.18); padding: 10px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav__logo { display: flex; align-items: center; }
.nav__brand-logo { display: block; height: 52px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mid);
  transition: color .2s; position: relative; padding: 6px 0;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width .25s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__ctas { display: flex; align-items: center; gap: 12px; }
.nav .btn--ghost { color: var(--blue); border-color: var(--blue); background: transparent; }
.nav .btn--ghost:hover { background: var(--blue); color: #fff; }

.nav__hamburger {
  display: none; width: 44px; height: 44px;
  background: var(--bg-soft); border-radius: 10px; position: relative;
}
.nav__hamburger span {
  position: absolute; left: 12px; width: 20px; height: 2px;
  background: var(--ink); transition: all .25s var(--ease);
}
.nav__hamburger span:nth-child(1) { top: 16px; }
.nav__hamburger span:nth-child(2) { top: 21px; width: 14px; }
.nav__hamburger span:nth-child(3) { top: 26px; }
.nav__hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ─── MEGA DROPDOWN ──────────────────────────────────── */
.nav__has-mega { position: relative; }
.nav__trigger { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav__chev { transition: transform .25s ease; }
.nav__has-mega.open .nav__chev { transform: rotate(180deg); }
.nav__mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: #fff; border-radius: 14px; padding: 14px;
  box-shadow: 0 24px 60px -20px rgba(0,57,149,.35), 0 8px 24px -8px rgba(0,0,0,.08);
  display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 6px;
  min-width: 520px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  z-index: 100; border: 1px solid rgba(0,57,149,.08);
}
.nav__has-mega.open .nav__mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}
.nav__mega::before {
  content: ""; position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px;
  background: #fff; border-left: 1px solid rgba(0,57,149,.08);
  border-top: 1px solid rgba(0,57,149,.08); border-radius: 3px 0 0 0;
}
.nav__mega__item {
  display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 10px;
  text-decoration: none; color: #0A2456;
  transition: background .18s ease, transform .18s ease;
}
.nav__mega__item:hover { background: rgba(0,57,149,.06); transform: translateX(2px); }
.nav__mega__thumb {
  flex: 0 0 56px; width: 56px; height: 56px; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #f4f7ff, #e8eef9);
}
.nav__mega__thumb img { width: 100%; height: 100%; object-fit: cover; }
.nav__mega__text { display: flex; flex-direction: column; min-width: 0; }
.nav__mega__name { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; color: #003995; letter-spacing: .02em; text-transform: uppercase; }
.nav__mega__tag { font-family: "Poppins", sans-serif; font-size: 11px; color: #5a6478; margin-top: 2px; line-height: 1.3; }

/* ─── MOBILE DRAWER ──────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--blue-deep); z-index: 99;
  display: flex; flex-direction: column;
  padding: 72px 22px 24px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  font-family: "Poppins", sans-serif; font-size: 17px; font-weight: 500;
  color: #fff; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none; letter-spacing: .01em;
}
.mobile-drawer .mobile-ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer .mobile-ctas .btn { width: 100%; padding: 12px 18px; font-size: 14px; border-bottom: 0; }
.mobile-drawer .mobile-contact { margin-top: 28px; color: rgba(255,255,255,.65); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.mobile-drawer .mobile-contact strong { color: #fff; font-size: 18px; display: block; margin-top: 6px; font-family: "Poppins"; font-weight: 600; letter-spacing: 0; text-transform: none; }

/* Mobile accordion (inside drawer) */
.mobile-drawer .mobile-acc { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-drawer .mobile-acc__btn { color: #fff; font-size: 17px; font-weight: 500; font-family: "Poppins"; text-transform: none; letter-spacing: .01em; padding: 14px 0; width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: 0; cursor: pointer; }
.mobile-drawer .mobile-acc__btn svg { transition: transform .25s ease; }
.mobile-drawer .mobile-acc.open .mobile-acc__btn svg { transform: rotate(180deg); }
.mobile-drawer .mobile-acc__panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; display: flex; flex-direction: column; }
.mobile-drawer .mobile-acc.open .mobile-acc__panel { max-height: 600px; padding-bottom: 8px; }
.mobile-drawer .mobile-acc__item { color: rgba(255,255,255,.82); border-left-color: rgba(255,255,255,.2); font-size: 14px; padding: 9px 14px; }
.mobile-drawer .mobile-acc__item:hover { color: #fff; border-left-color: var(--orange); }

/* ─── HERO CAROUSEL ──────────────────────────────────── */
.hero-carousel { position: relative; width: 100%; background: #000; overflow: hidden; }
.hero-carousel__viewport { position: relative; width: 100%; overflow: hidden; }
.hero-carousel__track { display: flex; width: 100%; transition: transform .8s cubic-bezier(.65,.05,.36,1); will-change: transform; }
.hero-carousel__slide { flex: 0 0 100%; width: 100%; }
.hero-carousel__slide-link { display: block; width: 100%; }
.hero-carousel__slide picture { display: block; width: 100%; }
.hero-carousel__slide img { display: block; width: 100%; height: auto; object-fit: cover; object-position: center; }
.hero-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 999px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%); color: #fff;
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.32);
  cursor: pointer; z-index: 5; opacity: 0.8;
  transition: background .2s var(--ease), opacity .2s var(--ease);
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.4);
}
.hero-carousel__btn:hover { background: rgba(255,255,255,0.3); opacity: 1; }
.hero-carousel__btn--prev { left: 22px; }
.hero-carousel__btn--next { right: 22px; }
.hero-carousel__btn svg { width: 20px; height: 20px; }
.hero-carousel__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 5; }
.hero-carousel__dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(255,255,255,.45); border: none; cursor: pointer; transition: all .25s var(--ease); }
.hero-carousel__dot.active { width: 28px; background: var(--blue-light); }

/* ─── MARQUEE ────────────────────────────────────────── */
.marquee { background: var(--blue-darker); padding: 18px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); position: relative; }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; gap: 64px; }
.marquee__item { display: flex; align-items: center; gap: 12px; font-family: "Playfair Display", serif; font-size: 18px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.9); white-space: nowrap; }
.marquee__item .star { color: var(--orange); font-size: 14px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── STATS ──────────────────────────────────────────── */
.stats { background: var(--bg); padding: 72px 0; border-bottom: 1px solid var(--border); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.stat { text-align: center; position: relative; padding: 0 16px; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); width: 1px; height: 64px; background: var(--border); }
.stat__num { font-family: "Playfair Display", serif; font-size: clamp(48px, 5vw, 64px); font-weight: 700; color: var(--blue); line-height: 1; letter-spacing: -0.02em; }
.stat__num .suffix { color: var(--orange); }
.stat__label { font-size: 14px; font-weight: 500; color: var(--ink-mid); margin-top: 10px; letter-spacing: .04em; text-transform: uppercase; }

/* ─── PRODUCTS ───────────────────────────────────────── */
.products { background: #fff; }
.products__footer { text-align: center; margin-top: 48px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; margin-top: 48px; }
.product-card {
  display: flex; flex-direction: column; background: #fff; border-radius: 18px;
  overflow: hidden; text-decoration: none; color: inherit;
  border: 1px solid rgba(0,57,149,.08);
  box-shadow: 0 4px 16px -6px rgba(10,36,86,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(0,57,149,.28); border-color: rgba(0,57,149,.2); }
.product-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: linear-gradient(135deg, #f4f7ff, #e8eef9); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__badge { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.95); color: #003995; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(6px); }
.product-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__name { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 600; color: #0A2456; margin: 0; line-height: 1.15; }
.product-card__tag { font-family: "Poppins", sans-serif; font-size: 13px; color: #5a6478; margin: 0; line-height: 1.5; }
.product-card__caps { display: inline-block; padding: 6px 12px; border-radius: 6px; background: rgba(0,57,149,.06); color: #003995; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .05em; align-self: flex-start; margin-top: 4px; }
.product-card__link { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 8px; color: #003995; font-family: "Poppins", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.product-card__link svg { transition: transform .25s ease; }
.product-card:hover .product-card__link svg { transform: translateX(4px); }

/* ─── WHY DEALERS ────────────────────────────────────── */
.why { background: var(--bg-soft); }
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { background: #fff; border-radius: var(--r-lg); padding: 32px 28px; position: relative; border: 1px solid var(--border); transition: all .3s var(--ease); overflow: hidden; }
.benefit::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--blue); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.benefit:hover::before { transform: scaleY(1); }
.benefit__num { font-family: "Playfair Display", serif; font-size: 14px; font-weight: 600; color: var(--orange); letter-spacing: .12em; margin-bottom: 12px; }
.benefit__icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 8px 16px -6px rgba(19,61,141,.35); }
.benefit:nth-child(even) .benefit__icon { background: linear-gradient(135deg, var(--orange) 0%, #002A6E 100%); box-shadow: 0 8px 16px -6px rgba(0,57,149,.4); }
.benefit h3 { font-size: 22px; margin-bottom: 10px; }
.benefit p { font-size: 15px; color: var(--ink-mid); line-height: 1.6; }

/* ─── PROCESS ────────────────────────────────────────── */
.process { background: var(--bg-soft); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-bottom: 56px; }
.process__grid::before { content: ""; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--border-strong) 0 8px, transparent 8px 16px); z-index: 0; }
.step { background: #fff; border-radius: var(--r-lg); padding: 32px 24px; text-align: center; position: relative; z-index: 1; border: 1px solid var(--border); transition: all .3s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num { width: 80px; height: 80px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: "Playfair Display", serif; font-size: 36px; font-weight: 700; box-shadow: 0 8px 16px -6px rgba(19,61,141,.4), inset 0 0 0 6px rgba(255,255,255,.1); position: relative; }
.step:nth-child(2) .step__num,
.step:nth-child(4) .step__num { background: linear-gradient(135deg, var(--orange) 0%, #002A6E 100%); box-shadow: 0 8px 16px -6px rgba(0,57,149,.4), inset 0 0 0 6px rgba(255,255,255,.1); }
.step h4 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-mid); line-height: 1.55; }
.process__cta { text-align: center; }

/* ─── ABOUT ──────────────────────────────────────────── */
.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; }
.about__visual { position: relative; aspect-ratio: 1; border-radius: var(--r-xl); background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); overflow: hidden; display: block; }
.about__visual::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 24px 24px; z-index: 1; }
.about__mascot { width: 100%; height: 100%; object-fit: cover; object-position: center right; position: relative; z-index: 2; }
.about h2 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 16px; }
.about h2 em { font-style: italic; font-weight: 500; color: var(--orange); }
.about__lead { font-size: 18px; color: var(--ink-mid); margin-bottom: 16px; line-height: 1.7; }
.about__body { font-size: 16px; color: var(--ink-mid); margin-bottom: 32px; line-height: 1.7; }
.about__list { list-style: none; margin-bottom: 32px; display: grid; gap: 14px; }
.about__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); }
.about__list svg { flex-shrink: 0; color: var(--orange); margin-top: 2px; }

/* ─── SERVICES ───────────────────────────────────────── */
/* Background image injected via wp_add_inline_style() in functions.php */
.services {
  background-repeat: repeat;
  background-size: 520px auto;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.services::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,20,55,.72) 0%, rgba(0,20,55,.82) 100%); pointer-events: none; }
.services > .container { position: relative; z-index: 1; }
.services .section-head h2 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.services .section-head p { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; position: relative; }
.svc { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 32px 24px; backdrop-filter: blur(8px); transition: all .3s var(--ease); }
.svc:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: var(--orange); }
.svc__icon { width: 56px; height: 56px; background: var(--orange); border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; box-shadow: 0 8px 16px -6px rgba(246,104,0,.5); }
.svc h4 { font-size: 22px; color: #fff; margin-bottom: 10px; }
.svc p { font-size: 14px; color: rgba(255,255,255,.95); line-height: 1.6; }
.services__cta { text-align: center; position: relative; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials { background: #fff; }
.tcarousel { position: relative; margin: 0 -32px; padding: 16px 32px 8px; overflow: hidden; }
.tcarousel__track { display: flex; gap: 24px; transition: transform .5s var(--ease); }
.testimonial { flex: 0 0 calc(33.333% - 16px); background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 32px; position: relative; transition: all .3s var(--ease); }
.testimonial::before { content: "\201C"; position: absolute; top: 12px; right: 24px; font-family: "Playfair Display", serif; font-size: 100px; font-weight: 700; color: var(--blue); opacity: .08; line-height: 1; }
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial__stars { color: var(--orange); margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
.testimonial__quote { font-size: 16px; color: var(--ink); line-height: 1.65; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial__person { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial__avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; display: grid; place-items: center; font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700; }
.testimonial:nth-child(even) .testimonial__avatar { background: linear-gradient(135deg, var(--orange) 0%, #002A6E 100%); }
.testimonial__name { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1; }
.testimonial__loc { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.testimonial__loc .city { color: var(--orange); font-weight: 600; }
.tcarousel__controls { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.tcarousel__dots { display: flex; gap: 8px; }
.tcarousel__dot { width: 28px; height: 4px; background: var(--border); border-radius: 2px; transition: all .2s; cursor: pointer; }
.tcarousel__dot.active { background: var(--blue); width: 40px; }
.tcarousel__arrows { display: flex; gap: 10px; }
.tcarousel__arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: #fff; display: grid; place-items: center; color: var(--blue); transition: all .2s; }
.tcarousel__arrow:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.tcarousel__arrow:disabled { opacity: .35; cursor: not-allowed; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq { background: var(--bg-soft); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: flex-start; }
.faq__intro h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 16px; }
.faq__intro p { font-size: 17px; color: var(--ink-mid); margin-bottom: 32px; line-height: 1.6; }
.faq__visual { position: relative; aspect-ratio: 1; border-radius: var(--r-xl); background: radial-gradient(circle at 50% 30%, rgba(246,104,0,.2) 0%, transparent 60%), linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); overflow: hidden; display: block; max-width: 460px; }
.faq__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center right; display: block; position: relative; z-index: 2; }
.faq__visual::before { content: "?"; position: absolute; font-family: "Playfair Display", serif; font-weight: 700; font-size: 600px; color: rgba(255,255,255,.04); top: -180px; left: -60px; line-height: 1; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: all .25s var(--ease); }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-md); }
.faq-item__q { width: 100%; padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; font-family: "Playfair Display", serif; font-size: 19px; font-weight: 600; color: var(--ink); cursor: pointer; transition: color .2s; }
.faq-item:hover .faq-item__q { color: var(--blue); }
.faq-item.open .faq-item__q { color: var(--blue); padding-bottom: 14px; }
.faq-item__toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; flex-shrink: 0; transition: all .3s var(--ease); position: relative; }
.faq-item__toggle::before, .faq-item__toggle::after { content: ""; position: absolute; background: var(--blue); border-radius: 1px; }
.faq-item__toggle::before { width: 12px; height: 2px; }
.faq-item__toggle::after { width: 2px; height: 12px; transition: transform .25s var(--ease); }
.faq-item.open .faq-item__toggle { background: var(--blue); }
.faq-item.open .faq-item__toggle::before, .faq-item.open .faq-item__toggle::after { background: #fff; }
.faq-item.open .faq-item__toggle::after { transform: rotate(90deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item__a__inner { padding: 0 24px 22px; font-size: 15px; color: var(--ink-mid); line-height: 1.65; border-top: 1px solid var(--border); padding-top: 18px; }

/* ─── APPLY / DEALER FORM ────────────────────────────── */
/* Background image injected via wp_add_inline_style() in functions.php */
.apply {
  background-repeat: repeat;
  background-size: 520px auto;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.apply::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,20,55,.72) 0%, rgba(0,20,55,.82) 100%); pointer-events: none; }
.apply > .container { position: relative; z-index: 1; }
.apply__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; position: relative; }
.apply h2 { font-size: clamp(40px, 4.6vw, 64px); color: #fff; margin-bottom: 20px; }
.apply h2 em { font-style: normal; color: var(--orange); }
.apply__lead { font-size: 18px; color: #fff; margin-bottom: 32px; line-height: 1.6; max-width: 480px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.apply__list { list-style: none; margin-bottom: 36px; display: grid; gap: 12px; }
.apply__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.92); }
.apply__list svg { color: var(--orange); flex-shrink: 0; }
.apply__contact { display: grid; gap: 14px; padding: 24px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); max-width: 440px; }
.apply__contact .row { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255,255,255,.92); line-height: 1.5; }
.apply__contact .row svg { color: var(--orange); flex-shrink: 0; margin-top: 1px; }
.apply__contact .row strong { color: #fff; font-family: "Playfair Display", serif; font-size: 18px; }

/* Form card */
.form-card { background: #fff; border-radius: var(--r-xl); padding: 44px 40px; color: var(--ink); box-shadow: 0 32px 64px -16px rgba(0,0,0,.3); position: relative; }
.form-card__urgent { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .04em; white-space: nowrap; box-shadow: var(--shadow-orange); display: flex; align-items: center; gap: 6px; }
.form-card__urgent .pulse { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: dot-pulse 1.5s ease-in-out infinite; }
@keyframes dot-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(.85); } }
.form-card__head { margin-bottom: 24px; }
.form-card__head .social { font-size: 13px; color: var(--orange); font-weight: 600; letter-spacing: .04em; margin-bottom: 4px; }
.form-card__head h3 { font-size: 26px; margin-bottom: 4px; }
.form-card__head p { font-size: 14px; color: var(--ink-mid); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 14px; background: #fff; transition: all .2s; width: 100%; font-family: inherit; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(19,61,141,.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); }
.field textarea { resize: vertical; min-height: 80px; }
.field--invalid input, .field--invalid select { border-color: #DC2626; }
.field__error { font-size: 12px; color: #DC2626; display: none; }
.field--invalid .field__error { display: block; }

.form-submit { margin-top: 8px; }
.form-submit button { width: 100%; padding: 16px; background: var(--orange); color: #fff; border-radius: var(--r-sm); font-weight: 700; font-size: 16px; letter-spacing: .02em; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: var(--shadow-orange); }
.form-submit button:hover { background: var(--orange-warm); transform: translateY(-2px); }
.form__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; justify-content: center; }
.form__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-soft); font-weight: 500; }
.form__badge svg { color: var(--orange); }
.form__fine { font-size: 12px; color: var(--ink-soft); margin-top: 12px; text-align: center; line-height: 1.5; }

.form-success { display: none; text-align: center; padding: 32px 16px; }
.form-success.show { display: block; }
.form-success__icon { width: 72px; height: 72px; margin: 0 auto 16px; background: var(--orange); border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-orange); }
.form-success h3 { font-size: 28px; margin-bottom: 8px; }
.form-success p { color: var(--ink-mid); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--blue-darker); color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 64px; }
.footer__brand p { font-size: 14px; line-height: 1.65; margin-bottom: 24px; max-width: 320px; }
.footer__logo-pill { display: inline-flex; align-items: center; justify-content: center; background: transparent; padding: 0; margin-bottom: 18px; }
.footer__brand-logo { display: block; height: 56px; width: auto; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: all .2s; color: rgba(255,255,255,.7); }
.footer__social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.footer__col h5 { font-family: "Playfair Display", serif; font-size: 16px; font-weight: 700; color: #fff; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer__col h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--orange); }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; transition: color .15s ease; }
.footer__col a:hover { color: var(--orange); }
.footer__contact .row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 14px; line-height: 1.55; }
.footer__contact .row svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__contact .row strong { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; }
.footer__bottom .india { color: rgba(255,255,255,.85); }
.footer__bottom .links { display: flex; gap: 24px; }

/* ─── FLOATING ELEMENTS ──────────────────────────────── */
.fab-whatsapp { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; color: #fff; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); z-index: 95; animation: wapulse 2.2s ease-out infinite; transition: transform .2s; }
.fab-whatsapp:hover { transform: scale(1.08); }
@keyframes wapulse { 0% { box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.4); } 70% { box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 12px 32px -8px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,0); } }
.mobile-sticky-cta { display: none; position: fixed; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%); background: transparent; border: none; box-shadow: none; z-index: 94; pointer-events: none; }
.mobile-sticky-cta .btn { width: auto; pointer-events: auto; display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.3px; border-radius: 999px; background: rgba(255,255,255,0.14); backdrop-filter: blur(18px) saturate(160%); color: #fff; border: 1px solid rgba(255,255,255,0.32); box-shadow: 0 8px 24px -10px rgba(0,0,0,.4); text-transform: none; }
.mobile-sticky-cta .btn:hover { background: rgba(255,255,255,0.22); }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── PARALLAX LAYER ─────────────────────────────────── */
.lov-parallax-layer { position: absolute; inset: -20% -5% -20% -5%; z-index: -1; pointer-events: none; background: radial-gradient(50% 50% at 15% 20%, rgba(245,176,66,.10), transparent 65%), radial-gradient(40% 50% at 85% 80%, rgba(0,57,149,.08), transparent 65%); will-change: transform; transition: transform .05s linear; }
.section.about .lov-parallax-layer { background: radial-gradient(55% 60% at 80% 20%, rgba(232,154,43,.14), transparent 65%), radial-gradient(40% 50% at 10% 90%, rgba(0,57,149,.10), transparent 65%); }
.section.process .lov-parallax-layer { background: radial-gradient(40% 60% at 50% 0%, rgba(245,176,66,.12), transparent 70%); }
@media (prefers-reduced-motion: reduce) { .lov-parallax-layer { transform: none !important; } }
@media (max-width: 720px) { .lov-parallax-layer { display: none; } }

/* ─── FOCUS RINGS ────────────────────────────────────── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [role="button"]:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ─── RESPONSIVE: TABLET ─────────────────────────────── */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat:nth-child(2)::after { display: none; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 460px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial { flex-basis: calc(50% - 12px); }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .faq__visual { max-width: 320px; }
  .apply__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav__mega { display: none !important; }
  .hero-carousel__btn { width: 40px; height: 40px; }
  .hero-carousel__btn svg { width: 16px; height: 16px; }
  .hero-carousel__btn--prev { left: 14px; }
  .hero-carousel__btn--next { right: 14px; }
}

/* ─── RESPONSIVE: MOBILE ─────────────────────────────── */
@media (max-width: 720px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .nav__links, .nav__ctas .nav-cta-desktop { display: none; }
  .nav__hamburger { display: flex; min-width: 44px; min-height: 44px; }
  .svc { padding: 24px 18px; }
  .svc h4 { font-size: 18px; }
  .svc p { font-size: 13.5px; }
  .form-card { padding: 22px 18px; }
  .footer { padding: 40px 0 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; margin-bottom: 28px; }
  .footer__brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
  .footer__brand p { font-size: 13px; margin-bottom: 14px; max-width: none; }
  .footer__logo-pill { margin-bottom: 12px; }
  .footer__social { gap: 8px; }
  .footer__social a { width: 34px; height: 34px; }
  .footer__col h5 { font-size: 13px; margin-bottom: 12px; padding-bottom: 8px; letter-spacing: .06em; }
  .footer__col h5::after { width: 22px; }
  .footer__col ul { gap: 8px; }
  .footer__col a { font-size: 13px; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__contact .row { font-size: 13px; margin-bottom: 10px; gap: 10px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; padding: 16px 0; font-size: 12px; }
  .footer__bottom .links { gap: 16px; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat::after { display: none; }
  .why__grid { grid-template-columns: 1fr; gap: 16px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .process__grid { grid-template-columns: 1fr; gap: 16px; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial { flex-basis: 100%; padding: 24px 20px; }
  .tcarousel { margin: 0 -16px; padding: 16px 16px 8px; overflow: hidden; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card input, .form-card select, .form-card textarea { font-size: 16px; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .fab-whatsapp { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); width: 46px; height: 46px; right: 12px; }
  .hero-carousel__btn { width: 36px; height: 36px; opacity: 0.65; }
  .hero-carousel__btn svg { width: 14px; height: 14px; }
  .hero-carousel__btn--prev { left: 8px; }
  .hero-carousel__btn--next { right: 8px; }
  .hero-carousel__dots { bottom: 36px; gap: 8px; }
  .hero-carousel__dot { width: 8px; height: 8px; }
  .hero-carousel__dot.active { width: 22px; }
  .nav__brand-logo { height: 42px; }
  .section-head h2 { font-size: clamp(24px, 6vw, 30px); }
  .section-head p { font-size: 14px; line-height: 1.55; }
  .marquee, .marquee__track { overflow: hidden; }
  html { scrollbar-width: none; }
  html::-webkit-scrollbar { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
}

/* ═══════════════════════════════════════════════
   PRODUCT CARD — Raftaar brand logo + Best Seller
   ═══════════════════════════════════════════════ */
.product-card__brand { margin-bottom: 6px; }
.product-card__brand-logo { height: 18px; width: auto; display: block; object-fit: contain; }
.product-card__brand-text { font-size: .7rem; font-weight: 800; letter-spacing: .12em; color: var(--blue); display: block; }

.product-card__best-seller {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .3px;
  padding: 4px 10px; border-radius: 20px;
  pointer-events: none; z-index: 2;
  box-shadow: 0 2px 6px rgba(0,57,149,.35);
}

/* ═══════════════════════════════════════════════
   PURPOSE DROPDOWN
   ═══════════════════════════════════════════════ */
.purpose-select { position: relative; }
.purpose-select__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border: 1.5px solid #d1d5db; border-radius: 8px;
  background: #fff; font-size: .95rem; color: #111; cursor: pointer;
  text-align: left; transition: border-color .2s;
}
.purpose-select__trigger:hover,
.purpose-select__trigger:focus { border-color: var(--blue); outline: none; }
.purpose-select__chev { transition: transform .2s; flex-shrink: 0; }
.purpose-select__trigger[aria-expanded="true"] .purpose-select__chev { transform: rotate(180deg); }

.purpose-select__dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid #d1d5db; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 200; overflow: hidden;
}
.purpose-select__dropdown.open { display: block; }
.purpose-select__opt {
  padding: 11px 16px; font-size: .9rem; cursor: pointer;
  transition: background .15s; list-style: none;
}
.purpose-select__opt:hover,
.purpose-select__opt[aria-selected="true"] { background: #f0f4ff; color: var(--blue); font-weight: 600; }
.purpose-select.field--invalid .purpose-select__trigger { border-color: #d6422a; }

/* ═══════════════════════════════════════════════
   CATEGORY FLYOUT (Mishikas Care — nested)
   ═══════════════════════════════════════════════ */
.category-flyout { position: relative; }
.category-flyout__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; border: 1.5px solid #d1d5db; border-radius: 8px;
  background: #fff; font-size: .95rem; color: #111; cursor: pointer;
  text-align: left; transition: border-color .2s;
}
.category-flyout__trigger:hover,
.category-flyout__trigger:focus { border-color: var(--blue); outline: none; }
.category-flyout__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.category-flyout__trigger svg { transition: transform .2s; flex-shrink: 0; }

.category-flyout__panel {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 220px; background: #fff; border: 1.5px solid #d1d5db; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 200; overflow: visible;
}
.category-flyout__panel.open { display: block; }
.category-flyout__item {
  padding: 10px 16px; font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .15s; position: relative;
}
.category-flyout__item:hover { background: #f0f4ff; color: var(--blue); }
.category-flyout__item.has-sub { gap: 8px; }

/* Sub-panel */
.category-flyout__sub {
  display: none; position: absolute; left: 100%; top: -4px;
  min-width: 200px; background: #fff; border: 1.5px solid #d1d5db; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 201; overflow: hidden;
}
.category-flyout__sub.open { display: block; }
.category-flyout__sub-item {
  padding: 10px 16px; font-size: .88rem; cursor: pointer; transition: background .15s;
}
.category-flyout__sub-item:hover { background: #f0f4ff; color: var(--blue); }

/* Mobile: sub-panel stacks below */
@media (max-width: 720px) {
  .category-flyout__sub {
    position: static; border: none; box-shadow: none;
    border-radius: 0; border-left: 3px solid var(--blue);
    margin-left: 16px; padding-left: 4px;
  }
}

/* ═══════════════════════════════════════════════
   MULTI-CHECK SELECT (Dealership Enquiry)
   ═══════════════════════════════════════════════ */
.multi-check-select { position: relative; }
.multi-check-select__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding: 11px 14px; border: 1.5px solid #d1d5db; border-radius: 8px;
  background: #fff; font-size: .95rem; color: #111; cursor: pointer;
  text-align: left; transition: border-color .2s;
}
.multi-check-select__trigger:hover,
.multi-check-select__trigger:focus { border-color: var(--blue); outline: none; }
.multi-check-select__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.multi-check-select__trigger svg { transition: transform .2s; flex-shrink: 0; margin-left: auto; }

.multi-check-select__badge {
  background: var(--blue); color: #fff; font-size: .7rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}

.multi-check-select__panel {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid #d1d5db; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 200; overflow: hidden;
}
.multi-check-select__panel.open { display: block; }
.multi-check-select__opt {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; font-size: .9rem; cursor: pointer;
  transition: background .15s;
}
.multi-check-select__opt:hover { background: #f0f4ff; }
.multi-check-select__opt input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer; flex-shrink: 0;
}
.multi-check-select__opt--all { font-weight: 600; color: var(--blue); }
.multi-check-select__divider { height: 1px; background: #eee; margin: 4px 0; }

/* services brand logo */
.services__brand-logo { margin-bottom: 24px; display: flex; justify-content: center; }
.services__brand-logo img { max-width: 340px; height: auto; width: 100%; object-fit: contain; background: #fff; border-radius: 12px; padding: 16px 28px; }

/* field error visibility */
.field__error { display: none; }
