/* ============================================================
   ROOT & BASE
   ============================================================ */
:root {
    --primary-color: #b72025;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Instrument Sans", sans-serif !important;
}


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-24 {
    font-size: 24px;
}

.fs-36 {
    font-size: 1.875vw;
}

.fs-48 {
    font-size: 2.5vw;
}

.fs-84 {
    font-size: 4.37vw !important;
}

.lh-1 {
    line-height: 1;
}

/* Laptop (max-width: 1200px) — ~90% of desktop */
@media (max-width: 1200px) {
    .fs-16 {
        font-size: 15px;
    }

    .fs-17 {
        font-size: 16px;
    }

    .fs-18 {
        font-size: 17px;
    }

    .fs-24 {
        font-size: 22px;
    }

    .fs-36 {
        font-size: 30px;
    }

    .fs-48 {
        font-size: 40px;
    }

    .fs-84 {
        font-size: 5.7vw !important;
    }
}

/* Tablet (max-width: 768px) — ~80% of desktop */
@media (max-width: 768px) {
    .fs-16 {
        font-size: 15px;
    }

    .fs-17 {
        font-size: 15px;
    }

    .fs-18 {
        font-size: 16px;
    }

    .fs-24 {
        font-size: 20px;
    }

    .fs-36 {
        font-size: 26px;
    }

    .fs-48 {
        font-size: 34px;
    }

    .fs-84 {
        font-size: 7vw !important;
    }
}

/* Mobile (max-width: 576px) — ~70% of desktop */
@media (max-width: 576px) {
    .fs-16 {
        font-size: 14px;
    }

    .fs-17 {
        font-size: 14px;
    }

    .fs-18 {
        font-size: 15px;
    }

    .fs-24 {
        font-size: 18px;
    }

    .fs-36 {
        font-size: 22px;
    }

    .fs-48 {
        font-size: 28px;
    }

    .fs-84 {
        font-size: clamp(32px, 7.3vw, 42px) !important;
    }
}


/* ============================================================
   SPACING UTILITIES — DESKTOP FIRST
   ============================================================ */
.p-250 {
    padding: 0 13vw;
}

.pl-250 {
    padding-left: 13vw;
}

.pr-250 {
    padding-right: 13vw;
}

.gap-15 {
    gap: 15px;
}

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
    .p-250 {
        padding: 0 8vw;
    }

    .pl-250 {
        padding-left: 8vw;
    }

    .pr-250 {
        padding-right: 8vw;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .p-250 {
        padding: 0 5vw;
    }

    .pl-250 {
        padding-left: 5vw;
    }

    .pr-250 {
        padding-right: 5vw;
    }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .p-250 {
        padding: 0 4vw;
    }

    .pl-250 {
        padding-left: 4vw;
    }

    .pr-250 {
        padding-right: 4vw;
    }

    .gap-15 {
        gap: 10px;
    }
}



/* ============================================================
   HEADING COLOR
   ============================================================ */
.heading {
    color: var(--primary-color);
}

/* ============================================================
   HEADER
   ============================================================ */
.site_header {
    padding: 25px 13vw;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: 1s;
}

.site_header.scrolled {
    background-color: #000000AA;
}

/* Hide mobile call button on desktop */
.header-phone-mobile {
    display: none !important;
}

/* Show desktop call text on desktop */
.header-phone-desktop {
    display: flex !important;
}

.header-logo-link img {
    width: clamp(180px, 18vw, 260px);
}


/* ── Laptop ── */
@media (max-width: 1200px) {
    .site_header {
        padding: 25px 8vw;
    }
}

