/* Battle Truck Solutions - Main Stylesheet */
/* Based on Figma Design Variables */

/* ===== CSS Variables (from Figma) ===== */
:root {
    /* Colors - Surface */
    --surface-page: #292929;
    --surface-primary: #000000;
    --surface-secondary: #000000;
    --surface-tertiary: #daa628;

    /* Colors - Text */
    --text-primary: #ffffff;
    --text-secondary: #989898;
    --text-tertiary: #000000;
    --text-action: #daa628;

    /* Colors - Border */
    --border-primary: #ffffff;
    --border-secondary: #989898;
    --border-tertiary: #000000;
    --border-action: #daa628;

    /* Colors - Primary Palette */
    --primary-400: #daa628;
    --primary-500: #c49522;
    --primary-600: #a67d1c;

    /* Colors - Neutral */
    --neutral-950: #292929;
    --neutral-900: #333333;
    --neutral-800: #525252;
    --neutral-700: #666666;
    --neutral-black: #000000;
    --neutral-white: #ffffff;

    /* Typography Scale - Headings */
    --heading-h1: 50px;
    --heading-h2: 35px;
    --heading-h3: 30px;
    --heading-h4: 27px;
    --heading-h5: 24px;
    --heading-h6: 24px;

    /* Typography Scale - Paragraphs */
    --paragraph-xl: 30px;   /* intro blocks: image + copy (careers, visit center, etc.) */
    --paragraph-lg: 20px;
    --paragraph-md: 16px;
    --paragraph-sm: 14px;
    --paragraph-xs: 12px;

    /* Font Families */
    --font-primary: 'Aptos', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-2xl: 66px;

    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 7px;
    --radius-lg: 10px;

    /* Shadows */
    --shadow-text: 0px 4px 4px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;

    /* Layout */
    --max-width: 1440px;
    --content-width: 1418px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--surface-page);
    color: var(--text-primary);
    line-height: 1.45;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--text-action);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* Visually hidden but available to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Typography ===== */
h1, .h1 {
    font-size: var(--heading-h1);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.75px;
}

h2, .h2 {
    font-size: var(--heading-h2);
    font-weight: 700;
    line-height: 1.2;
}

h3, .h3 {
    font-size: var(--heading-h3);
    font-weight: 700;
    line-height: 1.2;
}

h4, .h4 {
    font-size: var(--heading-h4);
    font-weight: 600;
    line-height: 1.05;
}

h5, .h5 {
    font-size: var(--heading-h5);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

h6, .h6 {
    font-size: var(--heading-h6);
    font-weight: 600;
    line-height: 1.2;
}

p {
    font-size: var(--paragraph-lg);
    line-height: 1.45;
}

.text-action {
    color: var(--text-action);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-uppercase {
    text-transform: uppercase;
}

/* ===== Layout ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.content-container {
    max-width: var(--content-width);
    margin: 0 auto;
    width: 100%;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
    padding-bottom: var(--spacing-lg);
}

/* ===== Top Navigation ===== */
.top-nav-wrapper {
    width: 100%;
}

.top-nav {
    background-color: var(--surface-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    height: 86px;
}

.nav-menu-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 58px;
}

.logo img.logo-icon {
    height: 60px;
    width: 68px;
}

.logo img.logo-text {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    height: 48px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-action);
}

.nav-link.active {
    color: var(--text-action);
    border-bottom: 2px solid var(--primary-400);
}

.nav-link.has-dropdown {
    gap: 10px;
}

.nav-link .dropdown-arrow {
    width: 10px;
    height: 6px;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

/* Active state - gold arrow, no rotation */
.nav-link.has-dropdown.active .dropdown-arrow {
    /* Filter converts to --primary-400 / Icon/primary (#daa628) */
    filter: brightness(0) saturate(100%) invert(65%) sepia(68%) saturate(497%) hue-rotate(6deg) brightness(96%) contrast(89%);
}

/* Hover state - gold arrow with rotation */
.nav-link.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    /* Filter converts to --primary-400 / Icon/primary (#daa628) */
    filter: brightness(0) saturate(100%) invert(65%) sepia(68%) saturate(497%) hue-rotate(6deg) brightness(96%) contrast(89%);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.nav-icon:hover {
    opacity: 0.8;
}

.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
}

/* Site Search Overlay */
.site-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 20px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.site-search-overlay.site-search-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.site-search-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.site-search-modal {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 100px);
    background-color: var(--surface-primary);
    border: 1px solid var(--border-action);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.site-search-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-secondary);
    flex-shrink: 0;
}

.site-search-label {
    font-size: var(--paragraph-sm);
    color: var(--text-secondary);
    white-space: nowrap;
}

.site-search-input {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    font-size: var(--paragraph-md);
    font-family: inherit;
    color: var(--text-primary);
    background-color: var(--neutral-900);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition-fast);
}

.site-search-input::placeholder {
    color: var(--text-secondary);
}

.site-search-input:focus {
    border-color: var(--border-action);
}

.site-search-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    color: var(--text-primary);
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.site-search-close:hover {
    color: var(--text-action);
    background-color: var(--neutral-800);
}

.site-search-results {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    overflow-y: auto;
    flex: 1;
    min-height: 120px;
}

.site-search-results li {
    margin: 0;
}

.site-search-link {
    display: block;
    padding: 12px 20px;
    font-size: var(--paragraph-md);
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.site-search-link:hover {
    color: var(--text-action);
    background-color: var(--neutral-900);
}

.site-search-empty {
    padding: 20px;
    margin: 0;
    font-size: var(--paragraph-md);
    color: var(--text-secondary);
    text-align: center;
}

/* Service Dropdown */
.dropdown-container {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--surface-primary);
    border: 1px solid var(--border-action);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 13px;
    min-width: 260px;
    z-index: 100;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-container.active .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    padding: 5px 0;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--text-action);
}

/* Contact Bar */
.contact-bar {
    background-color: var(--surface-tertiary);
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 33px;
    overflow: hidden;
}

.contact-bar-content {
    display: flex;
    align-items: center;
    gap: 17px;
    width: 100%;
}

.contact-bar-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--neutral-950);
    letter-spacing: -0.12px;
    white-space: normal;
    min-width: 0;
}

.contact-bar-buttons {
    display: flex;
    align-items: center;
    gap: 17px;
    flex: 1;
}

.btn-contact {
    background-color: var(--neutral-white);
    border: 1px solid var(--neutral-black);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-black);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    white-space: nowrap;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    flex: 1;
    text-align: center;
}

