/* ==========================================
   IMO WHEELS & TYRE
   PREMIUM AUTOMOTIVE WEBSITE
========================================== */


/* ==========================================
   GLOBAL RESET
========================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    min-height: 100vh;

    margin: 0;

    font-family: Arial, sans-serif;

    background: #090b0f;
    color: #ffffff;

    overflow-x: hidden;
}


body.modal-open {
    overflow: hidden;
}


a {
    color: inherit;
}


button,
input,
select,
textarea {
    font-family: inherit;
}


/* ==========================================
   NAVIGATION
========================================== */

nav {
    width: 100%;
    min-height: 75px;

    padding: 15px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(8, 10, 14, 0.94);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}


.nav-brand {
    color: #ffffff;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 2px;

    white-space: nowrap;
}


.nav-links {
    display: flex;
    align-items: center;

    gap: 35px;
}


.nav-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.nav-links a:hover {
    color: #ff4655;
}


.nav-links a:last-child {
    padding: 12px 20px;

    background:
        linear-gradient(
            135deg,
            #ff4655,
            #bd1e2d
        );

    border-radius: 30px;
}


.nav-links a:last-child:hover {
    color: #ffffff;

    transform: translateY(-2px);
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    background: transparent;

    border: none;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;
}


/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;

    width: 100%;
    min-height: 760px;

    padding: 120px 20px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% 40%,
            rgba(230,57,70,0.20) 0%,
            rgba(230,57,70,0.06) 25%,
            transparent 55%
        ),
        radial-gradient(
            ellipse at 15% 80%,
            rgba(50,80,120,0.16),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #11151b 0%,
            #080a0e 45%,
            #171b22 100%
        );
}


.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,0.055);

    box-shadow:
        0 0 0 35px rgba(255,255,255,0.015),
        0 0 0 70px rgba(230,57,70,0.025),
        0 0 100px rgba(230,57,70,0.08);

    animation:
        slowSpin 30s linear infinite;
}


.hero::after {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    border-radius: 50%;

    border: 1px dashed rgba(230,57,70,0.10);

    animation:
        slowSpinReverse 45s linear infinite;
}


@keyframes slowSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes slowSpinReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


.hero > * {
    position: relative;
    z-index: 5;
}


.hero-tagline {
    margin-bottom: 20px;

    color: #ff4655;

    font-size: 16px;
    font-weight: 900;

    letter-spacing: 4px;

    text-transform: uppercase;
}


.hero h1 {
    margin: 0 0 15px;

    font-size: clamp(50px, 8vw, 100px);

    font-weight: 950;

    letter-spacing: 5px;

    text-transform: uppercase;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #d9dce0 45%,
            #8c9299 100%
        );

    background-clip: text;
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    text-shadow:
        0 15px 40px rgba(0,0,0,0.5);
}


.hero-subtitle {
    margin-top: 10px;

    color: #ffffff;

    font-size: 24px;
    font-weight: 800;
}


.hero-description {
    max-width: 650px;

    margin: 15px auto;

    color: #c8cdd3;

    font-size: 18px;

    line-height: 1.7;
}


/* ==========================================
   HERO BUTTONS
========================================== */

.hero-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 25px;
}


.hero-buttons a {
    text-decoration: none;
}


.quote-button {
    display: inline-block;

    padding: 18px 42px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #ff4655,
            #bd1e2d
        );

    color: #ffffff;

    font-size: 16px;
    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 12px 35px rgba(230,57,70,0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.quote-button:hover {
    color: #ffffff;

    transform: translateY(-5px);

    box-shadow:
        0 20px 50px rgba(230,57,70,0.5);
}


.whatsapp-button {
    display: inline-flex;

    align-items: center;

    padding: 18px 30px;

    border-radius: 50px;

    background: #25D366;

    color: #111111;

    font-size: 16px;
    font-weight: 900;

    letter-spacing: 1px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}


.whatsapp-button i {
    margin-right: 8px;

    font-size: 20px;
}


.whatsapp-button:hover {
    color: #ffffff;

    background: #1ebe5d;

    transform: translateY(-5px);
}


/* ==========================================
   SECTION SHARED STYLES
========================================== */

.section-tag {
    position: relative;

    margin-bottom: 15px;

    color: #ff4655;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

    z-index: 2;
}


.section-intro {
    position: relative;

    max-width: 650px;

    margin: 0 auto 55px;

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.7;

    z-index: 2;
}


/* ==========================================
   WHY US
========================================== */

.why-us {
    position: relative;

    padding: 100px 20px;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #151a21,
            #0d1015
        );

    border-top:
        1px solid rgba(255,255,255,0.06);

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}


