:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --accent: #f59e0b;
  --accent-soft: #fff7ed;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #d9e5f2;
  --soft: #f3f8ff;
  --cream: #fffaf2;
  --ivory: #fff8ea;
  --sky-soft: #edf6ff;
  --amber-soft: #fff3dc;
  --neutral-soft: #f7f8fb;
  --white: #ffffff;
  --success: #059669;
  --shadow-sm: 0 10px 28px rgba(15, 23, 42, 0.08);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  --shadow-lg: 0 34px 90px rgba(37, 99, 235, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff8ea 0%, #f2f8ff 36%, #fffdf8 70%, #f7f8fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}
a { text-decoration: none; }

.site-navbar {
  animation: navDrop 650ms ease both;
  background: rgba(255, 250, 242, 0.78);
  border-bottom: 1px solid rgba(219, 230, 243, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}
.site-navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(203, 213, 225, 0.9);
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.1);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-weight: 900;
}
.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border-radius: 12px;
  box-shadow: inset 0 1px rgba(255,255,255,.4), 0 14px 30px rgba(37,99,235,.28);
}

.brand-logo {
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.nav-link {
  position: relative;
  color: #334155;
  font-weight: 750;
  padding: 0.82rem 0.78rem !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.42rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  overflow: hidden;
  border-radius: 12px;
  font-weight: 850;
  letter-spacing: 0;
  transform: translateZ(0);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -80%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-20deg);
  transition: left 450ms ease;
  z-index: 1;
  pointer-events: none;
}
.btn:hover { transform: translateY(-4px); }
.btn:hover::before { left: 125%; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border: 0;
  box-shadow: inset 0 1px rgba(255,255,255,.38), 0 16px 32px rgba(37, 99, 235, 0.28);
}
.btn-primary:hover { box-shadow: inset 0 1px rgba(255,255,255,.4), 0 24px 44px rgba(37,99,235,.35); }
.btn-outline-primary {
  color: var(--primary);
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}
.btn-outline-primary:hover {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
}
.nav-cta { min-height: 42px; padding-inline: 1rem; }
.staff-btn { color: var(--primary-dark); border: 1px solid var(--line); box-shadow: 0 12px 28px rgba(15,23,42,.07); }

.hero-section {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 132px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255,248,234,.98) 0%, rgba(238,247,255,.94) 48%, rgba(255,243,220,.78) 100%),
    radial-gradient(ellipse at 86% 12%, rgba(37,99,235,.16), transparent 34%),
    radial-gradient(ellipse at 8% 76%, rgba(245,158,11,.16), transparent 30%),
    linear-gradient(180deg, #fffdf7, #eff6ff);
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto -8% -80px -8%;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(255,248,234,.82) 48%, var(--ivory));
  transform: skewY(-2deg);
  pointer-events: none;
}
.decor {
  position: absolute;
  pointer-events: none;
  opacity: .68;
  filter: blur(.2px);
}
.decor-one {
  width: 230px;
  height: 230px;
  right: 6%;
  top: 14%;
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(237,246,255,.52), rgba(255,248,234,.18)),
    repeating-linear-gradient(45deg, rgba(37,99,235,.075) 0 2px, transparent 2px 14px);
  transform: rotate(12deg);
}
.decor-two {
  width: 170px;
  height: 170px;
  left: 4%;
  bottom: 8%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,243,220,.72), rgba(237,246,255,.36));
  border: 1px solid rgba(245,158,11,.18);
  transform: rotate(-10deg);
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1, h2, h3 { color: var(--ink); letter-spacing: 0; }
.hero-section h1, .section-pad h2, .map-placeholder h2 {
  margin: 0;
  font-weight: 950;
  line-height: 1.04;
}
.hero-section h1 {
  max-width: 735px;
  margin-top: 1rem;
  font-size: clamp(2.35rem, 5.6vw, 4.6rem);
  animation: fadeUp 760ms 130ms ease both;
}
.hero-section .eyebrow { animation: fadeUp 700ms 60ms ease both; }
.hero-subtitle {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: #475569;
  font-size: 1.09rem;
  line-height: 1.72;
  animation: fadeUp 760ms 240ms ease both;
}
.hero-actions, .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
  animation: fadeUp 760ms 340ms ease both;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.92rem;
  border: 1px solid rgba(219,230,243,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #334155;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-top: 1rem;
  animation: fadeUp 760ms 430ms ease both;
}
.hero-stats div {
  min-height: 112px;
  padding: 1rem;
  border: 1px solid rgba(219,230,243,.9);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.76), rgba(239,246,255,.72));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
}
.hero-stats i {
  color: var(--accent);
  font-size: 1.35rem;
}
.hero-stats strong, .hero-stats small { display: block; }
.hero-stats strong { margin-top: .5rem; font-size: .98rem; }
.hero-stats small { color: var(--muted); line-height: 1.35; }
.hero-visual {
  position: relative;
  min-height: 510px;
  overflow: visible;
  margin-bottom: 95px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.72);
  background:
    linear-gradient(135deg, rgba(37,99,235,.72), rgba(15,23,42,.28)),
    linear-gradient(135deg, #eff6ff, #fff7ed);
  background-size: 100% 100%, cover, 100% 100%;
  background-position: center;
  box-shadow: var(--shadow-lg);
  animation: visualIn 900ms 220ms ease both;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 44%, transparent 58%);
  transform: translateX(-120%);
  animation: heroShine 7s 1.2s ease-in-out 2;
}
.hero-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .66rem .85rem;
  color: #0f172a;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 16px 38px rgba(15,23,42,.16);
  font-weight: 850;
  backdrop-filter: blur(5px);
  animation: floatBadge 6s ease-in-out 2;
}
.hero-badge i { color: var(--primary); }
.badge-one { top: 28px; left: 28px; }
.badge-two { top: 98px; right: 26px; animation-delay: .4s; }
.badge-three { right: 30px; bottom: 134px; animation-delay: .8s; }
.hero-visual-card {
  position: absolute;
  z-index: 5;
  left: 46px;
  right: 46px;
  bottom: -70px;
  padding: 1.25rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15,23,42,.72), rgba(30,64,175,.58));
  box-shadow: 0 22px 50px rgba(15,23,42,.25);
  backdrop-filter: blur(5px);
  animation: cardFloat 6s ease-in-out 2;
}
.hero-visual-card i { font-size: 2rem; color: var(--accent); }
.hero-visual-card strong, .hero-visual-card span { display: block; }
.hero-visual-card strong { margin-top: .4rem; font-size: 1.2rem; }
.hero-visual-card span { opacity: .86; }