.btn-contact:hover {
    background-color: var(--neutral-black);
    color: var(--neutral-white);
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 13px;
    white-space: nowrap;
}

.phone-number img {
    width: 24px;
    height: 24px;
}

.phone-number span {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-tertiary);
}

/* ===== Mobile Navigation ===== */
.mobile-menu-toggle {
    display: none;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    padding: 2px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-secondary);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid var(--neutral-800);
}

.mobile-nav-link.active {
    color: var(--text-action);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-dropdown-menu.active {
    display: flex;
}

.mobile-dropdown-menu a {
    padding: 10px;
    font-size: 16px;
    color: var(--text-secondary);
}

.mobile-contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--surface-tertiary);
    border-radius: var(--radius-md);
}

.mobile-contact-info .phone-number {
    justify-content: center;
    margin-bottom: 15px;
}

.mobile-contact-info .phone-number span {
    font-size: 24px;
}

.mobile-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-buttons .btn-contact {
    width: 100%;
    text-align: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    width: 100%;
    min-height: 380px;
    height: 551px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-background-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px 32px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 35%, transparent 55%, rgba(0,0,0,0.5) 100%);
}

.hero-title {
    margin: 0;
    font-size: var(--heading-h1);
    font-weight: 800;
    text-align: center;
    color: var(--text-tertiary);
    letter-spacing: 0.75px;
    max-width: 1328px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.hero-content {
    text-align: center;
    max-width: 981px;
    text-shadow: var(--shadow-text);
}

.hero-content .hero-subtitle {
    margin: 0 0 12px 0;
}

.hero-content .hero-description {
    margin: 0;
}

.hero-subtitle {
    font-size: var(--heading-h2);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.75px;
    line-height: 1.2;
}

.hero-description {
    font-size: 27px;
    color: var(--text-primary);
    line-height: 1.35;
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: var(--primary-400);
    z-index: 2;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: var(--heading-h1);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--text-primary);
    text-shadow: var(--shadow-text);
}

/* Terms of Service page */
.terms-content-section {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.terms-content-box {
    padding: var(--spacing-xl) var(--spacing-2xl);
}

.terms-list {
    list-style: none;
    counter-reset: terms;
    padding: 0;
    margin: 0 0 var(--spacing-xl) 0;
}

.terms-list-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.terms-list-item:last-of-type {
    margin-bottom: 0;
}

.terms-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: 700;
    color: var(--text-tertiary);
    background-color: var(--primary-400);
    border-radius: var(--radius-sm);
    line-height: 1;
}

.terms-item-body {
    flex: 1;
    min-width: 0;
}

.terms-item-title {
    font-size: var(--heading-h5);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.terms-item-text {
    font-size: var(--paragraph-md);
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.terms-footer-meta {
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-secondary);
}

.terms-last-updated {
    font-size: var(--paragraph-md);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.terms-contact-cta {
    font-size: var(--paragraph-md);
    color: var(--text-primary);
    margin: 0;
}

.terms-link {
    color: var(--text-action);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .terms-content-box {
        padding: var(--spacing-md);
    }

    .terms-list-item {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ===== Section Styles ===== */
.section {
    width: 100%;
    max-width: var(--content-width);
    padding: 0 var(--spacing-sm);
}

.section-header {
    display: flex;
    align-items: center;
    padding: 10px 29px;
    height: 53px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-action);
    text-transform: uppercase;
}

/* ===== Card Styles ===== */
.cards-grid {
    display: flex;
    gap: 9px;
    width: 100%;
}

.card {
    flex: 1;
    background-color: var(--surface-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    height: 249px;
    overflow: hidden;
}

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

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 59px;
    background: #03070f;
    border-bottom: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.card-image-overlay h5 {
    color: var(--text-primary);
    font-size: var(--heading-h6);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: none;
    text-align: center;
}

.card-content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.card-content p {
    color: var(--text-secondary);
    font-size: var(--paragraph-lg);
    letter-spacing: -0.1px;
}

.card-footer {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #e8e8e8 20%,
        #d0d0d0 40%,
        #b8b8b8 60%,
        #a0a0a0 80%,
        #888888 100%);
    position: relative;
}

.btn-go-now {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-black);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.btn-go-now .chevron {
    font-size: 22px;
    font-weight: 400;
    position: relative;
    top: 1px;
}

/* ===== Info Box ===== */
.info-box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 36px 55px;
    width: 100%;
}

.info-box-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    padding: 0 10px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Figma: gold outline icon container for Advantage and Always Growing sections */
.info-box .icon-box {
    border: 1px solid var(--border-action);
    border-radius: var(--radius-md);
    background-color: transparent;
}

/* Advantage section: icons are full PNGs with border already; no extra border */
.info-box.advantage-box .icon-box {
    border: none;
    background: none;
}

/* Always Growing section: gold-tinted icons (default for .info-box) */
.info-box .icon-box img {
    /* Gold tint to match Figma Icon/primary (#daa628) */
    filter: brightness(0) saturate(100%) invert(65%) sepia(68%) saturate(497%) hue-rotate(6deg) brightness(96%) contrast(89%);
}

/* Advantage section: line-art icons stay white (no gold filter) */
.info-box.advantage-box .icon-box img {
    filter: none;
}

/* Always Growing section: icons are full PNGs with border already; no extra border or filter */
.info-box.always-growing-box .icon-box {
    border: none;
    background: none;
}

.info-box.always-growing-box .icon-box img {
    filter: none;
}

.info-list-item p {
    font-size: var(--paragraph-lg);
    color: var(--text-primary);
    line-height: 24px;
    max-width: 470px;
}

.info-box-text {
    flex: 1;
    font-size: 34px;
    color: var(--text-secondary);
    line-height: 50px;
}

.info-box-description {
    font-size: var(--paragraph-lg);
    color: var(--text-secondary);
    line-height: 27px;
    margin-bottom: 34px;
}

.info-box-highlight {
    color: var(--text-action);
    font-size: var(--paragraph-lg);
    line-height: 27px;
    padding: var(--spacing-md) 0 0;
}

/* ===== Three Column Info ===== */
.three-column-grid {
    display: flex;
    gap: var(--spacing-2xl);
    padding: 0 10px;
}

.three-column-grid .info-list {
    width: 389px;
}

/* Always Growing: 3x3 grid matching image layout (row order: Shock Brakes Starter | Driveline Seat PTO | DPF Tire Mirror) */
.always-growing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px var(--spacing-2xl);
    padding: 0 10px;
}

.always-growing-grid .info-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.always-growing-grid .info-list-item p {
    font-size: var(--paragraph-lg);
    color: var(--text-primary);
    line-height: 24px;
    max-width: 470px;
}

/* ===== Partner Section ===== */
.partner-box.info-box {
    background-color: var(--neutral-black);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
}

.partner-box-inner {
    display: flex;
    width: 100%;
    min-height: 180px;
}

.partner-content {
    flex: 1;
    padding: 35px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.partner-image {
    width: 400px;
    flex-shrink: 0;
    display: flex;
}

.partner-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.partner-content p {
    font-size: var(--paragraph-lg);
    color: var(--text-secondary);
    line-height: 27px;
    margin-bottom: 40px;
}

.btn-location {
    background-color: var(--neutral-white);
    border: 1px solid var(--neutral-black);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-black);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn-location:hover {
    background-color: var(--neutral-black);
    color: var(--neutral-white);
    border: 1px solid var(--neutral-white);
}

/* ===== Footer ===== */
.footer {
    background-color: var(--surface-secondary);
    width: 100%;
    position: relative;
}

.footer-gold-bar {
    height: 8px;
    background-color: var(--primary-400);
}

.footer-content {
    padding: 40px 52px;
    display: flex;
    gap: 344px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}

.footer-logo img {
    height: 60px;
    width: 68px;
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.48px;
}

.footer-tagline {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.08px;
    margin-bottom: 23px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 24px;
    height: 24px;
}

.social-links img {
    width: 100%;
    height: 100%;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav-column {
    width: 130px;
}

.footer-nav-column:first-child {
    width: 193px;
}

.footer-nav-column h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.08px;
    padding-bottom: 16px;
}

.footer-nav-column a {
    display: block;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.08px;
    margin-bottom: 8px;
}

.footer-nav-column a:hover {
    color: var(--text-action);
}

.footer-copyright {
    position: absolute;
    bottom: 20px;
    left: 52px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: -0.06px;
}

/* ===== Form Styles ===== */
.form-container {
    border-radius: 10px;
    border: 2px solid var(--border-primary, #FFF);
    background: rgba(0, 0, 0, 0.50);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 30px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.form-container .form-label {
    color: var(--text-primary);
}

.form-container .form-input,
.form-container .form-select,
.form-container .form-textarea {
    background-color: var(--neutral-white);
    color: var(--neutral-black);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex-basis: 100%;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 5px;
}

.form-label .required {
    color: #ff0000;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 15px;
    border: 1px solid var(--neutral-800);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-primary);
    background-color: var(--neutral-white);
    color: var(--neutral-black);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-400);
}

.form-input::placeholder {
    color: var(--neutral-700);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    background-color: var(--primary-400);
    color: var(--neutral-black);
    padding: 12px 30px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), opacity var(--transition-fast);
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--primary-500);
    border-color: var(--neutral-white);
}

.btn-submit:disabled {
    border-radius: 4px;
    border: 1px solid var(--border-tertiary, #000);
    opacity: 0.5;
    background: var(--surface-tertiary, #DAA628);
    cursor: not-allowed;
}

.btn-submit:active:not(:disabled) {
    background-color: var(--primary-600);
}

/* Form section: constrained width for form-only pages (schedule, careers, parts inquiry) */
.form-section {
    width: 100%;
    max-width: 900px;
}

/* Form subsection headings (Contact Info, Vehicle Info, etc.) */
.form-section-heading {
    color: var(--text-action);
    font-size: var(--heading-h5);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--neutral-700);
}

.form-section-heading + .form-section-heading,
.form-row + .form-section-heading {
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Upload zone (drag-and-drop area) */
.upload-zone {
    border: 2px dashed var(--neutral-700);
    padding: 30px;
    text-align: center;
    border-radius: var(--radius-sm);
}

.upload-zone-icon {
    width: 40px;
    margin: 0 auto 10px;
    display: block;
}

.upload-zone-text {
    color: var(--neutral-700);
    font-size: var(--paragraph-sm);
    margin: 0;
}

/* ===== Customer Portal Intro (two-column, feature list + sign-in) ===== */
.portal-intro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
}

.portal-intro-content {
    flex: 1;
    min-width: 0;
}

.portal-intro-content h2 {
    color: var(--text-action);
    font-size: var(--heading-h2);
    font-weight: 700;
    margin-bottom: 20px;
}

.portal-intro-content > p {
    font-size: var(--paragraph-lg);
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.45;
}

.portal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-primary);
}

.portal-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.portal-feature-item:last-child {
    margin-bottom: 0;
}

.portal-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #f5f4ef;
    border: 1px solid var(--border-action);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.portal-feature-text {
    font-size: var(--paragraph-lg);
    color: var(--text-primary);
    margin: 0;
}

.portal-signin-column {
    flex: 1;
    max-width: 400px;
}

.portal-signin-box {
    padding: 30px;
    text-align: center;
}

.portal-signin-box.form-container,
.portal-signin-box .form-container {
    padding: 30px;
    text-align: center;
}

.portal-signin-box h3 {
    color: var(--text-action);
    font-size: var(--heading-h5);
    font-weight: 700;
    margin-bottom: 25px;
}

.portal-signin-desc {
    font-size: var(--paragraph-sm);
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.portal-signin-img {
    max-width: 100%;
    height: auto;
}

/* Parts inquiry bullet lists */
.parts-inquiry-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style: disc;
}

.parts-inquiry-list li {
    font-size: var(--paragraph-md);
    color: var(--text-primary);
    line-height: 1.5;
}

/* Info card body highlight (e.g. 24/7 Emergency) */
.info-card-body .text-action {
    margin-top: 10px;
}

/* Info box with larger horizontal padding (e.g. refurbishment process) */
.info-box.info-box-lg-padding {
    padding: 40px 60px;
}

/* ===== Info Cards (Location, Hours, etc.) ===== */
.info-cards {
    display: flex;
    gap: 9px;
    width: 100%;
}

.info-card {
    flex: 1;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #1a1a1a;
}

.info-card-header {
    background: linear-gradient(to bottom,
        #e8e8e8 0%,
        #e0e0e0 25%,
        #d8d8d8 50%,
        #d0d0d0 75%,
        #c8c8c8 100%);
    padding: 15px 20px;
    text-align: center;
}

.info-card-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-black);
    text-transform: uppercase;
}

.info-card-body {
    padding: 20px;
    background-color: #1a1a1a;
}

