/* Kubin Automotive Service — main.css v4.3.3
   Brand: Navy #0D1B2A | Silver #B8C5D1 | Gold #C9A84C
   Fonts: Playfair Display (headings) | Inter (body)
   v4.3.3: Location sign banner spacing. Increased bottom padding
           on .location-sign-banner from clamp(40-72px) to clamp(72-110px)
           so the caption has visible breathing room before the map split.
           Caption margin-top bumped 1rem to 1.25rem.
   v4.3.2: Location sign banner. New .location-sign-banner for the
           Kubin Automotive sign photo above the map split on the
           Location page.
   v4.3.1: Photo figures for Kolton's submitted photos. .aggie-community-photo
           (About page community section) and .reviews-photo-banner (Reviews
           page testimonial banner).
   v4.3.0: Aggie Owned & Operated callout section. New .aggie-callout,
           .aggie-callout-grid, .aggie-callout-media, .aggie-callout-text
           styles. Paired with hero text updates in index.html.
   v4.2.1: Added missing .section--flush modifier to zero padding on the
           location page map/info split section. Fixes visible dead-space
           gap above and below the map on /location/.
   v4.0.0: Design skill upgrade. Motion tokens (ease-out-quart, ease-out-expo),
           tinted whites (no pure #FFF), reduced motion support, focus-visible
           ring, tabular-nums on stats, increased dark-bg line-height,
           trust bar hover, button scale polish.
   v3.0.0: Merged prospect visual design. Added: services dropdown nav,
           full-screen mobile overlay, get-started page styles,
           service sub-page styles, JSON-LD on all pages.
   v2.0.0: Visual design ported from prospect mockup.
*/

/* ==============================
   CSS Custom Properties
============================== */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #132233;
  --navy-light:  #1C3249;
  --navy-card:   #0f2238;
  --silver:      #B8C5D1;
  --silver-light: #d4dde6;
  --silver-dim:  #7A8FA0;
  --gold:        #C9A84C;
  --gold-dark:   #a8883c;
  --gold-light:  #E8C66A;
  --white:       #FAFBFC;
  --off-white:   #F0F2F5;
  --text-dark:   #1A1E27;
  --text-body:   #374151;
  --text-muted:  #5C6A7B;
  --border:      rgba(184, 197, 209, 0.2);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition:  0.3s ease;

  /* Motion tokens */
  --ease-out-quart:    cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-micro:    150ms;
  --duration-state:    250ms;
  --duration-layout:   400ms;
  --duration-entrance: 600ms;
  --transition-smooth: var(--duration-state) var(--ease-out-quart);

  --shadow:      0 2px 8px rgba(13, 27, 42, 0.12);
  --shadow-md:   0 8px 32px rgba(13, 27, 42, 0.18);
  --shadow-lg:   0 20px 60px rgba(13, 27, 42, 0.25);

  --max-width:   1200px;
  --section-pad: clamp(60px, 8vw, 100px);
}

/* ==============================
   Reset & Base
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

/* Accessible focus ring */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ==============================
   Typography
============================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

p:last-child {
  margin-bottom: 0;
}

/* ==============================
   Layout Utilities
============================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.section--flush {
  padding: 0;
}

.section--dark {
  background: var(--navy);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--silver-light);
}

.section--light {
  background: var(--off-white);
}

.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: var(--silver);
}

/* ==============================
   Scroll Reveal
============================== */
[data-reveal],
[data-reveal="left"],
[data-reveal="right"] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--duration-entrance) var(--ease-out-expo),
              transform var(--duration-entrance) var(--ease-out-expo);
}

[data-reveal="left"] {
  transform: translateX(-48px);
}

[data-reveal="right"] {
  transform: translateX(48px);
}

[data-reveal].revealed,
[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==============================
   Buttons
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-smooth), color var(--transition-smooth),
              border-color var(--transition-smooth), transform var(--transition-smooth),
              box-shadow var(--transition-smooth);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover,
.btn--navy:focus-visible {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ==============================
   Header / Nav
============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
  overflow: visible;
}