/* ── Tablet ── */
@media (max-width: 768px) {
    .site_header {
        padding: 20px 5vw;
        flex-wrap: wrap;
    }

    /* Logo centered */
    .header-logo-link {
        order: 1;
        margin: 0 auto;
    }

    /* Phone icon on right */
    .header-phone {
        order: 2;
        position: absolute;
        right: 5vw;
        top: 20px;
    }

    .header-phone-desktop {
        display: none !important;
    }

    .header-phone-mobile {
        display: flex !important;
    }

    /* Social icons full width below, centered */
    .social_media_con {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
}

/* ── Mobile ── */
@media (max-width: 576px) {
    .site_header {
        padding: 15px 4vw;
    }

    .header-phone {
        right: 4vw;
    }
}

.header-number {
    color: white;
    transition: 0.3s;
}

.header-number:hover {
    color: var(--primary-color) !important;
}

.social_media_con {
    gap: 8px;
}

.header-social-links {
    background-color: var(--primary-color);
    height: clamp(40px, 3vw, 50px);
    width: clamp(40px, 3vw, 50px);
    transition: 0.3s;
    text-decoration: none !important;
}

.header-social-links i {
    /* font-size: 20px; */
    transition: 0.3s;
}

.header-social-links:hover {
    background-color: white;
}

.header-social-links:hover i {
    color: var(--primary-color) !important;
}



/* ============================================================
   HERO SECTION
   ============================================================ */
.hero_section {
    /* height: 940px; */
    background-position: center;
  position: relative;
  padding-top: max(80px, 7vw);
  padding-bottom: clamp(50px, 5.21vw, 100px);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero_section::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: 0.5;
    left: 0;
    top: 0;
}

.hero_section h1 {
    z-index: 2;
    position: relative;
}


/* ============================================================
   CONTACT FORM (CF7)
   ============================================================ */
.contact-section {
    min-width: min(360px, 100%);
    max-width: 440px;
}

.contact-card {
    background-color: var(--primary-color);
    border-radius: 16px;
    padding: 35px 25px 45px;
}

.contact-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card .wpcf7-form p {
    margin-bottom: 12px;
    width: 100%;
}

.contact-card .wpcf7-form p:last-child {
    margin-bottom: 0;
}

.contact-card .form-control {
    display: block;
    width: 100%;
    height: clamp(40px, 3.02vw, 58px);
    border: none;
    border-radius: 10px;
    padding: clamp(8px, 0.73vw, 14px) clamp(10px, 0.83vw, 16px);
    font-family: "Instrument Sans", sans-serif;
    font-size: 16px;
    color: #555555;
}

.contact-card .form-control::placeholder {
    color: #555555;
}

.contact-card .form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-control-textarea {
    height: clamp(100px, 10vw, 150px) !important;
}

.contact-card .wpcf7-submit {
    display: block;
    width: clamp(140px, 11.25vw, 216px);
    height: clamp(45px, 3.44vw, 66px);
    background-color: #ffffff;
    color: var(--primary-color);
    font-family: "Instrument Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
    margin: 18px auto 0;
}

.contact-card .wpcf7-submit:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: white;
}

.contact-card .wpcf7-response-output,
.contact-card .screen-reader-response p {
    color: white;
}

/* ============================================================
   CAR MODELS SECTION
   ============================================================ */
.car_models_section {
    padding: 80px 250px 165px;
}

/* .brand_logo {
    margin-bottom: clamp(30px, 3.13vw, 60px);
}

.brand_logo img {
    width: clamp(130px, 13vw, 220px);
} */

