/* Core Variables based on the logo */
:root {
    --primary-blue: #0A1930;
    /* Deep navy blue from text/shield */
    --primary-blue-light: #162a4d;
    --racing-red: #D90404;
    /* Bright red from shield/accents */
    --racing-red-hover: #b30000;
    --silver: #E0E0E0;
    --bg-color: #050B14;
    /* Sleek dark mode background */
    --section-light: #ffffff;
    /* Clean white background for sections below hero */
    --text-light: #F4F4F9;
    --text-muted: #A0ABC0;
    --text-dark: #1e293b;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #060d17 0%, #1d4380 50%, #060d17 100%);
    /* Lighter blue in the center, dark on edges */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    /* Header height */
}

/* Logo Image Styling */
.logo a {
    display: flex;
    align-items: center;
    background-color: white;
    /* White box from mockup */
    padding: 5px 15px;
    border-radius: 4px;
}

.logo-image {
    max-height: 50px;
    /* Adjusted to fit the white padding nicely */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-image:hover {
    transform: scale(1.05);
    /* Slight grow effect */
}

/* Desktop Navigation */
.main-nav {
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    /* Bolder to match mockup */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    /* Pure white for maximum crispness */
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #4ca3ff;
    /* Light blue from mockup */
}

/* Cool animated underline */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* Moved down slightly */
    left: 0;
    width: 0%;
    height: 3px;
    /* Slightly thicker */
    background-color: #4ca3ff;
    /* Light blue from mockup */
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Header Actions & CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--racing-red) 0%, #a60303 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    /* Slight rounding for modern feel */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(217, 4, 4, 0.3);
    transition: var(--transition);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    /* Slight slant matching motorsports vibe */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 4, 0.5);
    background: linear-gradient(135deg, #f20505 0%, var(--racing-red) 100%);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile menu */
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Responsiveness */
@media screen and (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 100%;
        height: 100vh;
        background-color: var(--primary-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease-in-out;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links li a {
        font-size: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .cta-button {
        display: none;
        /* Hide CTA on small mobile screens to save space */
    }

    /* Hamburger Animation to X */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for fixed header */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This makes any video fit dynamically */
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 13, 23, 0.8) 0%, rgba(29, 67, 128, 0.6) 100%);
    /* Ensuring an overall 70% dark navy feel for sharp text contrast */
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Bring content above the shape divider so buttons are clickable */
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    padding-bottom: 8rem;
    /* Push content up to avoid the tall bottom curve */
}

/* Red Badge */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--racing-red) 0%, #a60303 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    /* Pill shape */
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(217, 4, 4, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Typography */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    /* Responsive sizing */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-title .trust {
    color: #ffffff;
}

.hero-title .performance {
    color: #f1f5f9;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.8);
    /* Sharp text shadow for contrast */
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary-cta {
    font-size: 1rem;
    padding: 1rem 2rem;
}

.cta-button.secondary-cta {
    background: transparent;
    border: 2px solid var(--text-light);
    box-shadow: none;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.cta-button.secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Shape Divider for Hero Cut Effect */
.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    /* Increased curve height for a much more pronounced cut */
}

.hero-shape-divider .shape-fill {
    fill: var(--section-light);
    /* Matches the light background below the hero */
}

/* ==========================================================================
   Intro & Trust Section (Clean & Minimalist)
   ========================================================================== */
.intro-section {
    background: #ffffff;
    padding: 80px 0 100px 0;
    color: var(--text-dark);
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Row */
.intro-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.intro-text {
    flex: 2;
}

.intro-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-paragraph {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.intro-location {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-details {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--primary-blue);
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 2px solid var(--racing-red);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    /* Ensures iframe respects border radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Divider */
.intro-divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 0 0 4rem 0;
}

/* Frustrations Block */
.intro-frustrations {
    margin-bottom: 5rem;
}

.frustrations-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.frustrations-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem auto;
    max-width: 800px;
}

.frustrations-list li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: #475569;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.frustrations-list li::before {
    content: "•";
    color: var(--racing-red);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.bold-statement {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-align: center;
    margin-top: 3rem;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    padding-top: 2rem;
}

.trust-item {
    text-align: center;
    flex: 1;
    background: #ffffff;
    padding: 3rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    margin-bottom: 1.5rem;
    color: #0A1930;
    /* Dark premium blue/black */
}

.trust-icon svg {
    width: 72px;
    height: 72px;
    stroke-width: 1px;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.trust-item p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .intro-top-row {
        flex-direction: column;
        gap: 3rem;
    }

    .frustrations-title {
        text-align: left;
    }

    .trust-bar {
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 100%;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   Garage Showcase Section (Parallax)
   ========================================================================== */
.garage-showcase {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;

    background-image: url('../OFFICE.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* Important */
    background-attachment: scroll;

    will-change: background-position;
}

/* ==========================================================================
   Features Accordion Section (White Theme)
   ========================================================================== */
.features-accordion {
    background: #ffffff;
    padding: 100px 0;
    color: var(--text-dark);
}

.features-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.features-header p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--racing-red);
    font-weight: 500;
}

/* Base Accordion Styles (Light Theme Default) */
.accordion {
    border-top: 1px solid #e2e8f0;
}

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
}

.accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.accordion-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-blue);
    padding-right: 1rem;
    transition: color 0.3s ease;
}

.accordion-button:hover .accordion-title,
.accordion-button[aria-expanded="true"] .accordion-title {
    color: var(--racing-red);
}

.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: "";
    position: absolute;
    background-color: var(--primary-blue);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.accordion-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

.accordion-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.accordion-button[aria-expanded="true"] .accordion-icon::after {
    transform: rotate(90deg);
}

.accordion-button[aria-expanded="true"] .accordion-icon::before,
.accordion-button[aria-expanded="true"] .accordion-icon::after {
    background-color: var(--racing-red);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.accordion-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
    opacity: 1;
}

/* ==========================================================================
   FAQ Accordion Section (Dark Theme Overrides)
   ========================================================================== */
.faq-section {
    background: var(--primary-blue);
    padding: 100px 0;
    color: #ffffff;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.faq-header {
    flex: 1;
    position: sticky;
    top: 100px;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.faq-link {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #ffffff;
}

/* Dark Theme Accordion Overrides */
.faq-section .accordion {
    flex: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section .accordion-title {
    color: #e2e8f0;
}

.faq-section .accordion-button:hover .accordion-title,
.faq-section .accordion-button[aria-expanded="true"] .accordion-title {
    color: #ffffff;
}

.faq-section .accordion-icon::before,
.faq-section .accordion-icon::after {
    background-color: #94a3b8;
}

.faq-section .accordion-button[aria-expanded="true"] .accordion-icon::before,
.faq-section .accordion-button[aria-expanded="true"] .accordion-icon::after {
    background-color: #ffffff;
}

.faq-section .accordion-content p {
    color: #94a3b8;
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */
.cta-banner {
    background: var(--racing-red);
    padding: 60px 0;
    color: #ffffff;
    text-align: center;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

.cta-banner h2 strong {
    font-weight: 700;
}

.inverted-btn {
    background: #ffffff;
    color: var(--racing-red);
}

.inverted-btn:hover {
    background: #f1f5f9;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background: var(--primary-blue);
    padding: 80px 0 40px 0;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-btn {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
}

.footer-btn:hover {
    background: #ffffff;
    color: var(--primary-blue);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background: var(--racing-red);
    transform: translateY(-3px);
}

.footer-address {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-contact-details {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-details strong {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
        gap: 2rem;
    }

    .faq-header {
        position: relative;
        top: 0;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-address {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: center;
    }
}


.hero-feature-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.dot-separator {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .hero-feature-badges {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .dot-separator {
        display: none;
    }
}

/* ==========================================================================
   6 Core Divisions Section
   ========================================================================== */
.services-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.services-header p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-cat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.cat-icon svg {
    width: 32px;
    height: 32px;
}

.service-cat-card h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-cat-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.cat-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--racing-red);
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.cat-link:hover {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Tech & EV Section (Engineered for the Future)
   ========================================================================== */
.tech-section {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent for "tech" feel */
.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.1), transparent 60%);
    pointer-events: none;
}

.tech-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tech-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.tech-description {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.tech-description strong {
    color: #ffffff;
    font-weight: 600;
}

.tech-grid-minimal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tech-icon {
    color: var(--racing-red);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .tech-title {
        font-size: 2.25rem;
    }

    .tech-description {
        font-size: 1.05rem;
        text-align: justify;
    }
}

/* ==========================================================================
   Trust Strip (Below Hero)
   ========================================================================== */
.trust-strip {
    background-color: var(--primary-blue);
    padding: 1.5rem 0;
    border-bottom: 4px solid var(--racing-red);
}

.trust-strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-strip-item svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .trust-strip-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .trust-strip {
        display: none;
    }
}
/* Custom Toast Notification */
.custom-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #0A1930;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
    z-index: 10000; /* Ensure it stays on top of modals */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid #4ade80; /* Green for success */
}

.custom-toast.error {
    border-left: 5px solid #D90404; /* Red for errors */
}

.custom-toast.show {
    transform: translateX(0); /* Slide in */
}