.site-header::after {
  content: "Alumni Owned & Operated";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 320px;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  background: #5a0f1b;
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.58);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  padding: 12px 22px 13px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 18px 100%);
  z-index: 5;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.site-header::after {
  content: "Alumni Owned & Operated";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 360px;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  background: #5a0f1b;
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.58);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  padding: 12px 22px 13px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 18px 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 80px;
  padding: 0;
  overflow: visible;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.header-logo img {
  height: 140px;
  width: auto;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo .logo-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: color var(--transition-smooth), background var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* ---- Services Dropdown (desktop) ---- */
.nav-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
  color: rgba(255, 255, 255, 0.65);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown-toggle:focus svg {
  transform: rotate(180deg);
  color: var(--white);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  padding: 10px 0 8px;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-layout) var(--ease-out-quart), transform var(--duration-layout) var(--ease-out-quart);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--silver);
  white-space: nowrap;
  border-radius: 0;
  background: transparent;
  transition: color var(--transition-smooth), background var(--transition-smooth), padding-left var(--transition-smooth);
  letter-spacing: 0.01em;
}

.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  padding-left: 26px;
}

.nav-dropdown-menu .nav-dropdown-divider {
  height: 1px;
  background: rgba(184, 197, 209, 0.15);
  margin: 6px 0;
}

.nav-dropdown-all {
  font-weight: 600 !important;
  color: var(--gold) !important;
  letter-spacing: 0.03em !important;
}

.nav-dropdown-all:hover {
  color: var(--gold-light) !important;
  background: rgba(201, 168, 76, 0.12) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
  transition: background var(--transition-smooth);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==============================
   Mobile Overlay Menu
============================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity var(--duration-layout) var(--ease-out-quart), transform var(--duration-layout) cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-smooth);
}

.mobile-overlay-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mobile-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 32px;
}

.mob-link {
  display: block;
  width: 100%;
  max-width: 320px;
  text-align: center;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-smooth), background var(--transition-smooth);
}

.mob-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.mob-link-cta {
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy) !important;
  border: none;
  font-weight: 700;
}

.mob-link-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Mobile services accordion */
.mob-dropdown {
  width: 100%;
  max-width: 320px;
}

.mob-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition-smooth), background var(--transition-smooth);
  text-align: center;
}

.mob-dropdown-toggle:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.mob-dropdown-toggle svg {
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
  color: rgba(255, 255, 255, 0.5);
}

.mob-dropdown.open .mob-dropdown-toggle svg {
  transform: rotate(180deg);
  color: var(--gold);
}

.mob-dropdown.open .mob-dropdown-toggle {
  color: var(--gold);
}

.mob-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 0 var(--radius) var(--radius);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 4px 0;
  margin-bottom: 2px;
}

.mob-dropdown.open .mob-dropdown-menu {
  display: flex;
}

.mob-sub-link {
  display: block;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--silver);
  text-align: center;
  transition: color var(--transition-smooth), background var(--transition-smooth);
}

.mob-sub-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.mob-sub-all {
  font-weight: 700;
  color: var(--gold) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  padding-top: 12px;
}

.mob-sub-all:hover {
  color: var(--gold-light) !important;
}

.mobile-overlay-footer {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.mobile-overlay-footer a {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.mobile-overlay-footer span {
  font-size: 13px;
  color: var(--silver);
}

/* Hide old site-nav slide-out on mobile; show hamburger */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 2px solid var(--gold);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--duration-layout) var(--ease-out-quart), opacity var(--duration-layout) var(--ease-out-quart);
    z-index: 999;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem clamp(20px, 5vw, 48px);
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    border-radius: 0;
    background: transparent !important;
    white-space: nowrap;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08) !important;
  }

  .nav-cta {
    margin: 1rem clamp(20px, 5vw, 48px);
    width: calc(100% - 2 * clamp(20px, 5vw, 48px));
    text-align: center;
    justify-content: center;
    border-radius: var(--radius) !important;
  }
}

/* ==============================
   Tire Tread Section Divider
============================== */
.tread-divider {
  height: 18px;
  background-color: var(--navy);
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(255,255,255,0.06) 18px,
      rgba(255,255,255,0.06) 36px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(255,255,255,0.04) 4px,
      rgba(255,255,255,0.04) 9px
    );
}

/* ==============================
   Hero
============================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg img {
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg-mobile-still {
  display: none;
}

@media (max-width: 768px) {
  .hero-bg-video {
    display: none;
  }

  .hero-bg-mobile-still {
    display: block;
    animation: none;
    object-position: center top;
  }
}

@keyframes kenBurns {
  from { transform: scale(1);    transform-origin: center center; }
  to   { transform: scale(1.10); transform-origin: 55% 45%; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(13, 27, 42, 0.85) 0%,
    rgba(13, 27, 42, 0.60) 50%,
    rgba(13, 27, 42, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 clamp(20px, 5vw, 48px);
  padding-top: 110px;
}

/* Badge pill above heading */
.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  position: relative;
  top: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Override base h1 color in hero */
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--silver);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(184, 197, 209, 0.2);
  padding-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(16px, 3vw, 32px);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--silver);
  letter-spacing: 0.05em;
  margin-top: 4px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 197, 209, 0.25);
}

/* Scroll cue arrow */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--silver);
  opacity: 0.7;
  animation: heroScrollBounce 2s ease-in-out infinite;
  transition: opacity var(--transition);
}

.hero-scroll:hover {
  opacity: 1;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ==============================
   Trust Bar
============================== */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(184, 197, 209, 0.12);
  white-space: nowrap;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ==============================
   Services Preview (Home - Tabs)
============================== */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

/* Tab nav */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius-md);
  padding: 6px;
  margin-bottom: 0;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.tab-btn:hover {
  background: var(--off-white);
  color: var(--text-dark);
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.tab-btn.active svg {
  stroke: var(--gold);
}

.tab-btn svg {
  flex-shrink: 0;
}

/* Tab panels */
.tab-panels {
  margin-top: 2px;
}

.tab-panel {
  display: none;
  opacity: 0;
  transition: opacity var(--duration-layout) var(--ease-out-quart);
}

.tab-panel.active {
  display: block;
  opacity: 1;
}

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  min-height: 420px;
}

.tab-panel-text {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tab-panel-text h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tab-panel-text p {
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tab-checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.tab-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 1px solid var(--off-white);
}

.tab-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230D1B2A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.tab-panel-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.tab-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration-layout) var(--ease-out-quart);
}

.tab-panel:hover .tab-panel-image img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .tab-panel-inner {
    grid-template-columns: 1fr;
  }

  .tab-panel-image {
    min-height: 220px;
  }

  .tab-panel-text {
    padding: 32px 24px;
  }

  .tab-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-btn {
    font-size: 0.82rem;
    padding: 10px 14px;
    gap: 0;
    flex: 0 0 auto;
    min-width: 92px;
    scroll-snap-align: start;
  }

  .tab-btn[data-tab="transmission"],
  .tab-btn[data-tab="suspension"],
  .tab-btn[data-tab="electrical"],
  .tab-btn[data-tab="preventive"] {
    min-width: 124px;
  }

  .tab-btn svg {
    display: none;
  }
}

/* ==============================
   Services Full Page
============================== */
.services-category {
  margin-bottom: 3rem;
}

.services-category:last-child {
  margin-bottom: 0;
}

.category-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.services-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.services-list-item:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.15);
}

.services-list-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.services-list-item-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.services-list-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

/* Services page: SVG icon class on list items */
.services-list-item-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 3px;
}

/* Services page: full-page variant spacing */
.services-section--page .tab-panels {
  margin-top: 0;
}

/* Services "all at a glance" grid */
.services-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.services-category-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.services-category-header svg {
  flex-shrink: 0;
  color: var(--gold);
}

.services-category-header .category-label {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .services-category-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer contact items: support SVG icons (no longer span:first-child) */
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.7;
}

/* ==============================
   About Split Section (Home)
============================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section--reverse {
  direction: rtl;
}

.split-section--reverse > * {
  direction: ltr;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-section--reverse {
    direction: ltr;
  }
}

/* ==============================
   About Page
============================== */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 0.5rem 0 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--silver));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold);
  transition: box-shadow var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
}

.value-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==============================
   Contact Page
============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-detail-icon svg {
  display: block;
}