.brand_logos_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.brand_logo {
    width: min(var(--brand-width, 220px), 100%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    margin-bottom: clamp(30px, 3.13vw, 60px);
    overflow: hidden;
    box-sizing: border-box;
}

.brand_logo img {
    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center;

    display: block;
}

/* Large Tablet */
@media (max-width: 1200px) {

    .brand_logo {
        width: min(var(--brand-width, 220px), 200px);
        height: 200px;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .brand_logos_wrapper {
        gap: 18px;
    }

    .brand_logo {
        width: min(var(--brand-width, 220px), 180px);
        height: 180px;

        padding: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .brand_logos_wrapper {
        gap: 15px;
    }

    .brand_logo {
        width: min(var(--brand-width, 220px), 150px);
        height: 150px;

        padding: 15px;
        border-radius: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .brand_logos_wrapper {
        gap: 12px;
    }

    .brand_logo {
        width: min(var(--brand-width, 220px), 130px);
        height: 130px;

        padding: 12px;
        border-radius: 10px;
    }
}

.models_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.08vw, 40px) clamp(15px, 1.56vw, 30px);
}

.model_item {
    border-bottom: 2px solid #bcbcbc;
    padding-bottom: 12px;
    text-align: center;
}

.model_item a,
.model_item span {
    text-decoration: none;
    color: #555;
    text-transform: uppercase;
    display: block;
}

.model_item a:hover {
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .car_models_section {
        padding: 70px 8vw 130px;
    }
}

@media (max-width: 768px) {
    .car_models_section {
        padding: 60px 5vw 100px;
    }
}

@media (max-width: 576px) {
    .car_models_section {
        padding: 50px 4vw 80px;
    }
}

/* ============================================================
   SECTION 3
   ============================================================ */
.sec-3-heading {
    color: var(--primary-color);
    line-height: 1.2;
}

.sec_3>div {
    background-color: #111111;
}

.sec_3 .section_text {
    letter-spacing: 0.4px;
    line-height: 1.6;
}

.sec_3 img {
    object-fit: cover;
}


/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery_section {
    padding: clamp(40px, 6vw, 80px) 0;
    background: #f3f3f3;
}

.gallery_heading {
    text-align: center;
    margin-bottom: clamp(25px, 4vw, 50px);
}

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

.gallery_item {
    overflow: hidden;
    border-radius: 18px;
}

.gallery_item img {
    width: 100%;
    height: 235px;
    object-fit: cover;
    display: block;
}


/* ============================================================
   OUR MISSION SECTION
   ============================================================ */
.our_mission_section {
    padding-top: clamp(50px, 7.81vw, 150px);
    padding-bottom: clamp(50px, 7.81vw, 150px);
    background-position: center center;
}

.our_mission_content {
    padding: 4.7vw 5.2vw;
    border-radius: 10px;
    gap: clamp(15px, 3vw, 30px);
}

.our_mission_subheading {
    width: 75%;
}

.our_mission_text {
    color: #516379;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    margin: clamp(40px, 5.5vw, 100px) 0;
    padding: 0 clamp(20px, 5vw, 50px);
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.5vw, 25px);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: clamp(12px, 1.04vw, 20px) clamp(15px, 1.3vw, 25px);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.faq-question {
    gap: 16px;
}

.faq-question span {
    color: #555555;
    transition: 0.3s ease;
}

.faq-icon {
    color: #777777;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555555;
    transition: max-height 0.4s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-question span {
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    margin-top: 12px;
}


/* ============================================================
   FOOTER — CONTACT SECTION
   ============================================================ */
.contact_sec {
    background-color: #000000;
    padding: 5.2vw 19.5vw;
    gap: 65px;
}

.footer_image {
    height: 26vw;
    width: 35.9vw;
    object-fit: cover;
    border-radius: 40px;
}

.icon_wrap {
    height: clamp(40px, 3vw, 50px);
    width: clamp(40px, 3vw, 50px);
    background-color: var(--primary-color);
    flex-shrink: 0;
}

.contact_details {
    gap: 20px;
}

.footer-number a {
    color: white;
    transition: 0.3s;
}

.footer-number a:hover {
    color: var(--primary-color) !important;
}

@media (max-width: 1200px) {
    .contact_sec {
        padding: 80px 8vw;
        gap: 50px;
    }

    .footer_image {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact_sec {
        padding: 60px 5vw;
        gap: 40px;
    }

    .footer_image {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact_sec {
        padding: 50px 4vw;
        gap: 30px;
    }

    .footer_image {
        width: 100%;
        height: 250px;
    }
}



/* ============================================================
   FOOTER — COPYRIGHT BAR
   ============================================================ */
.copyright-sec {
    background-color: var(--primary-color);
    padding: 1.7vw 13.02vw;
}

.footer-logo {
    width: clamp(150px, 15vw, 220px)
}

.copyright-sec>div {
    gap: 20px;
}

.footer_social_media_con {
    gap: 5px;
}

.footer-social-links {
    background-color: white;
    height: 40px;
    width: 40px;
    border: 1px solid transparent;
    transition: 0.3s;
    text-decoration: none !important;
}

.footer-social-links i {
    color: var(--primary-color);
    transition: 0.3s;
}

.footer-social-links:hover {
    background-color: var(--primary-color);
    border-color: white;
}

.footer-social-links:hover i {
    color: white;
}

@media (max-width: 1200px) {
    .copyright-sec {
        padding: 30px 8vw;
    }
}

@media (max-width: 768px) {
    .copyright-sec {
        padding: 25px 5vw;
    }
}

@media (max-width: 576px) {
    .copyright-sec {
        padding: 20px 4vw;
    }
}


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

/* Tablet */
@media (max-width: 991px) {
    .models_grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Mobile */
@media (max-width: 575px) {
    .models_grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery_item img {
        height: 200px;
    }
}