.why-us::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(230,57,70,0.10),
            transparent 65%
        );

    pointer-events: none;
}


.why-us h2,
.services-section h2,
.contact-section h2 {
    position: relative;

    color: #ffffff;

    font-weight: 900;

    z-index: 2;
}


.why-us h2 {
    margin-bottom: 20px;

    font-size: clamp(36px, 5vw, 56px);
}


.why-grid {
    position: relative;

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    z-index: 2;
}


.why-card {
    padding: 30px 20px;

    background:
        linear-gradient(
            145deg,
            #20252d,
            #15191f
        );

    border:
        1px solid #303640;

    border-radius: 14px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.why-card:hover {
    transform: translateY(-8px);

    border-color: #e63946;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.3);
}


.why-card i {
    color: #e63946;

    font-size: 40px;
}


.why-card h3 {
    margin: 20px 0 12px;

    color: #ffffff;

    font-size: 21px;
}


.why-card p {
    color: #bdbdbd;

    font-size: 15px;

    line-height: 1.6;
}

/* ==========================================
   SERVICES
========================================== */

.services-section {
    position: relative;

    padding: 120px 6%;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #090b0f 0%,
            #151922 50%,
            #090b0f 100%
        );
}

.services-section::before {
    content: "";

    position: absolute;

    width: 140%;
    height: 250px;

    top: 25%;
    left: -20%;

    transform: rotate(-8deg);

    border-top:
        1px solid rgba(230,57,70,0.08);

    border-bottom:
        1px solid rgba(255,255,255,0.035);

    pointer-events: none;
}

.services-section h2 {
    margin: 10px 0 20px;

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    letter-spacing: -2px;
}

.services-section .section-intro {
    margin-bottom: 70px;
}

/* ==========================================
   SERVICES GRID — RESTORE ORIGINAL LAYOUT
========================================== */

.services-section ul {
    position: relative;

    max-width: 1250px;

    margin: 0 auto;

    padding: 0;

    list-style: none;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    z-index: 2;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    min-height: 190px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    align-items: flex-start;

    overflow: hidden;

    cursor: pointer;

    background:
        linear-gradient(
            145deg,
            #20252d,
            #11151b
        );

    border:
        1px solid #303640;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.3);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* TABLET */

@media (max-width: 900px) {

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

}


/* MOBILE */

@media (max-width: 700px) {

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

}

/* ==========================================
   SERVICE CARD
========================================== */

.service-card {
    position: relative;

    min-height: 190px;

    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    align-items: flex-start;

    overflow: hidden;

    cursor: pointer;

    background:
        linear-gradient(
            145deg,
            #20252d,
            #11151b
        );

    border:
        1px solid #303640;

    box-shadow:
        0 15px 35px rgba(0,0,0,0.3);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* Decorative glow */

.service-card::before {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    top: -55px;
    right: -55px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(230,57,70,0.18),
            transparent 70%
        );

    pointer-events: none;
}


/* Bottom red line */

.service-card::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #e63946;

    transition:
        width 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #e63946;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.45),
        0 0 30px rgba(230,57,70,0.10);
}

.service-card:hover::after {
    width: 100%;
}

.service-card i {
    margin-bottom: auto;

    color: #ffffff;

    font-size: 38px;

    transition:
        transform 0.3s ease;
}

.service-card:hover i {
    transform:
        scale(1.15)
        rotate(-5deg);
}

.service-card span {
    color: #ffffff;

    font-size: 15px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

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

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .services-section {
        padding:
            80px 20px;
    }

    .services-section h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .services-section .section-intro {
        margin-bottom: 45px;
    }

    .services-section ul {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .service-card {
        min-height: 160px;

        padding: 28px;
    }

} 
/* ==========================================
   CONTACT
========================================== */

.contact-section {
    position: relative;

    padding: 110px 20px;

    text-align: center;

    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(230,57,70,0.12),
            transparent 45%
        ),
        #0b0d11;
}


