@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  /* Logo-matched palette: dark oval, flame orange, racing red */
  --navy:          #0d0f1a;
  --navy-mid:      #151822;
  --navy-light:    #1e2235;
  --red:           #d42020;
  --red-dark:      #b01818;
  --red-light:     #f03030;
  --orange:        #f07215;
  --orange-dk:     #d85e08;
  --white:         #ffffff;
  --off-white:     #f8f9fc;
  --light:         #eef1f6;
  --text-dark:     #111827;
  --text-mid:      #374151;
  --text-light:    #6b7280;
  --text-xlight:   #9ca3af;
  --border:        #e5e7eb;
  --border-d:      #1e2235;
  --topbar-h:      0px;
  --nav-h:         84px;
  --r:             6px;
  --r-lg:          12px;
  --r-xl:          22px;
  --tr:            0.26s ease;
  --shadow-xs:     0 1px 4px rgba(13,15,26,.05);
  --shadow-sm:     0 2px 12px rgba(13,15,26,.07);
  --shadow:        0 4px 28px rgba(13,15,26,.09);
  --shadow-md:     0 10px 48px rgba(13,15,26,.13);
  --shadow-lg:     0 20px 72px rgba(13,15,26,.18);
  --shadow-red:    0 8px 32px rgba(212,32,32,.32);
  --shadow-orange: 0 8px 28px rgba(240,114,21,.35);
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text-mid); font-family: 'DM Sans', sans-serif; font-size: 1rem; line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.875rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }
p  { font-size: 1rem; line-height: 1.8; }
strong { color: var(--text-dark); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container        { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 2rem; }
.container-fluid  { width: 100%; padding: 0 3rem; }
.section          { padding: 100px 0; }
.section-sm       { padding: 64px 0; }
.section-xs       { padding: 40px 0; }
.grid-2           { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3           { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4           { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-auto        { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.flex-center      { display: flex; align-items: center; justify-content: center; }
.flex-between     { display: flex; align-items: center; justify-content: space-between; }

/* ─────────────────────────────────────────
   SECTION HEADINGS
───────────────────────────────────────── */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--red); margin-bottom: .875rem;
}
.kicker::before { content: ''; width: 22px; height: 3px; background: var(--red); flex-shrink: 0; border-radius: 2px; }
.kicker.light    { color: var(--orange); }
.kicker.light::before { background: var(--orange); }
.kicker.center   { display: flex; justify-content: center; }

.section-head           { margin-bottom: 3.5rem; }
.section-head.center    { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .s-desc  { margin: 0 auto; }

h2.s-title     { margin-bottom: .875rem; }
h2.s-title.white { color: #fff; }
.s-desc        { color: var(--text-light); max-width: 600px; font-size: 1.05rem; }
.s-desc.white  { color: rgba(255,255,255,.7); }

.accent-bar         { width: 48px; height: 4px; background: linear-gradient(90deg, var(--red), var(--orange)); border-radius: 2px; margin: 1rem 0; }
.accent-bar.center  { margin: 1rem auto; }

/* ─────────────────────────────────────────
   TOPBAR
───────────────────────────────────────── */
.topbar { display: none !important; }

/* ─────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────── */
.header {
  position: sticky; top: 0; left: 0; width: 100%; background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.07); z-index: 1000; transition: all var(--tr);
}
.header.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 4px 32px rgba(0,0,0,.1); }
.header-inner    { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); width: 100%; padding: 0 3rem; }

/* Logo */
.header-logo    { display: flex; align-items: center; gap: .5rem; text-decoration: none; flex-shrink: 0; }
.logo-img       { height: 60px; width: auto; display: block; object-fit: contain; padding: 0; }

/* Nav */
.header-nav              { display: flex; align-items: center; gap: .1rem; }
.header-nav > a,
.nav-drop > button       {
  font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600;
  color: var(--text-dark); padding: .5rem .9rem; border-radius: var(--r);
  transition: color var(--tr), background var(--tr);
  display: flex; align-items: center; gap: .4rem;
  cursor: pointer; white-space: nowrap; border: none; background: none;
}
.header-nav > a:hover,
.nav-drop > button:hover,
.header-nav > a.active   { color: var(--red); }
.header-nav > a.active   { background: rgba(232,44,44,.07); }

/* Dropdown */
.nav-drop        { position: relative; }
.drop-arrow      { font-size: .62rem; transition: transform .22s; opacity: .5; margin-left: .1rem; }
.nav-drop:hover .drop-arrow,
.nav-drop.open .drop-arrow { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: 100%; left: 0; min-width: 285px;
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); border-top: 3px solid var(--red);
  padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all .22s ease;
  box-shadow: var(--shadow-md); pointer-events: none;
}
.drop-menu::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-drop:hover .drop-menu,
.nav-drop.open .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.drop-menu a {
  display: flex; align-items: center; gap: .6rem; padding: .65rem 1rem;
  border-radius: 6px; font-size: .875rem; color: var(--text-mid);
  transition: all .18s; font-family: 'Poppins', sans-serif; font-weight: 500;
}
.drop-menu a i       { color: var(--red); width: 16px; font-size: .85rem; flex-shrink: 0; }
.drop-menu a:hover   { background: var(--off-white); color: var(--red); padding-left: 1.35rem; }

/* Header right */
.header-right   { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.header-phone   { display: flex; align-items: center; gap: .5rem; font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; color: var(--text-dark); transition: color var(--tr); }
.header-phone i { color: var(--red); }
.header-phone:hover { color: var(--red); }

/* Hamburger */
.hamburger                    { display: none; flex-direction: column; gap: 5px; padding: .4rem; cursor: pointer; }
.hamburger span               { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--tr); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; background: var(--white);
  border-bottom: 3px solid var(--red);
  padding: 1.25rem 2rem 2rem; z-index: 999;
  max-height: 75vh; overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.mobile-nav.open  { display: block; animation: slideDown .25s ease; }
@keyframes slideDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
.mobile-nav a {
  display: flex; align-items: center; gap: .6rem;
  padding: .875rem 0; border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--text-dark); transition: color var(--tr), padding-left var(--tr);
}
.mobile-nav a i         { color: var(--red); width: 18px; }
.mobile-nav a:hover     { color: var(--red); padding-left: .5rem; }
.mobile-group           { font-family: 'Poppins', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-top: 1.25rem; margin-bottom: .4rem; padding-bottom: .4rem; border-bottom: 1px solid var(--border); }
.mobile-cta-btn         { background: var(--red)!important; color: #fff!important; justify-content: center!important; border-radius: var(--r)!important; margin-top: 1.25rem!important; border-bottom: none!important; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600;
  padding: .875rem 2rem; border-radius: var(--r);
  transition: all .25s ease; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn-red            { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover      { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-orange         { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover   { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-navy           { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover     { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline        { background: transparent; color: var(--text-dark); border-color: var(--border); }
.btn-outline:hover  { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-outline-white  { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline-red    { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover  { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn-whatsapp       { background: #128C7E; color: #fff; border-color: #128C7E; }
.btn-whatsapp:hover { background: #0d7065; border-color: #0d7065; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(18,140,126,.35); }
.btn-sm             { padding: .6rem 1.35rem; font-size: .875rem; }
.btn-lg             { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ─────────────────────────────────────────
   SIDE CONTACT TABS
───────────────────────────────────────── */
.side-tabs { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 950; display: flex; flex-direction: column; gap: 5px; }
.side-tab  { display: flex; align-items: center; border-radius: 8px 0 0 8px; overflow: hidden; cursor: pointer; text-decoration: none; box-shadow: -4px 4px 20px rgba(0,0,0,.2); transition: box-shadow var(--tr); }
.side-tab:hover { box-shadow: -6px 6px 28px rgba(0,0,0,.28); }
.side-tab-phone { background: var(--red); }
.side-tab-wa    { background: #128C7E; }
.side-tab-icon  { width: 50px; height: 56px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; flex-shrink: 0; }
.side-tab-body  { max-width: 0; overflow: hidden; transition: max-width .38s cubic-bezier(.4,0,.2,1), padding .38s cubic-bezier(.4,0,.2,1); white-space: nowrap; padding: 0; }
.side-tab:hover .side-tab-body,
.side-tab.expanded .side-tab-body { max-width: 180px; padding: 0 1.1rem 0 .1rem; }
.side-tab:hover, .side-tab.expanded { z-index: 951; }
.side-tab-label { display: block; font-family: 'Poppins', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.side-tab-value { display: block; font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 700; color: #fff; }

/* ─────────────────────────────────────────
   SCROLL PROGRESS + BACK TO TOP
───────────────────────────────────────── */
#scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--orange)); width: 0%; z-index: 2000; transition: width .1s linear; }
.back-to-top { position: fixed; bottom: 2rem; left: 2rem; width: 44px; height: 44px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: all var(--tr); z-index: 800; cursor: pointer; border: none; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover  { background: var(--red); transform: translateY(-3px); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; background: var(--navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,12,20,.82) 0%, rgba(10,12,20,.62) 50%, rgba(10,12,20,.86) 100%); }

/* Radial red glow behind content */
.hero-glow { position: absolute; top: 50%; left: 50%; width: 860px; height: 860px; transform: translate(-50%, -52%); background: radial-gradient(circle, rgba(232,44,44,.14) 0%, rgba(249,115,22,.06) 38%, transparent 65%); pointer-events: none; animation: glowPulse 5s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{opacity:.65;transform:translate(-50%,-52%) scale(1)} 50%{opacity:1;transform:translate(-50%,-52%) scale(1.18)} }

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span { position: absolute; bottom: -10px; display: block; border-radius: 50%; background: var(--red); opacity: 0; animation: particleRise linear infinite; }
@keyframes particleRise { 0%{bottom:-2%;opacity:0} 12%{opacity:.9} 78%{opacity:.3} 100%{bottom:106%;opacity:0;transform:translateX(22px)} }

/* Center layout */
.hero-center { position: relative; z-index: 2; text-align: center; padding: 75px 0; }

/* Badge */
.hero-badge { display: inline-flex; align-items: center; gap: .55rem; background: rgba(232,44,44,.15); border: 1px solid rgba(232,44,44,.35); color: #ff7070; font-family: 'Poppins', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: .42rem 1.1rem; border-radius: 100px; margin-bottom: 1.75rem; }
.badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }

/* Headline */
.hero h1 { color: #fff; margin-bottom: .5rem; }
.hero h1 em { font-style: normal; color: var(--orange); text-shadow: 0 0 50px rgba(249,115,22,.55), 0 0 100px rgba(249,115,22,.2); }

/* Animated shimmer accent line */
.hero-accent-line { height: 4px; width: 0; background: linear-gradient(90deg, var(--red), var(--orange), var(--red)); background-size: 200% 100%; margin: 1.5rem auto; border-radius: 2px; animation: accentGrow .85s .45s ease forwards, accentShimmer 3s 1.5s linear infinite; }
@keyframes accentGrow { to { width: 88px; } }
@keyframes accentShimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* Cycling service text */
.hero-cycle { position: relative; height: 2em; margin-bottom: 1.5rem; overflow: hidden; }
.hw { position: absolute; inset: 0; font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 600; color: rgba(255,255,255,.72); letter-spacing: .01em; opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; pointer-events: none; }
.hw.active { opacity: 1; transform: translateY(0); }

/* Sub text */
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.62); margin: 0 auto 2.5rem; max-width: 580px; }

/* Buttons */
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }

/* Trust bar */
.hero-trust { display: flex; gap: 1.75rem; flex-wrap: wrap; justify-content: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-trust-item { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.62); font-size: .9rem; font-family: 'Poppins', sans-serif; font-weight: 500; }
.hero-trust-item i { color: var(--orange); }

/* Scroll indicator */
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.3); font-size: 1.1rem; animation: scrollBounce 2s ease-in-out infinite; text-decoration: none; z-index: 3; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0);opacity:.3} 50%{transform:translateX(-50%) translateY(9px);opacity:.65} }

/* Entry animations */
@keyframes heroUp { from{opacity:0;transform:translateY(26px)} to{opacity:1;transform:translateY(0)} }
.hero-a1 { animation: heroUp .65s .1s  both ease; }
.hero-a2 { animation: heroUp .75s .28s both ease; }
.hero-a3 { animation: heroUp .65s .5s  both ease; }
.hero-a4 { animation: heroUp .65s .65s both ease; }
.hero-a5 { animation: heroUp .65s .82s both ease; }
.hero-a6 { animation: heroUp .65s 1s   both ease; }

/* ─────────────────────────────────────────
   SERVICE STRIP (below hero)
───────────────────────────────────────── */
.service-strip      { background: var(--white); box-shadow: 0 8px 40px rgba(0,0,0,.07); position: relative; z-index: 3; }
.service-strip-grid { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--border); }
.ss-item {
  display: flex; align-items: center; gap: .55rem; padding: .85rem .7rem;
  border-right: 1px solid var(--border); border-bottom: 1px solid transparent;
  text-decoration: none; transition: all var(--tr); cursor: pointer; position: relative;
}
.ss-item::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform .3s ease; transform-origin: left; }
.ss-item:last-child { border-right: none; }
.ss-item:hover      { background: var(--off-white); }
.ss-item:hover::after { transform: scaleX(1); }
.ss-icon  { width: 30px; height: 30px; background: rgba(232,44,44,.08); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .82rem; flex-shrink: 0; transition: all var(--tr); }
.ss-item:hover .ss-icon { background: var(--red); color: #fff; }
.ss-label strong { display: block; font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.ss-label span   { display: block; font-size: .72rem; color: var(--text-light); line-height: 1.3; }

/* ─────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────── */
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-imgs  { position: relative; }
.about-main  { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-main img { width: 100%; height: 500px; }
.about-thumb { position: absolute; bottom: -32px; right: -32px; width: 190px; height: 190px; border-radius: var(--r-lg); overflow: hidden; border: 6px solid var(--white); box-shadow: var(--shadow-md); }
.about-thumb img { width: 100%; height: 100%; }
.about-stat-card { position: absolute; top: 40px; right: -32px; background: var(--red); border-radius: var(--r-lg); padding: 1.5rem 1.75rem; text-align: center; box-shadow: var(--shadow-red); }
.asc-num  { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; display: block; }
.asc-lbl  { font-size: .78rem; color: rgba(255,255,255,.8); font-family: 'Poppins', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.about-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0 2rem; }
.about-li   { display: flex; align-items: flex-start; gap: .875rem; }
.al-dot     { width: 22px; height: 22px; background: rgba(232,44,44,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: .6rem; flex-shrink: 0; margin-top: 3px; }
.al-text    { font-size: 1rem; color: var(--text-mid); line-height: 1.65; }

/* ─────────────────────────────────────────
   STATS BAND
───────────────────────────────────────── */
.stats-band { background: #0a0f18; padding: 28px 0; position: relative; overflow: hidden; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); }
.stats-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(232,44,44,.12) 0%, transparent 65%); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.stat-card  { text-align: center; padding: 2.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,.07); transition: background var(--tr); }
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(255,255,255,.03); }
.stat-ico   { width: 60px; height: 60px; background: rgba(232,44,44,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--red); font-size: 1.4rem; border: 1px solid rgba(232,44,44,.2); }
.stat-num   { font-family: 'Poppins', sans-serif; font-size: 3.2rem; font-weight: 900; color: #fff; line-height: 1; display: block; }
.stat-lbl   { font-size: .82rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .14em; margin-top: .5rem; font-family: 'Poppins', sans-serif; font-weight: 600; }

/* ─────────────────────────────────────────
   SERVICE CARDS
───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.svc-card {
  background: var(--navy); border-radius: var(--r-lg); padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-d); box-shadow: var(--shadow-sm);
  transition: all .3s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none;
}
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--orange)); transform: scaleX(0); transition: transform .35s ease; transform-origin: left; }
.svc-card:hover  { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,27,46,.35); border-color: rgba(232,44,44,.4); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico { width: 56px; height: 56px; background: rgba(232,44,44,.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--red); font-size: 1.4rem; margin-bottom: 1.25rem; transition: all .3s ease; border: 1px solid rgba(232,44,44,.2); }
.svc-card:hover .svc-ico { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 6px 20px rgba(232,44,44,.4); }
.svc-card h3 { color: #fff; margin-bottom: .5rem; font-size: 1rem; }
.svc-card p  { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.svc-link    { display: flex; align-items: center; gap: .4rem; color: var(--orange); font-family: 'Poppins', sans-serif; font-size: .875rem; font-weight: 600; margin-top: auto; transition: gap .25s; }
.svc-link:hover { gap: .7rem; }

/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
.why-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-wrap { position: relative; }
.why-img      { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img img  { width: 100%; height: 520px; }
.why-badge    { position: absolute; bottom: 32px; left: -32px; background: var(--navy); border-radius: var(--r-lg); padding: 1.5rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 1rem; max-width: 230px; }
.wb-icon      { width: 44px; height: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; flex-shrink: 0; }
.wb-text strong { display: block; color: #fff; font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 700; }
.wb-text span   { color: rgba(255,255,255,.55); font-size: .78rem; }
.why-items    { display: flex; flex-direction: column; gap: 1rem; margin: 1.75rem 0 2rem; }
.why-item     { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--off-white); border-radius: var(--r-lg); border: 1px solid var(--border); transition: all var(--tr); }
.why-item:hover { border-color: var(--red); background: var(--white); box-shadow: 0 6px 24px rgba(212,32,32,.14); transform: translateX(4px); }
.wi-ico       { width: 44px; height: 44px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; transition: background var(--tr); }
.why-item:hover .wi-ico { background: var(--red-dark); }
.wi-body h4   { color: var(--text-dark); font-size: 1rem; margin-bottom: .2rem; font-family: 'Poppins', sans-serif; }
.wi-body p    { font-size: .9rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ─────────────────────────────────────────
   PROCESS / HOW IT WORKS
───────────────────────────────────────── */
.process-row    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-row::before { content: ''; position: absolute; top: 34px; left: calc(12.5% + 1px); right: calc(12.5% + 1px); height: 2px; background: linear-gradient(90deg, var(--red) 0%, rgba(232,44,44,.15) 100%); z-index: 0; }
.process-step   { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.ps-num         { width: 68px; height: 68px; background: var(--white); border: 3px solid var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--red); margin-bottom: 1.5rem; transition: all .3s; box-shadow: 0 4px 18px rgba(232,44,44,.15); }
.process-step:hover .ps-num { background: var(--red); color: #fff; box-shadow: 0 8px 28px rgba(232,44,44,.35); }
.process-step h3 { color: var(--text-dark); margin-bottom: .5rem; font-size: 1.1rem; }
.process-step p  { color: var(--text-light); font-size: .9rem; line-height: 1.65; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi-grid    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testi-card    { background: var(--navy-mid); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg); padding: 2.25rem; position: relative; overflow: hidden; transition: transform .3s, border-color .3s; }
.testi-card:hover { transform: translateY(-6px); border-color: rgba(232,44,44,.28); }
.tc-mark       { position: absolute; top: .75rem; right: 1.5rem; font-family: Georgia, serif; font-size: 7rem; font-weight: 900; color: rgba(232,44,44,.09); line-height: 1; pointer-events: none; }
.tc-stars      { display: flex; gap: .25rem; margin-bottom: 1.25rem; }
.tc-stars i    { color: #fbbf24; font-size: .9rem; }
.tc-text       { color: rgba(255,255,255,.72); font-size: .97rem; line-height: 1.8; margin-bottom: 1.75rem; position: relative; z-index: 1; }
.tc-author     { display: flex; align-items: center; gap: .875rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.25rem; }
.tc-avatar     { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--orange)); display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: .95rem; flex-shrink: 0; }
.tc-name       { font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: .95rem; line-height: 1.2; }
.tc-vehicle    { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: .15rem; }

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
.price-card    { border-radius: var(--r-lg); padding: 2.75rem 2.25rem; border: 2px solid var(--border); background: var(--white); transition: all .3s; position: relative; overflow: hidden; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--red); }
.price-card.featured { background: var(--red); border-color: var(--red); transform: scale(1.04); box-shadow: var(--shadow-red); }
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); box-shadow: 0 24px 60px rgba(232,44,44,.5); }
.pc-popular    { display: inline-block; background: rgba(255,255,255,.22); color: #fff; font-family: 'Poppins', sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: .28rem .85rem; border-radius: 100px; margin-bottom: 1.25rem; }
.pc-tier       { font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); margin-bottom: .75rem; }
.price-card.featured .pc-tier { color: rgba(255,255,255,.75); }
.pc-price      { font-family: 'Poppins', sans-serif; font-size: 3.5rem; font-weight: 900; color: var(--text-dark); line-height: 1; margin-bottom: .5rem; }
.price-card.featured .pc-price { color: #fff; }
.pc-price sup  { font-size: 1.3rem; vertical-align: super; margin-right: .1rem; }
.pc-price small { font-size: .95rem; font-weight: 500; color: var(--text-light); }
.price-card.featured .pc-price small { color: rgba(255,255,255,.65); }
.pc-desc       { font-size: .95rem; color: var(--text-light); margin: 1rem 0 1.75rem; line-height: 1.65; }
.price-card.featured .pc-desc { color: rgba(255,255,255,.82); }
.pc-list       { margin-bottom: 2rem; }
.pc-item       { display: flex; align-items: center; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; color: var(--text-mid); }
.price-card.featured .pc-item { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.88); }
.pc-item:last-child { border-bottom: none; }
.pc-item i     { color: var(--red); font-size: .85rem; flex-shrink: 0; }
.price-card.featured .pc-item i { color: #fff; }
.pc-cta        { width: 100%; justify-content: center; }
.price-card.featured .btn-red { background: #fff; color: var(--red); border-color: #fff; }
.price-card.featured .btn-red:hover { background: rgba(255,255,255,.92); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* ─────────────────────────────────────────
   GALLERY / RECENT WORK
───────────────────────────────────────── */
.gallery-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item   { border-radius: var(--r-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,46,.92) 0%, rgba(13,27,46,.25) 55%, transparent 100%); opacity: 0; transition: opacity .35s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat  { font-family: 'Poppins', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); margin-bottom: .35rem; }
.gallery-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: #fff; font-size: 1.05rem; }

/* ─────────────────────────────────────────
   BRANDS
───────────────────────────────────────── */
.brands-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: stretch; }
.brand-chip { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; font-family: 'Poppins', sans-serif; font-size: .8rem; font-weight: 700; color: var(--text-light); transition: all .25s; cursor: default; box-shadow: var(--shadow-xs); min-width: 88px; }
.brand-chip:hover { color: var(--red); border-color: rgba(232,44,44,.3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.brand-logo { width: 44px; height: 44px; object-fit: contain; display: block; }
.brand-chip:hover .brand-logo { filter: invert(18%) sepia(90%) saturate(3000%) hue-rotate(344deg) brightness(90%); }
@media (max-width: 600px) { .brand-chip { min-width: calc(33.33% - 1rem); flex: 1 1 calc(33.33% - 1rem); } }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner    { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy) 100%); position: relative; overflow: hidden; padding: 64px 0; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 50%, rgba(232,44,44,.13) 0%, transparent 60%); pointer-events: none; }
.cta-inner     { position: relative; z-index: 1; text-align: center; }
.cta-inner h2  { color: #fff; margin-bottom: 1rem; }
.cta-inner p   { color: rgba(255,255,255,.68); margin: 0 auto 2.5rem; font-size: 1.05rem; max-width: 540px; }
.cta-phone     { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; color: var(--orange); display: block; margin-bottom: .875rem; transition: color var(--tr); }
.cta-phone:hover { color: #fff; }
.cta-btns      { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────── */
.newsletter    { display: none !important; }
.newsletter-hidden { background: var(--red); padding: 64px 0; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06) 0%, transparent 60%); }
.nl-inner      { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.nl-text h2    { color: #fff; margin-bottom: .5rem; }
.nl-text p     { color: rgba(255,255,255,.8); }
.nl-form       { display: flex; gap: .75rem; flex-wrap: wrap; }
.nl-input      { flex: 1; min-width: 240px; background: rgba(255,255,255,.14); border: 2px solid rgba(255,255,255,.3); border-radius: var(--r); padding: .875rem 1.25rem; color: #fff; font-size: 1rem; outline: none; transition: border-color var(--tr); font-family: 'DM Sans', sans-serif; }
.nl-input::placeholder { color: rgba(255,255,255,.55); }
.nl-input:focus { border-color: #fff; }

/* ─────────────────────────────────────────
   QUOTE FORM CARD
───────────────────────────────────────── */
.quote-card    { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.qc-head       { background: var(--navy); padding: 2rem 2.5rem; }
.qc-head h3    { color: #fff; font-size: 1.4rem; margin-bottom: .25rem; }
.qc-head p     { color: rgba(255,255,255,.6); font-size: .95rem; margin: 0; }
.qc-body       { padding: 2rem 2.5rem; }
.form-group    { margin-bottom: 1.35rem; }
.form-label    { display: flex; align-items: center; gap: .4rem; font-family: 'Poppins', sans-serif; font-size: .875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: .5rem; }
.form-label i  { color: var(--red); }
.form-control  { width: 100%; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r); padding: .875rem 1.1rem; color: var(--text-dark); font-size: 1rem; transition: border-color var(--tr), box-shadow var(--tr), background var(--tr); outline: none; appearance: none; font-family: 'DM Sans', sans-serif; }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,44,44,.1); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 6 5-6' stroke='%23888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.75rem; background-color: var(--off-white); cursor: pointer; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero          { background: var(--navy); padding: 88px 0 72px; position: relative; overflow: hidden; }
.page-hero-bg       { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .55; }
.page-hero-overlay  { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(13,27,46,.72) 0%, rgba(13,27,46,.50) 60%, rgba(13,27,46,.30) 100%); }
.page-hero-inner    { position: relative; z-index: 2; text-align: center; }
.page-hero-inner .page-hero-btns { justify-content: center; }
.page-hero-inner .hero-badge { justify-content: center; }
.page-hero-inner p  { margin-left: auto; margin-right: auto; }
.breadcrumb         { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.45); margin-bottom: 1.35rem; flex-wrap: wrap; justify-content: center; }
.breadcrumb a       { color: rgba(255,255,255,.45); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--orange); }
.bc-sep             { color: rgba(255,255,255,.25); }
.page-hero h1       { color: #fff; margin-bottom: 1rem; }
.page-hero h1 em    { font-style: normal; color: var(--orange); }
.page-hero p        { color: rgba(255,255,255,.68); font-size: 1.05rem; max-width: 680px; }
.page-hero .hero-badge { margin-bottom: 1.25rem; }
.page-hero-btns     { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.page-hero .btn-outline { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.page-hero .btn-outline:hover { background: rgba(255,255,255,.30); border-color: #fff; color: #fff; transform: translateY(-2px); }

/* ─────────────────────────────────────────
   SERVICE PAGE LAYOUT
───────────────────────────────────────── */
.svc-layout          { display: grid; grid-template-columns: 1fr 360px; gap: 3.5rem; align-items: start; }
.svc-main img        { border-radius: var(--r-xl); width: 100%; height: 420px; margin-bottom: 2.5rem; box-shadow: var(--shadow-md); }
.svc-sidebar         { position: sticky; top: calc(var(--topbar-h) + var(--nav-h) + 1.5rem); }

/* Sidebar nav */
.sb-nav { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 1.75rem; }
.sb-nav-hd { background: var(--navy); padding: 1.25rem 1.5rem; font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; display: flex; align-items: center; gap: .5rem; }
.sb-nav-hd i { color: var(--orange); }
.sb-nav a { display: flex; align-items: center; justify-content: space-between; padding: .875rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 1rem; color: var(--text-mid); transition: all .2s; font-family: 'Poppins', sans-serif; font-weight: 500; text-align: left; }
.sb-nav a:last-child { border-bottom: none; }
.sb-nav a:hover, .sb-nav a.active { background: rgba(232,44,44,.05); color: var(--red); padding-left: 2rem; }
.sb-nav a i { font-size: .72rem; color: var(--red); }

/* Sidebar CTA */
.sb-cta   { background: linear-gradient(135deg, var(--red), var(--red-dark)); border-radius: var(--r-lg); padding: 2rem; text-align: center; }
.sb-cta h4 { color: #fff; margin-bottom: .5rem; font-size: 1.15rem; }
.sb-cta p  { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 1.5rem; }
.sb-phone  { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 900; color: #fff; display: block; margin-bottom: 1rem; }

/* Content helpers */
.highlight-box  { background: rgba(232,44,44,.05); border: 1px solid rgba(232,44,44,.16); border-left: 4px solid var(--red); border-radius: var(--r); padding: 1.35rem 1.6rem; margin: 1.75rem 0; }
.highlight-box p { margin: 0; color: var(--text-mid); }
.content-img    { border-radius: var(--r-lg); width: 100%; height: 280px; object-fit: cover; margin: 1.75rem 0; box-shadow: var(--shadow); }
.steps-list     { display: flex; flex-direction: column; }
.step-row       { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.step-row:last-child { border-bottom: none; }
.step-n         { width: 38px; height: 38px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 900; color: #fff; flex-shrink: 0; margin-top: 2px; }
.step-content h4 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .3rem; }
.step-content p  { font-size: .95rem; color: var(--text-light); margin: 0; }
.table-wrap      { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.data-table      { width: 100%; border-collapse: collapse; font-size: .95rem; }
.data-table th   { background: var(--navy); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .9rem 1.25rem; text-align: left; font-size: .8rem; }
.data-table td   { padding: .85rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(232,44,44,.03); }
.td-red   { color: var(--red)!important; font-weight: 600; }
.td-green { color: #16a34a!important; font-weight: 600; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-info-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; align-items: stretch; }
.ci-card  { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all .3s; display: flex; flex-direction: column; align-items: center; }
.ci-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,44,44,.2); }
.ci-icon  { width: 64px; height: 64px; background: rgba(232,44,44,.09); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--red); font-size: 1.5rem; transition: all .3s; }
.ci-card:hover .ci-icon { background: var(--red); color: #fff; }
.ci-label { font-family: 'Poppins', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text-light); margin-bottom: .5rem; }
.ci-val   { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); line-height: 1.55; }
.ci-val a { color: var(--red); transition: color var(--tr); }
.ci-val a:hover { color: var(--red-dark); }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); height: 400px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.hours-block { display: flex; flex-direction: column; gap: .35rem; }
.hours-row   { display: flex; justify-content: space-between; padding: .875rem 1rem; border-radius: 6px; font-size: .95rem; gap: 1rem; }
.hours-row:nth-child(odd) { background: var(--off-white); }
.hours-day   { color: var(--text-dark); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; }
.hours-time  { color: var(--text-mid); }
.hours-row.today .hours-day { color: var(--red); }
.hours-row.today .hours-time { color: var(--text-dark); font-weight: 600; }
.hours-row.closed .hours-day, .hours-row.closed .hours-time { color: var(--text-xlight); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer    { background: var(--navy); width: 100%; }
.footer-body { padding: 72px 3rem 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3.5rem; }
.f-logo    { display: flex; align-items: center; text-decoration: none; margin-bottom: 1.25rem; }
.f-logo .logo-img { height: 70px; width: auto; object-fit: contain; }
.f-about   { color: rgba(255,255,255,.58); font-size: 1rem; line-height: 1.8; margin-bottom: 1.75rem; max-width: 340px; }
.f-contacts { display: flex; flex-direction: column; gap: .75rem; }
.f-contact  { display: flex; align-items: flex-start; gap: .65rem; color: rgba(255,255,255,.68); font-size: 1rem; transition: color var(--tr); line-height: 1.5; }
.f-contact:is(a):hover { color: var(--orange); }
.f-contact i { color: var(--red); flex-shrink: 0; margin-top: 3px; width: 16px; text-align: center; }
.f-socials  { display: flex; gap: .65rem; margin-top: 1.5rem; }
.f-social   { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); font-size: .85rem; transition: all .25s; }
.f-social:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.f-heading  { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 1.5rem; position: relative; padding-bottom: .75rem; }
.f-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 3px; background: var(--red); border-radius: 2px; }
.f-links   { display: flex; flex-direction: column; gap: .7rem; }
.f-links a { color: rgba(255,255,255,.62); font-size: 1rem; transition: all .25s; display: flex; align-items: center; gap: .5rem; text-align: left; }
.f-links a::before { content: ''; width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; transition: transform .25s; }
.f-links a:hover { color: var(--orange); }
.f-links a:hover::before { transform: scale(1.4); }
.f-areas   { color: rgba(255,255,255,.62); font-size: 1rem; line-height: 2; }
.f-hours   { color: rgba(255,255,255,.62); font-size: 1rem; line-height: 2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p, .footer-bottom a { font-size: 1rem; color: rgba(255,255,255,.38); transition: color .25s; }
.footer-bottom a:hover { color: var(--orange); }

/* ─────────────────────────────────────────
   AOS ANIMATIONS
───────────────────────────────────────── */
[data-aos]                 { opacity: 0; transition: opacity .65s ease, transform .65s ease; }
[data-aos="fade-up"]       { transform: translateY(32px); }
[data-aos="fade-down"]     { transform: translateY(-32px); }
[data-aos="fade-left"]     { transform: translateX(32px); }
[data-aos="fade-right"]    { transform: translateX(-32px); }
[data-aos="zoom-in"]       { transform: scale(.92); }
[data-aos="fade-in"]       { }
[data-aos].aos-animate     { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   MISC UTILITIES
───────────────────────────────────────── */
.text-red    { color: var(--red); }
.text-orange { color: var(--orange); }
.text-white  { color: #fff; }
.text-light  { color: var(--text-light); }
.mt-1 { margin-top: .5rem; }  .mt-2 { margin-top: 1rem; }  .mt-3 { margin-top: 1.5rem; }  .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
/* Full-width about + services override */
.about-full { padding: 0 3rem; }
.services-full { padding: 0 3rem; }

@media (max-width: 1200px) {
  .header-inner, .footer-body, .footer-bottom { padding-left: 2rem; padding-right: 2rem; }
  .container-fluid { padding: 0 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .ss-item { padding: .8rem .55rem; gap: .4rem; }
  .ss-icon { width: 26px; height: 26px; font-size: .75rem; border-radius: 6px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .about-full, .services-full { padding: 0 2rem; }
}
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stat-card { display: none; }
  .about-thumb     { display: none; }
  .why-badge       { display: none; }
  .svc-layout      { grid-template-columns: 1fr; }
  .svc-sidebar     { position: static; }
  .testi-grid      { grid-template-columns: 1fr 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .contact-info-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .process-row     { grid-template-columns: 1fr 1fr; }
  .process-row::before { display: none; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(2n) { border-right: none; }
  .stat-card       { border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-card:nth-last-child(-n+2) { border-bottom: none; }
  .nl-inner        { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; }
  .services-grid   { grid-template-columns: repeat(3, 1fr); }
  .service-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .ss-item:nth-child(n+4) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  :root { --nav-h: 80px; }
  .logo-img { height: 60px; padding: 0; }
  .hero-bg { background-attachment: scroll; }
  .section         { padding: 56px 0; }
  .section-sm      { padding: 40px 0; }
  h1               { font-size: 2.1rem; }
  h2               { font-size: 1.65rem; }
  h3               { font-size: 1.15rem; }
  .header-nav, .header-phone { display: none; }
  .header-right .btn { display: none; }
  .hamburger       { display: flex; }
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .about-full, .services-full { padding: 0 1.25rem; }
  .testi-grid      { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr; }
  .contact-info-row { grid-template-columns: 1fr; }
  .side-tabs       { display: none; }
  .cta-btns        { flex-direction: column; align-items: center; }
  .form-row        { grid-template-columns: 1fr; }
  .hero-center     { padding: 2.5rem 0 2rem; }
  .hero-btns       { flex-direction: column; align-items: center; }
  .hero-btns .btn  { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust      { gap: .75rem; }
  .hero-trust-item { font-size: .85rem; flex: 0 0 calc(50% - .375rem); justify-content: center; }
  .hero-a1         { display: none; }
  .section-head    { margin-bottom: 2.5rem; }
  .s-desc          { font-size: 1rem; }
  .stats-band      { padding: 20px 0; }
  .stat-num        { font-size: 2.4rem; }
  /* Footer accordion */
  .footer-body     { padding: 36px 1.25rem 32px; }
  .footer-bottom   { padding: 1.25rem; flex-direction: column; text-align: center; }
  .footer-grid     { grid-template-columns: 1fr; gap: 0; }
  .footer-grid > div { border-bottom: 1px solid rgba(255,255,255,.08); padding: 1rem 0; }
  .footer-grid > div:first-child { padding-bottom: 1.5rem; }
  .f-acc-body      { max-height: 0; overflow: hidden; transition: max-height .35s ease; padding-top: 0; }
  .f-acc-open .f-acc-body { max-height: 800px; padding-top: .75rem; }
  .f-acc-chevron   { transition: transform .3s ease; font-size: .75rem; color: rgba(255,255,255,.45); flex-shrink: 0; }
  .f-heading       { margin-bottom: 0 !important; }
  /* Service strip */
  .container-fluid  { padding: 0 1.25rem; }
  .service-strip-grid { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); }
  .ss-item          { border-right: none; border-bottom: 1px solid var(--border); padding: 1.1rem .875rem; }
  .ss-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .ss-item:last-child      { border-bottom: none; }
  .ss-item:nth-child(n+4)  { border-top: none; }
  .ss-label strong { font-size: .875rem; }
  .ss-label span   { font-size: .8rem; }
  /* Page hero */
  .page-hero        { padding: 60px 0 48px; }
  .page-hero h1     { font-size: 1.8rem; }
  .page-hero-btns   { flex-direction: column; align-items: center; gap: .75rem; }
  .page-hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  /* Hide on mobile */
  .stats-band { display: none; }
  #why        { display: none; }
  #process    { display: none; }
  /* Blog article tables — scroll on overflow */
  .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; }
  /* Masonry gallery responsive */
  .masonry-grid { columns: 2 160px; }
  /* Prevent any stray horizontal overflow */
  .hero-btns .btn { max-width: 100%; }
  .page-hero-inner { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .header-inner { padding-left: 1rem; padding-right: 1rem; }
  .footer-body, .footer-bottom { padding-left: 1rem; padding-right: 1rem; }
  .section         { padding: 48px 0; }
  .services-grid   { grid-template-columns: 1fr; }
  .process-row     { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: 1fr 1fr; }
  .stat-num        { font-size: 2rem; }
  .stat-card       { padding: 1.75rem .75rem; }
  .service-strip-grid { grid-template-columns: 1fr; }
  .ss-item         { border-right: none !important; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .hero-sub        { font-size: 1rem; }
  .hero-center     { padding: 2rem 0 1.75rem; }
  .btn             { font-size: .9rem; padding: .8rem 1.5rem; }
  .btn-lg          { font-size: .95rem; padding: .9rem 1.75rem; }
  .svc-card        { padding: 1.5rem 1.25rem; }
  .testi-card      { padding: 1.5rem 1.25rem; }
  h2.s-title       { font-size: 1.5rem; }
  .masonry-grid    { columns: 1; }
  .hero-trust-item { font-size: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms!important; transition-duration: .01ms!important; }
  .hero-bg { background-attachment: scroll; }
  .hero-particles { display: none; }
  .hw { transition: none; }
}
