:root {
    --primary-blue: #002147;
    --dark-blue: #00152e;
    --accent-orange: #f58025;
    --accent-orange-hover: #d16610;
    --light-gray: #f8f9fa;
    --med-gray: #e9ecef;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

.text-white {
    color: var(--white) !important;
}

.text-orange {
    color: var(--accent-orange) !important;
}

.text-primary-blue {
    color: var(--primary-blue) !important;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 3rem;
}

.divider-center {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    margin: 15px auto 0;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    margin: 15px 0 25px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: var(--font-heading);
    border: none;
}

.btn i {
    margin-right: 8px;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    border-color: var(--accent-orange-hover);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--accent-orange);
    margin-right: 5px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
}

.social-links a:hover {
    color: var(--accent-orange);
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container img {
    height: 75px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-blue);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 1.1rem;
    border-radius: 30px;
    /* Modern pill shape */
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-color: var(--dark-blue);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.6;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 10, 31, 0.85);
    /* Deep Dark Blue Overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-cta {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 128, 37, 0.4);
}

.btn-cta:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 128, 37, 0.6);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Intro Bar */
.intro-bar {
    background: var(--primary-blue);
    padding: 40px 0;
    color: white;
    margin-top: -5px;
    /* Fix gap */
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.intro-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.intro-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.intro-item h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.intro-item p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* REVIEWS - NEW SLIDER DESIGN */
.reviews-section-redesign {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Background Flare */
.reviews-section-redesign::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 128, 37, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.reviews-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.reviews-scroll-wrapper {
    position: relative;
    z-index: 1;
}

.reviews-track {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 10px 5px 30px 5px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
    height: 8px;
}

.reviews-track::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 4px;
}

.reviews-track::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.reviews-track::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

.review-card-modern {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--accent-orange);
}

.review-user-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 12px;
    box-shadow: 0 4px 10px rgba(0, 33, 71, 0.2);
}

.user-meta h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
    text-transform: capitalize;
    font-family: var(--font-body);
    font-weight: 700;
}

.user-meta span {
    font-size: 0.8rem;
    color: #888;
}

.google-icon-corner {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.6;
}

.rating-stars {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
    /* Pushes bottom elements down */
}

/* Services */
.services-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-feature-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-feature-img {
    height: 200px;
    overflow: hidden;
}

.service-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-feature-card:hover .service-feature-img img {
    transform: scale(1.1);
}

.service-feature-content {
    padding: 25px;
}

.service-feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-feature-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Why Choose Us Grid */
.why-treadz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.why-card h4 {
    color: white;
    font-size: 1.2rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Bg Light */
.bg-light {
    background-color: #f8f9fa;
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}

/* Parallax CTA */
.parallax-cta {
    background-image: url('https://lirp.cdn-website.com/681494aa/dms3rep/multi/opt/tow-truck-night-1920w.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    text-align: center;
    color: white;
}

.parallax-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 33, 71, 0.85);
    /* Strong blue overlay */
}

.parallax-cta .content {
    position: relative;
    z-index: 1;
}

.parallax-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.parallax-cta p {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Footer */
.grid-4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

footer {
    background: #001021;
    color: #aaa;
    border-top: 5px solid var(--accent-orange);
}

.footer-logo-img {
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: white;
    font-size: 1.2rem;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a:hover {
    color: var(--accent-orange);
}

/* Animations Trigger Classes */
.floating-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* FAQ Accordion Styling - FIXED */
.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    /* Ensures content doesn't spill out when closed */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    /* Pushes text left and icon right */
    align-items: center;
    width: 100%;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-blue);
    flex-grow: 1;
    /* Allows text to take up available space */
    padding-right: 20px;
    /* Space between text and icon */
    text-align: left;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    /* Prevents icon from squishing */
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

/* CSS handles the transition property, JS handles the value */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease-out, opacity 0.6s ease-out, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    /* max-height is set by JS */
    opacity: 1;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    /* Add toggle logic later if needed */
    .grid-3,
    .grid-4,
    .why-treadz-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .parallax-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .reviews-track {
        gap: 15px;
    }

    .review-card-modern {
        flex: 0 0 280px;
        /* Smaller card on mobile */
    }
}
 # t r e a d z C o n t a c t F o r m   i n p u t : : p l a c e h o l d e r ,   # t r e a d z C o n t a c t F o r m   t e x t a r e a : : p l a c e h o l d e r   { 
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 6 ) ; 
 } 
 # t r e a d z C o n t a c t F o r m   i n p u t : f o c u s ,   # t r e a d z C o n t a c t F o r m   t e x t a r e a : f o c u s   { 
         o u t l i n e :   2 p x   s o l i d   v a r ( - - a c c e n t - o r a n g e ) ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 5 ) ; 
 } 
 
 