.contact-section h2 {
    margin-bottom: 20px;

    font-size: clamp(36px, 5vw, 56px);
}


.contact-intro {
    max-width: 600px;

    margin:
        0 auto 40px;

    color: #bdbdbd;

    font-size: 18px;

    line-height: 1.6;
}


.quote-form {
    max-width: 750px;

    margin: 0 auto;

    padding: 40px;

    text-align: left;

    background:
        linear-gradient(
            145deg,
            #1d2229,
            #101318
        );

    border:
        1px solid #303640;

    border-radius: 15px;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.5);
}


.form-group {
    margin-bottom: 22px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-weight: bold;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px;

    background: #101010;

    border:
        1px solid #3a3a3a;

    border-radius: 7px;

    color: #ffffff;

    font-size: 16px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}


.form-group select {
    cursor: pointer;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: #e63946;

    box-shadow:
        0 0 0 2px rgba(230,57,70,0.12);
}


.form-group textarea {
    resize: vertical;
}


.quote-submit {
    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #ff4655,
            #bd1e2d
        );

    color: #ffffff;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.quote-submit:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(230,57,70,0.3);
}


.contact-details {
    max-width: 750px;

    margin: 45px auto 0;
}


.contact-details p {
    margin: 12px 0;

    color: #d0d0d0;

    font-size: 17px;
}


.contact-details a {
    color: #ffffff;

    font-weight: bold;

    text-decoration: none;
}


.contact-details a:hover {
    color: #ff4655;
}


/* ==========================================
   FLOATING WHATSAPP
========================================== */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 2000;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    background: #25D366;

    color: #ffffff;

    text-decoration: none;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 800;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.whatsapp-float i {
    font-size: 23px;
}


.whatsapp-float:hover {
    color: #ffffff;

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0,0,0,0.45);
}


/* ==========================================
   SERVICE MODAL
========================================== */

.service-modal {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(0,0,0,0.82);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 9999;
}


.service-modal.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.service-modal-content {
    position: relative;

    width: min(560px, 100%);

    padding: 55px 45px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #1c1c1c,
            #0d0d0d
        );

    border:
        1px solid rgba(255,255,255,0.15);

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.6);

    transform:
        translateY(30px)
        scale(0.94);

    transition:
        transform 0.35s ease;
}


.service-modal.active .service-modal-content {
    transform:
        translateY(0)
        scale(1);
}


.service-modal-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.2);

    background:
        rgba(255,255,255,0.06);
}


.service-modal-icon i {
    color: #ffffff;

    font-size: 32px;
}


.service-modal-content h2 {
    margin: 10px 0 18px;

    color: #ffffff;

    font-size: clamp(2rem, 6vw, 3rem);

    font-weight: 900;

    letter-spacing: -1px;
}


.service-modal-content
p:not(.section-tag) {
    max-width: 450px;

    margin: 0 auto 30px;

    color: #aaa;

    font-size: 16px;

    line-height: 1.7;
}


.service-close {
    position: absolute;

    top: 18px;
    right: 22px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


.service-close:hover {
    transform: rotate(90deg);

    opacity: 0.7;
}


.service-close:focus-visible {
    outline: 2px solid #ff4655;

    outline-offset: 3px;
}


/* ==========================================
   TYRES & RIMS
========================================== */

.tyres-rims-section {
    position: relative;
    overflow: hidden;

    padding: 110px 6%;

    background:
        radial-gradient(
            ellipse at 15% 50%,
            rgba(230, 57, 70, 0.12),
            transparent 40%
        ),
        radial-gradient(
            ellipse at 85% 30%,
            rgba(255, 255, 255, 0.05),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #11151b 0%,
            #090b0f 55%,
            #151922 100%
        );

    border-top:
        1px solid rgba(255,255,255,0.06);

    border-bottom:
        1px solid rgba(255,255,255,0.06);
}


.tyres-rims-section::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.045);

    box-shadow:
        0 0 0 35px rgba(255,255,255,0.012),
        0 0 0 75px rgba(230,57,70,0.018),
        0 0 100px rgba(230,57,70,0.06);

    pointer-events: none;
}


