/*** Served by EnMobi ***/
:root {
    --primary: #20AE40;
    --primary-dark: #1A8C35;
    --secondary: #2DD45C;
    --dark: #1a1a1a;
    --dark-light: #2d2d2d;
    --text: #e4e4e4;
    --text-muted: #a0a0a0;
    --card-bg: #242424;
    --border: rgba(255, 255, 255, 0.1);
    --grey: #95A5A6;
    --grey-light: #3a3a3a;
}

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

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.application-item:hover,
.application-item.active {
    background: #f6f6f6;
    border-radius: 12px;
}

.applications-image img {
    transition: opacity 0.4s ease;
    opacity: 1;
}

.applications-image img.fade-out {
    opacity: 0;
}
 
.true-adas-slider { position: relative; overflow: hidden; }
.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}


.slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    height: 100%;
    overflow: hidden;             
    box-sizing: border-box;
    
}

 
.slide-video {
    position: absolute;
    inset: 0;                     
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
     opacity: 1;
    transition: opacity .6s ease-out;
    
}

.slide-video.ready {
    opacity: 1;
}

.slide-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .6s ease-out;
    opacity: 1;
}

.slide-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.true-adas-slider .slide-content{
     position: absolute!important;
}


 
.slide-cta {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    background: #19A974;
    color: #fff;
    font-weight: 600;
}


.navbar-top {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
    width: 100%;
    display: none;  
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-top.scrolled {
    background: #000000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-top-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
}

.logo:hover {
    color: var(--primary-dark);
}

.logo:hover img {
    opacity: 0.8;
}

.logo-desktop {
    display: none;  
}

.navbar {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(5px);
    padding: 0.5rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    width: 100%;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar.scrolled {
    background: #000000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

 
.nav-menu-desktop {
    display: none;  
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu-desktop li {
    display: flex;
    align-items: center;
    border-right: 1px solid #444;
}

.nav-menu-desktop li:last-child {
    border-right: none;
}

.nav-menu-desktop a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav-menu-desktop a:hover,
.nav-menu-desktop a.active {
    background: var(--primary);
    color: #FFFFFF;
}

 
.nav-menu {
    display: none;
}

 
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

.menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99997 !important;
}

.menu-backdrop.active {
    display: block;
}

 
@media (min-width: 1251px) {
    .navbar-top {
        display: none !important;
    }

    .logo-desktop {
        display: block !important;
    }

    .nav-menu-desktop {
        display: flex !important;
    }

    .hamburger {
        display: none;
    }
}

@media (max-width: 1250px) {
    body.menu-open {
        overflow: hidden;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

     
    .navbar {
        display: none !important;
    }

     
    .navbar-top {
        display: block !important;
    }

     
    .nav-menu-desktop {
        display: none;
    }

    .logo-desktop {
        display: none;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hamburger {
        display: flex;
        z-index: 99999 !important;
    }

    .nav-menu {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 250px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.7);
        padding: 0;
        z-index: 99998 !important;
        will-change: transform;
        list-style: none;
        margin: 0;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
    }

    .nav-menu li {
        width: 100%;
        display: flex;
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .nav-menu a {
        width: 100%;
        padding: 0.8rem 1.5rem;
        margin: 0;
        display: flex;
        align-items: center;
        text-align: left;
        text-transform: none;
        flex: 1;
        color: #FFFFFF !important;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: var(--primary);
        color: #FFFFFF !important;
    }

    .container {
        padding: 0 1.5rem;
        max-width: 100%;
        width: 100%;
    }

     
    .home-hero-slider {
        height: 400px;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .home-slide-content {
        padding: 1rem;
    }

    .home-slide-content h2 {
        font-size: 1.8rem;
    }

    .home-slide-content p {
        font-size: 0.95rem;
    }

     
    section {
        padding: 2rem 0;
        width: 100%;
        overflow-x: hidden;
    }

    .why-choose-section {
        padding: 2rem 0;
    }

    .brands-section {
        padding: 2rem 0;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-section-compact {
        width: 100%;
    }

    .footer {
        width: 100%;
    }
}

 
.banner-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(32, 174, 64, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 212, 92, 0.15) 0%, transparent 50%);
}

.banner-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.banner-overlay {
    padding: 4rem 2rem;
}

.banner-overlay h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(32, 174, 64, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

 
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-muted);
}

 
.section {
    padding: 6rem 0;
}

.bg-light {
    background: var(--dark-light);
}

.section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.section h3 {
    color: #333;
    font-weight: 600;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.learn-more:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

 
.feature-card, .service-card, .safety-card, .programming-card,
.how-card, .about-box, .location-card, .service-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover, .service-card:hover, .safety-card:hover,
.programming-card:hover, .how-card:hover, .about-box:hover,
.location-card:hover, .service-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.feature-card h3, .service-card h3, .safety-card h3,
.programming-card h3, .location-card h3, .service-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p, .service-card p, .safety-card p,
.programming-card p, .location-card p, .service-box p {
    color: var(--text-muted);
    line-height: 1.7;
}

 
.features-grid, .services-grid, .safety-grid, .programming-grid,
.how-grid, .about-content, .locations-grid, .windshield-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

 
.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.3);
}

 
.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.customer-name {
    color: var(--text);
    font-weight: 600;
    font-style: normal;
    margin-top: 1rem;
}

.testimonials-preview {
    margin-top: 3rem;
}

.testimonials-preview h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 1.8rem;
}

 
.contact-preview {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-preview p {
    color: var(--text-muted);
    margin: 0.8rem 0;
    font-size: 1.1rem;
}

.contact-preview strong {
    color: var(--primary);
}

 
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    background: #FAFBFC;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(32, 174, 64, 0.1);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.3);
}

 
ul {
    list-style: none;
}

.calibration-info li,
.service-card li,
.safety-card li,
.programming-card li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
}

.calibration-info li:before,
.service-card li:before,
.safety-card li:before,
.programming-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

 
.location-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    max-width: 100%;
    width: 100%;
}