.section-pad {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
}
.section-pad > .container {
  position: relative;
  z-index: 1;
}
.soft-section {
  background:
    linear-gradient(180deg, rgba(243,248,255,.98), rgba(255,248,234,.68)),
    var(--soft);
}
#about {
  background:
    linear-gradient(180deg, var(--ivory) 0%, #fffdf8 58%, #fff7ea 100%);
}
#about::before,
#services::before,
#spare-parts::before,
#gallery::before,
#service-request::before,
#contact::before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .72;
  z-index: 0;
}
#about::before {
  width: 34%;
  height: 58%;
  right: -12%;
  top: 10%;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(237,246,255,.72), rgba(255,243,220,.44));
  transform: rotate(-8deg);
}
#services,
#spare-parts {
  background:
    linear-gradient(180deg, #f1f8ff 0%, #fff8ea 54%, #f6fbff 100%);
}
#services::before,
#spare-parts::before {
  width: 42%;
  height: 260px;
  left: -16%;
  top: 18%;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(37,99,235,.075), rgba(245,158,11,.1));
  transform: rotate(8deg);
}
#services + .section-pad,
#service-station {
  background:
    linear-gradient(180deg, #fff8ea 0%, #fffdf8 52%, #fff2d9 100%);
}
#services + .section-pad::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 38%;
  height: 230px;
  right: -14%;
  bottom: 9%;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,243,220,.78), rgba(237,246,255,.5));
  transform: rotate(-10deg);
}
#gallery {
  background:
    linear-gradient(180deg, #edf6ff 0%, #f6fbff 48%, #eef7ff 100%);
}

#recognition {
  background: linear-gradient(180deg, #fff8ea 0%, #fffdf8 52%, #eff6ff 100%);
}

#commitment {
  background: linear-gradient(180deg, #edf6ff 0%, #fff8ea 58%, #fffdf8 100%);
}
#gallery::before {
  width: 48%;
  height: 310px;
  right: -18%;
  top: 12%;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255,248,234,.58), rgba(37,99,235,.08)),
    repeating-linear-gradient(45deg, rgba(37,99,235,.055) 0 1px, transparent 1px 16px);
  transform: rotate(7deg);
}
.section-pad h2, .map-placeholder h2 {
  margin-top: .75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.lead-text, .section-header p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.74;
}
.section-header { max-width: 780px; margin-bottom: 2.7rem; }
.info-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.info-grid div, .why-grid div, .service-card, .request-card, .contact-item,
.brand-card, .service-group, .recognition-card, .commitment-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(219,230,243,.92);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,246,255,.54));
  box-shadow: var(--shadow-sm);
  will-change: transform;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 240ms ease, background 240ms ease;
}
.info-grid div::before, .why-grid div::before, .service-card::before, .contact-item::before, .request-card::before,
.brand-card::before, .service-group::before, .recognition-card::before, .commitment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37,99,235,.34), rgba(245,158,11,.28), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .55;
  pointer-events: none;
}
.info-grid div:hover, .why-grid div:hover, .service-card:hover, .contact-item:hover,
.brand-card:hover, .service-group:hover, .recognition-card:hover, .commitment-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(37,99,235,.32);
  background: linear-gradient(145deg, #ffffff, #eff6ff 58%, #fff7ed);
  box-shadow: 0 28px 70px rgba(37,99,235,.16);
}
.info-grid div, .why-grid div { padding: 1.3rem; }
.info-grid i, .why-grid i, .service-card > i, .contact-item i,
.recognition-card > i, .commitment-card > i {
  display: inline-grid;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(135deg, #eff6ff, #fff7ed);
  border: 1px solid rgba(37,99,235,.11);
  border-radius: 14px;
  box-shadow: inset 0 1px rgba(255,255,255,.7), 0 14px 28px rgba(37,99,235,.12);
  transition: transform 240ms ease, color 240ms ease, background 240ms ease;
}
.info-grid i, .why-grid i, .service-card > i, .recognition-card > i, .commitment-card > i {
  width: 50px;
  height: 50px;
  font-size: 1.36rem;
}
.info-grid div:hover i, .why-grid div:hover i, .service-card:hover > i, .contact-item:hover i,
.recognition-card:hover > i, .commitment-card:hover > i {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-3px) rotate(-5deg) scale(1.08);
}
.info-grid b, .info-grid span { display: block; }
.info-grid b { margin-top: .9rem; font-size: 1.02rem; }
.info-grid span, .why-grid p, .service-card p { color: var(--muted); line-height: 1.64; }
.service-card { height: 100%; padding: 1.58rem; }
.service-card h3, .why-grid h3 { margin: 1rem 0 .55rem; font-size: 1.1rem; font-weight: 900; }

.brand-grid, .split-services, .recognition-grid, .commitment-grid, .service-grid {
  display: grid;
  gap: 1rem;
}
.brand-grid {
  grid-template-columns: repeat(5, 1fr);
}
.brand-card {
  padding: 1.25rem;
  color: var(--primary-dark);
  font-weight: 900;
  text-align: center;
}
.parts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
}
.parts-grid div {
  position: relative;
  padding: .85rem .75rem;
  border: 1px solid rgba(219,230,243,.92);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(15,23,42,.045);
  color: #334155;
  font-weight: 800;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}
.parts-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(37,99,235,.32);
  background: linear-gradient(145deg, #ffffff, #eff6ff 58%, #fff7ed);
  box-shadow: 0 20px 44px rgba(37,99,235,.12);
}
.service-grid {
  grid-template-columns: repeat(2, 1fr);
}
.split-services {
  grid-template-columns: repeat(2, 1fr);
}
.service-group, .recognition-card, .commitment-card {
  padding: 1.45rem;
}
.service-group h3, .recognition-card h3 {
  margin-bottom: .65rem;
  font-weight: 900;
}
.recognition-grid {
  grid-template-columns: 1fr 1.2fr 1fr;
}
.quote-card p, .vision-quote {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.65;
}
.commitment-grid {
  grid-template-columns: repeat(4, 1fr);
}
.commitment-card b, .commitment-card span {
  display: block;
}
.commitment-card b {
  margin-top: .85rem;
}
.commitment-card span {
  color: var(--muted);
  line-height: 1.6;
}
.vision-quote {
  max-width: 980px;
  margin: 2rem auto 0;
  padding: 1.4rem 1.6rem;
  border-left: 5px solid var(--accent);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}
.gallery-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(219,230,243,.92);
  background:
    linear-gradient(135deg, rgba(37,99,235,.72), rgba(15,23,42,.18)),
    linear-gradient(135deg, #dbeafe, #fff7ed);
  background-size: cover;
  will-change: transform;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-size 450ms ease;
}
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(15,23,42,.28));
  transition: background 260ms ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 16px;
  transform: scale(.98);
  opacity: .8;
  transition: transform 260ms ease, opacity 260ms ease;
}
.gallery-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245,158,11,.48);
  box-shadow: 0 30px 72px rgba(37,99,235,.2);
  background-size: 100% 100%, 108%, 100% 100%;
}
.gallery-card:hover::before { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(15,23,42,.16)); }
.gallery-card:hover::after { transform: scale(1); opacity: 1; }
.gallery-card span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  padding: .6rem .84rem;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15,23,42,.72);
  box-shadow: 0 12px 26px rgba(15,23,42,.18);
  font-weight: 850;
  backdrop-filter: blur(10px);
  transition: transform 260ms ease, background 260ms ease;
}
.gallery-card:hover span {
  transform: translateY(-6px);
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.request-section {
  background:
    linear-gradient(135deg, rgba(255,243,220,.92) 0%, rgba(239,246,255,.96) 45%, rgba(255,253,248,.92) 100%),
    linear-gradient(180deg, #fff8ea, #eff6ff);
}
#service-request::before {
  width: 40%;
  height: 340px;
  left: -15%;
  top: 16%;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(245,158,11,.13), rgba(37,99,235,.1));
  transform: rotate(10deg);
}
#contact {
  background:
    linear-gradient(180deg, #fffdf8 0%, #ffffff 48%, #fff8ea 100%);
}
#contact::before {
  width: 36%;
  height: 240px;
  right: -12%;
  top: 24%;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(237,246,255,.7), rgba(255,243,220,.5));
  transform: rotate(-9deg);
}
.form-trust-points {
  display: grid;
  gap: .8rem;
  margin-top: 1.3rem;
}
.form-trust-points span {
  display: flex;
  align-items: center;
  gap: .68rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(219,230,243,.9);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow-sm);
  color: #334155;
  font-weight: 800;
}
.form-trust-points i { color: var(--accent); }
.request-card {
  padding: 1.7rem;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(239,246,255,.72) 56%, rgba(255,247,237,.82));
  box-shadow: var(--shadow);
}
.form-label {
  margin-bottom: .44rem;
  color: #334155;
  font-size: .88rem;
  font-weight: 900;
}
.optional { color: var(--muted); font-weight: 650; }
.form-control, .form-select {
  min-height: 50px;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.84);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 8px 18px rgba(15,23,42,.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}
#request_type {
  border-color: rgba(37,99,235,.38);
  background:
    linear-gradient(135deg, rgba(239,246,255,.96), rgba(255,247,237,.75)),
    #fff;
}
textarea.form-control { min-height: 132px; resize: vertical; }
.form-control:focus, .form-select:focus {
  border-color: rgba(37,99,235,.62);
  background: #fff;
  box-shadow: 0 0 0 .24rem rgba(37,99,235,.13), 0 16px 30px rgba(37,99,235,.08);
  transform: translateY(-1px);
}
#dynamicRequestFields > div {
  animation: fieldIn 260ms ease both;
}
.request-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.45rem;
}
.request-actions span { color: var(--muted); font-weight: 700; }
.request-actions a { color: var(--primary); font-weight: 900; }
.visually-hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  min-height: 126px;
  padding: 1.3rem;
}
.contact-item i {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
}
.contact-item span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-item a, .contact-item p {
  display: block;
  margin: .22rem 0 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}
.contact-item small { color: var(--muted); }

.map-section {
  padding: 0 0 92px;
  background: linear-gradient(180deg, #fff8ea 0%, #f7f8fb 100%);
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 270px;
  padding: 2.1rem;
  border: 1px solid rgba(219,230,243,.94);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(239,246,255,.96), rgba(255,250,242,.9)),
    repeating-linear-gradient(45deg, rgba(37,99,235,.12) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow-sm);
}
.map-placeholder p { color: var(--muted); margin: .8rem 0 0; }
.site-footer {
  padding: 30px 0;
  color: #475569;
  background: linear-gradient(180deg, #f7f8fb 0%, #f2f6fb 100%);
  border-top: 1px solid var(--line);
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 240px;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--primary); font-weight: 850; }

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
}
.floating-call {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1rem;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), #0d9488);
  box-shadow: 0 18px 44px rgba(5,150,105,.32);
  font-weight: 900;
  animation: ctaPulse 4s ease-in-out 3;
}
.floating-call:hover { color: #fff; transform: translateY(-3px); }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes visualIn {
  from { opacity: 0; transform: translateY(28px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroShine {
  0%, 62% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes fieldIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 18px 44px rgba(5,150,105,.32); }
  50% { box-shadow: 0 18px 44px rgba(5,150,105,.32), 0 0 0 8px rgba(5,150,105,.1); }
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .42rem .72rem;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, .16);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: .8rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-sm);
  }
  .nav-cta { width: 100%; margin-top: .5rem; }
  .hero-section { min-height: auto; padding: 116px 0 68px; }
  .hero-visual { min-height: 410px; }
  .hero-stats, .info-grid, .why-grid, .gallery-grid, .brand-grid, .parts-grid, .service-grid, .commitment-grid { grid-template-columns: 1fr 1fr; }
  .recognition-grid, .split-services { grid-template-columns: 1fr; }
  .map-placeholder { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 767.98px) {
  html { scroll-padding-top: 82px; }
  .section-pad { padding: 70px 0; }
  .hero-section h1 { font-size: 2.42rem; }
  .hero-actions .btn, .trust-row span { width: 100%; }
  .hero-stats, .info-grid, .why-grid, .gallery-grid, .contact-grid, .brand-grid, .parts-grid, .service-grid, .commitment-grid { grid-template-columns: 1fr; }
  .hero-visual {  overflow: visible; margin-bottom: 110px; min-height: 370px; border-radius: 22px; }
  .hero-visual-card {
    left: 18px;
    right: 18px;
    bottom: -82px;
  }
  .hero-badge { display: none; }
  .request-card { padding: 1.15rem; }
  .request-actions { align-items: stretch; flex-direction: column; }
  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .floating-call {
    justify-content: center;
    width: 100%;
  }
  .site-footer { padding-bottom: 82px; }
  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .site-footer .container {
    padding-right: 0;
  }
}

@media (max-width: 430px) {
  .navbar-brand { max-width: 260px; font-size: .98rem; }
  .hero-section h1 { font-size: 2.16rem; }
  .btn-lg { min-height: 50px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}



/* Division switch landing page update */
.division-hero .division-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.8rem;
  animation: fadeUp 760ms 340ms ease both;
}
[data-division-panel] {
  animation: divisionFade 420ms ease both;
}
body[data-active-division="service"] .hero-section {
  background:
    linear-gradient(125deg, rgba(237,246,255,.98) 0%, rgba(255,248,234,.9) 50%, rgba(238,247,255,.78) 100%),
    radial-gradient(ellipse at 86% 12%, rgba(37,99,235,.18), transparent 34%),
    radial-gradient(ellipse at 8% 76%, rgba(245,158,11,.14), transparent 30%),
    linear-gradient(180deg, #eff6ff, #fff8ea);
}
body[data-active-division="service"] .brand-mark,
body[data-active-division="service"] .btn-primary,
body[data-active-division="service"] .gallery-card:hover span {
  background: linear-gradient(135deg, #1e40af, #0f766e);
}
.division-switcher .btn {
  min-width: 165px;
}
[data-division-btn] {
  box-shadow: inset 0 1px rgba(255,255,255,.38), 0 18px 38px rgba(37, 99, 235, 0.28);
}
.hero-visual-card.d-none,
.hero-badge.d-none {
  display: none !important;
}
#service-about,
#service-services,
#service-highlights,
#service-why {
  background: linear-gradient(180deg, #fff8ea 0%, #fffdf8 52%, #eff6ff 100%);
}
#service-highlights,
#service-why {
  background: linear-gradient(180deg, #edf6ff 0%, #fff8ea 58%, #fffdf8 100%);
}
@keyframes divisionFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 575.98px) {
  .division-switcher .btn { width: 100%; }
}

/* =========================================================
   PREMIUM DESIGN + ADVANCED ANIMATION OVERRIDES
   Safe layer: keeps Retail/Service toggle, form, contact logic unchanged
   ========================================================= */

:root {
  --premium-dark: #07111f;
  --premium-navy: #0b1f3a;
  --premium-blue: #2563eb;
  --premium-cyan: #06b6d4;
  --premium-gold: #f59e0b;
  --premium-orange: #f97316;
  --glass: rgba(255, 255, 255, 0.74);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --ring-blue: rgba(37, 99, 235, 0.28);
  --ring-gold: rgba(245, 158, 11, 0.32);
  --premium-shadow: 0 28px 80px rgba(7, 17, 31, 0.16);
  --premium-shadow-hover: 0 36px 95px rgba(37, 99, 235, 0.24);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 158, 11, .13), transparent 28%),
    radial-gradient(circle at 86% 6%, rgba(37, 99, 235, .16), transparent 30%),
    linear-gradient(180deg, #fff8ea 0%, #eef7ff 38%, #fffdf7 72%, #f6f8fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 99, 235, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12% -18% -12%;
  height: 420px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, .16), transparent 62%);
  filter: blur(8px);
}

.site-navbar {
  background: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 45px rgba(15, 23, 42, .06);
}