.info-card-body p {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-card-body ul {
    list-style: disc;
    padding-left: 20px;
}

.info-card-body li {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.btn-directions {
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    background-color: var(--neutral-white);
    border: 1px solid var(--neutral-black);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--neutral-black);
    text-transform: uppercase;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.btn-directions:hover {
    background-color: var(--neutral-black);
    color: var(--neutral-white);
    border: 1px solid var(--neutral-white);
}

/* ===== Contact Us Page (Figma layout) ===== */
.contact-hero-section {
    width: 100%;
    max-width: var(--content-width);
    padding: 0 var(--spacing-md);
}

/* Get in Touch: image left (border around image only) / content right, no border on content */
.contact-hero {
    display: flex;
    align-items: stretch;
    min-height: 324px;
    border-radius: 7px;
    overflow: visible;
    background: none;
    gap: 0;
}

.contact-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 324px;
    width: 324px;
    height: 324px;
    overflow: hidden;
    background: var(--neutral-black);
    border: 1px solid var(--border-primary, #FFF);
    border-radius: 7px;
    box-sizing: border-box;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-hero-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 40px 50px 40px 44px;
    background: none;
    overflow: visible;
}

.contact-hero-title {
    font-size: var(--heading-h2);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contact-hero-description {
    color: var(--text-secondary, #989898);
    font-family: Aptos, var(--font-primary);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
    max-width: 100%;
}

/* Override .two-column .column-content styles so Get in Touch heading stays white */
.contact-hero .contact-hero-content h2.contact-hero-title,
.contact-hero .contact-hero-content .contact-hero-title {
    color: #fff !important;
}

/* Description uses secondary grey; override .two-column .column-content p */
.contact-hero .contact-hero-content p.contact-hero-description,
.contact-hero .contact-hero-content .contact-hero-description {
    color: var(--text-secondary, #989898) !important;
    font-family: Aptos, var(--font-primary) !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
}

.contact-info-section {
    width: 100%;
    max-width: var(--content-width);
    padding: 0 var(--spacing-md);
}

.contact-info-cards {
    gap: 20px;
}

.contact-info-cards .info-card-body ul {
    list-style: none;
    padding-left: 0;
}

.contact-info-cards .info-card-body li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
}

.contact-info-cards .info-card-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: bold;
}

.contact-form-section {
    width: 100%;
    max-width: 900px;
    padding: 0 var(--spacing-md);
}

.contact-form-panel {
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-800);
    background-color: var(--neutral-900);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contact-form-panel .form-label {
    color: var(--text-primary);
}

.form-submit-row {
    text-align: center;
    margin-top: 30px;
}

.btn-submit-inquiry {
    text-transform: uppercase;
    letter-spacing: 0.75px;
    padding: 12px 32px;
    border: 1px solid var(--neutral-black);
}

.department-card-content {
    text-align: center;
    padding: 30px;
}

.department-card-content .department-icon {
    width: 60px;
    margin-bottom: 20px;
}

.department-card-content h4 {
    color: var(--text-action);
    margin-bottom: 15px;
}

.department-card-content p {
    margin-bottom: 10px;
}

.department-card-content .department-phone {
    color: var(--text-action);
    margin-bottom: 0;
}

/* ===== Two Column Layout ===== */
.two-column {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.two-column .column-image {
    width: 200px;
    flex-shrink: 0;
    border: 3px solid var(--border-action);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.two-column .column-image img {
    width: 100%;
    height: auto;
}

.two-column .column-content {
    flex: 1;
}

.two-column .column-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-action);
    margin-bottom: 15px;
}

.two-column .column-content p {
    font-size: var(--paragraph-lg);
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Visit Our Service Center (locations) ===== */
.visit-service-center {
    display: flex;
    min-height: 324px;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: visible;
}

.visit-service-center-image {
    flex: 0 0 35%;
    height: 324px;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary, #fff);
    box-sizing: border-box;
}

.visit-service-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visit-service-center-content {
    flex: 1;
    min-width: 0;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.visit-service-center-content h2 {
    font-size: var(--heading-h2);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.visit-service-center-content p {
    font-size: var(--paragraph-xl);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 100%;
}

/* ===== Schedule Intro (ImageLeft_CopyRight) ===== */
.schedule-intro-block {
    width: 100%;
    max-width: var(--content-width);
}

.schedule-intro-inner {
    display: flex;
    gap: 10px;
    align-items: stretch;
    background: transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.schedule-intro-image {
    width: 451px;
    height: 324px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-primary, #fff);
    box-sizing: border-box;
}

.schedule-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.schedule-intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    min-height: 324px;
}

.schedule-intro-title {
    font-family: var(--font-primary);
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.45;
}

.schedule-intro-p {
    font-family: var(--font-primary);
    font-size: 30px;
    line-height: 1.67;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.schedule-intro-p + .schedule-intro-p {
    margin-top: 0.5em;
}

/* ===== Numbered List ===== */
.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.numbered-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.numbered-item .number {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-action);
    line-height: 1;
    min-width: 40px;
}

.numbered-item .content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.numbered-item .content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Refurbishment Process Grid ===== */
.refurbishment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
}

.refurbishment-grid .numbered-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.refurbishment-grid .numbered-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-action);
    line-height: 1;
    min-width: 50px;
}

.refurbishment-grid .numbered-item p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

/* ===== Warranty Process List ===== */
.warranty-process-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 10px 0;
}

.warranty-process-list .numbered-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.warranty-process-list .numbered-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-action);
    line-height: 1;
    min-width: 50px;
}

.warranty-process-list .numbered-item p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    width: 100%;
    padding: 30px;
    overflow: hidden;
}

.cta-section .cta-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.cta-section .cta-content {
    position: relative;
    z-index: 1;
    max-width: 50%;
}

.cta-section .cta-content p {
    font-size: var(--paragraph-lg);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}

/* ===== Service Page Specific ===== */
.service-page-header {
    height: 120px;
}

/* ===== Parts Page Header ===== */
.parts-page-header {
    height: 120px;
}

/* ===== Locations Page Header ===== */
.locations-page-header {
    height: 120px;
}

/* ===== Customer Portal Page Header ===== */
.customer-portal-page-header {
    height: 120px;
}

/* ===== Careers Page Header ===== */
.careers-page-header {
    height: 120px;
}

/* ===== Contact Us Page Header ===== */
.contact-us-page-header {
    height: 120px;
}

/* ===== Schedule Appointment Page Header ===== */
.schedule-appointment-page-header {
    height: 120px;
}

/* ===== Terms of Service / Cookie Policy / Privacy Policy Page Headers (shared image) ===== */
.terms-of-service-page-header,
.cookie-policy-page-header,
.privacy-policy-page-header {
    height: 120px;
}

/* Page header image: scale to fit on small viewports so title text is not cropped */
@media (max-width: 992px) {
    .page-header {
        height: auto;
        min-height: 80px;
        overflow: visible;
        display: block;
        padding: 0;
    }

    /* About page header: keep title overlaid on image at all sizes */
    .page-header.about-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.about-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Service page header: keep title overlaid on image at all sizes */
    .page-header.service-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.service-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Parts page header: keep title overlaid on image at all sizes */
    .page-header.parts-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.parts-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Locations page header: keep title overlaid on image at all sizes */
    .page-header.locations-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.locations-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Customer portal page header: keep title overlaid on image at all sizes */
    .page-header.customer-portal-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.customer-portal-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Careers page header: keep title overlaid on image at all sizes */
    .page-header.careers-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.careers-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Contact us page header: keep title overlaid on image at all sizes */
    .page-header.contact-us-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.contact-us-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Schedule appointment page header: keep title overlaid on image at all sizes */
    .page-header.schedule-appointment-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.schedule-appointment-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* Terms of service, cookie policy, privacy policy: keep title overlaid on image at all sizes */
    .page-header.terms-of-service-page-header,
    .page-header.cookie-policy-page-header,
    .page-header.privacy-policy-page-header {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        aspect-ratio: 6.5 / 1;
        min-height: 80px;
        height: auto;
        padding: 0;
    }

    .page-header.terms-of-service-page-header .page-header-background,
    .page-header.cookie-policy-page-header .page-header-background,
    .page-header.privacy-policy-page-header .page-header-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .page-header:not(.service-page-header):not(.parts-page-header):not(.locations-page-header):not(.customer-portal-page-header):not(.about-page-header):not(.careers-page-header):not(.contact-us-page-header):not(.schedule-appointment-page-header):not(.terms-of-service-page-header):not(.cookie-policy-page-header):not(.privacy-policy-page-header) > .page-header-background {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        display: block;
        vertical-align: middle;
    }

    /* Hide gold line only for other headers; banner headers keep the yellow bar */
    .page-header:not(.service-page-header):not(.parts-page-header):not(.locations-page-header):not(.customer-portal-page-header):not(.about-page-header):not(.careers-page-header):not(.contact-us-page-header):not(.schedule-appointment-page-header):not(.terms-of-service-page-header):not(.cookie-policy-page-header):not(.privacy-policy-page-header)::after {
        display: none;
    }
}

.service-intro {
    background-color: var(--surface-page);
    padding: 30px 40px;
    text-align: center;
    max-width: 100%;
}

.service-intro-text {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.service-intro-subtext {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

/* Service Cards 2x2 Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    background-color: var(--surface-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card .card-image {
    height: 200px;
}

.service-card .card-image-overlay h5 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card .card-content {
    padding: 15px 20px;
    min-height: 80px;
}

.service-card .card-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Why Choose Section - heading outside box, same pattern as Partner section */
.why-choose-section .why-choose-wrapper {
    width: 100%;
    box-sizing: border-box;
    border-radius: 7px;
    background-color: var(--surface-primary, #000);
    overflow: hidden;
    /* 1px stroke via box-shadow so corners render connected (avoids border corner gaps) */
    box-shadow: 0 0 0 1px var(--border-primary, #FFF);
}

.why-choose-section .why-choose-content {
    background-color: var(--surface-primary, #000);
    padding: 36px 55px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 60px;
}

.why-choose-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-choose-content .info-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-choose-content .icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-content .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-choose-content .info-list-item p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.4;
    max-width: none;
}

/* Legacy class for any other refs */
.why-choose-box {
    background-color: var(--neutral-black);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    padding: 36px 55px;
    width: 100%;
}

/* ===== PM Services Section (Preventative Maintenance Page) ===== */
.pm-services-box {
    background-color: var(--neutral-black);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
}

.pm-intro-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.pm-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 80px;
}

.pm-service-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 1px yellow stroke on the outside of the white icon background */
.pm-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex-shrink: 0;
    background-color: #fff;
    border: none;
    border-radius: 7px;
    box-shadow: 0 0 0 1px var(--border-action, #DAA628);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: visible;
}

.pm-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pm-service-item p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ===== DOT Compliance Section ===== */
.dot-compliance-box {
    display: flex;
    align-items: center;
    gap: 80px;
    background-color: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 40px 60px;
}

.dot-compliance-image {
    flex-shrink: 0;
    width: 350px;
    border: 1px solid var(--border-primary);
    border-radius: 7px;
    overflow: hidden;
}

.dot-compliance-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.dot-compliance-content {
    flex: 1;
    padding-right: 40px;
}

.dot-compliance-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.dot-compliance-content p {
    font-size: 22px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== Cost Savings Section ===== */
.cost-savings-box {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: var(--neutral-black);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 40px 50px;
}

.cost-savings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cost-savings-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* THE COST SAVINGS OF PREVENTION: icons include gold border + white bg in asset */
.cost-savings-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cost-savings-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.cost-savings-item p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.4;
}

.cost-savings-content {
    flex: 1;
}

.flexible-title {
    font-size: 30px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 10px;
}

.flexible-desc {
    font-size: 24px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .footer-content {
        gap: 100px;
    }

    .three-column-grid {
        flex-wrap: wrap;
    }

    .three-column-grid .info-list {
        width: calc(50% - 33px);
    }

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

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .contact-bar {
        flex-wrap: wrap;
        min-height: 0;
        padding: 12px 20px 8px;
    }

    .contact-bar-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .contact-bar-text {
        font-size: 18px;
        text-align: center;
        width: 100%;
        line-height: 1.35;
    }

    .phone-number span {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .cards-grid {
        flex-direction: column;
    }

    /* Service page responsive */
    .service-cards-grid {
        grid-template-columns: 1fr;
    }

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

    .why-choose-content {
        padding: 24px 20px;
    }

    .pm-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pm-services-box {
        padding: 30px 25px;
    }

    .info-box.info-box-lg-padding {
        padding: 30px 25px;
    }

    .dot-compliance-box {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .dot-compliance-image {
        width: 100%;
        max-width: 350px;
    }

    .dot-compliance-content {
        padding-right: 0;
        text-align: center;
    }

    .dot-compliance-content h3 {
        font-size: 24px;
    }

    .dot-compliance-content p {
        font-size: 18px;
    }

    .cost-savings-box {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .flexible-title {
        font-size: 24px;
    }

    .flexible-desc {
        font-size: 18px;
    }

    .service-intro-text {
        font-size: 22px;
    }

    .service-intro-subtext {
        font-size: 16px;
    }

    .info-box-content {
        flex-direction: column;
        gap: 30px;
    }

    .info-box-text {
        font-size: 24px;
        line-height: 1.4;
        text-align: center;
    }

    .three-column-grid {
        flex-direction: column;
    }

    .three-column-grid .info-list {
        width: 100%;
    }

    .always-growing-grid {
        grid-template-columns: 1fr;
    }

    .partner-box-inner {
        height: auto;
    }

    .partner-image {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 20px;
    }

    .partner-content {
        position: relative;
        left: 0;
        top: 0;
        padding: 20px;
    }

    .info-cards {
        flex-direction: column;
    }

    .diagnostics-repair-blocks {
        flex-direction: column;
    }

    .two-column {
        flex-direction: column;
    }

    .portal-intro {
        flex-direction: column;
        padding: 24px 20px;
    }

    .portal-signin-column {
        max-width: none;
    }

    .two-column .column-image {
        width: 100%;
        max-width: 300px;
    }

    .visit-service-center {
        flex-direction: column;
        min-height: auto;
        height: auto;
        align-items: stretch;
        gap: 10px;
    }

    .visit-service-center-image {
        flex: none;
        width: 100%;
        max-width: 451px;
        height: 240px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-primary, #fff);
    }

    .visit-service-center-image img {
        min-height: 240px;
    }

    .visit-service-center-content {
        padding: 28px 24px;
        flex: 1 1 auto;
        min-height: 0;
    }

    .schedule-intro-inner {
        flex-direction: column;
    }

    .schedule-intro-image {
        width: 100%;
        max-width: 100%;
        height: 280px;
        border: 1px solid var(--border-primary, #fff);
        border-radius: var(--radius-md);
    }

    .schedule-intro-content {
        min-height: auto;
        padding: 24px 20px;
    }

    .schedule-intro-title {
        font-size: 28px;
    }

    .schedule-intro-p {
        font-size: 18px;
    }

    .contact-hero {
        flex-direction: column;
        min-height: auto;
        align-items: stretch;
    }

    .contact-hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: 220px;
        border-radius: 7px;
    }

    .contact-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .contact-hero-content {
        padding: 30px 24px;
        overflow: visible;
    }

    .contact-hero-description {
        font-size: 20px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 768px) {
    :root {
        --heading-h1: 36px;
        --heading-h2: 28px;
        --heading-h3: 24px;
        --heading-h4: 22px;
        --heading-h5: 20px;
        --heading-h6: 18px;
        --paragraph-lg: 16px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-content {
        padding-left: 0;
        padding-right: 0;
    }

    .hero {
        min-height: 360px;
        height: 360px;
    }

    .hero-overlay {
        padding: 20px 16px 24px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.4;
    }

    .page-header {
        min-height: 80px;
        padding: 20px 0;
    }

    .page-header h1 {
        font-size: 28px;
        text-align: center;
        line-height: 1.2;
    }

    .section-header {
        padding: 10px 12px;
    }

    .section-header h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .card-content {
        padding: 16px;
    }

    .card-content p {
        font-size: 16px;
        line-height: 1.45;
    }

    .info-box {
        padding: 20px 16px;
    }

    .info-box-text {
        font-size: 20px;
        line-height: 1.4;
        text-align: center;
    }

    .info-box-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .info-box-highlight {
        font-size: 16px;
        line-height: 1.45;
    }

    .info-list-item p {
        font-size: 16px;
        line-height: 1.45;
    }

    .always-growing-grid .info-list-item p {
        font-size: 16px;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-hero-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .visit-service-center-content {
        padding: 24px 16px;
    }

    .visit-service-center-content p,
    .careers-intro-content p {
        font-size: 18px;
    }

    .contact-hero-content {
        padding: 24px 16px;
    }

    .contact-hero-description {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    .form-container {
        padding: 20px 16px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        min-height: 44px;
        font-size: 16px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .btn-submit {
        min-height: 44px;
        width: 100%;
    }

    .cta-section .cta-background {
        display: none;
    }

    .cta-section .cta-content {
        max-width: 100%;
    }

    .numbered-list {
        gap: 20px;
    }

    .numbered-item .number {
        font-size: 30px;
        min-width: 30px;
    }

    .site-search-overlay {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    :root {
        --heading-h1: 28px;
        --heading-h2: 22px;
        --heading-h3: 20px;
        --heading-h4: 18px;
        --heading-h5: 17px;
        --heading-h6: 16px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .contact-hero-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .visit-service-center-content {
        padding: 20px 12px;
    }

    .visit-service-center-content p,
    .careers-intro-content p {
        font-size: 16px;
    }

    .visit-service-center-image {
        width: 100%;
        max-width: 451px;
        height: 200px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-primary, #fff);
    }

    .visit-service-center-image img {
        min-height: 200px;
    }

    .contact-hero-image {
        height: 200px;
    }

    .contact-hero-content {
        padding: 20px 12px;
    }

    .contact-hero-description {
        font-size: 16px !important;
    }

    .contact-info-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .careers-intro-content {
        padding: 20px 12px;
    }

    .careers-intro-image {
        height: 200px;
    }

    .careers-intro-image img {
        min-height: 200px;
    }

    .top-nav {
        padding: 10px 12px;
        height: 64px;
    }

    .logo img.logo-icon {
        height: 42px;
        width: 48px;
    }

    .logo img.logo-text {
        height: 26px;
    }

    .contact-bar {
        padding: 10px 16px 8px;
    }

    .contact-bar-content {
        gap: 6px;
    }

    .contact-bar-text {
        font-size: 16px;
        line-height: 1.35;
    }

    .contact-bar-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .phone-number {
        min-height: 44px;
        justify-content: center;
    }

    .phone-number span {
        font-size: 20px;
    }

    .nav-icon-btn,
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }

    .mobile-nav {
        top: 64px;
    }

    .hero {
        min-height: 280px;
        height: 280px;
    }

    .hero-overlay {
        padding: 16px 12px 20px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .page-header {
        min-height: 72px;
        padding: 16px 0;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .section-header h2 {
        font-size: 18px;
    }

    .card-content {
        padding: 14px;
    }

    .card-content p {
        font-size: 15px;
    }

    .info-box {
        padding: 16px 12px;
    }

    .info-box-text {
        font-size: 18px;
    }

    .info-list-item {
        gap: 12px;
    }

    .icon-box {
        width: 48px;
        height: 48px;
    }

    .partner-content {
        padding: 20px 16px;
    }

    .btn-location {
        min-height: 44px;
    }

    .footer-content {
        padding: 24px 16px;
    }

    .footer-logo-text {
        font-size: 18px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-nav {
        gap: 24px;
    }

    .footer-nav-column {
        width: 100%;
    }

    .footer-nav-column:first-child {
        width: 100%;
    }

    .footer-nav-column h4 {
        font-size: 15px;
    }

    .footer-nav-column a {
        font-size: 15px;
    }

    .footer-copyright {
        position: relative;
        bottom: auto;
        left: auto;
        text-align: center;
        margin-top: 24px;
        font-size: 11px;
    }
}

/* Extra small phones – ensure readability and no overflow */
@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-bar {
        padding: 8px 12px 8px;
    }

    .contact-bar-text {
        font-size: 15px;
    }

    .phone-number span {
        font-size: 18px;
    }

    .hero {
        min-height: 240px;
        height: 240px;
    }

    .hero-overlay {
        padding: 12px 10px 16px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.4;
    }

    .page-header h1 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 16px;
    }

    .info-box-text {
        font-size: 16px;
    }

    .card-content p {
        font-size: 14px;
    }

    .terms-content-box {
        padding: 16px 12px;
    }

    .terms-item-title {
        font-size: 18px;
    }

    .terms-item-text {
        font-size: 15px;
    }
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===== About Us Page Styles ===== */
.about-two-column {
    display: flex;
    gap: 20px;
    width: 100%;
}

.about-difference-box {
    flex: 1;
    background-color: var(--surface-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-difference-header {
    background: linear-gradient(to bottom,
        #d0d0d0 0%,
        #b8b8b8 25%,
        #a0a0a0 50%,
        #888888 75%,
        #707070 100%);
    padding: 15px 20px;
}

.about-difference-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-black);
    text-transform: uppercase;
}

.about-difference-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-difference-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.about-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-difference-item p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.4;
}

.about-quality-box {
    flex: 1;
    background-color: var(--surface-primary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-quality-header {
    background: linear-gradient(to bottom,
        #d0d0d0 0%,
        #b8b8b8 25%,
        #a0a0a0 50%,
        #888888 75%,
        #707070 100%);
    padding: 15px 20px;
}

.about-quality-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-black);
    text-transform: uppercase;
}

.about-quality-image {
    flex: 1;
}

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

.about-quality-content {
    padding: 20px;
    background-color: var(--surface-primary);
}

.about-quality-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.about-growth-section {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.about-growth-content {
    flex: 1;
}

.about-growth-image {
    width: 400px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-growth-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 992px) {
    .about-two-column {
        flex-direction: column;
    }

    .about-growth-section {
        flex-direction: column;
    }

    .about-growth-image {
        width: 100%;
        max-width: 400px;
    }
}

/* ===== Careers Page Styles (Figma 452:4440) ===== */
.careers-intro {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    min-height: 324px;
    background: none;
}

.careers-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 33.333%;
    width: 33.333%;
    height: 324px;
    min-width: 0;
    overflow: hidden;
    background: none;
}

.careers-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 7px;
    border: 1px solid var(--border-primary, #FFF);
}

.careers-intro-content {
    flex: 1;
    min-width: 0;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: none;
    overflow: visible;
}

.careers-intro-content h2 {
    font-size: var(--heading-h2);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.careers-intro-content p {
    font-size: var(--paragraph-xl);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 100%;
}

/* Why Work At BTS wrapper (Figma 452:4892) */
.careers-reasons-wrapper {
    background: var(--surface-primary);
    border: 1px solid var(--border-primary, #FFF);
    border-radius: 7px;
    overflow: hidden;
}

.careers-reasons-header {
    padding: 24px 30px 16px;
    justify-content: center;
    height: auto;
}

.careers-reasons-header h2 {
    text-align: center;
}

.careers-reasons {
    display: flex;
    gap: 40px;
    padding: 0 30px 30px;
}

.careers-reasons-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.careers-reason-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.careers-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-action);
    line-height: 1;
    min-width: 56px;
}

.careers-reason-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.careers-reason-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-action);
    margin: 0;
}

.careers-reason-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .careers-intro {
        flex-direction: column;
        min-height: auto;
        height: auto;
        gap: 10px;
    }

    .careers-intro-image {
        flex: 0 0 auto;
        width: 100%;
        height: 240px;
        border-radius: 8px;
    }

    .careers-intro-image img {
        min-height: 240px;
        height: 100%;
    }

    .careers-intro-content {
        padding: 30px 24px;
        border-radius: 8px;
        flex: 1 1 auto;
        min-height: 0;
    }

    .careers-intro-content h2 {
        font-size: 24px;
    }

    .careers-intro-content p,
    .visit-service-center-content p {
        font-size: 22px;
        line-height: 1.5;
    }

    .careers-reasons {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px 24px;
    }

    .careers-reasons-header {
        padding: 20px 20px 12px;
    }
}

/* ===== About Us Page Styles (Updated for Figma Design) ===== */

/* About Page Header */
.about-page-header {
    position: relative;
}

.about-page-header::after {
    height: 3px;
}

/* Hero Section - Image Left, Copy Right */
.about-hero-section {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-hero-image {
    width: 451px;
    height: 324px;
    flex-shrink: 0;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.about-hero-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-hero-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 27px;
}

.about-hero-content p {
    font-size: 30px;
    color: var(--text-secondary);
    line-height: 50px;
}

/* ===== Service Diagnostics & Repair Page (Figma: two-panel modules) ===== */
.diagnostics-hero-section.about-hero-section {
    gap: var(--spacing-md);
}

.diagnostics-repair-blocks {
    display: flex;
    gap: 9px;
    width: 100%;
}

.diagnostics-repair-module {
    flex: 1;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--neutral-black);
}

.diagnostics-repair-header {
    border-bottom: 1px solid #000;
    background: var(--Gradient, linear-gradient(180deg, #fff 0%, #999 100%));
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-align: center;
}

.warranty-benefits-section .diagnostics-repair-header {
    text-align: center;
    font-size: 22px;
}

.refurbishment-options-section .diagnostics-repair-header {
    text-align: center;
    font-size: 24px;
}

.diagnostics-repair-content {
    padding: 20px;
    background-color: var(--neutral-black);
}

.diagnostics-repair-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.diagnostics-repair-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.diagnostics-repair-icon-box {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 7px;
    border: 1px solid var(--border-action, #DAA628);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    overflow: hidden;
}

.diagnostics-repair-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diagnostics-repair-item span {
    font-size: var(--paragraph-md);
    color: var(--text-primary);
    line-height: 1.45;
}

/* Parts page: Parts Inquiry section - image left, black copy panel right (Figma aftermarket parts) */
.parts-inquiry-section {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.parts-inquiry-image {
    width: 451px;
    height: 324px;
    flex-shrink: 0;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.parts-inquiry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.parts-inquiry-content {
    flex: 1;
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
}

.parts-inquiry-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    line-height: 1.3;
}

.parts-inquiry-block p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.parts-inquiry-block p:last-child {
    margin-bottom: 0;
}

/* Policy content: rounded container, section headings, bullet lists */
.section-policy-content .info-box {
    padding: 36px 55px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-article {
    margin-bottom: var(--spacing-xl);
}

.policy-article:last-child {
    margin-bottom: 0;
}

.policy-content h3 {
    font-size: var(--heading-h5);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.policy-content ul {
    list-style-type: disc;
    list-style-position: outside;
    padding-left: 24px;
    margin-bottom: 0;
    color: var(--text-primary);
}

.policy-content li {
    font-size: var(--paragraph-md);
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.policy-content li:last-child {
    margin-bottom: 0;
}

.policy-content a {
    color: var(--text-action);
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Cookie Policy – Image left, copy right (Figma 453-5997) */
.cookie-intro-panel {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    border-radius: 7px;
    border: 1px solid var(--border-primary);
    background: rgba(0, 0, 0, 0.50);
    overflow: hidden;
}

.cookie-intro-panel .about-hero-section {
    border-radius: 0;
    gap: 0;
}

.cookie-intro-panel .about-hero-image {
    border: none;
    border-radius: 0;
}

.cookie-intro-panel .about-hero-content {
    background: transparent;
}

.cookie-intro-panel .about-hero-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-intro-panel .about-hero-content p {
    font-size: 30px;
    color: var(--text-secondary);
    line-height: 50px;
}

/* Cookie Policy Layout */
.cookie-usage-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 50px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.cookie-usage-item + .cookie-usage-item {
    margin-top: 30px;
}

.cookie-usage-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cookie-usage-item ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
}

.cookie-usage-item li {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-usage-item a {
    color: var(--text-action);
    text-decoration: none;
}

.cookie-usage-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-usage-card {
        padding: 28px 24px;
    }

    .cookie-usage-item h3 {
        font-size: 20px;
    }

    .cookie-usage-item li {
        font-size: 16px;
    }
}

/* About Cards */
.about-card {
    background-color: rgba(0, 0, 0, 0.5);
}

.about-card .card-image {
    height: 249px;
}

/* About Two Column Layout */
.about-two-column {
    display: flex;
    gap: 9px;
    width: 100%;
}

/* What Makes Us Different Box */
.about-difference-box {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-gold-header {
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #e8e8e8 20%,
        #d0d0d0 40%,
        #b8b8b8 60%,
        #a0a0a0 80%,
        #888888 100%);
    border-bottom: 1px solid var(--neutral-black);
}

.about-gold-header h3 {
    font-size: var(--heading-h6);
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.about-difference-content {
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-difference-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
}

.about-icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1px solid var(--border-action);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--neutral-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-difference-item p {
    font-size: var(--paragraph-lg);
    color: var(--text-primary);
    line-height: 24px;
    flex: 1;
}

/* Our Commitment to Quality Box */
.about-quality-box {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.about-quality-box .card-image {
    height: 249px;
    flex-shrink: 0;
}

.about-quality-content {
    padding: 20px;
    flex: 1;
}

.about-quality-content p {
    font-size: var(--paragraph-lg);
    color: var(--text-secondary);
    letter-spacing: -0.1px;
    line-height: 1.45;
}

/* Growth Section */
.about-growth-section {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 7px;
    overflow: clip;
}

.about-growth-content {
    flex: 1;
    padding: 40px;
}

.about-growth-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.about-growth-content p {
    font-size: 30px;
    color: var(--text-secondary);
    line-height: 50px;
}

.about-growth-image {
    width: 451px;
    height: 324px;
    flex-shrink: 0;
    border-radius: 7px;
    overflow: hidden;
}

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

/* About Partner Box */
.about-partner-box {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0;
}

.about-partner-content {
    padding: 35px 61px;
}

.about-partner-image {
    width: 402px;
    height: 250px;
    flex-shrink: 0;
    display: flex;
    overflow: hidden;
}

.about-partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* About Us Responsive Styles */
@media (max-width: 992px) {
    .about-hero-section {
        flex-direction: column;
    }

    .about-hero-image {
        width: 100%;
        max-width: 451px;
        height: 250px;
    }

    .about-hero-content {
        padding: 30px 20px;
    }

    .about-hero-content h2 {
        font-size: 28px;
    }

    .about-hero-content p {
        font-size: 22px;
        line-height: 1.5;
    }

    .about-two-column {
        flex-direction: column;
    }

    .parts-inquiry-section {
        flex-direction: column;
    }

    .parts-inquiry-image {
        width: 100%;
        max-width: 451px;
        height: 250px;
    }

    .parts-inquiry-content {
        padding: 0 20px 30px;
    }

    .parts-inquiry-block h3 {
        font-size: 20px;
    }

    .about-growth-section {
        flex-direction: column;
    }

    .about-growth-image {
        width: 100%;
        max-width: 451px;
        height: 250px;
    }

    .about-growth-content h2 {
        font-size: 28px;
    }

    .about-growth-content p {
        font-size: 22px;
        line-height: 1.5;
    }

    .about-partner-content {
        padding: 25px 30px;
    }

    .about-partner-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .about-hero-content h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .about-hero-content p {
        font-size: 18px;
        line-height: 1.4;
    }

    .careers-intro-content {
        padding: 24px 16px;
    }

    .careers-intro-content p {
        font-size: 18px;
        line-height: 1.5;
    }

    .parts-inquiry-block h3 {
        font-size: 18px;
    }

    .parts-inquiry-block p {
        font-size: 15px;
    }

    .about-difference-item {
        gap: 15px;
    }

    .about-icon-box {
        width: 45px;
        height: 45px;
    }

    .about-difference-item p {
        font-size: 16px;
    }

    .about-growth-content h2 {
        font-size: 22px;
    }

    .about-growth-content p {
        font-size: 18px;
        line-height: 1.5;
    }
}