.tyres-rims-content {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: 0 auto;
}


.tyres-rims-section .section-tag {
    color: #ff4655;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 15px;
}


.tyres-rims-section h2 {
    margin: 0 0 20px;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 0.98;

    font-weight: 950;

    letter-spacing: -2px;

    text-transform: uppercase;

    color: white;
}


.tyres-rims-intro {
    max-width: 650px;

    margin: 0 0 55px;

    color: #bfc4ca;

    font-size: 18px;

    line-height: 1.7;
}


.tyres-rims-options {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.tyre-rim-card {
    position: relative;

    min-height: 330px;

    padding: 40px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #20252d,
            #11151b
        );

    border:
        1px solid #303640;

    border-radius: 18px;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.35);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.tyre-rim-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(230,57,70,0.18),
            transparent 70%
        );

    pointer-events: none;
}


.tyre-rim-card:hover {
    transform: translateY(-8px);

    border-color: #e63946;

    box-shadow:
        0 25px 55px rgba(0,0,0,0.45),
        0 0 35px rgba(230,57,70,0.10);
}


.tyre-rim-icon {
    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid rgba(255,255,255,0.12);
}


.tyre-rim-icon i {
    font-size: 30px;

    color: white;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.tyre-rim-card:hover
.tyre-rim-icon i {
    color: #ff4655;

    transform: scale(1.12);
}


.tyre-rim-info {
    position: relative;

    z-index: 2;
}


.card-label {
    margin: 0 0 8px;

    color: #ff4655;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;
}


.tyre-rim-card h3 {
    margin: 0 0 12px;

    color: white;

    font-size: 30px;

    font-weight: 900;

    letter-spacing: -0.5px;
}


.tyre-rim-card p:not(.card-label) {
    max-width: 500px;

    margin: 0;

    color: #aeb4bb;

    font-size: 16px;

    line-height: 1.65;
}


.tyre-actions {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 30px;
}


.tyre-rim-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 25px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #ff4655,
            #bd1e2d
        );

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 10px 25px rgba(230,57,70,0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.tyre-rim-button:hover {
    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px rgba(230,57,70,0.4);
}


.tyre-rim-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #d5d8dc;

    text-decoration: none;

    font-size: 14px;

    font-weight: 800;

    transition:
        color 0.2s ease;
}


.tyre-rim-link:hover {
    color: #25D366;
}


.tyre-rim-link i {
    font-size: 18px;
}


/* ==========================================
   WHEELS & TYRES CAROUSEL
========================================== */

.wheels-showcase {
    position: relative;

    padding: 100px 20px;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0b0d11,
            #151922,
            #090b0f
        );
}


.wheels-showcase h2 {
    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 10px auto 20px;

    color: white;

    font-size:
        clamp(2.5rem, 6vw, 4rem);

    font-weight: 900;

    letter-spacing: -2px;
}


.wheels-showcase .section-intro {
    margin:
        0 auto 50px;
}


/* CAROUSEL WINDOW */

.wheels-carousel {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto 50px;

    overflow: hidden;

    position: relative;

    z-index: 2;
}


/* MOVING TRACK */

.wheels-grid {
    width: max-content;

    display: flex;

    gap: 25px;

    margin: 0;

    will-change: transform;
}


/* IMAGE CARDS */