.location-info-side {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.map-side {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

 
.main-location-featured {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.featured-location-content {
    padding: 3rem;
}

.location-info-side h3 {
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.location-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #e4e4e4;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.featured-location-content h3 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.location-tagline {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.contact-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.25rem 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary);
}

.contact-note {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: 0.25rem !important;
}

.phone-link, .email-link {
    display: block;
    margin-bottom: 0.25rem;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.9rem !important;
}

.hours-list {
    margin-top: 0.5rem;
}

.hours-item {
    display: flex;
    gap: 1rem;
    padding: 0.25rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hours-item span:first-child {
    color: var(--text);
    font-weight: 400;
}

 
.upcoming-locations {
    margin-bottom: 3rem;
}

.upcoming-title {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-dark) !important;
    margin-bottom: 2rem;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.upcoming-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.upcoming-card:hover {
    opacity: 1;
    border-color: var(--grey);
    transform: translateY(-3px);
}

.upcoming-badge {
    display: inline-block;
    background: var(--grey-light);
    color: var(--text-muted);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.upcoming-card h4 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.upcoming-location {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.upcoming-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
}

 
.contact-page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

 
.map-section {
    padding: 3rem 0;
}

.map-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark) !important;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    flex: 1;
}

.map-container iframe {
    display: block;
    height: 100%;
    min-height: 450px;
}

.map-directions {
    text-align: center;
    margin-top: 15px;
}

.directions-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 174, 64, 0.3);
}

.directions-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 174, 64, 0.4);
}

.contact-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.contact-cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
   color: var(--primary-dark) ;
}

.contact-cta-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

 
.section-title-center {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro-center {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.programming-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.programming-type-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.programming-type-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.programming-type-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.programming-type-card h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.programming-type-card > p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.programming-details h4 {
    font-size: 1.1rem;
    color: var(--text);
    margin: 1.5rem 0 1rem 0;
}

.programming-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.programming-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.programming-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.time-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.scenario-card-modern {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.scenario-card-modern:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.scenario-card-modern h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.scenario-card-modern p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.brands-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.brand-column ul {
    list-style: none;
    padding: 0;
}

.brand-column ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.brand-column ul li:last-child {
    border-bottom: none;
}

.brands-note-box {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    text-align: center;
}

.brands-note-box p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

 
 
.footer {
    background: #1a1a1a;
    color: #b0b0b0;
}

.footer-main {
    padding: 4rem 0 3rem;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3rem;
}

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

.footer-column:nth-child(2) {
    padding-left: 20%;
}

@media (max-width: 767px) {

    .footer-column:nth-child(2){
         padding-left: 0%;
    }

}

.footer-logo {
    margin-bottom: 1rem;
}

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

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
    text-align: justify;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #7ed321;
    color: #fff;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: -1.125rem;
}

.footer-links li {
    line-height: 1.2;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7ed321;
}

.footer-address,
.footer-hours,
.footer-contact {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
    color: #b0b0b0;
}

.footer-address,
.footer-hours,
.footer-contact {
    margin-top: -1.125rem;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #7ed321;
}

.footer-heading-tight {
    margin-top: 0rem;
}

.footer-contact {
    margin-bottom: 0.5rem;
}

.footer-expansion {
    margin-top: 0.5rem;
}

.footer-expansion p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-expansion p:first-child {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-expansion strong {
    color: #fff;
    font-weight: 700;
}

.footer-bottom {
    background: #0f0f0f;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.footer-bottom-content p {
    margin: 0;
    color: #888;
    font-size: 1.1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #7ed321;
}

 
.legal-page {
    background: var(--dark);
    padding: 4rem 0;
    margin-top: 80px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-align: left;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: left;
}

.legal-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--text);
}

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

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

 
.link-button {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s;
}

.link-button:hover {
    color: var(--secondary);
}

.whit_section {
    background: #D2D6D9!important;
    background: linear-gradient(90deg,rgba(210, 214, 217, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(210, 214, 217, 1) 100%)!important;

}

.white_gradient{
        background: #D2D6D9!important;
    background: linear-gradient(90deg,rgba(210, 214, 217, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(210, 214, 217, 1) 100%)!important;
}

 
.why-choose-section {
    background: #D2D6D9;
    background: linear-gradient(90deg,rgba(210, 214, 217, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(210, 214, 217, 1) 100%);

    padding: 4rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.why-choose-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #2c3e50 0%, #4a9d1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

 
.advanced-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-left .feature-item {
    transform: translateX(-30px);
}

.features-left .feature-item.animate {
    transform: translateX(0);
}

.features-right .feature-item {
    transform: translateX(30px);
}

.features-right .feature-item.animate {
    transform: translateX(0);
}

.feature-item:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-item:nth-child(2) {
    transition-delay: 0.3s;
}

.feature-item:nth-child(3) {
    transition-delay: 0.5s;
}

.feature-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #7ed321;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ed321;
    box-shadow: 0 4px 12px rgba(126, 211, 33, 0.2);
    transition: all 0.3s ease;
}

.feature-item.animate .feature-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-icon:hover {
    background: rgba(126, 211, 33, 0.1);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(126, 211, 33, 0.4);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-content {
    flex: 1;
}

.feature-content.right-align {
    text-align: right;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-number {
    font-size: 1rem;
    color: #7ed321;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

 
.features-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
}

.center-graphic {
    width: 300px;
    height: 300px;
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.center-graphic.animate {
    opacity: 1;
    transform: scale(1);
}

.center-graphic svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(126, 211, 33, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(126, 211, 33, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(126, 211, 33, 0.5));
    }
}

.show_mobile {
    display: none;
}
.show_desktop {
    display: flex ;
}
 
@media (max-width: 1200px) {
    .advanced-features {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-center {
        order: -1;
        margin: 2rem 0;
    }

    .feature-item {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-content.right-align {
        text-align: left;
    }

     
     
     
}

@media (max-width: 768px) {
    .show_mobile {
         display: flex !important;
    }
    .show_desktop {
    display: none;
}
    .why-choose-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .advanced-features {
        padding: 0 1rem;
        gap: 2rem;
    }

    .features-left,
    .features-right {
        gap: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature-content.right-align {
        text-align: center;
    }

    .center-graphic {
        width: 200px;
        height: 200px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
}

 
.why-choose-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.why-icon-small {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.why-item span:last-child {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

 
.featured-services-section {
    padding: 3rem 0;
    background: var(--dark);
}

.featured-services-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.featured-service-item {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.featured-service-item:hover {
    transform: translateY(-3px);
    border-left-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.15);
}

.featured-service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.featured-service-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

 
.what-is-adas-section {
    background: var(--dark-light);
}

.what-is-adas-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adas-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.adas-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.adas-features,
.adas-calibration-importance {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.adas-features h3,
.adas-calibration-importance h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.adas-list {
    list-style: none;
    padding: 0;
}

.adas-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.adas-list li:last-child {
    border-bottom: none;
}

.adas-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.adas-calibration-importance p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.calibration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calibration-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.calibration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 450px;
}

.calibration-image:hover img {
    transform: scale(1.05);
}

.calibration-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calibration-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.calibration-when {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.calibration-when h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.calibration-list {
    list-style: none;
    padding: 0;
}

.calibration-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.calibration-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.calibration-guarantee {
    background: var(--grey-light);
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    margin-bottom: 2rem;
}

.calibration-guarantee p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.calibration-guarantee strong {
    color: var(--text);
}

 
.auto-glass-section {
    background: var(--dark-light);
}

.auto-glass-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.auto-glass-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.auto-glass-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 450px;
}

.auto-glass-image:hover img {
    transform: scale(1.05);
}

.auto-glass-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auto-glass-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.glass-types {
    margin-bottom: 1.5rem;
}

.glass-types h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.glass-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.glass-type {
    background: var(--card-bg);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.glass-type:hover {
    border-color: var(--primary);
    color: var(--text);
}

.service-includes {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.service-includes h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.includes-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

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

.safety-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.safety-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.safety-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.safety-description {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.diagnostic-services {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.diagnostic-services h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.diagnostic-steps {
    display: grid;
    gap: 1rem;
}

.diagnostic-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--grey-light);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.diagnostic-step:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.step-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-content h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.safety-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 500px;
}

.safety-image:hover img {
    transform: scale(1.05);
}

 
.module-programming-section {
    position: relative;
    background: var(--dark-light);
    overflow: hidden;
}

.module-programming-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.module-programming-section .container {
    position: relative;
    z-index: 1;
}

.module-header {
    text-align: center;
    margin-bottom: 3rem;
}

.module-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.module-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-main-card {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.module-main-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.module-card-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.module-card-content h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.module-card-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.module-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    overflow: hidden;
    z-index: 1;
}

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

.module-service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.module-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(32, 174, 64, 0.05) 100%);
}

.service-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.module-service-card h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.module-service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.module-cta {
    text-align: center;
    margin-top: 2rem;
}

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

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.about-content-card h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.about-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-box {
    display: flex;
    gap: 1.5rem;
    background: var(--grey-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    margin-bottom: 2rem;
}

.mission-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.mission-content h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.mission-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(32, 174, 64, 0.05) 100%);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.customer-name {
    color: var(--text);
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.stars {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

.explained-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.explained-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
     color: var(--primary-dark);
}

.explained-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.how-adas-works {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.works-header {
    text-align: center;
    margin-bottom: 3rem;
}

.works-header h3 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.works-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.component-card {
    background: var(--grey-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.component-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--grey-light) 0%, rgba(32, 174, 64, 0.05) 100%);
}

.component-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.component-card h4 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.component-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

 
.key-features-section {
    background: var(--dark-light);
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.key-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.key-feature-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.key-feature-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.key-feature-item h3 {
    color: var(--text);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.key-feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

 

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

.calibration-intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calibration-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text);
    font-size: 1.05rem;
}

.highlight-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.calibration-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.calibration-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
    transition: transform 0.5s ease;
}

.calibration-intro-image:hover img {
    transform: scale(1.05);
}

 
.calibration-types-section {
    background: var(--dark-light);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.section-header-center p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.types-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.type-column {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.type-column:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.type-header {
    text-align: center;
    margin-bottom: 2rem;
}

.type-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.type-header h3 {
    font-size: 1.8rem;
    color: var(--text);
}

.type-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.type-column:hover .type-image img {
    transform: scale(1.1);
}

.type-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

 
.when-required-section {
    background: #e8e8e8;
    padding: 4rem 0;
}

.when-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.when-section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #444444;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.when-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.when-cards-grid .when-card {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
}

.when-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.when-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.when-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #7ed321 0%, #5ba818 100%);
    position: relative;
}

.when-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.when-card:hover .when-card-image img {
    transform: scale(1.1);
}

.when-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d2c2c;
    margin: 1.5rem 1.5rem 0.75rem 1.5rem;
    text-align: center;
}

.when-card-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem 1.5rem;
    text-align: center;
}


@media (max-width: 767px) {
    .when-cards-grid .when-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
 
@media (max-width: 1024px) {
    .when-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .when-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .when-card-image {
        height: 180px;
    }
}

 
.differs-section {
    background: var(--dark);
    padding: 4rem 0;
}

.differs-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.differs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.differs-grid .differs-card {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
}

.differs-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.differs-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(32, 174, 64, 0.2);
}

.differs-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.differs-icon svg {
    width: 36px;
    height: 36px;
}

.differs-card:hover .differs-icon {
    transform: scale(1.1) rotate(5deg);
}

.differs-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

 
@media (max-width: 1024px) {
    .differs-grid .differs-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .differs-grid .differs-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .differs-title {
        font-size: 1.75rem;
    }
}

 
.what-we-calibrate-section {
    background: var(--dark-light);
}

.systems-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.system-card-modern {
    background: #e7e7e7;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.system-card-modern:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.system-icon-modern {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.system-card-modern h4 {
      color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.system-card-modern p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

 
 
.procedures-section {
    background: var(--dark);
    padding: 4rem 0;
}

.procedures-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.procedure-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.procedure-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(32, 174, 64, 0.2);
}

.procedure-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.procedure-content strong {
    color:#fff;
}
.procedure-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(32, 174, 64, 0.3);
}

.procedure-content h3 {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.procedure-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.procedure-content ul li {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.procedure-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.procedure-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.procedure-card {
    height: 400px;
}

.procedure-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

.procedure-card:hover .procedure-image img {
    transform: scale(1.1);
}

 
@media (max-width: 968px) {
    .procedure-card {
        grid-template-columns: 1fr;
    }

    .procedure-card.reverse {
        grid-template-columns: 1fr;
    }

    .procedure-image {
        order: -1;
        min-height: 250px;
    }

    .procedure-content {
        padding: 2rem;
    }

    .procedure-number {
        top: 1rem;
        left: 1rem;
    }
}

 
.final-cta-section {
    background: var(--dark-light);
}

.final-cta-box {
    background: var(--card-bg);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
}

.final-cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-box p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

 
.section-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content-with-image.reverse {
    direction: rtl;
}

.section-content-with-image.reverse > * {
    direction: ltr;
}

.section-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 400px;
}

.section-image:hover img {
    transform: scale(1.05);
}

.section-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.section-text .intro-text {
    text-align: left;
    margin: 0 0 2rem 0;
}

.section-text .learn-more {
    margin-top: 0;
}

 
@media (max-width: 1024px) {
    .banner-overlay h1 {
        font-size: 4rem;
    }

    .section-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-content-with-image.reverse {
        direction: ltr;
    }

    .section-image img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    
    .procedure-card{
        min-height: 697px;
    }
    .nav-menu-desktop {
        flex-wrap: wrap;
        gap: 1.5rem;
        font-size: 0.85rem;
        justify-content: center;
    }

    .banner-overlay h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }

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

    .features-grid, .services-grid, .safety-grid,
    .programming-grid, .how-grid, .about-content,
    .locations-grid, .windshield-content {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button, .cta-button-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .why-item {
        font-size: 0.9rem;
    }

    .featured-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-service-item {
        padding: 1.25rem;
    }

    .adas-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calibration-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .calibration-image img {
        min-height: 300px;
    }

    .auto-glass-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .auto-glass-image img {
        min-height: 300px;
    }

    .glass-types-grid {
        grid-template-columns: 1fr;
    }

    .safety-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .safety-image img {
        min-height: 300px;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }

    .module-main-card {
        grid-column: 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .components-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }

    .how-adas-works {
        padding: 2rem;
    }

    .key-features-grid {
        grid-template-columns: 1fr;
    }

    .calibration-intro-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .types-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .when-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .systems-grid-modern {
        grid-template-columns: repeat(1, 1fr);
    }

    .process-step-modern,
    .process-step-modern.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-step-modern.reverse .step-content-modern,
    .process-step-modern.reverse .step-image-modern {
        order: initial;
    }

    .step-image-modern {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .programming-types-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .section-title-center {
        font-size: 2rem;
    }

    .section-intro-center {
        font-size: 1.1rem;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid-modern {
        grid-template-columns: 1fr;
    }

    .location-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info-side,
    .map-side {
        padding: 2rem;
    }

    .location-info-side h3 {
        font-size: 1.5rem;
    }

    .map-container {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .directions-button {
        padding: 0.85rem 2rem;
        font-size: 1rem;
    }

    .contact-page-header h2 {
        font-size: 2rem;
    }

    .map-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section-title-center {
        font-size: 1.75rem;
    }

    .section-intro-center {
        font-size: 1rem;
    }

    .programming-type-icon,
    .scenario-icon {
        font-size: 2.5rem;
    }

    .brands-note-box p {
        font-size: 1rem;
    }

    .contact-page-header h2 {
        font-size: 1.75rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .map-title {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }

    .banner-overlay h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }
}

 
.adas-applications-section {
    background: #D2D6D9;
    background: linear-gradient(90deg,rgba(210, 214, 217, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(210, 214, 217, 1) 100%);
    padding: 3.5rem 0;
}

.adas-applications-section h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.section-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.adas-applications-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.application-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.application-item:hover {
    background: #fff;
    border-color: var(--primary);
}

.active1 {
    background: #fff!important;
    border-color: var(--primary);
}

.app-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.app-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.app-details h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.app-details p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.applications-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.applications-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.applications-image:hover img {
    transform: scale(1.05);
}

.best_p{
    width: 190px;
    position: absolute;
    left: 10%;
    top: -45px;
}

@media (max-width: 1200px) {
    .adas-applications-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .applications-grid {
        order: 2;
    }

    .applications-image {
        order: 1;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .best_p{
       position: relative;
       left: 0;
       top: 0;
    }
    .applications-grid {
        grid-template-columns: 1fr;
    }

    .application-item {
        padding: 1rem;
    }

    .app-icon {
        width: 45px;
        height: 45px;
    }

    .app-details h3 {
        font-size: 0.85rem;
    }

    .app-details p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .adas-applications-section h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .application-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .app-icon {
        margin: 0 auto;
    }
}

 
.environmental-causes-section {
    background: var(--dark);
    padding: 5rem 0;
}

.environmental-causes-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-intro-env {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.environmental-causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.environmental-causes-grid > div {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.environmental-causes-grid > div:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.environmental-causes-section h3 {
    color: var(--text) !important;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1.5rem;
    margin: 0;
}

.cause-image {
    background: var(--card-bg);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.cause-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.cause-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.cause-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cause-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    text-align: center;
}

.cause-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cause-example {
    background: var(--grey-light);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cause-example strong {
    color: var(--primary);
    font-weight: 600;
}

.best-practice-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(32, 174, 64, 0.25);
}

.best-practice-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.best-practice-content h3 {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.best-practice-content p {
    color: #FFFFFF;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

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

@media (max-width: 768px) {
    .environmental-causes-section {
        padding: 3.5rem 0;
    }

    .environmental-causes-section h2 {
        font-size: 2rem;
    }

    .section-intro-env {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .environmental-causes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .best-practice-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1rem;
    }

    .best-practice-content h3 {
        font-size: 1.3rem;
    }

    .best-practice-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cause-card {
        padding: 1.5rem;
    }

    .cause-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cause-card h3 {
        font-size: 1.1rem;
    }

    .cause-description {
        font-size: 0.95rem;
    }

    .cause-example {
        font-size: 0.9rem;
    }
}

 
.services-overview-section {
    background: var(--dark-light);
    padding: 2rem 0;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.service-overview-card {
    background: #f4f4f6;
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.service-overview-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.15);
}

.service-overview-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-overview-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color:  #333;
}

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

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

.laminated-glass-box {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.laminated-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.laminated-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.laminated-content p:last-child {
    margin-bottom: 0;
}

.laminated-content strong {
    color: var(--text);
    font-weight: 700;
}

.repair-process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.repair-step-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 280px;
}

.repair-step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.15);
}

.repair-step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.repair-step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.repair-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.replacement-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.highlight-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.15);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.highlight-icon-large {
    font-size: 3rem;
    flex-shrink: 0;
}

.highlight-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.highlight-box p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.quality-badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.quality-badge {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 280px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.quality-badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.15);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.quality-badge h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.quality-badge p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

 
@media (max-width: 1024px) {
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .repair-step-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 280px;
    }

    .replacement-highlights {
        grid-template-columns: 1fr;
    }

    .quality-badge {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .repair-step-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .laminated-glass-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .laminated-icon {
        margin: 0 auto;
    }

    .highlight-header {
        flex-direction: column;
        text-align: center;
    }

    .quality-badge {
        flex: 0 0 100%;
    }
}

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

    .service-overview-card {
        padding: 1.5rem 1rem;
    }

    .service-overview-icon {
        font-size: 2.5rem;
    }
}

 
 
body:has(.safety-intro-section) .section {
    padding: 3rem 0 !important;
}

.safety-intro-section {
    background: var(--dark);
    padding: 3rem 0 !important;
}

.safety-intro-section .intro-text {
    margin-bottom: 0.75rem;
}

.safety-intro-section h2 {
    margin-bottom: 1rem;
}

body:has(.safety-intro-section) .repair-process-grid {
    gap: 0.75rem;
    margin-top: 1rem;
}

body:has(.safety-intro-section) .repair-step-card {
    padding: 1rem 0.75rem;
    min-width: 200px;
    flex: 0 0 calc(20% - 0.6rem);
}

body:has(.safety-intro-section) .repair-step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

body:has(.safety-intro-section) .repair-step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

body:has(.safety-intro-section) .repair-step-card p {
    font-size: 0.85rem;
}

 
body:has(.safety-intro-section) .price-range {
    gap: 1rem;
    margin-bottom: 1rem;
}

body:has(.safety-intro-section) .price-from,
body:has(.safety-intro-section) .price-to {
    font-size: 2.25rem;
}

body:has(.safety-intro-section) .pricing-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

body:has(.safety-intro-section) .pricing-note {
    padding: 1.25rem;
    margin-top: 1rem;
}

body:has(.safety-intro-section) .pricing-note h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

body:has(.safety-intro-section) .pricing-note p {
    font-size: 0.9rem;
    line-height: 1.5;
}

 
body:has(.safety-intro-section) .not-included-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

body:has(.safety-intro-section) .not-included-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

body:has(.safety-intro-section) .not-included-card p {
    font-size: 0.9rem;
}

body:has(.safety-intro-section) .estimate-note {
    padding: 1rem;
    margin-top: 1rem;
}

body:has(.safety-intro-section) .estimate-note p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.inspection-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.checklist-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.checklist-item span:last-child {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.adas-verification-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1.75rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(32, 174, 64, 0.25);
}

.adas-verification-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.adas-verification-content h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.adas-verification-content p {
    color: #FFFFFF;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.pricing-info-box {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-main {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-from, .price-to {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-note {
    background: var(--grey-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.pricing-note h4 {
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pricing-note p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.validity-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.validity-icon {
    font-size: 5rem;
    flex-shrink: 0;
}

.validity-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.validity-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.validity-content strong {
    color: var(--primary);
    font-weight: 700;
}

.not-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.not-included-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.not-included-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.15);
}

.not-included-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.not-included-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
       color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.not-included-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.estimate-note {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: center;
}

.estimate-note p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

 
@media (max-width: 1024px) {
    .inspection-checklist {
        grid-template-columns: 1fr;
    }

    .not-included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .adas-verification-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .validity-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .validity-content h2 {
        font-size: 1.5rem;
    }

    .pricing-info-box {
        padding: 2rem;
    }

    .price-range {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-from, .price-to {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .checklist-item {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .pricing-main {
        margin-bottom: 1.5rem;
    }

    .price-from, .price-to {
        font-size: 2rem;
    }

    .validity-icon {
        font-size: 3.5rem;
    }

    .not-included-icon {
        font-size: 2.5rem;
    }
}

 
 
.mission-statement-box {
    background: linear-gradient(135deg, rgba(32, 174, 64, 0.15), rgba(45, 212, 92, 0.1));
    border: 2px solid var(--primary);
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--text);
    box-shadow: 0 10px 30px rgba(32, 174, 64, 0.2);
}

.mission-icon {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(32, 174, 64, 0.5));
}

.mission-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.mission-content p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    color: var(--text);
}

 
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.core-value-card {
    background:#fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.core-value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.core-value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.core-value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
       color: var(--primary-dark);
    margin-bottom: 1rem;
}

.core-value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card-modern {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.value-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.value-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.value-card-modern p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.diff-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.diff-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
}

.diff-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.diff-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card-modern {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 20px rgba(32, 174, 64, 0.15);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(32, 174, 64, 0.25);
    border-width: 3px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: none;
}

.stat-label {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.team-card-modern {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.team-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.team-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.team-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.team-card-modern p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.community-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.community-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(32, 174, 64, 0.15);
}

.community-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.community-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.community-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

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

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

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

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

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

@media (max-width: 768px) {
    .mission-statement-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .mission-content p {
        font-size: 1.1rem;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .values-grid-modern {
        grid-template-columns: 1fr;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mission-icon,
    .core-value-icon,
    .value-icon,
    .team-icon,
    .community-icon {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .diff-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }
}

 
#homeSlider {
    margin: 0;
    padding: 0;
}

.adas-hero-slider,
.calibration-hero-slider,
.true-adas-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark);
    margin: 0;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.3rem;
    color: #FFFFFF;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.slide-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

 
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev,
.slider-arrow.left {
    left: 30px;
}

.slider-arrow.next,
.slider-arrow.right {
    right: 30px;
}

 
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--primary);
    border-color: #FFFFFF;
    transform: scale(1.2);
}

 
@media (max-width: 1024px) {
    .adas-hero-slider,
    .calibration-hero-slider,
    .true-adas-slider {
        height: 500px;
    }

    .slide-content h2 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .adas-hero-slider,
    .calibration-hero-slider,
    .true-adas-slider {
        height: 450px;
    }

    .slide-content h2 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .slider-arrow.prev,
    .slider-arrow.left {
        left: 15px;
    }

    .slider-arrow.next,
    .slider-arrow.right {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .adas-hero-slider,
    .calibration-hero-slider,
    .true-adas-slider {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

 
.home-hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.home-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.home-slide {
    position: relative;
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-slide-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.home-slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-slide-content p {
    font-size: 1.3rem;
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.home-slide-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.home-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.home-prev {
    left: 30px;
}

.home-next {
    right: 30px;
}

.home-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.home-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-dot.active {
    background: #e4e4e4;
    transform: scale(1.2);
}

.home-dot:hover {
    background: rgba(228, 228, 228, 0.8);
}

 
@media (max-width: 1024px) {
    .home-hero-slider {
        height: 500px;
    }

    .home-slide-content h2 {
        font-size: 2.8rem;
    }

    .home-slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .home-hero-slider {
        height: 450px;
    }

    .home-slide-content h2 {
        font-size: 2.2rem;
    }

    .home-slide-content p {
        font-size: 1rem;
    }

    .home-slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .home-prev {
        left: 15px;
    }

    .home-next {
        right: 15px;
    }

    .home-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .home-hero-slider {
        height: 400px;
    }

    .home-slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .home-slide-content p {
        font-size: 0.95rem;
    }

    .home-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .home-dot {
        width: 10px;
        height: 10px;
    }
}

 
.brands-section {
    padding: 3rem 0;
    background: #FAFAFA;
    overflow: hidden;
}

.brands-section .container {
    max-width: 100%;
    padding: 0;
}

.brands-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
    padding: 0 2rem;
}

.explained-tagline {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0 0;
    position: relative;
    height: 120px;  
}

.brands-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 4rem;
    position: absolute;  
    top: 0;
    left: 0;
    height: 100%;
    white-space: nowrap;
    will-change: transform;
}

.brand-logo img {
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .brands-slider { height: 70px; }
    .brand-logo img { height: 50px; }
    .brands-track { gap: 2rem; }
}




.contact-section-compact {
    padding: 2rem 0;
    background: var(--dark);
}

.contact-compact-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text);
}

.contact-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-compact-item {
    padding: 0.75rem 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-compact-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-compact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-compact-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.expanding-ontario-compact {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    margin-top: 1rem;
}

.expanding-ontario-compact p {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.expanding-ontario-compact strong {
    color: var(--primary);
    font-weight: 700;
}

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

    .contact-compact-title {
        font-size: 1.5rem;
    }
}
/*** Served by EnMobi ***/