.site-navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(15, 23, 42, .13);
}

.navbar-brand {
  letter-spacing: -.02em;
}

.brand-mark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--premium-blue), #4f46e5 55%, var(--premium-cyan));
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent, rgba(255,255,255,.58), transparent 34%);
  animation: spinGlow 4s linear infinite;
}

.brand-mark i {
  position: relative;
  z-index: 1;
}

.nav-link {
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(37, 99, 235, .08);
  transform: translateY(-1px);
}

.btn {
  min-height: 46px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
}

.btn-primary {
  background: linear-gradient(135deg, var(--premium-blue), #4f46e5 50%, var(--premium-cyan));
  box-shadow:
    inset 0 1px rgba(255,255,255,.42),
    0 20px 46px rgba(37, 99, 235, .32),
    0 0 0 1px rgba(255,255,255,.28);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow:
    inset 0 1px rgba(255,255,255,.48),
    0 28px 64px rgba(37, 99, 235, .42),
    0 0 0 7px rgba(37, 99, 235, .09);
}

.btn-outline-primary,
.staff-btn {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
}

.division-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.85rem;
  animation: fadeUp 760ms 340ms ease both;
}

.hero-section {
  isolation: isolate;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 20%, rgba(245, 158, 11, .2), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, .23), transparent 34%),
    linear-gradient(135deg, rgba(255, 248, 234, .98), rgba(235, 247, 255, .96) 48%, rgba(255, 244, 222, .92));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 70%) var(--my, 25%), rgba(37, 99, 235, .18), transparent 25%),
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,.28) 47% 49%, transparent 50%);
  transition: background-position 300ms ease;
}

.hero-section h1 {
  letter-spacing: -.055em;
  text-wrap: balance;
  background: linear-gradient(90deg, #07111f 0%, #0f2f65 48%, #1e40af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 24px rgba(37, 99, 235, .1));
}

body[data-active-division="service"] .hero-section h1 {
  background: linear-gradient(90deg, #07111f 0%, #7c2d12 45%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow,
.section-kicker {
  padding: .55rem .78rem;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
  backdrop-filter: blur(16px);
}

body[data-active-division="service"] .eyebrow,
body[data-active-division="service"] .section-kicker {
  color: #c2410c;
  border-color: rgba(249, 115, 22, .18);
}

.hero-subtitle {
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  color: #40536f;
}

.hero-stats {
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(239,246,255,.62)),
    linear-gradient(135deg, rgba(37,99,235,.08), transparent);
  box-shadow: 0 18px 44px rgba(15, 23, 42, .09);
  transform-style: preserve-3d;
}

.hero-stats div::after,
.info-grid div::after,
.service-card::after,
.brand-card::after,
.recognition-card::after,
.commitment-card::after,
.contact-item::after,
.request-card::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -80%;
  width: 60%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
  transform: skewX(-18deg);
  transition: left 680ms ease;
}

.hero-stats div:hover::after,
.info-grid div:hover::after,
.service-card:hover::after,
.brand-card:hover::after,
.recognition-card:hover::after,
.commitment-card:hover::after,
.contact-item:hover::after,
.request-card:hover::after {
  left: 130%;
}

.hero-visual {
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.82);
  box-shadow:
    0 38px 100px rgba(37, 99, 235, .22),
    inset 0 1px rgba(255,255,255,.45);
  transform-style: preserve-3d;
}

.hero-visual::before {
  inset: 18px;
  border-radius: 26px;
}

.hero-visual::after {
  animation-duration: 4.2s;
}

.hero-badge {
  box-shadow:
    0 18px 42px rgba(15,23,42,.18),
    inset 0 1px rgba(255,255,255,.75);
}

.hero-visual-card {
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(7,17,31,.78), rgba(30,64,175,.62)),
    linear-gradient(90deg, rgba(255,255,255,.1), transparent);
  box-shadow: 0 26px 68px rgba(7, 17, 31, .34);
}

body[data-active-division="service"] .hero-visual-card {
  background:
    linear-gradient(135deg, rgba(7,17,31,.78), rgba(154,52,18,.66)),
    linear-gradient(90deg, rgba(255,255,255,.1), transparent);
}

.decor-one,
.decor-two {
  animation: slowMorph 8s ease-in-out infinite;
}

.decor-two {
  animation-delay: -3s;
}

.section-pad {
  padding: clamp(72px, 8vw, 112px) 0;
}

.section-pad::after {
  content: "";
  position: absolute;
  inset: auto 10% 18px 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .18), transparent);
  pointer-events: none;
}

