/* =====================================================
   AL TOUFIQ TYRES
   MAIN STYLESHEET
===================================================== */

:root {

    --red: #e51b23;
    --red-dark: #b70f15;
    --black: #080808;
    --dark: #101010;
    --dark-2: #171717;
    --gray: #777;
    --light: #f5f5f5;
    --white: #ffffff;

    --container: 1200px;

    --heading-font: "Barlow Condensed", sans-serif;
    --body-font: "Inter", sans-serif;

    --shadow: 0 15px 40px rgba(0,0,0,.12);

    --transition: .3s ease;
}


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--body-font);
    color: #222;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    border: none;
    cursor: pointer;
}

.container {
    width: min(92%, var(--container));
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(5,5,5,.96);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(0,0,0,.35);
}

.nav-container {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
    padding: 32px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 23px;
    background: var(--red);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-call {
    background: var(--red);
    color: #fff;
    padding: 11px 18px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-call:hover {
    background: #fff;
    color: var(--red);
}

.nav-call i {
    margin-right: 6px;
}

.menu-toggle {
    display: none;
    background: none;
    color: #fff;
    font-size: 26px;
}


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

.hero {
    min-height: 760px;
    position: relative;
    background:
        linear-gradient(100deg, #050505 0%, #0c0c0c 48%, #171717 100%);
    color: #fff;
    overflow: hidden;
    padding-top: 88px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 700px;
    background: var(--red);
    right: -250px;
    top: 80px;
    transform: rotate(22deg);
    opacity: .9;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 50%, rgba(229,27,35,.18), transparent 30%),
        linear-gradient(90deg, transparent, rgba(0,0,0,.35));
}

.hero-container {
    position: relative;
    z-index: 2;
    min-height: 672px;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

.hero-content {
    padding: 70px 0;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-label span {
    width: 35px;
    height: 3px;
    background: var(--red);
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(55px, 7vw, 95px);
    font-weight: 900;
    line-height: .9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero h1 strong {
    display: block;
    color: var(--red);
}

.hero p {
    max-width: 570px;
    color: #c9c9c9;
    font-size: 18px;
    margin: 30px 0;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 25px;
    border-radius: 3px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background: var(--red);
    color: #fff;
}

.btn-primary:hover {
    background: #fff;
    color: var(--red);
    transform: translateY(-3px);
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #bbb;
    font-size: 12px;
    font-weight: 600;
}

.hero-features i {
    color: var(--red);
    font-size: 18px;
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    position: relative;
    z-index: 2;
    width: 560px;
    height: 560px;
    object-fit: cover;
    border-radius: 50%;
    border: 12px solid rgba(255,255,255,.05);
    box-shadow: 0 20px 80px rgba(0,0,0,.7);
}

.hero-circle {
    position: absolute;
    width: 620px;
    height: 620px;
    border: 2px solid rgba(229,27,35,.4);
    border-radius: 50%;
}

.hero-badge {
    position: absolute;
    z-index: 4;
    bottom: 45px;
    left: 10px;
    background: var(--red);
    width: 135px;
    height: 135px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.hero-badge strong {
    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1;
}

.hero-badge span {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}


/* =====================================================
   QUICK INFO
===================================================== */

.quick-info {
    background: var(--red);
    color: #fff;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-item {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.18);
}

.quick-item:last-child {
    border-right: none;
}

.quick-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0,0,0,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.quick-item small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    opacity: .75;
    font-weight: 700;
}

.quick-item a,
.quick-item span {
    display: block;
    font-size: 13px;
    font-weight: 700;
}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2,
.luxury-content h2,
.about-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(42px, 5vw, 65px);
    line-height: .95;
    text-transform: uppercase;
    font-weight: 800;
}

.section-heading h2 strong,
.luxury-content h2 strong,
.about-content h2 strong {
    color: var(--red);
    display: block;
}

.section-heading p {
    margin-top: 20px;
    color: #777;
    font-size: 15px;
}


/* =====================================================
   TYRES
===================================================== */

.tyres-section {
    background: #fff;
}

.tyre-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tyre-card {
    background: #fff;
    border: 1px solid #eee;
    transition: var(--transition);
    overflow: hidden;
}

.tyre-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.tyre-image {
    height: 270px;
    overflow: hidden;
    background: #111;
}

.tyre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.tyre-card:hover .tyre-image img {
    transform: scale(1.07);
}

.tyre-content {
    position: relative;
    padding: 30px;
}

.card-number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 900;
    color: #eee;
}

.tyre-content h3 {
    font-family: var(--heading-font);
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tyre-content p {
    color: #777;
    font-size: 13px;
    min-height: 68px;
}

.tyre-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 18px;
}

.tyre-content a:hover {
    gap: 13px;
}

.brands {
    margin-top: 70px;
    text-align: center;
}

.brands > p {
    color: #999;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: center;
}

.brand-logo {
    height: 85px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;

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

    padding: 15px 20px;

    transition: all .3s ease;
}

.brand-logo img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;

    transition: all .3s ease;
}

.brand-logo:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.brand-logo:hover img {
    transform: scale(1.05);
}



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

.services-section {
    background:
        linear-gradient(rgba(8,8,8,.95), rgba(8,8,8,.95)),
        radial-gradient(circle at top right, #8b0000, transparent 40%);
    color: #fff;
}

.section-heading.light h2 {
    color: #fff;
}

.section-heading.light p {
    color: #999;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: #151515;
    border: 1px solid #292929;
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--red);
}

.service-image {
    height: 210px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-body {
    padding: 25px;
    position: relative;
}

.service-icon,
.simple-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
}

.service-body h3,
.service-card-simple h3 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 28px;
}

.service-body p,
.service-card-simple p {
    color: #999;
    font-size: 13px;
    margin-top: 5px;
}

.service-card-simple {
    padding: 30px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}


/* =====================================================
   LUXURY SECTION
===================================================== */

.luxury-section {
    padding: 110px 0;
    background: #f2f2f2;
    overflow: hidden;
}

.luxury-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
}