.contact-detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-detail-text a,
.contact-detail-text span {
  color: var(--text-body);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.contact-detail-text a:hover {
  color: var(--gold);
}

.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==============================
   Contact Form
============================== */
.contact-form-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-wrap h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

.form-group label .req {
  color: var(--gold);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 197, 209, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8C5D1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--silver-dim);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e07070;
  box-shadow: 0 0 0 3px rgba(220, 100, 100, 0.15);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

/* Honeypot */
.hp-field {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 1rem;
}

.form-status.success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.form-status.error {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(220, 100, 100, 0.12);
  color: #f5a0a0;
  border: 1px solid rgba(220, 100, 100, 0.3);
}

.form-status-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ==============================
   CTA Section
============================== */
.cta-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section .section-label {
  color: var(--gold);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--silver);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gold);
  transition: color var(--transition);
}

.cta-phone:hover {
  color: var(--gold-light);
}

/* ==============================
   Footer
============================== */
/* Footer CTA Strip */
.footer-cta-strip {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.04) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2.5rem 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-cta-sub {
  font-size: 0.95rem;
  color: var(--silver);
  margin-bottom: 0;
}

.footer-cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .footer-cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Footer Main */
.site-footer {
  background: #07111c;
}

.site-footer > .container {
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 120px;
  width: auto;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--silver);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--silver);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--silver);
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.7;
}

.footer-contact-item a {
  color: var(--silver);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

/* Footer Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-license {
  opacity: 0.5;
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold);
}

@media (max-width: 560px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}



/* ==============================
   Aggie Owned Callout Section
============================== */
/* v4.4.0: Aggie Owned section enlarged per client request 2026-04-29.
   Hero-scale padding, oversized headline (3.5rem -> clamp), gold accent
   border on top and bottom, larger image with maroon glow, larger body
   copy and CTA. Section now reads as a primary feature, not a sidebar. */
.aggie-callout {
  padding: clamp(96px, 12vw, 180px) 0;
  background: var(--navy);
  color: var(--silver-light);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.aggie-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(80, 0, 0, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.aggie-callout::after {
  content: 'BRYAN';
  position: absolute;
  bottom: -28px;
  right: -12px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(120px, 18vw, 280px);
  color: rgba(201, 168, 76, 0.05);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.aggie-callout .container {
  position: relative;
  z-index: 1;
}

.aggie-callout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

@media (max-width: 768px) {
  .aggie-callout-grid {
    grid-template-columns: 1fr;
  }
}

.aggie-callout-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.25),
    0 0 80px rgba(80, 0, 0, 0.35);
  display: block;
}

.aggie-callout-text .section-label {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.aggie-callout-text h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.aggie-callout-text h2::after {
  content: '';
  display: block;
  width: 88px;
  height: 4px;
  background: var(--gold);
  margin-top: 1.25rem;
  border-radius: 2px;
}

.aggie-callout-text p {
  margin-bottom: 1.75rem;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--silver-light);
}

.aggie-callout-text .btn {
  font-size: 1rem;
  padding: 14px 28px;
}



/* ==============================
   Photo Figures (Kolton contributions)
============================== */
.aggie-community-photo {
  margin: 2rem auto 0;
  max-width: 900px;
}

.aggie-community-photo img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  display: block;
}

.aggie-community-photo figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--silver);
  font-size: 0.92rem;
  line-height: 1.55;
  font-style: italic;
}

.reviews-photo-banner {
  margin: 0 auto 3rem;
  max-width: 1100px;
}

.reviews-photo-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.18);
  display: block;
}

.reviews-photo-banner figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
}



/* ==============================
   Location Sign Banner
============================== */
.location-sign-banner {
  margin: 0;
  padding: 0 clamp(20px, 5vw, 48px);
  background: var(--off-white);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.location-sign-banner .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.location-sign-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.18);
  display: block;
}

.location-sign-banner figcaption {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
}

/* ==============================
   Page Hero (inner pages)
============================== */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: calc(72px + 3.5rem) 0 3.5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--silver);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-hero .section-label {
  margin-bottom: 0.75rem;
}

.page-hero-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.5rem auto 0;
}

/* ==============================
   Breadcrumb
============================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--silver);
  margin-bottom: 1rem;
  justify-content: center;
}

.breadcrumb a {
  color: var(--silver);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: rgba(184, 197, 209, 0.4);
}

/* ==============================
   Reviews page (pending)
============================== */
.testimonials-stagger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}