.section-pad h2 {
  letter-spacing: -.045em;
  text-wrap: balance;
}

.lead-text,
.section-header p {
  color: #52647e;
}

.info-grid div,
.service-card,
.brand-card,
.recognition-card,
.commitment-card,
.contact-item,
.request-card,
.parts-grid div {
  border-color: rgba(255,255,255,.72);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,246,255,.64)),
    radial-gradient(circle at 0 0, rgba(37,99,235,.09), transparent 38%);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(14px);
}

.info-grid div:hover,
.service-card:hover,
.brand-card:hover,
.recognition-card:hover,
.commitment-card:hover,
.contact-item:hover,
.request-card:hover,
.parts-grid div:hover {
  transform: translateY(-10px) scale(1.018);
  box-shadow: var(--premium-shadow-hover);
}

body[data-active-division="service"] .info-grid div,
body[data-active-division="service"] .service-card,
body[data-active-division="service"] .brand-card,
body[data-active-division="service"] .recognition-card,
body[data-active-division="service"] .commitment-card,
body[data-active-division="service"] .contact-item,
body[data-active-division="service"] .request-card,
body[data-active-division="service"] .parts-grid div {
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,247,237,.7)),
    radial-gradient(circle at 0 0, rgba(249,115,22,.1), transparent 38%);
}

.info-grid i,
.service-card > i,
.recognition-card > i,
.commitment-card > i,
.contact-item i {
  background: linear-gradient(135deg, #ffffff, #eff6ff);
}

body[data-active-division="service"] .info-grid i,
body[data-active-division="service"] .service-card > i,
body[data-active-division="service"] .recognition-card > i,
body[data-active-division="service"] .commitment-card > i,
body[data-active-division="service"] .contact-item i {
  color: #ea580c;
  background: linear-gradient(135deg, #ffffff, #fff7ed);
}

.brand-card {
  min-height: 82px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.parts-grid div {
  min-height: 58px;
  display: grid;
  place-items: center;
}

.service-card h3,
.recognition-card h3 {
  letter-spacing: -.02em;
}

.quote-card {
  background:
    linear-gradient(145deg, rgba(15,23,42,.94), rgba(30,64,175,.84)) !important;
  color: #ffffff;
}

.quote-card p,
.quote-card i {
  color: #ffffff !important;
}

.vision-quote {
  position: relative;
  overflow: hidden;
  border-left: 0;
  border: 1px solid rgba(255,255,255,.72);
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,247,237,.78)),
    radial-gradient(circle at 0 0, rgba(245,158,11,.18), transparent 35%);
}

.vision-quote::before {
  content: "“";
  position: absolute;
  right: 26px;
  top: -38px;
  color: rgba(245,158,11,.18);
  font-size: 9rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.request-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(245, 158, 11, .2), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(37, 99, 235, .18), transparent 30%),
    linear-gradient(135deg, #fff8ea 0%, #eef7ff 52%, #fffdf8 100%);
}

.request-card {
  border-radius: 28px;
}

.form-control,
.form-select {
  border-radius: 15px;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 .25rem rgba(37,99,235,.13), 0 18px 34px rgba(37,99,235,.1);
}

.contact-grid {
  align-items: stretch;
}

.contact-item {
  border-radius: 22px;
}

.contact-item h5 {
  margin: .26rem 0 .18rem;
  font-weight: 950;
  letter-spacing: -.02em;
}

.contact-item a[href^="tel:"] {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: .35rem;
  margin: .28rem .45rem .12rem 0;
  padding: .38rem .65rem;
  color: #0f172a;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(37,99,235,.12);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-item a[href^="tel:"]::before {
  content: "\F5C1";
  font-family: "bootstrap-icons";
  color: var(--success);
}

.contact-item a[href^="tel:"]:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-2px);
}

.owner-contact-card {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(15,23,42,.95), rgba(30,64,175,.88)) !important;
  color: #ffffff;
}

.owner-contact-card span,
.owner-contact-card h5,
.owner-contact-card small,
.owner-contact-card i {
  color: #ffffff !important;
}

.owner-contact-card a[href^="tel:"] {
  color: #0f172a;
  background: #ffffff;
}

.map-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(239,246,255,.78)),
    radial-gradient(circle at 100% 0, rgba(37,99,235,.16), transparent 36%);
}

.map-placeholder::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18), transparent 62%);
}

.floating-call {
  box-shadow: 0 20px 54px rgba(5,150,105,.36), 0 0 0 0 rgba(5,150,105,.22);
}

.floating-call i {
  animation: phoneRing 1.8s ease-in-out infinite;
}