.luxury-content {
    padding-right: 60px;
}

.luxury-content > p {
    color: #666;
    margin: 25px 0;
    font-size: 15px;
}

.luxury-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.luxury-features div {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.luxury-features i {
    color: var(--red);
}

.luxury-brands {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.luxury-brands span {
    border: 1px solid #ccc;
    padding: 7px 11px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.luxury-image {
    min-height: 500px;
    position: relative;
    background:
        linear-gradient(135deg, #080808, #292929);
    clip-path: polygon(18% 0,100% 0,100% 100%,0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-image::after {
    content: "LUXURY";
    position: absolute;
    font-family: var(--heading-font);
    font-size: 180px;
    font-weight: 900;
    color: rgba(255,255,255,.025);
    transform: rotate(-90deg);
}

.luxury-box {
    position: relative;
    z-index: 2;
    border-left: 5px solid var(--red);
    padding-left: 25px;
    color: #fff;
}

.luxury-box span {
    display: block;
    color: #aaa;
    font-size: 15px;
    letter-spacing: 4px;
}

.luxury-box strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 70px;
    line-height: .9;
    color: var(--red);
}

.luxury-box small {
    letter-spacing: 4px;
}


/* =====================================================
   ABOUT
===================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 60px;
}

.about-image {
    min-height: 570px;
    background:
        linear-gradient(135deg, rgba(229,27,35,.85), rgba(0,0,0,.1)),
        url("images/aboutus.png") center/cover;
    position: relative;
}

.experience-box {
    position: absolute;
    right: -30px;
    bottom: 35px;
    background: var(--red);
    color: #fff;
    padding: 30px;
    min-width: 190px;
}

.experience-box strong {
    display: block;
    font-family: var(--heading-font);
    font-size: 65px;
    line-height: .8;
}

.experience-box span {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.about-content > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.about-location {
    margin-top: 30px;
    padding: 20px;
    background: #f4f4f4;
    display: flex;
    gap: 15px;
    align-items: center;
}

.about-location i {
    color: var(--red);
    font-size: 25px;
}

.about-location strong,
.about-location span {
    display: block;
}

.about-location strong {
    font-size: 14px;
}

.about-location span {
    font-size: 12px;
    color: #777;
}


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

.why-section {
    padding: 100px 0;
    background: #090909;
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    padding: 35px 25px;
    text-align: center;
    background: #151515;
    border: 1px solid #292929;
    transition: var(--transition);
}

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

.why-card > i {
    color: var(--red);
    font-size: 35px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 24px;
}

.why-card p {
    color: #888;
    font-size: 12px;
    margin-top: 7px;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    background: var(--red);
    color: #fff;
    padding: 55px 0;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-container > div > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-container h2 {
    font-family: var(--heading-font);
    font-size: 45px;
    line-height: .9;
    text-transform: uppercase;
    margin-top: 8px;
}

.cta-container h2 strong {
    display: block;
}

.btn-white {
    background: #fff;
    color: var(--red);
    min-width: 190px;
}

.btn-white:hover {
    background: #111;
    color: #fff;
}


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

.contact-section {
    background: #f7f7f7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #eee;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: var(--red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item span {
    display: block;
    color: #999;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.contact-item p,
.contact-item a {
    display: block;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--red);
}

.contact-box {
    background: #111;
    padding: 40px;
    color: #fff;
}

.contact-box h3 {
    font-family: var(--heading-font);
    font-size: 40px;
    text-transform: uppercase;
}

.contact-box > p {
    color: #999;
    font-size: 13px;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-box input,
.contact-box select,
.contact-box textarea {
    width: 100%;
    border: 1px solid #333;
    background: #191919;
    color: #fff;
    padding: 14px;
    margin-bottom: 12px;
    outline: none;
    font-size: 13px;
}

.contact-box input:focus,
.contact-box select:focus,
.contact-box textarea:focus {
    border-color: var(--red);
}

.contact-box select {
    appearance: auto;
}

.contact-box textarea {
    resize: vertical;
}

.full-btn {
    width: 100%;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #050505;
    color: #fff;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-about img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #777;
    font-size: 12px;
    max-width: 320px;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.socials a {
    width: 38px;
    height: 38px;
    background: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--red);
}

.footer h4 {
    font-family: var(--heading-font);
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #777;
    font-size: 12px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 5px;
}

.footer-contact p {
    color: #777;
    font-size: 12px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--red);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #191919;
    padding: 18px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p,
.footer-bottom a {
    color: #555;
    font-size: 11px;
}

.footer-bottom a:hover {
    color: #fff;
}


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

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    box-shadow: 0 8px 30px rgba(0,0,0,.3);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .navbar {
        gap: 18px;
    }

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

    .hero-image img {
        width: 450px;
        height: 450px;
    }

    .hero-circle {
        width: 500px;
        height: 500px;
    }

    .hero-image {
        height: 500px;
    }

    .luxury-content {
        padding-right: 30px;
    }
}


@media (max-width: 900px) {

    .menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

@media (max-width: 900px) {

    .brand-list {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 500px) {

    .brand-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .brand-logo {
        height: 75px;
        padding: 12px;
    }

    .brand-logo img {
        max-height: 40px;
    }

}

@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 75px);

        background: #080808;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        padding: 20px 25px;

        gap: 0;

        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;

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

        overflow-y: auto;

        z-index: 1050;
    }

    .navbar.show {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 17px 5px;

        color: #fff;

        border-bottom: 1px solid #252525;

        font-size: 15px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--red);
    }

    .nav-call {
        display: flex;
        justify-content: center;
        align-items: center;

        margin-top: 20px;
        padding: 14px;

        text-align: center;
    }
}


@media (max-width: 600px) {

    .nav-container {
        height: 75px;
    }

    .navbar {
        top: 75px;
        height: calc(100vh - 75px);
    }

}

    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-label {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
    }

    .hero-image img {
        width: 360px;
        height: 360px;
    }

    .hero-circle {
        width: 400px;
        height: 400px;
    }

    .hero-badge {
        left: calc(50% - 210px);
        bottom: 10px;
    }

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

    .quick-item:nth-child(2) {
        border-right: none;
    }

    .tyre-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .luxury-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .luxury-content {
        padding-right: 0;
    }

    .luxury-image {
        min-height: 400px;
        clip-path: none;
        margin-top: 40px;
    }

    .about-image {
        min-height: 450px;
    }

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

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

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

}


@media (max-width: 600px) {

    .nav-container {
        height: 75px;
    }

    .navbar {
        top: 75px;
    }

    .logo {
        width: 125px;
    }

    .hero {
        padding-top: 75px;
    }

    .hero-container {
        min-height: auto;
    }

    .hero-content {
        padding: 50px 0 20px;
    }

    .hero h1 {
        font-size: 53px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-features {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .hero-image {
        height: 330px;
    }

    .hero-image img {
        width: 280px;
        height: 280px;
    }

    .hero-circle {
        width: 310px;
        height: 310px;
    }

    .hero-badge {
        width: 90px;
        height: 90px;
        left: calc(50% - 155px);
    }

    .hero-badge strong {
        font-size: 28px;
    }

    .hero-badge span {
        font-size: 7px;
    }

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

    .quick-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .luxury-content h2,
    .about-content h2 {
        font-size: 44px;
    }

    .tyre-grid,
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .brand-list {
        gap: 20px;
    }

    .brand-list span {
        font-size: 18px;
    }

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

    .luxury-box strong {
        font-size: 55px;
    }

    .about-image {
        min-height: 350px;
    }

    .experience-box {
        right: 15px;
        bottom: 15px;
    }

    .cta-container h2 {
        font-size: 38px;
    }

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

    .contact-box {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

#formMessage {
    display: none;
    margin-top: 15px;
    padding: 12px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
}

#formMessage.success {
    display: block;
    background: #dff5e5;
    color: #176b32;
    border: 1px solid #a9dfb8;
}

#formMessage.error {
    display: block;
    background: #ffe5e5;
    color: #a40000;
    border: 1px solid #f0aaaa;
}

#submitButton:disabled {
    opacity: .6;
    cursor: not-allowed;
}