.wheel-image {
    position: relative;

    flex:
        0 0 380px;

    height: 350px;

    overflow: hidden;

    border-radius: 18px;

    border:
        1px solid rgba(255,255,255,0.12);

    background: #111;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.wheel-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


.wheel-image:hover {
    transform: translateY(-8px);

    border-color: #e63946;

    box-shadow:
        0 25px 55px rgba(0,0,0,0.55),
        0 0 30px rgba(230,57,70,0.12);
}


.wheel-image:hover img {
    transform: scale(1.06);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

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


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

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 800px) {

    .tyres-rims-section {
        padding: 80px 20px;
    }


    .tyres-rims-section h2 {
        font-size: 48px;
    }


    .tyres-rims-intro {
        margin-bottom: 40px;
    }


    .tyres-rims-options {
        grid-template-columns: 1fr;
    }


    .wheels-showcase {
        padding: 75px 15px;
    }


    .wheels-carousel {
        max-width: 100%;
    }


    .wheels-grid {
        gap: 15px;
    }


    .wheel-image {
        flex:
            0 0 85vw;

        max-width: 380px;

        height: 300px;
    }

}


/* ==========================================
   MOBILE NAVIGATION
========================================== */

@media (max-width: 700px) {

    nav {
        padding: 15px 20px;
    }


    .nav-brand {
        font-size: 17px;
    }


    .menu-toggle {
        display: block;
    }


    .nav-links {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        padding: 10px 0;

        background: #111;

        border-top:
            1px solid #333;
    }


    .nav-links.active {
        display: flex;
    }


    .nav-links a {
        width: 100%;

        padding: 16px;

        text-align: center;
    }


    .nav-links a:last-child {
        border-radius: 0;
    }


    .hero {
        min-height: 680px;

        padding:
            100px 20px;
    }


    .hero h1 {
        font-size: 48px;

        letter-spacing: 2px;
    }


    .hero-tagline {
        font-size: 14px;

        letter-spacing: 2px;
    }


    .hero-subtitle {
        font-size: 21px;
    }


    .hero-description {
        font-size: 17px;
    }


    .hero::before {
        width: 430px;
        height: 430px;
    }


    .hero::after {
        width: 600px;
        height: 600px;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-buttons a {
        width: 90%;

        max-width: 300px;

        justify-content: center;

        text-align: center;
    }


    .why-us {
        padding:
            80px 20px;
    }


    .why-us h2 {
        font-size: 36px;
    }


    .services-section {
        padding:
            80px 20px;
    }


    .services-section h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }


    .services-section .section-intro {
        margin-bottom: 45px;
    }


    .services-section ul {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .service-card {
        min-height: 160px;

        padding: 28px;
    }


    .quote-form {
        padding: 30px 20px;
    }


    .whatsapp-float {
        right: 15px;

        bottom: 15px;

        width: 55px;
        height: 55px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }


    .whatsapp-float span {
        display: none;
    }


    .whatsapp-float i {
        font-size: 27px;
    }


    .tyre-rim-card {
        min-height: 310px;

        padding: 30px;
    }


    .tyre-rim-card h3 {
        font-size: 26px;
    }


    .tyre-actions {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .tyre-rim-button {
        width: 100%;

        text-align: center;
    }

}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .nav-brand {
        font-size: 15px;

        letter-spacing: 1px;
    }


    .hero {
        min-height: 650px;
    }


    .hero h1 {
        font-size: 42px;
    }


    .hero-subtitle {
        font-size: 19px;
    }


    .hero-description {
        font-size: 16px;
    }


    .why-us h2,
    .services-section h2,
    .contact-section h2 {
        font-size: 34px;
    }


    .service-modal-content {
        padding:
            50px 25px 35px;

        border-radius: 20px;
    }


    .service-modal-content h2 {
        font-size: 2rem;
    }


    .service-modal-icon {
        width: 65px;
        height: 65px;
    }


    .wheels-showcase h2 {
        font-size: 38px;

        letter-spacing: -1px;
    }


    .wheel-image {
        flex:
            0 0 85vw;

        height: 300px;
    }

}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* ==========================================
   SERVICE GRID — FINAL OVERRIDE
========================================== */

.services-section ul {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 1250px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
}

.services-section .service-card {
    width: auto !important;
    min-width: 0 !important;
}


/* TABLET */

@media (max-width: 900px) {

    .services-section ul {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .services-section ul {
        grid-template-columns: 1fr !important;
    }

}

/* =========================
   SERVICES GRID RESTORE
========================= */

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    width: 100% !important;
}

.service-card {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}


/* =========================
   WHATSAPP FLOATING BUTTON
========================= */

.whatsapp-float {
    color: #ffffff !important;
    background-color: #25D366 !important;
}

.whatsapp-float span {
    color: #ffffff !important;
    font-weight: 700;
}