@media (max-width: 1024px) {
  .testimonials-stagger {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-stagger {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 27, 42, 0.07);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card--offset-down {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .testimonial-card--offset-down {
    margin-top: 0;
  }
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 24px;
  left: 24px;
  pointer-events: none;
  user-select: none;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.reviewer small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-cta {
  text-align: center;
}

.review-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Testimonials Grid (Reviews page v4.2.1) */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
}

.testimonial-quote::after {
  content: '"';
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================
   Location page (pending)
============================== */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--navy);
}

@media (max-width: 768px) {
  .location-split {
    grid-template-columns: 1fr;
  }
}

.location-map-pane {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.location-map-pane iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info-pane {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
}

.location-info-inner {
  padding: 56px 48px;
  width: 100%;
}

.location-info-inner .section-label {
  margin-bottom: 10px;
}

.location-info-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(24px, 3vw, 38px);
}

.location-sub {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.open-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 30px;
  padding: 10px 18px;
  margin-bottom: 2rem;
}

.open-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  animation: openPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes openPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.open-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: #4ade80;
}

.open-hours {
  font-size: 0.75rem;
  color: var(--silver-dim);
  margin-left: 4px;
}

.info-block {
  margin-bottom: 1.5rem;
}

.info-block h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.info-block p {
  color: var(--silver);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.info-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  transition: color var(--transition), border-color var(--transition);
}

.info-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 24px;
  font-size: 0.88rem;
  color: var(--silver);
}

.phone-large {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.phone-large:hover {
  color: var(--gold);
}

/* ==============================
   Utility: sr-only
============================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==============================
   Loading state for button
============================== */
.btn.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

/* ==============================
   Responsive tweaks
============================== */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 0;
  }

  .stat {
    padding: 0.75rem 1rem;
  }

  .trust-item {
    padding: 14px 16px;
    font-size: 0.75rem;
  }
}

/* ==============================
   Service Sub-Page Styles
============================== */
.page-hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero-sub {
  color: var(--silver);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service detail section on sub-pages */
.service-detail {
  margin-top: 3rem;
}

/* Related services grid on sub-pages */
.related-services {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-light);
}

.related-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.related-card-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================
   Get Started Page Styles
============================== */

/* Hero */
.gs-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 24px;
}

.gs-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gs-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

.gs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 27, 42, 0.88) 0%,
    rgba(13, 27, 42, 0.65) 50%,
    rgba(13, 27, 42, 0.82) 100%
  );
}

.gs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  width: 100%;
  padding-top: 96px;
}

.gs-hero-eyebrow {
  display: inline-block;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.gs-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.gs-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--silver);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.25rem;
}

.gs-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gs-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(184, 197, 209, 0.2);
  padding-top: 2rem;
}

.gs-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.gs-trust-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Services grid on get-started */
.gs-services {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.gs-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

.gs-service-card {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.gs-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.gs-service-icon {
  width: 52px;
  height: 52px;
  background: rgba(13, 27, 42, 0.05);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.gs-service-card:hover .gs-service-icon {
  background: var(--navy);
  color: var(--gold);
}

.gs-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.gs-service-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.gs-service-card:hover h3 {
  color: var(--navy);
}

/* Why Kubin section */
.gs-why {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--navy);
}

.gs-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.gs-why-inner {
  position: relative;
  z-index: 2;
}

.gs-why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 3.5rem;
}

.gs-why-point {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}

.gs-why-point:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.gs-why-point-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.gs-why-point h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.gs-why-point p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 0;
}

.gs-testimonial-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
}

.gs-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1rem;
}

.gs-testimonial-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 21px);
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gs-testimonial-block cite {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Estimate form section */
.gs-estimate {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.gs-estimate-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
  align-items: start;
}

.gs-estimate-sidebar {
  position: sticky;
  top: 96px;
}

.gs-estimate-sidebar h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gs-estimate-sidebar > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.gs-contact-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2rem;
}

.gs-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.gs-contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 27, 42, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.gs-contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.gs-contact-item-text a,
.gs-contact-item-text span {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
  display: block;
}

.gs-contact-item-text a {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  transition: color var(--transition);
}

.gs-contact-item-text a:hover {
  color: var(--gold-dark);
}

.gs-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
  transition: color var(--transition);
  margin-top: 4px;
}

.gs-map-link:hover {
  color: var(--gold);
}

