/* ==========================================================================
   AAA Towing - Custom Stylesheet
   ==========================================================================
   Guidelines:
   - Bootstrap utilities first; custom CSS only when Bootstrap can't express it.
   - Every section scoped under its unique parent class (.hero-section, .about-section, etc.)
   - Use color variables â€” never hardcode colors.
   - Common .btn-* classes are reusable across the page; add new styles BELOW existing ones.
   - All <img> tags use only .img-fluid (no extra image styling), except when positioning is required.
   - Responsive rules live in responsive.css.
   ========================================================================== */

/* -------------------- 1. CSS Variables -------------------- */

:root {
    /* Brand */
    --color-primary: #CC0100;
    --color-primary-hover: #a80100;

    /* Neutrals */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-light-blue: #B1C6D7;
    --color-light-blue-hover: #9bb6c9;

    /* Text */
    --color-text: #161616;
    --color-muted: #6A6A6A;

    /* Typography */
    --font-family-base: 'Lexend', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.text-light-dark {
    color: var(--color-text) !important;
}
.text-muted { color: var(--color-muted) !important; }

/* -------------------- 2. Base -------------------- */
* {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family-base);
    color: var(--color-black);
    line-height: 1.6;
    font-size: 20px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-base);
    font-weight: 700;
}

/* Common section heading size (all section h2's) */
h2 {
    font-size: 40px;
}

ul li{}

/* Default paragraph size (minimum 14px across the site) */


a {
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* Respect users who prefer reduced motion (perf + a11y) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
.border-primary{
    border-color: var(--color-primary) !important;
}
.bg-light{
    background-color: #F9F8F7 !important;
}
.pt-8{
    padding-top: 80px;
}
.py-8{
    padding: 80px 0;
}

/* -------------------- 3. Common Button Classes -------------------- */
/* Reusable across the page. Add new button styles BELOW the existing ones. */

/* Primary filled button (light blue pill with red icon circle, dark text) */
.btn-primary-custom {
    background-color: var(--color-light-blue);
    color: var(--color-black);
    font-family: var(--font-family-base);
    font-weight: 600;
    border: 2px solid var(--color-light-blue);
    padding: 6px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: #fff;
}

.btn-primary-custom .btn-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Dark pill button with red icon circle */
.btn-dark-custom {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-family-base);
    font-weight: 600;
    border: 2px solid var(--color-black);
    padding: 6px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-dark-custom:hover,
.btn-dark-custom:focus {
    background-color: var(--color-light-blue);
    border-color: var(--color-light-blue);
    color: var(--color-black);
}

.btn-dark-custom .btn-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-family-base);
    font-weight: 600;
    border: 1px solid var(--color-white);
    padding: 6px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-outline-custom:hover{
    border: 1px solid var(--color-white);
}
.btn-outline-custom:hover .btn-icon,
.btn-outline-custom:focus .btn-icon {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.btn-outline-custom .btn-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: var(--color-white);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* Red pill button with black icon circle (form submit) */
.btn-red-custom {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-family-base);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    padding: 6px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.btn-red-custom:hover,
.btn-red-custom:focus {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-white);
}
.btn-red-custom .btn-icon {
    width: 36px;
    height: 36px;
    background-color: var(--color-black);
    color: var(--color-white);
}

/* -------------------- 4. Helpers -------------------- */
.bg-primary-custom { background-color: var(--color-primary) !important; }
.text-primary-custom { color: var(--color-primary) !important; }

/* -------------------- 5. Sections -------------------- */
/* Section-specific styles will be added below as designs are shared. */

/* ===== Announcement Bar ===== */
.announcement-bar p {
    letter-spacing: 0.3px;
    font-size: 18px;
    font-weight: 400;
}

/* ===== Site Header / Navbar ===== */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.site-header .nav-link {
    color: var(--color-text);
    font-size: 18px;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--color-primary);
}
.site-header .call-now-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.site-header .navbar-nav{
    gap:30px;
}
/* ===== Mega Menu ===== */
.site-header .navbar > .container {
    position: relative;
}
.site-header .mega-menu-parent {
    position: static;
}
.site-header .mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
    border: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin-top: 0;
}
.mega-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.mega-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 24px 20px;
    border-right: 1px solid #f0f0f0;
}
.mega-col:last-child {
    border-right: none;
}
.mega-heading {
    background-color: #f0f2f5;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 10px;
    margin-top: 18px;
}
.mega-heading:first-child {
    margin-top: 0;
}
.mega-heading a {
    color: inherit;
    text-decoration: none;
    display: block;
}
.mega-heading a:hover {
    color: var(--color-primary);
}
.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-links li a {
    display: block;
    padding: 5px 12px;
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
    border-radius: 4px;
    -webkit-transition: color 0.2s, background-color 0.2s;
    -o-transition: color 0.2s, background-color 0.2s;
    transition: color 0.2s, background-color 0.2s;
}
.mega-links li a:hover {
    color: var(--color-primary);
    background-color: #fef5f5;
}
.mega-cta-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 270px;
    flex: 0 0 270px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 28px 24px;
    background-color: #1a1a1a;
    border-radius: 0 0 12px 0;
}
.mega-cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}
.mega-cta-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}
.mega-cta-col .img-fluid {
    border-radius: 8px;
    margin-top: auto;
}

/* ===== Hero Section ===== */
/* .hero-section {
    min-height: 640px;
    background-color: #1a1a1a;
} */
.hero-section .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
}
.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}
.hero-section .container { z-index: 2; }

.hero-section .banner-content{
    padding: 100px 0;
}
.hero-section .hero-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
}
.hero-section .hero-title {
    font-size: 50px;
    line-height: 1.15;
}

.hero-section .hero-truck-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 9;
    max-width: 26%;
    pointer-events: none;
}
.hero-section .hero-truck-img {
    display: block;
    transform: translateY(15%);
    -webkit-transform: translateY(15%);
    -moz-transform: translateY(15%);
    -ms-transform: translateY(15%);
    -o-transform: translateY(15%);
}