[data-division-panel] {
  animation: divisionFade .42s ease both;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes spinGlow {
  to { transform: rotate(360deg); }
}

@keyframes slowMorph {
  0%, 100% { transform: translateY(0) rotate(12deg) scale(1); border-radius: 44px; }
  50% { transform: translateY(-14px) rotate(18deg) scale(1.06); border-radius: 58px; }
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0); }
}

.service-image-section {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, .16), transparent 36%),
    linear-gradient(180deg, #f8fbff 0%, #fff8ea 100%);
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.service-image-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .14);
  transition: transform .35s ease, box-shadow .35s ease;
}

.service-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,.62));
}

.service-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
}

.service-image-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 34px 80px rgba(37, 99, 235, .22);
}

.service-image-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 991.98px) {
  .division-switcher {
    gap: .7rem;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-visual {
    border-radius: 26px;
  }

  .site-footer .container {
    padding-right: 0;
  }

  .service-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .division-switcher .btn {
    width: 100%;
  }

  .hero-section h1 {
    letter-spacing: -.04em;
  }

  .hero-stats div {
    min-height: auto;
  }

  .contact-item a[href^="tel:"] {
    width: 100%;
    justify-content: center;
  }

  .owner-contact-card {
    grid-column: auto;
  }
}

@media (max-width: 575.98px) {
  .service-image-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PERFORMANCE + CLICK FIX  (25 June 2026)
   Purpose: smooth scrolling + stable clickable hero buttons
   ========================================================= */

/* Keep hero buttons above all decorative / image layers */
.hero-section > .container,
.hero-section .row,
.hero-section .col-lg-6:first-child,
.division-switcher,
.division-switcher .btn,
.division-switcher a {
  position: relative;
  z-index: 30;
  pointer-events: auto;
}

/* Decorative layers must never capture mouse/touch */
.hero-section::before,
.hero-section::after,
.decor,
.hero-visual,
.hero-visual::before,
.hero-visual::after,
.hero-badge,
.hero-visual-card,
.section-pad::before,
.section-pad::after,
.info-grid div::before,
.info-grid div::after,
.why-grid div::before,
.service-card::before,
.service-card::after,
.brand-card::before,
.brand-card::after,
.recognition-card::before,
.recognition-card::after,
.commitment-card::before,
.commitment-card::after,
.contact-item::before,
.contact-item::after,
.request-card::before,
.request-card::after {
  pointer-events: none !important;
}

/* Buttons: smaller movement = no hover glitch / cursor flicker */
.btn {
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  will-change: auto !important;
}
.btn:hover,
.btn-primary:hover,
.btn-outline-primary:hover,
.staff-btn:hover,
.floating-call:hover {
  transform: translateY(-2px) !important;
}
.division-switcher .btn:hover {
  transform: translateY(-2px) !important;
}

/* Reduce paint-heavy effects that caused page adkat/glitch feeling */
.site-navbar,
.eyebrow,
.section-kicker,
.hero-badge,
.hero-visual-card,
.info-grid div,
.service-card,
.brand-card,
.recognition-card,
.commitment-card,
.contact-item,
.request-card,
.form-control,
.form-select {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Stop continuous animations after first render */
.decor-one,
.decor-two,
.floating-call i,
.brand-mark::after {
  animation: none !important;
}
.hero-visual::after {
  display: none !important;
}
.hero-badge,
.hero-visual-card {
  animation: none !important;
}

/* Softer hover on cards; heavy scale creates scroll jank */
.info-grid div:hover,
.why-grid div:hover,
.service-card:hover,
.contact-item:hover,
.brand-card:hover,
.service-group:hover,
.recognition-card:hover,
.commitment-card:hover,
.parts-grid div:hover,
.gallery-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 44px rgba(37,99,235,.12) !important;
}

/* Reveal animation kept light */
.reveal {
  opacity: 0;
  transform: translateY(18px) !important;
  transition: opacity 360ms ease, transform 360ms ease !important;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Mobile: fastest mode */
@media (max-width: 991.98px) {
  html { scroll-behavior: auto; }
  .hero-section { min-height: auto !important; }
  .btn:hover,
  .btn-primary:hover,
  .btn-outline-primary:hover,
  .staff-btn:hover,
  .floating-call:hover,
  .info-grid div:hover,
  .why-grid div:hover,
  .service-card:hover,
  .contact-item:hover,
  .brand-card:hover,
  .service-group:hover,
  .recognition-card:hover,
  .commitment-card:hover,
  .parts-grid div:hover,
  .gallery-card:hover {
    transform: none !important;
  }
}