/* Form card */
.gs-form-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.gs-form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.gs-form-subtitle {
  font-size: 0.875rem;
  color: var(--silver-dim);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.form-note {
  font-size: 0.78rem;
  color: var(--silver-dim);
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Success state */
.gs-form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.gs-form-success.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gs-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, 0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.gs-form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.gs-form-success p {
  font-size: 0.875rem;
  color: var(--silver);
  max-width: 340px;
  line-height: 1.6;
}

/* Special offer banner */
.gs-offer-banner {
  background: var(--gold);
  padding: 3rem 24px;
  text-align: center;
}

.gs-offer-inner {
  max-width: 800px;
  margin: 0 auto;
}

.gs-offer-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 0.625rem;
}

.gs-offer-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.gs-offer-heading span {
  display: block;
  font-size: 0.6em;
  font-weight: 500;
  color: rgba(13, 27, 42, 0.7);
  margin-top: 4px;
}

.btn-offer {
  background: var(--navy);
  color: var(--gold) !important;
  border-color: var(--navy);
  font-size: 0.875rem;
}

.btn-offer:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 27, 42, 0.35);
}

/* btn-ghost for get-started hero */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* btn-primary alias for get-started page (mirrors btn--gold) */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* Responsive: get-started */
@media (max-width: 1024px) {
  .gs-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gs-estimate-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gs-estimate-sidebar {
    position: static;
  }

  .gs-why-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gs-hero {
    padding: 0 20px;
  }

  .gs-hero-content {
    padding-top: 80px;
  }

  .gs-trust-badges {
    gap: 8px;
  }

  .gs-trust-badge {
    font-size: 0.72rem;
    padding: 7px 14px;
  }

  .gs-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gs-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .gs-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gs-hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .gs-services-grid {
    grid-template-columns: 1fr;
  }

  .gs-trust-badges {
    flex-direction: column;
    align-items: center;
  }
}

/* Dropdown hidden on mobile (overlay takes over) */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    display: none !important;
  }
}

/* ==============================
   Hero Trust Row (v4.2)
   All four items on a single line.
   Above 600px: nowrap, clamp-scaled font and padding so 4 items + 3 separators fit any desktop/tablet viewport.
   Mobile (<= 600px): allow wrap.
============================== */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  column-gap: 0;
  row-gap: clamp(6px, 0.6em, 10px);
  border-top: 1px solid rgba(184, 197, 209, 0.18);
  padding-top: 2.25rem;
  padding-bottom: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.6vw, 8px);
  padding: 0 clamp(6px, 1vw, 14px);
  border-right: 1px solid rgba(184, 197, 209, 0.18);
  font-size: clamp(0.6rem, 0.86vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--silver);
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-trust-item:last-child {
  border-right: none;
}

.hero-trust-item svg {
  flex-shrink: 0;
  color: var(--gold);
  width: clamp(12px, 1vw, 16px);
  height: clamp(12px, 1vw, 16px);
}

.hero-trust-item--aggie {
  color: #c8a;
}

.hero-trust-item--aggie svg {
  color: #c8a;
}

@media (max-width: 600px) {
  .hero-trust-row {
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 8px;
  }

  .hero-trust-item {
    border-right: none;
    font-size: 0.72rem;
    padding: 4px 12px;
    flex-shrink: 1;
  }
}

/* ==============================
   Aggieland Section (v4.1)
============================== */
.aggie-section {
  position: relative;
  overflow: hidden;
}

.aggie-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(80, 0, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.aggie-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.aggie-inner h2 {
  margin-bottom: 1rem;
}

.aggie-inner > p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 2.5rem;
}

.aggie-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.aggie-trust-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.aggie-trust-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.aggie-trust-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--silver);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .aggie-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Get Started Page — New Form Layout (v4.1)
============================== */

/* Page hero with trust bar */
.gs-page-hero {
  position: relative;
  background: var(--navy);
  padding: calc(72px + 2.5rem) 0 2.5rem;
  overflow: hidden;
}

.gs-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.gs-top-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(184, 197, 209, 0.15);
  padding-top: 1.5rem;
  margin-top: 1.25rem;
}

.gs-top-trust-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 0 clamp(12px, 2vw, 24px);
  white-space: nowrap;
}

.gs-top-trust-sep {
  color: rgba(184, 197, 209, 0.3);
  font-size: 0.8rem;
}

/* Form section layout */
.gs-form-section {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--off-white);
}

.gs-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Sidebar */
.gs-sidebar {
  position: sticky;
  top: 96px;
}