/* ===== Hero Features (3 cards) ===== */
.hero-features .feature-card {
    box-shadow: 0px 2px 3px  rgba(204, 1, 0, 1);
    background-color: var(--color-white);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.hero-features .feature-card:hover {
    box-shadow: 1px 2px 10px rgba(204, 1, 0, 0.5);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

/* ===== Insurance Block (inside Hero Features) ===== */

/* ===== Our Services Section ===== */


/* Tabs */
.services-section .services-tabs {
    border: none;
}
.services-section .services-tabs .nav-link {
    border: 1px solid var(--color-primary);
    color: var(--color-black);
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 8px 22px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.services-section .services-tabs .nav-link:hover {
    color: var(--color-primary);
}
.services-section .services-tabs .nav-link.active {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

/* Service Cards */
.services-section .service-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.services-section .service-card:hover {
    box-shadow: 0 8px 24px rgba(204, 1, 0, 0.12);
    border-color: var(--color-primary);
}
.services-section .service-card img{
    width: 100%;
}
.services-section .service-card h3{
    font-size: 20px;
}
.services-section .service-link {
    color: var(--color-black);
    text-decoration: none;
}
.services-section .service-link:hover {
    color: var(--color-primary);
}
.services-section .service-link-icon {
    width: 22px;
    height: 22px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 11px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.services-section .service-link:hover .service-link-icon {
    background-color: var(--color-primary);
}

/* ===== Why Choose Us Section ===== */
.why-choose-section .why-eyebrow {
    color: var(--color-black);
    letter-spacing: 0.5px;
}
.why-choose-section .why-title {
    line-height: 1.25;
}
.why-choose-section .why-desc {
    color: var(--color-text);
}
.why-choose-section .why-link a {
    text-decoration: none;
    font-weight: 500;
}
.why-choose-section .why-link a:hover {
    text-decoration: underline;
}

/* Stats */
.why-choose-section .stat-number {
    font-size: 36px;
    line-height: 1;
}
.why-choose-section .stat-label {
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-text);
}

/* ===== Certifications Section ===== */

.certifications-section .cert-desc {
    color: var(--color-text);
}
.certifications-section .cert-list li {
    font-size: 15px;
    font-weight: 500;
    text-align: left;
}

/* ===== Service Areas Section ===== */
.service-areas-section{
    padding: 100px 0;
}
.service-areas-section .areas-subtitle {
    font-size: 20px;
}
.service-areas-section .area-tag {
    display: inline-block;
    box-shadow: 0px 1px 2px  rgba(204, 1, 0, 1);
    background-color: var(--color-white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.service-areas-section .area-tag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ===== Process / Steps Section ===== */
.process-section {
    background: url('../images/process-bg.webp') center/cover no-repeat;
}
.process-section img{
    max-height: 128px;
} 
.process-section .process-desc {
    color: var(--color-text);
    max-width: 820px;
}

.process-section .step-desc {
    color: var(--color-text);
    margin: 0 auto;
}

/* ===== Fleet Section ===== */


/* ===== Fleet Slider ===== */
.fleet-section {
    position: relative;
}
.fleet-section .fleet-slider-wrap {
    position: relative;
    padding: 40px 60px;
}
.fleet-section .slider {
    overflow: hidden;
}
.fleet-section .fleet-slider-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    min-height: 300px;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.fleet-section .fleet-slider-track .card {
    -webkit-box-flex: 0;
    flex: 0 0 200px;
    max-width: 200px;
    height: 220px;
    border: 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    overflow: hidden;
    opacity: 0.3;
    -webkit-transform: scale(0.88);
    -ms-transform: scale(0.88);
    transform: scale(0.88);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease, height 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease;
    cursor: pointer;
    background: transparent;
}
.fleet-section .fleet-slider-track .card.near {
    opacity: 0.7;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
.fleet-section .fleet-slider-track .card.active {
    flex: 0 0 420px;
    min-width: 500px;
    height: 280px;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    border: 3px solid var(--color-primary);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    z-index: 9;
}
.fleet-section .fleet-slider-track .card img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}
/* Slider nav buttons */
.fleet-section .fleet-slider-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.fleet-section .fleet-slider-btn:hover {
    background: var(--color-primary-hover);
}
.fleet-section .fleet-slider-prev {
    left: 10px;
}
.fleet-section .fleet-slider-next {
    right: 10px;
}


/* ===== Testimonials + Partners Section ===== */
.testimonials-section {
    background-color: #f5f6f8;
}
.testimonials-section .testimonials-image-wrap {
    overflow: hidden;
    height: 100%;
}
.testimonials-section .testimonials-image-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testimonials-section .partners-eyebrow {
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
}
.testimonials-section .partners-title {
    font-size: 32px;
}
.testimonials-section .partners-desc {
    opacity: 0.85;
}
.testimonials-section .testimonials-block {
    background-color: #f5f6f8;
}
.testimonials-section .testimonials-eyebrow {
    color: var(--color-text);
    font-size: 13px;
    letter-spacing: 1px;
}
.testimonials-section .testimonials-title {
    font-size: 40px;
}
.testimonials-section .testimonial-card {
    position: relative;
    padding: 4px 0;
}
.testimonials-section .testimonial-quote-icon {
    color: var(--color-primary);
    font-size: 32px;
    line-height: 1;
    display: inline-block;
    margin-bottom: 4px;
}

.testimonials-section .testimonial-divider {
    border-top: 1px solid #d9d9d9;
    opacity: 1;
    margin: 12px 0;
}
.testimonials-section .testimonial-author {
    font-size: 14px;
}
.testimonials-section .testimonial-stars {
    font-size: 13px;
    letter-spacing: 2px;
}
.testimonials-section .testimonials-nav-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}
.testimonials-section .testimonials-nav-btn:hover {
    background: var(--color-primary);
    color: #fff;
}
.testimonials-section .partners-grid {
    background-color: #f5f6f8;
}



.our-partners {
    background: linear-gradient(to right, #0e0e0e 41.5%, #fff 41%);
    padding: 40px 32px;
}

/* ===== FAQ Section ===== */
.faq-section .faq-title {
    letter-spacing: 0.5px;
}
.faq-section .faq-desc {
    color: var(--color-text);
    max-width: 900px;
}
.faq-section .faq-accordion .accordion-item {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.faq-section .faq-accordion .accordion-button {
    background: #fff;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    padding: 16px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #1a1a1a;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.faq-section .faq-accordion .accordion-button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: transparent;
}
.faq-section .faq-accordion .accordion-button::after {
    content: "\002B"; /* + */
    background-image: none;
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    width: auto;
    height: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
}
.faq-section .faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\2212"; /* − */
}
.faq-section .faq-accordion .accordion-body {
    padding: 0 20px 16px;
    color: var(--color-text);
    line-height: 1.7;
}

/* ===== CTA + Contact Section ===== */
.cta-section .cta-row {
    position: relative;
}
.cta-section .cta-card {
    color: var(--color-white);
    padding-right: 80px !important;
}
.cta-section .cta-title {
    color: var(--color-white);
}
.cta-section .cta-desc {
    opacity: 0.95;
}
.cta-section .cta-stat-number {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
}
.cta-section .cta-stat-label {
    opacity: 0.9;
}
.cta-section .contact-form-card {
    position: relative;
    z-index: 2;
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-left: -10px;
    margin-top: -60px;
}
.cta-section .contact-title {
    font-size: 24px;
}
.cta-section .contact-desc {
    color: var(--color-text);
}
.cta-section .contact-form .form-label {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--color-black);
}
.cta-section .contact-form .form-control,
.cta-section .contact-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cta-section .contact-form .form-control:focus,
.cta-section .contact-form .form-select:focus {
    border-color: var(--color-primary);
    -webkit-box-shadow: 0 0 0 0.15rem rgba(204, 1, 0, 0.12);
    box-shadow: 0 0 0 0.15rem rgba(204, 1, 0, 0.12);
}
.cta-section .contact-form .form-control::-webkit-input-placeholder { color: #b5b5b5; }
.cta-section .contact-form .form-control::-moz-placeholder { color: #b5b5b5; }
.cta-section .contact-form .form-control:-ms-input-placeholder { color: #b5b5b5; }
.cta-section .contact-form .form-control::placeholder { color: #b5b5b5; }

/* ===== Footer ===== */
.site-footer {
    background-color: #161616;
    color: #fff;
}
.site-footer .footer-socials .footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}
.site-footer .footer-socials .footer-social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.site-footer .footer-heading {
    color: #fff;
    font-size: 18px;
}
.site-footer .footer-list li {
    margin-bottom: 10px;
}
.site-footer .footer-list a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.site-footer .footer-list a i {
    color: var(--color-primary);
    font-size: 14px;
}
.site-footer .footer-list a:hover {
    color: var(--color-primary);
}
.site-footer .footer-contact-icon {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}
.site-footer .footer-contact-label {
    color: #fff;
    margin-bottom: 2px;
}
.site-footer .footer-contact-value {
    color: #fff;
    text-decoration: none;
    font-style: normal;
    line-height: 1.5;
}
.site-footer .footer-contact-value:hover {
    color: var(--color-primary);
}
.site-footer .footer-bottom a:hover {
    text-decoration: underline;
}
.site-footer .footer-powered .small {
    font-size: 11px;
    opacity: 0.9;
}

/* ===== Page Title Banner (inner pages shared) ===== */


/* Red diagonal stripe decoration */

.page-title-banner {
    
    background-image: url('../images/about/title-bg.webp');
    background-size: cover;
    background-position: center;
}
.page-title-banner .banner-title {
    font-size: 48px;
    position: relative;
    z-index: 1;
}


.page-title-banner .banner-breadcrumb-wrap a {
    color: var(--color-text);
    font-size: 14px;
}

.page-title-banner .banner-breadcrumb-wrap a:hover {
    color: var(--color-primary);
}

.page-title-banner .banner-breadcrumb-wrap span {
    font-size: 14px;
}

.page-title-banner .banner-right h2 {
    position: relative;
    z-index: 1;
}

.page-title-banner .banner-right p {
    position: relative;
    z-index: 1;
    font-size: 16px;
}

/* ===== About Content Section ===== */

/* ===== About Why Choose Section ===== */

.about-why-section .about-eyebrow {
    color: var(--color-primary);
    font-weight: 600;
}



.about-why-section .about-services-list {
    margin-bottom: 0;
}

/* ===== About Experts Section ===== */


.about-expert-card {
    border: 1px solid #e0e0e0;
    background-image: url('../images/about/bg-area.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0 2px 12px rgba(100, 100, 111, 0.2);
    box-shadow: 0 7px 29px rgba(100, 100, 111, 0.2);
    border: 3px solid #C9C9C9;
}

.about-expert-card .expert-number {
    font-size: 80px;
    font-weight: 700;
    color: #d4d4d4;
    line-height: 1;
}

/* ============================================================
   ROADSIDE ASSISTANCE PAGE
   ============================================================ */

/* ===== City-Wide Content Section ===== */
.citywide-content-section .citywide-checklist li i {
    font-size: 18px;
}

/* ============================================================
   SINGLE SERVICE DETAIL PAGE
   ============================================================ */

/* ----- Banner ----- */
.service-detail-banner {
    background-position: center;
    padding: 30px 0;
    text-align: center;
}

.service-detail-banner .banner-title {
    font-size: 48px;
    position: relative;
    z-index: 1;
}

/* ----- Content + Sidebar ----- */
.service-detail-content .sidebar-box {
    border: 1px solid #e0e0e0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    padding: 16px 20px;
}

.service-detail-content .more-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-content .more-services-list li {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.service-detail-content .more-services-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 13px 20px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: background 0.25s, color 0.25s, padding-left 0.25s;
    -moz-transition: background 0.25s, color 0.25s, padding-left 0.25s;
    -o-transition: background 0.25s, color 0.25s, padding-left 0.25s;
    transition: background 0.25s, color 0.25s, padding-left 0.25s;
}

.service-detail-content .more-services-list li a:hover,
.service-detail-content .more-services-list li a.active {
    background: var(--color-primary);
    color: #fff;
    padding-left: 24px;
}

.service-detail-content .more-services-list li a .service-arrow {
    color: var(--color-primary);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.service-detail-content .more-services-list li a:hover .service-arrow,
.service-detail-content .more-services-list li.active a .service-arrow {
    color: #fff;
}

.service-detail-content .related-blog-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.service-detail-content .related-blog-item:last-child {
    border-bottom: none;
}

.service-detail-content .related-blog-item .blog-thumb {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    display: block;
    margin-bottom: 10px;
}

.service-detail-content .related-blog-item .blog-meta {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.service-detail-content .related-blog-item .blog-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    display: block;
    text-decoration: none;
}

.service-detail-content .related-blog-item .blog-title:hover {
    color: var(--color-primary);
}

.service-detail-content .related-blog-item .blog-read-more {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
}

.service-detail-content .related-blog-item .blog-read-more:hover {
    color: var(--color-primary);
}

/* ----- CTA ----- */
.single-service-cta {
    background-image: url('../images/single-service/cta-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}



/* ===================================================
   CONTACT PAGE
   =================================================== */


/* ----- Contact Form Section ----- */
.contact-page-form-section {
    background-image: url('../images/contact/bg-element.webp');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

/* ----- Contact Info Cards ----- */
.contact-info-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover {
    box-shadow: 0 8px 30px rgba(204, 1, 0, 0.12) !important;
    transform: translateY(-4px);
}

.contact-info-icon-wrap {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon {
    max-height: 60px;
    width: auto;
}

.contact-stats-section .contact-stats-banner{
    background-image: url('../images/contact/contact-stat-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}
/* ===================================================
   CAREERS PAGE
   =================================================== */

.careers-benefit-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.careers-benefit-card:hover {
    box-shadow: 0 8px 30px rgba(204, 1, 0, 0.12) !important;
    transform: translateY(-4px);
}

.careers-benefit-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-benefit-icon {
    max-height: 72px;
    width: auto;
}

.careers-benefits-section {
    background-image: url('../images/contact/bg-element.webp');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
}

.careers-position-card {
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.careers-position-card:hover {
    box-shadow: 0 8px 30px rgba(204, 1, 0, 0.12) !important;
    transform: translateY(-4px);
}

.careers-apply-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
/* ===================================================
   BLOG PAGE
   =================================================== */

.blog-listing-section {
    background-image: url('../images/contact/bg-element.webp');
    background-position: right top;
    background-repeat: no-repeat;
}

.blog-search-input-group {
    border: 1px solid #dee2e6;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    padding: 0.25rem 0.25rem 0.25rem 1.25rem;
}

.blog-search-input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.blog-search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    flex-shrink: 0;
    color: #212529;
}

.blog-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 8px 30px rgba(204, 1, 0, 0.12);
    transform: translateY(-4px);
}

.blog-card-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.blog-card-img-wrap {
    overflow: hidden;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.blog-card-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.blog-card-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.blog-card-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card:hover .blog-card-title a {
    color: #CC0100 !important;
}

.blog-card:hover .blog-card-link {
    color: #CC0100 !important;
}

/* ===== Blog Listing Pagination ===== */
.blog-listing-section .page-numbers {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #dee2e6;
    font-family: var(--font-family-base);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    background-color: var(--color-white);
    margin: 0 3px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
         -o-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
            transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.blog-listing-section a.page-numbers:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.blog-listing-section .page-numbers.current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    cursor: default;
}

.blog-listing-section .page-numbers.dots {
    border-color: transparent;
    background-color: transparent;
    color: var(--color-muted);
    cursor: default;
    letter-spacing: 1px;
}

.blog-listing-section .page-numbers.prev,
.blog-listing-section .page-numbers.next {
    background-color: var(--color-white);
    border-color: #dee2e6;
    color: var(--color-text);
}

.blog-listing-section .page-numbers.prev:hover,
.blog-listing-section .page-numbers.next:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* ===================================================
   BLOG DETAIL PAGE
   =================================================== */

.blog-detail-section {
    background-image: url('../images/contact/bg-element.webp');
    background-position: right top;
    background-repeat: no-repeat;
}

.blog-detail-section .blog-detail-title {
    font-size: 38px;
    line-height: 1.2;
    color: var(--color-primary);
}

.blog-detail-section .blog-detail-featured-img, .blog-detail-section img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
}

.blog-detail-section .blog-blockquote {
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
}

.blog-detail-section .blog-blockquote-quote-icon {
    font-size: 72px;
    line-height: 0.8;
    color: var(--color-primary);
    font-family: Georgia, serif;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.blog-detail-section .blog-sidebar-cta {
    background-image: url('../images/contact/cta-bg.webp');
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.blog-detail-section .blog-sidebar-cta-body {
    position: relative;
    z-index: 1;
}

.blog-detail-section .blog-recent-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.blog-detail-section .blog-recent-thumb {
    width: 90px;
    height: 70px;
    -o-object-fit: cover;
       object-fit: cover;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.blog-detail-section .blog-recent-link:hover {
    color: var(--color-primary) !important;
}
.blog-detail-content h2, .blog-detail-content h2 span, .blog-detail-content h3, .blog-detail-content h3 span, .blog-detail-content h4, .blog-detail-content h4 span, .blog-detail-content h5, .blog-detail-content h5 span, .blog-detail-content h6, .blog-detail-content h6 span {
    font-weight: 700 !important;
}

.blog-detail-section .blog-detail-content a, .blog-detail-section .blog-detail-content a span {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700 !important;
}

.blog-detail-section .blog-detail-list ul {
    list-style-type: none;
    padding-left: 18px;
    margin-bottom: 10px;
}

.blog-detail-section .blog-detail-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.blog-detail-section .blog-detail-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.blog-detail-section .blog-post-nav {
    border-color: #e0e0e0 !important;
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
         -o-transition: border-color 0.2s ease, box-shadow 0.2s ease;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-detail-section .blog-post-nav:hover {
    border-color: var(--color-primary) !important;
    -webkit-box-shadow: 0 4px 16px rgba(204, 1, 0, 0.10);
            box-shadow: 0 4px 16px rgba(204, 1, 0, 0.10);
}

.blog-detail-section .blog-post-nav-arrow {
    width: 44px;
    height: 44px;
    border-color: #dee2e6 !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.blog-detail-section .blog-sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

/* ===================================================
   CAREERS JOBS ACCORDION
   =================================================== */

.careers-job-item {
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.careers-job-header {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s;
}

.careers-job-header:hover {
    background-color: #fafafa;
}

.careers-job-toggle {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    transition: background-color 0.2s, color 0.2s;
}

.careers-job-chevron {
    transition: transform 0.3s ease;
}

.careers-job-header[aria-expanded="false"] .careers-job-chevron {
    transform: rotate(180deg);
}

.careers-job-header[aria-expanded="false"] .careers-job-toggle {
    background-color: transparent;
}

.careers-job-header[aria-expanded="true"] .careers-job-toggle {
    background-color: transparent;
}

.careers-job-list {
    list-style: none;
    padding-left: 0;
}

.careers-job-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.careers-job-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #CC0100;
}

.careers-job-details {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
}

.careers-job-body h5 {
    font-size: 17px;
}
.careers-apply-truck {
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.footer-list-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 4px;
}

/* ===================================================
   THANK YOU PAGE
   =================================================== */

.thank-you-section {
    background-color: #F9F8F7;
}

.thank-you-icon {
    width: 96px;
    height: 96px;
    background-color: rgba(204, 1, 0, 0.08);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.thank-you-icon .bi {
    font-size: 52px;
    color: var(--color-primary);
    line-height: 1;
}