﻿        :root {
            --primary: #E31837; /* Supreme Red */
            --secondary: #111111; /* Deep Black */
            --accent: #F5F5F5; /* Light Industrial Grey */
            --text-dark: #222222;
            --bg-white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-white);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Animations */
        @keyframes slideInRight {
            0% { opacity: 0; transform: translateX(40px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        /* Navbar */
        .navbar {
            position: sticky;
            top: 0;
            background-color: var(--bg-white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            z-index: 1000;
            border-bottom: 4px solid var(--primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .navbar-logo {
            width: 52px;
            height: 52px;
            object-fit: cover;
            border-radius: 50%;
        }
        .nav-brand-text {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--secondary); /* Deep Black for 'TYRES' */
        }
        .nav-brand-text strong {
            color: var(--primary); /* Supreme Red for 'SUPREME' */
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--secondary);
            text-transform: uppercase;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        a.btn-nav {
            background-color: var(--primary);
            color: var(--bg-white);
            padding: 0.7rem 1.8rem;
            border-radius: 4px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            transition: background-color 0.3s ease;
        }
        a.btn-nav:hover {
            background-color: #c0142e;
        }
        .mobile-actions {
            display: none;
            align-items: center;
            gap: 0.65rem;
        }
        .mobile-call {
            background-color: var(--primary);
            color: var(--bg-white);
            padding: 0.55rem 0.9rem;
            border-radius: 4px;
            font-family: 'Oswald', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .menu-toggle {
            width: 42px;
            height: 42px;
            border: 2px solid var(--secondary);
            border-radius: 4px;
            background: var(--bg-white);
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            cursor: pointer;
        }
        .menu-toggle span {
            width: 20px;
            height: 2px;
            background-color: var(--secondary);
            display: block;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .menu-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .menu-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Hero Section - RIGHT ALIGNED & RESPONSIVE SCALING */
        .hero {
            position: relative;
            height: 85vh;
            min-height: 550px;
            max-height: 700px; /* Prevents extreme over-zooming on very large/wide desktop monitors */
            display: flex;
            align-items: center;
            justify-content: flex-end; /* Moved completely to the right */
            padding: 0 5% 0 8%;
            overflow: hidden; /* Contains the new background layer */
            background-color: #111;
        }
        .hero-image {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            /* Image clarity, contrast, and vibrant color enhancements */
            filter: contrast(1.15) saturate(1.2) brightness(1.05);
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            /* Gradient overlay flipped: Darker on the right for text readability, clear on the left */
            background: linear-gradient(to left, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 420px;
            background-color: rgba(255, 255, 255, 0.15); /* Significantly increased transparency */
            backdrop-filter: blur(8px);
            padding: 2.5rem 2rem;
            text-align: left;
            border-left: none;
            border-right: 8px solid var(--primary); /* Moved red border to the right side */
            border-radius: 4px;
            box-shadow: -10px 15px 30px rgba(0,0,0,0.2); /* Flipped shadow to cast leftwards */
            animation: slideInRight 0.8s ease-out forwards;
        }
        .hero-content h1 {
            font-size: 2.6rem;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--bg-white); /* Switched text to white for better contrast over transparent background */
        }
        .hero-content p {
            font-size: 1.05rem;
            margin-bottom: 2rem;
            color: #eeeeee; /* Lightened paragraph text for contrast */
            font-weight: 700;
        }
        a.btn-hero {
            display: inline-block;
            background-color: var(--primary);
            color: var(--bg-white);
            padding: 1rem 2.5rem;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        a.btn-hero:hover {
            background-color: #c0142e;
        }

        /* General Sections */
        section {
            padding: 6rem 6%;
            background-color: var(--bg-white);
        }
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .section-header h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            transform: translateX(-50%);
            width: 60px; height: 4px;
            background-color: var(--primary);
        }
        .section-header p {
            color: #555;
            font-size: 1.1rem;
            max-width: 650px;
            margin: 1rem auto 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .service-card {
            background-color: var(--accent);
            border-radius: 4px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(227, 24, 55, 0.1);
        }
        .service-img {
            height: 200px;
            background: linear-gradient(180deg, var(--secondary) 0%, #333333 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-white);
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            text-align: center;
            padding: 2rem;
            border-bottom: 4px solid var(--primary);
        }
        .service-text {
            padding: 2.5rem;
        }
        .service-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        /* Gallery Section */
        .gallery-section {
            background-color: var(--secondary);
            color: var(--bg-white);
        }
        .gallery-section .section-header h2 { color: var(--bg-white); }
        .gallery-section .section-header p { color: #ccc; }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .gallery-item {
            width: 100%;
            height: 350px;
            border-radius: 4px;
            overflow: hidden;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Reviews Grid (Strict 3-Column) */
        .reviews-container {
            width: 100%;
            margin-bottom: 3rem;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: stretch;
            gap: 2rem;
        }
        .review-box {
            background-color: var(--accent);
            padding: 3rem 2.5rem;
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            border-top: 4px solid var(--primary);
        }
        .stars {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
        }
        .review-text {
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            color: #444;
            flex-grow: 1;
            font-style: italic;
        }
        .reviewer {
            font-weight: 700;
            color: var(--secondary);
            font-size: 1.1rem;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 0.5px;
        }
        
        /* Verify Button Container */
        .verify-container {
            text-align: center;
            margin-top: 2rem;
        }
        .btn-verify {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--bg-white);
            color: var(--secondary);
            padding: 1rem 2.5rem;
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 1px;
            border: 2px solid var(--secondary);
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .btn-verify:hover {
            background-color: var(--secondary);
            color: var(--bg-white);
        }
        .btn-verify .verify-stars {
            color: #FFD700;
            font-size: 1.2rem;
        }

        /* Contact Section */
        .contact {
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            background-color: var(--secondary);
        }
        .contact-info {
            flex: 1 1 400px;
            padding: 6rem 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--bg-white);
        }
        .contact-info h2 {
            color: var(--bg-white);
            margin-bottom: 2.5rem;
        }
        .c-row {
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--primary);
        }
        .c-row span {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 1px;
            color: #aaa;
            margin-bottom: 0.3rem;
        }
        .c-row p, .c-row a {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--bg-white);
            text-decoration: none;
        }
        .c-row a:hover {
            color: var(--primary);
        }
        .directions-btn {
            display: inline-block;
            margin-top: 1rem;
            text-align: center;
            max-width: 250px;
        }
        .contact-form-wrap {
            flex: 1 1 420px;
            padding: 6rem 6%;
            background-color: #181818;
            color: var(--bg-white);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .contact-form-wrap h2 {
            color: var(--bg-white);
            margin-bottom: 1rem;
        }
        .contact-form-wrap p {
            color: #cfcfcf;
            margin-bottom: 2rem;
            max-width: 520px;
        }
        .contact-form {
            display: grid;
            gap: 1rem;
        }
        .form-hidden {
            position: absolute;
            left: -9999px;
            opacity: 0;
            pointer-events: none;
        }
        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        .contact-form label {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: #dddddd;
            margin-bottom: 0.4rem;
        }
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            border: 1px solid #3a3a3a;
            border-radius: 4px;
            background-color: var(--bg-white);
            color: var(--text-dark);
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            padding: 0.9rem 1rem;
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .contact-form select {
            appearance: auto;
        }
        .contact-form textarea {
            min-height: 135px;
            resize: vertical;
        }
        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.22);
        }
        .form-submit {
            border: none;
            cursor: pointer;
            background-color: var(--primary);
            color: var(--bg-white);
            padding: 0.95rem 2rem;
            border-radius: 4px;
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
            justify-self: start;
        }
        .form-submit:hover {
            background-color: #c0142e;
        }
        .form-status {
            min-height: 1.5rem;
            color: #dddddd;
            font-weight: 700;
        }
        .form-status.success {
            color: #58d68d;
        }
        .form-status.error {
            color: #ff7676;
        }
        .contact-map {
            flex: 1 1 100%;
            min-height: 450px;
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
        }

        /* Footer */
        footer {
            background-color: #0a0a0a;
            color: #666;
            text-align: center;
            padding: 3rem 5%;
            font-size: 0.9rem;
        }
        footer span {
            color: var(--primary);
            font-weight: bold;
        }
        .footer-credit {
            margin-top: 5px;
            opacity: 0.5;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            right: 24px;
            bottom: 24px;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background-color: #25D366;
            color: var(--bg-white);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 22px rgba(0,0,0,0.28);
            z-index: 1200;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .whatsapp-float:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.32);
        }
        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            display: block;
        }

        /* Responsive Fixes */
        @media (max-width: 900px) {
            .services-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .navbar {
                padding: 0.85rem 4%;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--bg-white);
                border-bottom: 4px solid var(--primary);
                box-shadow: 0 10px 18px rgba(0,0,0,0.12);
                padding: 0.75rem 5% 1rem;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
            }
            .nav-links.is-open {
                display: flex;
            }
            .nav-links a {
                padding: 0.85rem 0;
                border-bottom: 1px solid #e6e6e6;
            }
            .nav-links a:last-child {
                border-bottom: none;
            }
            .nav-links a.btn-nav {
                display: none;
            }
            .mobile-actions {
                display: flex;
            }
            section { padding: 4rem 5%; }
            .contact-info,
            .contact-form-wrap {
                padding: 4rem 5%;
                border-right: none;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .form-submit {
                width: 100%;
            }
            
            /* Scale down logo and text for mobile */
            .navbar-logo {
                width: 40px;
                height: 40px;
            }
            .nav-brand-text {
                font-size: 1.5rem;
            }

            /* Compact Mobile Hero Box */
            .hero {
                padding: 2rem 5%;
                justify-content: flex-end;
                align-items: flex-end; /* Move lower to show more image */
            }
            .hero-content {
                width: 86%;
                max-width: 340px;
                padding: 1.5rem 1.2rem;
                margin: 0 0 2rem auto; /* Keep right aligned with bottom clearance */
                border-top: none;
                border-right: 5px solid var(--primary); /* Thinner vertical line */
                transform: none;
                animation: none;
            }
            .hero-content h1 {
                font-size: 1.8rem;
                line-height: 1.1;
                margin-bottom: 0.8rem;
            }
            .hero-content p {
                font-size: 0.95rem;
                margin-bottom: 1.2rem;
                line-height: 1.45;
            }
            .mobile-remove {
                display: none; /* Hides extra text on mobile */
            }
            a.btn-hero {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .navbar {
                gap: 0.75rem;
            }
            .nav-logo {
                gap: 8px;
                min-width: 0;
            }
            .nav-brand-text {
                font-size: 1.18rem;
                line-height: 1;
            }
            .mobile-actions {
                gap: 0.45rem;
            }
            .mobile-call {
                padding: 0.5rem 0.65rem;
                font-size: 0.85rem;
            }
            .menu-toggle {
                width: 38px;
                height: 38px;
            }
            .hero-content { padding: 1.5rem 1.2rem; }
            .hero-content h1 { font-size: 1.8rem; }
            .whatsapp-float {
                right: 16px;
                bottom: 16px;
                width: 52px;
                height: 52px;
            }
            .whatsapp-float svg {
                width: 29px;
                height: 29px;
            }
        }