.gs-sidebar-inner {
  background: var(--white);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.gs-sidebar-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.gs-sidebar-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.gs-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.gs-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gs-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(13, 27, 42, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}

.gs-contact-row strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.gs-contact-row a,
.gs-contact-row span {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 500;
  transition: color var(--transition);
}

.gs-contact-row a:hover {
  color: var(--gold-dark);
}

.gs-sidebar-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.gs-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.gs-badge svg {
  flex-shrink: 0;
  color: var(--gold-dark);
}

/* Form card */
.gs-form-wrap {
  /* wrapper for the form card */
}

.gs-form-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.gs-form-card-header {
  margin-bottom: 1.75rem;
}

.gs-form-card-header h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 0.4rem;
}

.gs-form-card-header p {
  color: var(--silver);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Fieldsets */
.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.form-fieldset-legend {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  width: 100%;
}

.form-fieldset-hint {
  font-size: 0.8rem;
  color: var(--silver-dim);
  margin-bottom: 1rem;
  margin-top: -0.25rem;
}

/* Three-column row for year/make/model */
.form-row--three {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 0.875rem;
}

@media (max-width: 560px) {
  .form-row--three {
    grid-template-columns: 1fr;
  }
}

/* Services checkbox grid */
.services-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.checkbox-card {
  position: relative;
}

.checkbox-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-card-inner {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 197, 209, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--silver);
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  user-select: none;
  line-height: 1.3;
}

.checkbox-card-inner::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid rgba(184, 197, 209, 0.4);
  border-radius: 3px;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.checkbox-card input:checked + .checkbox-card-inner {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--gold);
  color: var(--white);
}

.checkbox-card input:checked + .checkbox-card-inner::before {
  background: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230D1B2A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.checkbox-card-inner:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--white);
}

.checkbox-card--other .checkbox-card-inner {
  font-style: italic;
  color: var(--silver-dim);
}

.checkbox-card--other input:checked + .checkbox-card-inner {
  font-style: normal;
  color: var(--white);
}

/* Radio card group */
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.radio-card {
  position: relative;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 197, 209, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--silver);
  font-weight: 500;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  user-select: none;
}

.radio-card-inner svg {
  flex-shrink: 0;
  color: var(--silver-dim);
  transition: color var(--transition);
}

.radio-card input:checked + .radio-card-inner {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--gold);
  color: var(--white);
}

.radio-card input:checked + .radio-card-inner svg {
  color: var(--gold);
}

.radio-card-inner:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--white);
}

/* Optional label */
.form-optional {
  font-size: 0.75rem;
  color: var(--silver-dim);
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
  margin-left: 4px;
}

/* Inline form error message */
.form-error {
  display: none;
  font-size: 0.78rem;
  color: #f5a0a0;
  margin-top: 0.4rem;
}

.form-error.visible {
  display: block;
}

/* Submit button */
.gs-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  justify-content: center;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.gs-submit-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--silver-dim);
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Success state */
.gs-success-state {
  display: none;
  text-align: center;
  padding: 48px 24px;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.gs-success-state.visible {
  display: flex;
}

.gs-success-icon {
  width: 68px;
  height: 68px;
  background: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.gs-success-state h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.gs-success-state p {
  font-size: 0.9rem;
  color: var(--silver);
  max-width: 360px;
  line-height: 1.6;
  margin-bottom: 0;
}

.gs-success-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* Responsive: form layout */
@media (max-width: 900px) {
  .gs-form-layout {
    grid-template-columns: 1fr;
  }

  .gs-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .services-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Contact Page Get-Started Pointer (v4.1)
============================== */
.contact-gs-pointer {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-gs-pointer p {
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 0;
  flex: 1;
  min-width: 180px;
}

.contact-gs-pointer strong {
  color: var(--text-dark);
}

/* ==============================
   Reviews Page Updates (v4.1)
============================== */
.review-waiting {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.review-waiting-icon {
  width: 72px;
  height: 72px;
  background: rgba(13, 27, 42, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.review-waiting h2 {
  margin-bottom: 0.75rem;
}

.review-waiting p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* Aggie-maroon accent (home + about Aggieland section) */
.aggie-maroon {
  color: #8b1a1a;
}

/* version bump: main.css v4.1.0 */
