        :root {
            --primary-orange: #ff6600;
            --whatsapp-green: #25D366;
            --dark-bg: #0c0c0c;
            --card-bg: #1a1a1a;
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --border: #222;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--dark-bg);
            color: var(--text-main);
            line-height: 1.8;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 25px;
            text-align: center;
            line-height: 1.1;
        }

        .section-title span {
            color: var(--primary-orange);
        }

        header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(15px);
            padding: 18px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        .nav-flex {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -1px;
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

        .logo-img {
            height: 52px;
            width: auto;
            display: block;
        }

        .nav-links {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-orange);
        }

        .nav-cta {
            background: var(--primary-orange);
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 800;
            font-size: 0.85rem;
        }

        .nav-cta.whatsapp {
            background: var(--whatsapp-green);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .nav-cta.whatsapp::before {
            content: '';
            width: 18px;
            height: 18px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 5px;
            margin-left: auto;
            z-index: 1001;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 26px;
            height: 3px;
            background: #fff;
            border-radius: 3px;
            transition: 0.3s ease;
            display: block;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 998;
        }

        .overlay.active {
            display: block;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: var(--whatsapp-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* HERO - Using a high-res Brembo/Brake image */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.4) 100%), url('assets/images/brakeskim.jpg') center/cover;
            padding-top: 100px;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            line-height: 1;
            margin-bottom: 25px;
        }

        .hero h1 span {
            color: var(--primary-orange);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .btn-large {
            padding: 20px 45px;
            background: var(--primary-orange);
            color: white;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            display: inline-block;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Image Display Classes */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .img-box {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        }

        .img-box img {
            width: 100%;
            display: block;
            transition: 0.5s ease;
        }

        .img-box:hover img {
            transform: scale(1.05);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--card-bg);
            padding: 50px;
            border-radius: 25px;
            border: 1px solid var(--border);
            transition: 0.3s;
        }

        .service-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-10px);
        }

        .service-card h3 {
            font-size: 1.6rem;
            color: var(--primary-orange);
            margin-bottom: 20px;
        }

        .service-card-cta {
            display: inline-block;
            margin-top: 25px;
            padding: 12px 28px;
            background: var(--primary-orange);
            color: #fff;
            text-decoration: none;
            font-weight: 800;
            font-size: 0.85rem;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: 0.3s;
        }

        .service-card-cta:hover {
            background: #ff7722;
            transform: translateY(-2px);
        }

        .safety-block {
            background: linear-gradient(rgba(255, 102, 0, 0.05), rgba(0, 0, 0, 0));
            border: 1px solid #331a00;
            border-radius: 30px;
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .tag {
            background: #1a1a1a;
            padding: 8px 18px;
            border-radius: 5px;
            border: 1px solid #333;
            font-weight: 700;
            color: var(--primary-orange);
            font-size: 0.85rem;
        }

        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: 0.3s;
            position: relative;
        }

        .testimonial-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-5px);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 3rem;
            color: var(--primary-orange);
            opacity: 0.3;
        }

        .testimonial-text {
            margin-bottom: 20px;
            color: var(--text-muted);
            font-style: italic;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), #ff8833);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: white;
            font-size: 1.2rem;
        }

        .author-info h4 {
            margin: 0;
            color: #fff;
            font-size: 0.95rem;
        }

        .author-info p {
            margin: 3px 0 0 0;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .stars {
            color: var(--primary-orange);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: 0.3s;
        }

        .faq-item:hover {
            border-color: var(--primary-orange);
        }

        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #fff;
            user-select: none;
            transition: 0.3s;
        }

        .faq-question:hover {
            background: #1a1a1a;
            color: var(--primary-orange);
        }

        .faq-toggle {
            color: var(--primary-orange);
            font-size: 1.5rem;
            transition: 0.3s transform;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: #080808;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 25px 25px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        footer {
            background: #080808;
            border-top: 1px solid var(--border);
            padding: 60px 0 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            padding-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--primary-orange);
            font-size: 1.1rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .footer-col p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .footer-col a:hover {
            color: var(--primary-orange);
        }

        .footer-logo {
            height: 40px;
            width: auto;
            margin-bottom: 15px;
            display: block;
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding: 25px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #555;
            font-size: 0.85rem;
        }

        .footer-bottom a {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-orange);
            border-color: var(--primary-orange);
        }

        .sub-hero {
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/workshop-bg.jpeg') center/cover;
            padding-top: 80px;
            border-bottom: 2px solid var(--primary-orange);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mission-box {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border-left: 5px solid var(--primary-orange);
        }

        /* Contact Page Styles */
        .contact-hero {
            padding: 150px 0 60px;
            text-align: center;
            background: #111;
            border-bottom: 1px solid var(--border);
        }

        .contact-hero h1 {
            font-size: 3rem;
            font-weight: 800;
        }

        .contact-hero h1 span {
            color: var(--primary-orange);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            margin-top: 60px;
        }

        .info-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border);
            margin-bottom: 30px;
        }

        .info-card h3 {
            color: var(--primary-orange);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .info-card p {
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .info-card a {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
        }

        .info-card a:hover {
            color: var(--primary-orange);
        }

        .contact-form {
            background: #111;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background: #0c0c0c;
            border: 1px solid #333;
            border-radius: 8px;
            color: #fff;
            outline: none;
            transition: 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--primary-orange);
        }

        .submit-btn {
            width: 100%;
            background: var(--primary-orange);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background: #ff7722;
            transform: translateY(-2px);
        }

        .map-section {
            height: 450px;
            width: 100%;
            border-top: 1px solid var(--border);
            filter: grayscale(1) invert(1) opacity(0.8);
        }

        /* Services Page Styles */
        .services-hero {
            padding: 150px 0 80px;
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('assets/images/services-hero-bg.jpeg') center/cover;
        }

        .services-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .services-hero h1 span {
            color: var(--primary-orange);
        }

        .services-hero p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .service-block {
            display: flex;
            align-items: center;
            gap: 60px;
            border-bottom: 1px solid var(--border);
        }

        .service-block:nth-child(even) {
            flex-direction: row-reverse;
        }

        .service-info {
            flex: 1;
        }

        .service-image {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            filter: brightness(0.8);
        }

        .service-info h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary-orange);
        }

        .service-info p {
            color: var(--text-muted);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .feature-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .feature-list li::before {
            content: '✓';
            color: var(--primary-orange);
            font-weight: 900;
        }

        .other-services {
            background: #080808;
            padding: 100px 0;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .grid-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border);
            transition: 0.3s;
        }

        .grid-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-5px);
        }

        .grid-card h3 {
            margin-bottom: 15px;
            color: var(--primary-orange);
        }

        .service-cta {
            background: var(--primary-orange);
            padding: 60px 0;
            text-align: center;
        }

        .services-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .btn-black {
            background: #000;
            color: #fff;
            padding: 15px 40px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 800;
            display: inline-block;
            transition: 0.3s;
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--card-bg);
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: 0.3s;
        }

        .stat-item:hover {
            border-color: var(--primary-orange);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-orange);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .process-step {
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: 0.3s;
        }

        .process-step:hover {
            border-color: var(--primary-orange);
            transform: translateY(-5px);
        }

        .process-step img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid var(--border);
        }

        .process-step-content {
            padding: 30px;
        }

        .process-step-number {
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .process-step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #fff;
        }

        .process-step-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .video-showcase {
            background: #080808;
            padding: 100px 0;
        }

        .video-wrapper {
            max-width: 800px;
            margin: 50px auto 0;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .video-wrapper video {
            width: 100%;
            display: block;
            height: auto;
        }

        .grid-card-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
            display: block;
        }

        @media (max-width: 900px) {

            .info-grid,
            .safety-block {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .nav-cta.whatsapp {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-links.mobile-open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                right: 0;
                width: 75%;
                max-width: 320px;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 40px 40px;
                gap: 20px;
                z-index: 999;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
                border-left: 1px solid var(--border);
                margin-left: 0;
                animation: slideIn 0.3s ease;
            }

            .nav-links.mobile-open a {
                font-size: 1.2rem;
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
            }

            @keyframes slideIn {
                from { transform: translateX(100%); }
                to { transform: translateX(0); }
            }

            .overlay {
                display: block;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .faq-container {
                padding: 0;
            }

            .faq-question {
                padding: 20px;
                font-size: 0.95rem;
            }

            .faq-toggle {
                font-size: 1.2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-block {
                flex-direction: column !important;
                text-align: center;
                gap: 30px;
            }

            .services-hero h1 {
                font-size: 2.5rem;
            }

            .stats-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-step img {
                height: 200px;
            }

            .services-gallery {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-bottom p {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }