/* =========================================================
   QUICKFIT PARTS
   MAIN STYLESHEET
========================================================= */

:root {
    --blue: #1677d8;
    --blue-dark: #0f62b7;
    --blue-light: #eaf4ff;

    --dark: #0d141b;
    --dark-2: #171f28;
    --dark-3: #26313c;

    --white: #ffffff;
    --light: #f3f5f7;

    --grey: #68737f;
    --grey-light: #9aa4ae;

    --border: #dce2e8;

    --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 25px 60px rgba(0, 0, 0, 0.18);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #080d12;
    color: #dce3e9;

    padding: 9px 20px;

    text-align: center;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.8px;
}

.top-bar span {
    color: #70b5ff;
    font-weight: 800;
}


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

.navbar {
    height: 82px;

    background: #ffffff;

    border-bottom: 1px solid var(--border);

    display: flex;
    align-items: center;

    position: relative;
    z-index: 1000;
}

.nav-inner {
    width: min(1180px, 92%);
    margin: 0 auto;

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

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 190px;
    height: 72px;

    display: flex;
    align-items: center;

    overflow: hidden;

    flex-shrink: 0;
}

.logo img {
    width: 300px;
    height: 300px;

    max-width: none;

    object-fit: contain;

    transform: translateX(-55px);

    display: block;
}


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

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

    gap: 32px;
}

.nav-links a {
    position: relative;

    color: #4b5661;

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

    transition: 0.25s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--blue);

    transition: 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   NAV BUTTON
========================================================= */

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

    min-height: 44px;

    padding: 0 21px;

    background: var(--blue);

    color: #ffffff;

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

    letter-spacing: 0.7px;

    border-radius: 3px;

    transition: 0.25s ease;

    box-shadow:
        0 8px 20px rgba(22, 119, 216, 0.18);
}

.nav-button:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);
}


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

.mobile-menu {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    background: #ffffff;

    color: var(--dark);

    cursor: pointer;

    font-size: 20px;

    border-radius: 4px;
}


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

.hero {
    position: relative;

    min-height: 760px;

    background:
        radial-gradient(
            circle at 83% 42%,
            rgba(22, 119, 216, 0.18),
            transparent 31%
        ),
        linear-gradient(
            90deg,
            #080c11 0%,
            #0d141b 50%,
            #111a23 100%
        );

    color: #ffffff;

    overflow: visible;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15),
            transparent 65%
        );

    pointer-events: none;
}


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

.hero-inner {
    position: relative;

    z-index: 2;

    min-height: 620px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 60px;

    padding-top: 70px;
    padding-bottom: 150px;
}


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

.hero-content {
    max-width: 700px;
}

.hero-kicker {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #8bbcff;

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

    letter-spacing: 2px;

    margin-bottom: 28px;
}

.hero-kicker span {
    width: 32px;
    height: 2px;

    background: var(--blue);
}

.hero-content h1 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(58px, 7vw, 100px);

    line-height: 0.92;

    text-transform: uppercase;

    letter-spacing: -1px;

    margin-bottom: 30px;
}

.hero-content h1 span {
    color: var(--blue);
}

.hero-content p {
    max-width: 600px;

    color: #aeb8c4;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 35px;
}


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

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.btn-primary,
.btn-outline {
    display: inline-flex;

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

    gap: 14px;

    min-height: 56px;

    padding: 0 28px;

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

    letter-spacing: 0.8px;

    transition: 0.25s ease;
}

.btn-primary {
    background: var(--blue);

    color: #ffffff;

    border: 1px solid var(--blue);
}

.btn-primary:hover {
    background: var(--blue-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(22, 119, 216, 0.25);
}

.btn-outline {
    background: transparent;

    color: #ffffff;

    border: 1px solid #3d4854;
}

.btn-outline:hover {
    border-color: #ffffff;

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


/* =========================================================
   TRUST SECTION
========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 60px;
}

.hero-trust div:not(.trust-line) {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.hero-trust strong {
    color: #ffffff;

    font-size: 11px;

    letter-spacing: 1.2px;
}

.hero-trust span {
    color: #7e8a98;

    font-size: 10px;
}

.trust-line {
    width: 1px;
    height: 35px;

    background: #2a333d;
}


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

.hero-visual {
    position: relative;

    height: 480px;
}

.visual-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.045) 1px,
            transparent 1px
        );

    background-size: 40px 40px;

    opacity: 0.7;
}

.hero-part-circle {
    position: absolute;

    border-radius: 50%;

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

.circle-one {
    width: 430px;
    height: 430px;

    right: -40px;
    top: 10px;

    border-color: rgba(22, 119, 216, 0.45);
}

.circle-two {
    width: 300px;
    height: 300px;

    right: 25px;
    top: 75px;

    border: 45px solid rgba(255, 255, 255, 0.025);
}

.hero-visual::after {
    content: "";

    position: absolute;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--blue);

    right: 208px;
    top: 215px;

    box-shadow:
        0 0 0 12px rgba(22, 119, 216, 0.08),
        0 0 30px rgba(22, 119, 216, 0.7);
}

.hero-number {
    position: absolute;

    right: 0;
    bottom: 35px;

    font-family: "Oswald", sans-serif;

    font-size: 140px;
    font-weight: 700;

    color: rgba(255, 255, 255, 0.025);
}

.visual-text {
    position: absolute;

    left: 30px;
    bottom: 70px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #718091;
}

.visual-text span:first-child {
    color: #8dbfff;

    font-weight: 800;
}


/* =========================================================
   VEHICLE FINDER
========================================================= */

.hero-search {
    position: absolute;

    z-index: 10;

    left: 0;
    right: 0;

    bottom: -75px;
}

.search-box {
    min-height: 150px;

    display: grid;

    grid-template-columns: 0.8fr 2.2fr;

    align-items: center;

    gap: 45px;

    padding: 30px 38px;

    background: #ffffff;

    color: var(--dark);

    border-left: 4px solid var(--blue);

    box-shadow: var(--shadow-heavy);
}

.search-title span {
    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.search-title h2 {
    font-family: "Oswald", sans-serif;

    font-size: 32px;

    line-height: 1;

    margin-top: 10px;

    text-transform: uppercase;
}

.search-fields {
    display: grid;

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

    gap: 12px;

    align-items: end;
}

.search-field {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.search-field label {
    color: #687585;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.search-field select {
    width: 100%;

    height: 50px;

    padding: 0 14px;

    border: 1px solid #d9dee4;

    background: #f7f8fa;

    color: var(--dark);

    font-size: 13px;

    outline: none;

    cursor: pointer;

    transition: 0.2s ease;
}

.search-field select:hover {
    border-color: #bfc8d1;
}

.search-field select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(22, 119, 216, 0.1);
}

.search-button {
    height: 50px;

    padding: 0 24px;

    border: none;

    background: var(--dark);

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.7px;

    cursor: pointer;

    transition: 0.25s ease;
}

.search-button:hover {
    background: var(--blue);

    transform: translateY(-2px);
}


/* =========================================================
   QUICK ACTIONS
========================================================= */

.quick-actions {
    padding: 120px 0 40px;

    background: #ffffff;

    border-bottom: 1px solid var(--border);
}

.action-grid {
    display: grid;

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

    gap: 16px;
}

.action-card {
    position: relative;

    display: flex;

    align-items: center;

    padding: 25px;

    min-height: 120px;

    background: #ffffff;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.25s ease;
}

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

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: var(--blue);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: 0.25s ease;
}

.action-card:hover {
    border-color: rgba(22, 119, 216, 0.45);

    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.07);
}

.action-card:hover::before {
    transform: scaleY(1);
}


/* No icons / emojis */

.action-icon {
    display: none;
}

.action-text h3 {
    font-family: "Oswald", sans-serif;

    font-size: 21px;

    text-transform: uppercase;

    margin-bottom: 6px;
}

.action-text p {
    color: var(--grey);

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   SHOP SECTION
========================================================= */

.shop-section {
    padding: 100px 0;

    background: var(--light);
}

.section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.section-label {
    display: inline-block;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.section-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 0.95;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.section-heading h2 span {
    color: var(--blue);
}

.section-heading p {
    max-width: 550px;

    color: var(--grey);

    font-size: 14px;

    line-height: 1.7;
}

.view-all-link {
    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;

    transition: 0.25s ease;
}

.view-all-link:hover {
    transform: translateX(4px);

    color: var(--blue-dark);
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;

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

    gap: 18px;
}

.category-card {
    display: block;

    background: #ffffff;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-7px);

    border-color: rgba(22, 119, 216, 0.45);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1);
}


/* =========================================================
   CATEGORY IMAGE AREA
========================================================= */

.category-image {
    height: 180px;

    position: relative;

    overflow: hidden;

    display: flex;

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

    background:
        linear-gradient(
            135deg,
            #121a22,
            #2a3540
        );
}


/* Image placeholder */

.image-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

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

    z-index: 2;
}

.image-placeholder span {
    color: rgba(255, 255, 255, 0.75);

    font-family: "Inter", sans-serif;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.8px;

    padding: 10px 14px;

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

    background: rgba(0, 0, 0, 0.25);
}


/* Decorative circle */

.category-image::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    border-radius: 50%;

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

    right: -55px;
    top: -65px;
}


/* Decorative line */

.category-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    background: var(--blue);

    opacity: 0.75;
}


/* =========================================================
   CATEGORY COLOUR THEMES

   These are placeholders for the real
   Masterparts product/category images later.
========================================================= */

.category-image.brakes {
    background:
        linear-gradient(
            135deg,
            #10161d,
            #303b47
        );
}

.category-image.filters {
    background:
        linear-gradient(
            135deg,
            #0b315c,
            #1677d8
        );
}

.category-image.engine {
    background:
        linear-gradient(
            135deg,
            #111a25,
            #304964
        );
}

.category-image.suspension {
    background:
        linear-gradient(
            135deg,
            #202832,
            #4a5663
        );
}

.category-image.cooling {
    background:
        linear-gradient(
            135deg,
            #0c3548,
            #147da6
        );
}

.category-image.electrical {
    background:
        linear-gradient(
            135deg,
            #2d220b,
            #806019
        );
}

.category-image.batteries {
    background:
        linear-gradient(
            135deg,
            #151c24,
            #394655
        );
}

.category-image.lighting {
    background:
        linear-gradient(
            135deg,
            #302604,
            #a47a08
        );
}


/* =========================================================
   CATEGORY NUMBER
========================================================= */

.category-number {
    position: absolute;

    right: 18px;
    top: 18px;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Oswald", sans-serif;

    font-size: 12px;

    letter-spacing: 1px;

    z-index: 3;
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.category-content {
    padding: 22px;
}

.category-small {
    display: block;

    color: var(--blue) !important;

    font-size: 9px !important;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 8px;
}

.category-content h3 {
    font-family: "Oswald", sans-serif;

    font-size: 23px;

    line-height: 1.1;

    text-transform: uppercase;

    margin-bottom: 9px;
}

.category-content p {
    color: var(--grey);

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 18px;

    min-height: 40px;
}

.category-link {
    color: var(--blue) !important;

    font-size: 10px !important;

    font-weight: 800;

    letter-spacing: 0.5px;

    transition: 0.2s ease;
}

.category-card:hover .category-link {
    color: var(--blue-dark) !important;
}


/* =========================================================
   MOBILE VIEW ALL
========================================================= */

.shop-mobile-button {
    display: none;

    margin-top: 25px;

    text-align: center;
}


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

@media (max-width: 1100px) {

    .hero-inner {
        grid-template-columns: 1fr;

        padding-bottom: 180px;
    }

    .hero-visual {
        display: none;
    }

    .search-box {
        grid-template-columns: 1fr;
    }

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


@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .nav-links.mobile-open {
        display: flex;

        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 20px 20px;

        background: #ffffff;

        border-bottom: 1px solid var(--border);

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-links.mobile-open a {
        padding: 15px 5px;

        border-bottom: 1px solid #eef1f4;
    }

    .nav-links.mobile-open a:last-child {
        border-bottom: none;
    }

    .nav-links.mobile-open a::after {
        display: none;
    }

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

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

    .search-button {
        grid-column: span 2;
    }
}


@media (max-width: 750px) {

    .hero {
        min-height: 850px;
    }

    .hero-inner {
        padding-bottom: 270px;
    }

    .hero-search {
        bottom: -190px;
    }

    .quick-actions {
        padding-top: 250px;
    }

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

    .section-heading {
        flex-direction: column;

        align-items: flex-start;
    }

    .view-all-link {
        display: none;
    }

    .shop-mobile-button {
        display: block;
    }
}


@media (max-width: 600px) {

    .top-bar {
        padding: 8px 10px;

        font-size: 9px;

        letter-spacing: 0.5px;
    }

    .navbar {
        height: 72px;
    }

    .logo {
        width: 155px;
        height: 62px;
    }

    .logo img {
        width: 255px;
        height: 255px;

        transform: translateX(-47px);
    }

    .hero {
        min-height: 900px;
    }

    .hero-inner {
        padding-top: 55px;

        padding-bottom: 300px;
    }

    .hero-content h1 {
        font-size: clamp(50px, 15vw, 75px);
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;

        margin-top: 45px;
    }

    .hero-trust strong {
        font-size: 9px;
    }

    .hero-trust span {
        font-size: 9px;
    }

    .trust-line {
        height: 28px;
    }

    .hero-search {
        bottom: -270px;
    }

    .search-box {
        padding: 25px 20px;
    }

    .search-fields {
        grid-template-columns: 1fr;
    }

    .search-button {
        grid-column: auto;

        width: 100%;
    }

    .search-title h2 {
        font-size: 27px;
    }

    .quick-actions {
        padding-top: 330px;
    }

    .shop-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 45px;
    }

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

    .category-image {
        height: 190px;
    }

    .action-card {
        min-height: 105px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

button:focus-visible,
a:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(22, 119, 216, 0.35);

    outline-offset: 3px;
}

/* =========================================================
   WHY CHOOSE QUICKFIT PARTS
========================================================= */

.why-section {
    padding: 110px 0;

    background: #ffffff;

    border-top: 1px solid var(--border);
}


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

.why-heading {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    align-items: end;

    gap: 60px;

    margin-bottom: 55px;
}

.why-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 0.95;

    text-transform: uppercase;

    margin-top: 5px;
}

.why-heading h2 span {
    color: var(--blue);
}

.why-heading > p {
    max-width: 520px;

    color: var(--grey);

    font-size: 15px;

    line-height: 1.8;
}


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

.why-grid {
    display: grid;

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

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);
}


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

.why-card {
    min-height: 220px;

    display: grid;

    grid-template-columns: 75px 1fr;

    gap: 25px;

    padding: 35px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    position: relative;

    transition: 0.3s ease;

    background: #ffffff;
}

.why-card:hover {
    background: #f8fafc;

    box-shadow:
        inset 4px 0 0 var(--blue);
}


/* =========================================================
   NUMBER
========================================================= */

.why-number {
    font-family: "Oswald", sans-serif;

    font-size: 32px;

    font-weight: 700;

    color: var(--blue);

    line-height: 1;
}


/* =========================================================
   CONTENT
========================================================= */

.why-content h3 {
    font-family: "Oswald", sans-serif;

    font-size: 24px;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.why-content p {
    max-width: 420px;

    color: var(--grey);

    font-size: 13px;

    line-height: 1.8;
}


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

@media (max-width: 900px) {

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

        gap: 25px;
    }

}


@media (max-width: 650px) {

    .why-section {
        padding: 75px 0;
    }

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

    .why-card {
        grid-template-columns: 55px 1fr;

        gap: 15px;

        padding: 25px;
    }

    .why-number {
        font-size: 27px;
    }

    .why-content h3 {
        font-size: 21px;
    }

}

/* =========================================================
   WHY CHOOSE US — ANIMATIONS
========================================================= */

.why-section {
    position: relative;
    overflow: hidden;
}

/* Subtle technical background */

.why-section::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(22, 119, 216, 0.06);
    border-radius: 50%;

    right: -250px;
    top: 80px;

    pointer-events: none;

    animation: whyOrbit 18s linear infinite;
}

.why-section::after {
    content: "";
    position: absolute;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(22, 119, 216, 0.05);
    border-radius: 50%;

    right: -175px;
    top: 155px;

    pointer-events: none;

    animation: whyOrbitReverse 13s linear infinite;
}


/* =========================================================
   HEADING REVEAL
========================================================= */

.why-heading {
    position: relative;
    z-index: 2;

    animation: whyHeadingIn 0.9s ease both;
}


/* =========================================================
   CARDS
========================================================= */

.why-grid {
    position: relative;
    z-index: 2;
}

.why-card {
    overflow: hidden;

    opacity: 0;
    transform: translateY(35px);

    animation: whyCardIn 0.8s ease forwards;
}


/* Stagger the cards */

.why-card:nth-child(1) {
    animation-delay: 0.15s;
}

.why-card:nth-child(2) {
    animation-delay: 0.3s;
}

.why-card:nth-child(3) {
    animation-delay: 0.45s;
}

.why-card:nth-child(4) {
    animation-delay: 0.6s;
}


/* =========================================================
   NUMBER ANIMATION
========================================================= */

.why-number {
    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

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

    color: var(--dark);
}


/* =========================================================
   CARD HOVER
========================================================= */

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

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    background: var(--blue);

    transition: width 0.45s ease;
}

.why-card:hover::before {
    width: 100%;
}


/* Blue scanning line */

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

    position: absolute;

    top: 0;
    left: -100%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(22, 119, 216, 0.8),
            transparent
        );

    transition: left 0.7s ease;
}

.why-card:hover::after {
    left: 100%;
}


/* =========================================================
   CONTENT HOVER
========================================================= */

.why-content h3 {
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.why-card:hover .why-content h3 {
    transform: translateX(5px);

    color: var(--blue);
}

.why-content p {
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.why-card:hover .why-content p {
    transform: translateX(5px);

    color: #56616d;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes whyHeadingIn {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes whyCardIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes whyOrbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


@keyframes whyOrbitReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }

}


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

@media (max-width: 650px) {

    .why-section::before {
        right: -350px;
    }

    .why-section::after {
        right: -275px;
    }

}


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

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

    .why-section::before,
    .why-section::after,
    .why-heading,
    .why-card {
        animation: none;
    }

    .why-card {
        opacity: 1;
        transform: none;
    }

}

/* =========================================================
   FEATURED PARTS
========================================================= */

.featured-section {
    padding: 100px 0;

    background: #ffffff;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.featured-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;

    position: relative;

    z-index: 2;
}

.featured-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 0.95;

    text-transform: uppercase;

    margin-top: 5px;
}

.featured-heading h2 span {
    color: var(--blue);
}

.featured-intro {
    max-width: 430px;

    display: flex;

    align-items: flex-end;

    gap: 25px;
}

.featured-intro p {
    color: var(--grey);

    font-size: 13px;

    line-height: 1.7;
}

.featured-link {
    flex-shrink: 0;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition: 0.25s ease;
}

.featured-link:hover {
    color: var(--blue-dark);

    transform: translateX(5px);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.featured-grid {
    display: grid;

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

    gap: 18px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    background: #ffffff;

    border: 1px solid var(--border);

    position: relative;

    overflow: hidden;

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

    opacity: 0;

    transform: translateY(35px);

    animation:
        productReveal 0.8s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}


/* =========================================================
   CARD HOVER
========================================================= */

.product-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(22, 119, 216, 0.5);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    height: 230px;

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #111820,
            #293441
        );
}


/* Technical background */

.product-image::before {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

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

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

    transition:
        transform 0.7s ease;
}

.product-card:hover
.product-image::before {
    transform:
        rotate(45deg)
        scale(1.15);
}


/* Second technical circle */

.product-image::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    border:
        25px solid rgba(22, 119, 216, 0.08);

    left: -70px;
    bottom: -80px;

    transition:
        transform 0.7s ease;
}

.product-card:hover
.product-image::after {
    transform:
        scale(1.25)
        rotate(-25deg);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.image-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    z-index: 2;

    transition:
        transform 0.6s ease,
        letter-spacing 0.6s ease;
}

.product-card:hover
.image-placeholder {
    transform: scale(1.08);

    letter-spacing: 3px;
}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 5;

    padding: 7px 10px;

    background: var(--blue);

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    padding: 22px;
}

.product-category {
    display: block;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 8px;
}

.product-info h3 {
    font-family: "Oswald", sans-serif;

    font-size: 23px;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 10px;

    transition:
        color 0.25s ease;
}

.product-card:hover
.product-info h3 {
    color: var(--blue);
}

.product-info p {
    color: var(--grey);

    font-size: 11px;

    line-height: 1.7;

    min-height: 56px;

    margin-bottom: 20px;
}


/* =========================================================
   PRODUCT BOTTOM
========================================================= */

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding-top: 15px;

    border-top:
        1px solid var(--border);
}

.product-bottom strong {
    font-size: 9px;

    letter-spacing: 0.8px;

    color: var(--dark);
}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.product-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 34px;

    padding: 0 12px;

    background: var(--dark);

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.6px;

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

.product-button:hover {
    background: var(--blue);

    transform: translateX(3px);
}


/* =========================================================
   SCANNING LINE
========================================================= */

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

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(22, 119, 216, 0.9),
            transparent
        );

    transition:
        left 0.7s ease;

    z-index: 10;
}

.product-card:hover::after {
    left: 100%;
}


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

.featured-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 45px;

    position: relative;

    z-index: 2;
}

.featured-bottom p {
    color: var(--grey);

    font-size: 13px;
}

.featured-bottom a {
    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    transition:
        transform 0.25s ease;
}

.featured-bottom a:hover {
    transform: translateX(5px);
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes productReveal {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


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

@media (max-width: 1050px) {

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

}


@media (max-width: 750px) {

    .featured-section {
        padding: 75px 0;
    }

    .featured-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .featured-intro {
        max-width: 100%;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}


@media (max-width: 550px) {

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

    .product-image {
        height: 220px;
    }

    .featured-bottom {
        flex-direction: column;

        gap: 8px;

        text-align: center;
    }

}


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

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

    .product-card {
        animation: none;

        opacity: 1;

        transform: none;
    }

}

/* =========================================================
   FIX: REDUCE GAP AFTER WHY CHOOSE US
========================================================= */

.why-section {
    padding-bottom: 45px !important;
}

.featured-section {
    padding-top: 55px !important;
}

/* Keep the transition between sections tight */
.why-section + .featured-section {
    margin-top: 0 !important;
}

/* Desktop */
@media (min-width: 901px) {
    .why-section {
        min-height: auto !important;
    }

    .featured-section {
        margin-top: 0 !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .why-section {
        padding-bottom: 35px !important;
    }

    .featured-section {
        padding-top: 40px !important;
    }
}

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

.why-section {
    padding: 80px 0 55px;
    background: #ffffff;
}

.why-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.why-heading h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-top: 8px;
}

.why-heading h2 span {
    color: var(--blue);
}

.why-heading > p {
    max-width: 500px;
    color: var(--grey);
    font-size: 15px;
    line-height: 1.7;
}


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

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.why-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;

    min-height: 230px;
    padding: 42px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    position: relative;
    overflow: hidden;

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

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

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: var(--blue);

    transition: width 0.4s ease;
}

.why-card:hover {
    background: #f8fbff;
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    z-index: 2;
}

.why-card:hover::before {
    width: 100%;
}

.why-number {
    font-family: "Oswald", sans-serif;

    font-size: 44px;
    font-weight: 700;

    color: var(--blue);

    line-height: 1;
}

.why-content h3 {
    font-family: "Oswald", sans-serif;

    font-size: 26px;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 16px;
}

.why-content p {
    color: var(--grey);

    font-size: 15px;

    line-height: 1.8;

    max-width: 380px;
}


/* =========================================================
   WHY CARD ANIMATION
========================================================= */

.why-card {
    opacity: 0;
    transform: translateY(30px);

    animation: whyCardIn 0.7s ease forwards;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes whyCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   FEATURED PARTS
========================================================= */

.featured-section {
    padding: 55px 0 85px;
    background: #ffffff;
}

.featured-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;

    margin-bottom: 38px;
}

.featured-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 0.9;

    text-transform: uppercase;

    margin-top: 8px;
}

.featured-heading h2 span {
    color: var(--blue);
}

.featured-intro {
    display: flex;

    align-items: flex-end;

    gap: 40px;
}

.featured-intro p {
    max-width: 380px;

    color: var(--grey);

    font-size: 15px;

    line-height: 1.7;
}

.featured-link {
    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    white-space: nowrap;

    transition: 0.25s ease;
}

.featured-link:hover {
    transform: translateX(6px);
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.featured-grid {
    display: grid;

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

    gap: 16px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    background: #ffffff;

    border: 1px solid var(--border);

    position: relative;

    overflow: hidden;

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

    opacity: 0;

    transform: translateY(35px);

    animation: productAppear 0.7s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes productAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-9px);

    border-color: rgba(22, 119, 216, 0.5);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.11);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {
    height: 225px;

    position: relative;

    overflow: hidden;

    display: flex;

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

    background:
        linear-gradient(
            135deg,
            #111820,
            #293441
        );
}


/* Decorative automotive-style rings */

.product-image::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    border-radius: 50%;

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

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

    transition:
        transform 0.8s ease,
        border-color 0.4s ease;
}

.product-image::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    border: 1px solid rgba(22, 119, 216, 0.35);

    left: -45px;
    bottom: -50px;

    transition:
        transform 0.8s ease;
}

.product-card:hover .product-image::before {
    transform: rotate(25deg) scale(1.08);

    border-color: rgba(22, 119, 216, 0.35);
}

.product-card:hover .product-image::after {
    transform: rotate(-30deg) scale(1.15);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.product-image .image-placeholder {
    position: relative;

    z-index: 2;

    width: 82%;

    height: 76%;

    display: flex;

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

    border: 1px dashed rgba(255, 255, 255, 0.28);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.01)
        );

    color: rgba(255, 255, 255, 0.55);

    font-family: "Oswald", sans-serif;

    font-size: 11px;

    letter-spacing: 2px;

    transition:
        transform 0.5s ease,
        border-color 0.4s ease;
}

.product-card:hover .image-placeholder {
    transform: scale(1.04);

    border-color: rgba(22, 119, 216, 0.7);
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.product-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 5;

    padding: 8px 12px;

    background: var(--blue);

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-info {
    padding: 22px;
}

.product-category {
    display: block;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

    margin-bottom: 9px;
}

.product-info h3 {
    font-family: "Oswald", sans-serif;

    font-size: 25px;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 10px;
}

.product-info p {
    color: var(--grey);

    font-size: 12px;

    line-height: 1.65;

    min-height: 40px;

    margin-bottom: 20px;
}


/* =========================================================
   PRODUCT BOTTOM
========================================================= */

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding-top: 15px;

    border-top: 1px solid var(--border);
}

.product-bottom strong {
    font-size: 9px;

    color: var(--dark);

    letter-spacing: 0.7px;
}

.product-button {
    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    white-space: nowrap;

    transition: 0.25s ease;
}

.product-button:hover {
    transform: translateX(5px);
}


/* =========================================================
   FEATURED BOTTOM CTA
========================================================= */

.featured-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.featured-bottom p {
    color: var(--grey);

    font-size: 13px;
}

.featured-bottom a {
    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    transition: 0.25s ease;
}

.featured-bottom a:hover {
    transform: translateX(5px);
}


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

@media (max-width: 1000px) {

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

    .why-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .featured-heading {
        align-items: flex-start;

        flex-direction: column;
    }

    .featured-intro {
        width: 100%;

        justify-content: space-between;
    }

}


@media (max-width: 650px) {

    .why-section {
        padding: 60px 0 40px;
    }

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

    .why-card {
        grid-template-columns: 65px 1fr;

        gap: 18px;

        min-height: auto;

        padding: 30px 22px;
    }

    .why-number {
        font-size: 36px;
    }

    .why-content h3 {
        font-size: 22px;
    }

    .why-content p {
        font-size: 13px;
    }

    .featured-section {
        padding: 40px 0 65px;
    }

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

    .featured-heading {
        margin-bottom: 28px;
    }

    .featured-intro {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .featured-intro p {
        font-size: 14px;
    }

    .product-image {
        height: 220px;
    }

    .featured-bottom {
        flex-direction: column;

        text-align: center;

        gap: 8px;
    }

}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    position: relative;
    padding: 95px 0;
    background: var(--white);
    overflow: hidden;
}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

.how-section::before {
    content: "01  02  03";

    position: absolute;
    top: 80px;
    left: 50%;

    transform: translateX(-50%);

    width: 100%;

    text-align: center;

    font-family: "Oswald", sans-serif;
    font-size: clamp(120px, 18vw, 260px);
    font-weight: 700;

    letter-spacing: 40px;

    color: rgba(17, 24, 32, 0.025);

    white-space: nowrap;

    pointer-events: none;
}


.how-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.how-heading {
    max-width: 720px;
    margin: 0 auto 65px;

    text-align: center;
}

.how-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.how-heading h2 span {
    color: var(--blue);
}

.how-heading p {
    max-width: 600px;
    margin: 0 auto;

    color: var(--grey);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   STEPS GRID
========================================================= */

.how-grid {
    position: relative;

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

    gap: 22px;

    margin-bottom: 55px;
}


/* CONNECTING LINE */

.how-grid::before {
    content: "";

    position: absolute;

    top: 64px;
    left: 16%;
    right: 16%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(22, 119, 216, 0.35),
            transparent
        );

    z-index: 0;
}


/* =========================================================
   HOW CARD
========================================================= */

.how-card {
    position: relative;
    z-index: 1;

    padding: 38px 30px 35px;

    background: var(--white);

    border: 1px solid var(--border);

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

.how-card:hover {
    transform: translateY(-10px);

    border-color: rgba(22, 119, 216, 0.5);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.1);
}


/* TOP NUMBER */

.how-step {
    position: absolute;

    top: 18px;
    right: 22px;

    color: rgba(17, 24, 32, 0.08);

    font-family: "Oswald", sans-serif;

    font-size: 52px;
    font-weight: 700;

    transition: 0.35s ease;
}

.how-card:hover .how-step {
    color: rgba(22, 119, 216, 0.18);

    transform: translateY(-4px);
}


/* =========================================================
   STEP ICON
========================================================= */

.how-icon {
    width: 76px;
    height: 76px;

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

    margin-bottom: 28px;

    border-radius: 50%;

    background: var(--dark);

    color: var(--white);

    border:
        8px solid var(--blue-light);

    font-family: "Oswald", sans-serif;

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

    transition:
        transform 0.4s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.how-card:hover .how-icon {
    transform: rotate(360deg) scale(1.08);

    background: var(--blue);

    box-shadow:
        0 0 0 8px rgba(22, 119, 216, 0.08),
        0 12px 25px rgba(22, 119, 216, 0.22);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.how-card h3 {
    font-family: "Oswald", sans-serif;

    font-size: 24px;

    text-transform: uppercase;

    margin-bottom: 12px;
}

.how-card p {
    color: var(--grey);

    font-size: 13px;

    line-height: 1.7;
}


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

.how-cta {
    display: flex;

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

    gap: 30px;

    padding: 35px 40px;

    background:
        linear-gradient(
            135deg,
            var(--dark),
            var(--dark-2)
        );

    color: var(--white);

    border-left: 4px solid var(--blue);

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

.how-cta > div {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.how-cta > div > span {
    color: #8dbfff;

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

    letter-spacing: 1.5px;
}

.how-cta h3 {
    font-family: "Oswald", sans-serif;

    font-size: 30px;

    text-transform: uppercase;
}


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

@media (max-width: 800px) {

    .how-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .how-grid::before {
        display: none;
    }

    .how-card {
        padding: 32px 25px;
    }

    .how-heading {
        margin-bottom: 45px;
    }

    .how-section::before {
        display: none;
    }

}


@media (max-width: 600px) {

    .how-section {
        padding: 75px 0;
    }

    .how-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 25px;
    }

    .how-cta .btn-primary {
        width: 100%;
    }

    .how-cta h3 {
        font-size: 26px;
    }

}

/* =========================================================
   REQUEST A QUOTE / CONTACT
========================================================= */

.quote-section {
    position: relative;
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}


/* =========================================================
   ANIMATED BACKGROUND
========================================================= */

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

    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background: rgba(22, 119, 216, 0.12);

    filter: blur(70px);

    top: -250px;
    left: -180px;

    animation: quoteGlow 8s ease-in-out infinite alternate;

    pointer-events: none;
}

.quote-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

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

    right: -120px;
    bottom: -150px;

    animation: quoteRing 12s linear infinite;

    pointer-events: none;
}

@keyframes quoteGlow {

    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(80px, 50px) scale(1.2);
    }

}

@keyframes quoteRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   QUOTE GRID
========================================================= */

.quote-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.quote-content {
    max-width: 520px;
}

.quote-content .section-label {
    color: #8dbfff;
}

.quote-content h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 0.95;

    text-transform: uppercase;

    margin: 14px 0 24px;
}

.quote-content h2 span {
    display: block;

    color: var(--blue);
}

.quote-content > p {
    color: #9ca8b5;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 35px;
}


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

.contact-options {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.contact-option {
    display: grid;

    grid-template-columns: 42px 1fr auto;

    align-items: center;

    gap: 15px;

    padding: 17px 18px;

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

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

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

.contact-option:hover {
    transform: translateX(8px);

    border-color: rgba(22, 119, 216, 0.7);

    background: rgba(22, 119, 216, 0.08);
}

.contact-option-number {
    width: 36px;
    height: 36px;

    display: flex;

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

    border: 1px solid rgba(22, 119, 216, 0.45);

    color: #8dbfff;

    font-family: "Oswald", sans-serif;

    font-size: 14px;
}

.contact-option div:nth-child(2) {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.contact-option span {
    color: #7f8b98;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.contact-option strong {
    color: var(--white);

    font-size: 11px;

    letter-spacing: 0.4px;
}

.contact-option b {
    color: var(--blue);

    font-size: 20px;

    transition: transform 0.3s ease;
}

.contact-option:hover b {
    transform: translateX(5px);
}


/* =========================================================
   QUOTE FORM
========================================================= */

.quote-form-wrap {
    position: relative;

    padding: 42px;

    background: var(--white);

    color: var(--dark);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28);
}

.quote-form-wrap::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            #58a6ff,
            var(--blue)
        );

    background-size: 200% 100%;

    animation: formLine 4s linear infinite;
}

@keyframes formLine {

    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }

}


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

.quote-form-header {
    margin-bottom: 30px;
}

.quote-form-header span {
    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.quote-form-header h3 {
    font-family: "Oswald", sans-serif;

    font-size: 32px;

    text-transform: uppercase;

    margin-top: 8px;
}


/* =========================================================
   FORM LAYOUT
========================================================= */

.quote-form {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.form-row {
    display: grid;

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

    gap: 15px;
}

.form-row-three {
    grid-template-columns: 0.45fr 1.55fr;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #69727d;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

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

    border: 1px solid #dfe4ea;

    background: #f7f9fb;

    color: var(--dark);

    padding: 14px 15px;

    font-size: 13px;

    outline: none;

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

.form-group textarea {
    resize: vertical;

    min-height: 105px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);

    background: var(--white);

    box-shadow:
        0 0 0 4px rgba(22, 119, 216, 0.08);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.quote-submit {
    width: 100%;

    min-height: 58px;

    display: flex;

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

    gap: 15px;

    border: none;

    background: var(--blue);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.8px;

    cursor: pointer;

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

.quote-submit:hover {
    background: var(--blue-dark);

    transform: translateY(-3px);

    box-shadow:
        0 14px 28px rgba(22, 119, 216, 0.3);
}

.quote-submit span {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.quote-submit:hover span {
    transform: translateX(5px);
}

.form-note {
    text-align: center;

    color: #8a949f;

    font-size: 11px;
}


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

@media (max-width: 950px) {

    .quote-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .quote-content {
        max-width: 650px;
    }

}


@media (max-width: 650px) {

    .quote-section {
        padding: 75px 0;
    }

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

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

    .quote-form-header h3 {
        font-size: 27px;
    }

    .contact-option {
        grid-template-columns: 38px 1fr auto;

        padding: 15px 12px;
    }

    .contact-option strong {
        font-size: 10px;
    }

}

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

.site-footer {
    background: #0d141b;
    color: #ffffff;
}


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

.footer-main {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 119, 216, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0d141b 0%,
            #111a23 100%
        );

    padding: 80px 0 70px;

    border-top: 1px solid #26313c;
}


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

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 50px;

    align-items: start;
}


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

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: block;

    width: 210px;

    margin-bottom: 22px;
}

.footer-logo img {
    width: 100%;
    height: auto;

    display: block;
}

.footer-brand p {
    max-width: 360px;

    color: #9aa4ae;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 24px;
}


/* =========================================================
   SOCIAL MEDIA BUTTONS
========================================================= */

.footer-socials {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;

    display: inline-flex;

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

    background: #171f28;

    border: 1px solid #34404c;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

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

.footer-socials a:hover {
    background: var(--blue);

    border-color: var(--blue);

    transform: translateY(-4px);
}


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

.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-column h3 {
    font-family: "Oswald", sans-serif;

    color: #ffffff;

    font-size: 20px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    margin-bottom: 24px;
}

.footer-column > a {
    display: inline-block;

    color: #9aa4ae;

    font-size: 13px;

    line-height: 1.5;

    margin-bottom: 13px;

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

.footer-column > a:hover {
    color: var(--blue);

    transform: translateX(5px);
}


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

.footer-contact {
    background: rgba(255, 255, 255, 0.035);

    border: 1px solid #26313c;

    padding: 25px;

    position: relative;

    overflow: hidden;
}

.footer-contact::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--blue);
}

.footer-contact h3 {
    margin-bottom: 22px;
}

.footer-contact > a:not(.footer-quote-link),
.footer-contact > span {
    display: block;

    color: #aeb8c4;

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 14px;
}

.footer-contact > a:not(.footer-quote-link):hover {
    color: #ffffff;

    transform: none;
}


/* =========================================================
   REQUEST A QUOTE BUTTON
========================================================= */

.footer-quote-link {
    display: inline-flex !important;

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

    min-height: 44px;

    padding: 0 18px;

    margin-top: 10px !important;
    margin-bottom: 0 !important;

    background: var(--blue);

    color: #ffffff !important;

    font-size: 10px !important;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-decoration: none;

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

.footer-quote-link:hover {
    background: var(--blue-dark);

    transform: translateY(-3px) !important;
}


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

.footer-bottom {
    background: #080d12;

    border-top: 1px solid #26313c;
}

.footer-bottom-inner {
    min-height: 75px;

    display: flex;

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

    gap: 20px;
}

.footer-bottom p {
    color: #8793a0;

    font-size: 12px;
}

.footer-bottom-inner > div {
    display: flex;

    align-items: center;

    gap: 22px;
}

.footer-bottom a {
    color: #8793a0;

    font-size: 12px;

    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: var(--blue);
}


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

@media (max-width: 1000px) {

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

        gap: 45px 35px;
    }

}


@media (max-width: 600px) {

    .footer-main {
        padding: 60px 0 50px;
    }

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

        gap: 35px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-contact {
        padding: 22px;
    }

    .footer-bottom-inner {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        padding: 25px 0;
    }

    .footer-bottom-inner > div {
        flex-wrap: wrap;

        gap: 12px 20px;
    }

}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* =========================================================
   HOW HEADING
========================================================= */

.how-heading {
    max-width: 680px;
    margin-bottom: 60px;
}

.how-heading h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.how-heading h2 span {
    color: var(--blue);
}

.how-heading p {
    max-width: 560px;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   STEPS GRID
========================================================= */

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 55px;
}

.how-card {
    position: relative;
    min-height: 330px;
    padding: 38px 35px;
    background: #ffffff;
    border: 1px solid var(--border);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.how-card:not(:last-child) {
    border-right: none;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.how-step {
    position: absolute;
    top: 25px;
    right: 28px;

    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;

    color: #d8dee5;
}


/* =========================================================
   STEP ICON / NUMBER
========================================================= */

.how-icon {
    width: 64px;
    height: 64px;

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

    margin-bottom: 35px;

    background: var(--blue-light);
    border: 1px solid rgba(22, 119, 216, 0.2);

    color: var(--blue);

    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;

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


/* =========================================================
   STEP CONTENT
========================================================= */

.how-card h3 {
    max-width: 250px;

    font-family: "Oswald", sans-serif;
    font-size: 25px;
    line-height: 1.05;
    text-transform: uppercase;

    margin-bottom: 15px;

    transition: color 0.3s ease;
}

.how-card p {
    color: var(--grey);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CARD HOVER
========================================================= */

.how-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(22, 119, 216, 0.45);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.09);
}

.how-card:hover .how-icon {
    background: var(--blue);
    color: #ffffff;
    transform: rotate(-5deg) scale(1.08);
}

.how-card:hover h3 {
    color: var(--blue);
}


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

.how-cta {
    min-height: 125px;

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

    gap: 30px;

    padding: 25px 35px;

    background:
        linear-gradient(
            90deg,
            #0d141b,
            #171f28
        );

    border-left: 4px solid var(--blue);

    color: #ffffff;
}

.how-cta > div > span {
    display: block;

    color: #8bbcff;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;

    margin-bottom: 10px;
}

.how-cta h3 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1;
    text-transform: uppercase;
}


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

@media (max-width: 800px) {

    .how-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .how-card:not(:last-child) {
        border-right: 1px solid var(--border);
    }

    .how-card {
        min-height: 260px;
    }

}


@media (max-width: 600px) {

    .how-section {
        padding: 75px 0;
    }

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

    .how-heading h2 {
        font-size: 45px;
    }

    .how-card {
        padding: 30px 25px;
    }

    .how-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 28px;
    }

    .how-cta {
        flex-direction: column;
        align-items: flex-start;

        padding: 28px 25px;
    }

    .how-cta .btn-primary {
        width: 100%;
    }

}

/* =========================================================
   REQUEST A QUOTE
========================================================= */

.quote-section {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #0d141b 0%,
            #171f28 100%
        );

    color: #ffffff;

    position: relative;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

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

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(22, 119, 216, 0.18);

    border-radius: 50%;

    right: -250px;
    top: -120px;
}

.quote-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 45px solid rgba(22, 119, 216, 0.035);

    border-radius: 50%;

    left: -180px;
    bottom: -180px;
}


/* =========================================================
   QUOTE GRID
========================================================= */

.quote-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: start;

    position: relative;

    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.quote-content {
    padding-top: 25px;
}

.quote-content .section-label {
    color: #70b5ff;
}

.quote-content h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 0.95;

    text-transform: uppercase;

    margin: 14px 0 25px;
}

.quote-content h2 span {
    display: block;

    color: var(--blue);
}

.quote-content > p {
    max-width: 530px;

    color: #aeb8c4;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 45px;
}


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

.contact-options {
    display: flex;

    flex-direction: column;

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

.contact-option {
    display: grid;

    grid-template-columns: 45px 1fr auto;

    align-items: center;

    gap: 18px;

    min-height: 90px;

    padding: 18px 5px;

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

    transition: 0.3s ease;
}

.contact-option:hover {
    padding-left: 12px;

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

.contact-option-number {
    font-family: "Oswald", sans-serif;

    color: var(--blue);

    font-size: 20px;

    font-weight: 700;
}

.contact-option div:nth-child(2) {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.contact-option span {
    color: #748291;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.contact-option strong {
    color: #ffffff;

    font-size: 12px;

    letter-spacing: 0.5px;
}

.contact-option b {
    color: var(--blue);

    font-size: 20px;

    font-weight: 500;

    transition: 0.3s ease;
}

.contact-option:hover b {
    transform: translateX(6px);
}


/* =========================================================
   QUOTE FORM
========================================================= */

.quote-form-wrap {
    background: #ffffff;

    color: var(--dark);

    padding: 45px;

    border-top: 4px solid var(--blue);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);
}


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

.quote-form-header {
    padding-bottom: 28px;

    margin-bottom: 30px;

    border-bottom: 1px solid var(--border);
}

.quote-form-header span {
    display: block;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 10px;
}

.quote-form-header h3 {
    font-family: "Oswald", sans-serif;

    font-size: 30px;

    line-height: 1;

    text-transform: uppercase;
}


/* =========================================================
   FORM LAYOUT
========================================================= */

.quote-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.form-row {
    display: grid;

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

    gap: 18px;
}

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

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #687585;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


/* =========================================================
   FORM INPUTS
========================================================= */

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

    border: 1px solid #dce2e8;

    background: #f7f9fb;

    color: var(--dark);

    font-family: inherit;

    font-size: 13px;

    outline: none;

    transition: 0.25s ease;
}

.form-group input {
    height: 52px;

    padding: 0 15px;
}

.form-group textarea {
    min-height: 115px;

    padding: 15px;

    resize: vertical;
}

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

.form-group input:hover,
.form-group textarea:hover {
    border-color: #bfc8d1;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(22, 119, 216, 0.1);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.quote-submit {
    width: 100%;

    min-height: 58px;

    border: none;

    background: var(--blue);

    color: #ffffff;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s ease;

    margin-top: 5px;
}

.quote-submit:hover {
    background: var(--blue-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(22, 119, 216, 0.25);
}

.quote-submit span {
    font-size: 18px;

    transition: transform 0.3s ease;
}

.quote-submit:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FORM NOTE
========================================================= */

.form-note {
    color: #8b96a1;

    text-align: center;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================================
   REQUEST QUOTE RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .quote-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .quote-content {
        padding-top: 0;
    }

    .quote-content > p {
        max-width: 650px;
    }

}


@media (max-width: 650px) {

    .quote-section {
        padding: 75px 0;
    }

    .quote-content h2 {
        font-size: 48px;
    }

    .quote-content > p {
        font-size: 14px;

        margin-bottom: 30px;
    }

    .quote-form-wrap {
        padding: 28px 20px;
    }

    .quote-form-header h3 {
        font-size: 26px;
    }

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

    .contact-option {
        grid-template-columns: 35px 1fr auto;

        gap: 12px;
    }

    .contact-option strong {
        font-size: 10px;
    }

}


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

    .contact-option,
    .contact-option b,
    .quote-submit,
    .quote-submit span,
    .form-group input,
    .form-group textarea {
        transition: none;
    }

}

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

@media (max-width: 850px) {

    .nav-links {
        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: #ffffff;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 15px 0;

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.1);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition: 0.3s ease;
    }


    .nav-links.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .nav-links a {
        width: 100%;

        text-align: center;

        padding: 15px 20px;
    }


    .mobile-menu {
        display: flex;

        align-items: center;

        justify-content: center;

        width: 45px;

        height: 45px;

        border: none;

        background: transparent;

        color: #111820;

        font-size: 28px;

        cursor: pointer;
    }

}

/* =========================================================
   CUSTOM MESSAGE BOX
========================================================= */

.custom-message {
    position: fixed;

    inset: 0;

    display: flex;

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

    padding: 20px;

    background: rgba(10, 16, 24, 0.65);

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

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

.custom-message.show {
    opacity: 1;

    visibility: visible;
}


.custom-message-box {
    position: relative;

    width: min(480px, 100%);

    padding: 45px;

    background: #ffffff;

    text-align: center;

    transform: translateY(25px) scale(0.97);

    transition:
        transform 0.3s ease;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.3);
}

.custom-message.show .custom-message-box {
    transform: translateY(0) scale(1);
}


/* CLOSE BUTTON */

.custom-message-close {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 38px;
    height: 38px;

    border: none;

    background: transparent;

    color: var(--dark);

    font-size: 28px;

    cursor: pointer;

    transition: 0.2s ease;
}

.custom-message-close:hover {
    transform: rotate(90deg);
}


/* ICON */

.custom-message-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;

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

    background: var(--blue);

    color: #ffffff;

    border-radius: 50%;

    font-size: 28px;
}


/* LABEL */

.custom-message-label {
    display: block;

    margin-bottom: 10px;

    color: var(--blue);

    font-family: "Oswald", sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.5px;
}


/* TITLE */

.custom-message-box h3 {
    margin: 0 0 15px;

    color: var(--dark);

    font-family: "Oswald", sans-serif;

    font-size: 32px;

    line-height: 1;

    text-transform: uppercase;
}


/* TEXT */

.custom-message-box p {
    max-width: 360px;

    margin: 0 auto 30px;

    color: #6d7782;

    font-size: 15px;

    line-height: 1.7;
}


/* CONTINUE BUTTON */

.custom-message-button {
    width: 100%;

    display: flex;

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

    gap: 15px;

    padding: 16px 25px;

    border: none;

    background: var(--blue);

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.25s ease;
}

.custom-message-button:hover {
    transform: translateY(-2px);

    filter: brightness(0.9);
}


.custom-message-button span {
    font-size: 18px;
}


@media (max-width: 600px) {

    .custom-message-box {
        padding: 40px 25px 25px;
    }

    .custom-message-box h3 {
        font-size: 26px;
    }

}

/* =========================================================
   CUSTOM SITE NOTIFICATION
========================================================= */

.site-notification {
    position: fixed;

    top: 100px;
    right: 30px;

    width: min(420px, calc(100% - 40px));

    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 20px;

    background: #171717;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid #f5c518;

    border-radius: 6px;

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

    z-index: 99999;

    opacity: 0;

    visibility: hidden;

    transform: translateX(120px);

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

    pointer-events: none;
}


.site-notification.show {
    opacity: 1;

    visibility: visible;

    transform: translateX(0);

    pointer-events: auto;
}


/* NOTIFICATION ICON */

.notification-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

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

    background: rgba(245, 197, 24, 0.12);

    border-radius: 50%;

    color: #f5c518;

    font-size: 18px;
}


/* NOTIFICATION CONTENT */

.notification-content {
    flex: 1;

    padding-top: 2px;
}


.notification-content strong {
    display: block;

    margin-bottom: 6px;

    font-family: "Oswald", sans-serif;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 0.8px;

    color: #ffffff;
}


.notification-content p {
    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.65);
}


/* CLOSE BUTTON */

.notification-close {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

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

    padding: 0;

    background: transparent;

    border: none;

    color: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    font-size: 16px;

    transition: 0.2s ease;
}


.notification-close:hover {
    color: #ffffff;

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


/* MOBILE */

@media (max-width: 600px) {

    .site-notification {
        top: 90px;
        right: 20px;

        width: calc(100% - 40px);

        padding: 16px;
    }

}

/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {
    position: fixed;
    inset: 0;

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

    padding: 25px;

    background: rgba(8, 12, 18, 0.78);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

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

.product-modal.show {
    opacity: 1;
    visibility: visible;
}


.product-modal-box {
    position: relative;

    width: min(850px, 100%);

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #ffffff;

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

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

    transition: transform 0.3s ease;
}

.product-modal.show .product-modal-box {
    transform: translateY(0) scale(1);
}


/* CLOSE */

.product-modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

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

    border: none;

    background: #ffffff;

    color: var(--dark);

    font-size: 18px;

    cursor: pointer;

    z-index: 2;

    transition: 0.2s ease;
}

.product-modal-close:hover {
    background: var(--blue);
    color: #ffffff;
}


/* IMAGE */

.product-modal-image {
    min-height: 480px;

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

    background: var(--dark);
}

.product-modal-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    color: rgba(255, 255, 255, 0.35);
}

.product-modal-placeholder i {
    font-size: 80px;
}

.product-modal-placeholder span {
    font-family: "Oswald", sans-serif;

    font-size: 13px;

    letter-spacing: 2px;
}


/* DETAILS */

.product-modal-details {
    display: flex;
    flex-direction: column;

    justify-content: center;

    padding: 60px 50px;
}

.product-modal-category {
    display: block;

    margin-bottom: 15px;

    color: var(--blue);

    font-family: "Oswald", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.product-modal-details h2 {
    margin: 0 0 20px;

    color: var(--dark);

    font-family: "Oswald", sans-serif;

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1;

    text-transform: uppercase;
}

.product-modal-details p {
    margin: 0 0 30px;

    color: #6d7782;

    line-height: 1.8;
}

.product-modal-price {
    margin-bottom: 25px;

    padding: 15px;

    background: #f5f6f7;

    color: var(--dark);

    font-family: "Oswald", sans-serif;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;
}

.product-modal-request {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    width: 100%;

    padding: 17px 25px;

    border: none;

    background: var(--blue);

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.25s ease;
}

.product-modal-request:hover {
    transform: translateY(-2px);
    filter: brightness(0.9);
}

.product-modal-request span {
    font-size: 18px;
}


/* MOBILE */

@media (max-width: 700px) {

    .product-modal {
        padding: 15px;
        align-items: flex-start;
        overflow-y: auto;
    }

    .product-modal-box {
        grid-template-columns: 1fr;

        margin: auto 0;
    }

    .product-modal-image {
        min-height: 220px;
    }

    .product-modal-details {
        padding: 40px 25px;
    }

    .product-modal-placeholder i {
        font-size: 55px;
    }

}

/* =========================================================
   PARTS PAGE
========================================================= */


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

.parts-hero {
    padding: 100px 0 90px;

    background:
        linear-gradient(
            135deg,
            var(--dark) 0%,
            var(--dark-2) 100%
        );

    color: var(--white);
}


.parts-hero .section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;
}


.parts-hero h1 {
    max-width: 700px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(50px, 7vw, 82px);

    line-height: 0.95;

    text-transform: uppercase;

    margin-bottom: 25px;
}


.parts-hero h1 span {
    color: var(--blue);
}


.parts-hero p {
    max-width: 620px;

    color: #b9c2ca;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* =========================================================
   PARTS SEARCH
========================================================= */

.parts-search {
    position: relative;

    max-width: 680px;
}


.parts-search i {
    position: absolute;

    top: 50%;

    left: 22px;

    transform: translateY(-50%);

    color: var(--blue);

    font-size: 17px;
}


.parts-search input {
    width: 100%;

    padding: 19px 20px 19px 55px;

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

    border-radius: 8px;

    outline: none;

    background: var(--white);

    color: var(--dark);

    font-size: 15px;

    transition: 0.25s ease;
}


.parts-search input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 4px rgba(22, 119, 216, 0.15);
}


/* =========================================================
   PARTS CATALOGUE
========================================================= */

.parts-catalogue {
    padding: 90px 0 110px;

    background: var(--light);
}


.parts-layout {
    display: grid;

    grid-template-columns: 270px 1fr;

    gap: 50px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.parts-sidebar {
    position: sticky;

    top: 100px;

    padding: 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow: var(--shadow);
}


.filter-heading {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}


.filter-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: 22px;

    text-transform: uppercase;
}


.filter-heading button {
    border: none;

    background: transparent;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;
}


.filter-heading button:hover {
    color: var(--blue-dark);
}


/* =========================================================
   FILTER GROUP
========================================================= */

.filter-group {
    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}


.filter-group h3 {
    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;

    color: var(--grey);
}


.category-filter {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 11px 0;

    border: none;

    background: transparent;

    color: var(--dark);

    font-size: 14px;

    text-align: left;

    cursor: pointer;

    transition: 0.2s ease;
}


.category-filter:hover,
.category-filter.active {
    color: var(--blue);
}


.category-filter.active {
    font-weight: 700;
}


.category-filter span {
    color: var(--grey-light);

    font-size: 12px;
}


/* =========================================================
   VEHICLE FILTER
========================================================= */

.vehicle-filter {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.vehicle-filter h3 {
    margin-bottom: 5px;
}


.vehicle-filter select {
    width: 100%;

    padding: 12px;

    border: 1px solid var(--border);

    border-radius: 5px;

    background: var(--white);

    color: var(--dark);

    outline: none;

    cursor: pointer;
}


.vehicle-filter select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(22, 119, 216, 0.12);
}


.filter-vehicle-button {
    margin-top: 5px;

    padding: 14px;

    border: none;

    border-radius: 5px;

    background: var(--blue);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.8px;

    cursor: pointer;

    transition: 0.25s ease;
}


.filter-vehicle-button:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);
}


/* =========================================================
   SIDEBAR HELP
========================================================= */

.sidebar-help {
    margin-top: 25px;

    padding: 25px;

    background: var(--dark);

    color: var(--white);

    border-radius: 8px;
}


.sidebar-help span {
    display: block;

    margin-bottom: 8px;

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.sidebar-help h3 {
    font-family: "Oswald", sans-serif;

    font-size: 23px;

    line-height: 1.05;

    text-transform: uppercase;

    margin-bottom: 12px;
}


.sidebar-help p {
    margin-bottom: 18px;

    color: #aeb8c1;

    font-size: 13px;

    line-height: 1.6;
}


.sidebar-help a {
    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;
}


.sidebar-help a:hover {
    color: var(--white);
}


/* =========================================================
   PARTS CONTENT
========================================================= */

.parts-content {
    min-width: 0;
}


.catalogue-header {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 40px;
}


.catalogue-header .section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}


.catalogue-header h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 0.95;

    text-transform: uppercase;
}


.catalogue-header h2 span {
    color: var(--blue);
}


.parts-count {
    padding-bottom: 7px;

    color: var(--grey);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}


.parts-count span {
    color: var(--dark);

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   PARTS GRID
========================================================= */

.parts-grid {
    display: grid;

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

    gap: 24px;
}


/* =========================================================
   PART CARD
========================================================= */

.part-card {
    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

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


.part-card:hover {
    transform: translateY(-6px);

    border-color: rgba(22, 119, 216, 0.4);

    box-shadow: var(--shadow);
}


/* =========================================================
   PART IMAGE
========================================================= */

.part-image {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    height: 210px;

    background:
        linear-gradient(
            135deg,
            #edf2f6,
            #dfe7ed
        );
}


.image-placeholder {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 110px;

    height: 110px;

    border: 2px dashed #b8c4cd;

    border-radius: 8px;

    color: #87939d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-align: center;
}


.part-category {
    position: absolute;

    top: 14px;

    left: 14px;

    padding: 7px 10px;

    border-radius: 4px;

    background: var(--blue);

    color: var(--white);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   PART INFORMATION
========================================================= */

.part-info {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 23px;
}


.part-info h3 {
    margin-bottom: 10px;

    font-family: "Oswald", sans-serif;

    font-size: 25px;

    line-height: 1;

    text-transform: uppercase;
}


.part-info p {
    margin-bottom: 22px;

    color: var(--grey);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   VIEW PART BUTTON
========================================================= */

.part-button {
    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    margin-top: auto;

    padding-top: 16px;

    border-top: 1px solid var(--border);

    color: var(--dark);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.2s ease;
}


.part-button span {
    color: var(--blue);

    font-size: 18px;

    transition: transform 0.2s ease;
}


.part-button:hover {
    color: var(--blue);
}


.part-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   NO RESULTS
========================================================= */

.no-parts-message {
    display: none;

    padding: 80px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    text-align: center;
}


.no-parts-message i {
    margin-bottom: 20px;

    color: var(--blue);

    font-size: 35px;
}


.no-parts-message h3 {
    margin-bottom: 10px;

    font-family: "Oswald", sans-serif;

    font-size: 28px;
}


.no-parts-message p {
    margin-bottom: 25px;

    color: var(--grey);
}


.no-parts-message button {
    padding: 14px 24px;

    border: none;

    border-radius: 5px;

    background: var(--blue);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.25s ease;
}


.no-parts-message button:hover {
    background: var(--blue-dark);

    transform: translateY(-2px);
}


/* =========================================================
   HIDDEN PART
========================================================= */

.part-card.hidden {
    display: none;
}


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

@media (max-width: 1000px) {

    .parts-layout {
        grid-template-columns: 230px 1fr;

        gap: 30px;
    }


    .parts-sidebar {
        padding: 22px;
    }


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

}


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

@media (max-width: 800px) {

    .parts-hero {
        padding: 75px 0 70px;
    }


    .parts-layout {
        grid-template-columns: 1fr;
    }


    .parts-sidebar {
        position: static;
    }


    .catalogue-header {
        align-items: start;

        flex-direction: column;
    }


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

}


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

@media (max-width: 600px) {

    .parts-hero {
        padding: 60px 0;
    }


    .parts-hero h1 {
        font-size: 48px;
    }


    .parts-hero p {
        font-size: 15px;
    }


    .parts-search input {
        padding:
            17px
            18px
            17px
            50px;
    }


    .parts-catalogue {
        padding: 60px 0 80px;
    }


    .parts-sidebar {
        padding: 20px;
    }


    .catalogue-header h2 {
        font-size: 46px;
    }


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


    .part-image {
        height: 230px;
    }


    .part-info h3 {
        font-size: 26px;
    }

}

/* =========================================================
   PART DETAILS PAGE
========================================================= */


/* =========================================================
   BREADCRUMB
========================================================= */

.part-breadcrumb {
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

.part-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 0.85rem;
    font-weight: 600;

    text-transform: uppercase;
}

.part-breadcrumb a {
    color: #666666;
    text-decoration: none;

    transition: 0.2s ease;
}

.part-breadcrumb a:hover {
    color: #f4c430;
}

.part-breadcrumb span {
    color: #999999;
}

.part-breadcrumb strong {
    color: #111111;
}


/* =========================================================
   PART DETAILS
========================================================= */

.part-details {
    padding: 90px 0;
    background: #f7f7f7;
}

.part-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: center;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.part-detail-image {
    position: relative;
}

.detail-image-placeholder {
    min-height: 480px;

    display: flex;
    flex-direction: column;

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

    gap: 18px;

    background: #e9e9e9;
    border-radius: 4px;

    color: #888888;
}

.detail-image-placeholder i {
    font-size: 4rem;
    color: #bbbbbb;
}

.detail-image-placeholder span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.part-detail-category {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 8px 14px;

    background: #f4c430;
    color: #ffffff;

    font-size: 0.7rem;
    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.part-detail-info .section-label {
    margin-bottom: 16px;
}

.part-detail-info h1 {
    margin-bottom: 25px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;

    text-transform: uppercase;

    color: #111111;
}

.part-detail-description {
    max-width: 600px;

    margin-bottom: 35px;

    color: #666666;

    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   SPECIFICATIONS
========================================================= */

.part-specifications {
    margin-bottom: 35px;

    border-top: 1px solid #dddddd;
}

.part-spec {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid #dddddd;
}

.part-spec span {
    color: #777777;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 1px;
}

.part-spec strong {
    color: #111111;

    font-size: 0.75rem;
    font-weight: 800;

    text-align: right;
}


/* =========================================================
   REQUEST QUOTE BUTTON
========================================================= */

.part-quote-button {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 17px 24px;

    background: #f4c430;
    color: #ffffff;

    text-decoration: none;

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.5px;

    transition: 0.25s ease;
}

.part-quote-button:hover {
    background: #111111;

    transform: translateY(-2px);
}

.part-quote-button span {
    font-size: 1.2rem;
}


/* =========================================================
   PART NOTE
========================================================= */

.part-note {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    max-width: 600px;

    margin-top: 25px;

    color: #777777;

    font-size: 0.85rem;
    line-height: 1.6;
}

.part-note i {
    margin-top: 3px;

    color: #f4c430;
}


/* =========================================================
   HELP SECTION
========================================================= */

.part-help-section {
    padding: 80px 0;

    background: #111111;
}

.part-help-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.part-help-box .section-label {
    color: #f4c430;
}

.part-help-box h2 {
    max-width: 650px;

    margin: 15px 0 20px;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;

    text-transform: uppercase;
}

.part-help-box h2 span {
    color: #f4c430;
}

.part-help-box p {
    max-width: 600px;

    color: #aaaaaa;

    line-height: 1.7;
}

.part-help-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 25px;

    padding: 18px 25px;

    background: #f4c430;
    color: #ffffff;

    text-decoration: none;

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.5px;

    transition: 0.25s ease;
}

.part-help-button:hover {
    background: #ffffff;
    color: #111111;

    transform: translateY(-2px);
}

.part-help-button span {
    font-size: 1.2rem;
}


/* =========================================================
   BACK TO PARTS
========================================================= */

.back-to-parts {
    padding: 35px 0;

    background: #ffffff;
}

.back-to-parts a {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: #111111;

    text-decoration: none;

    font-size: 0.8rem;
    font-weight: 800;

    letter-spacing: 0.5px;

    transition: 0.2s ease;
}

.back-to-parts a:hover {
    color: #f4c430;
}


/* =========================================================
   PART DETAILS MOBILE
========================================================= */

@media (max-width: 900px) {

    .part-details {
        padding: 70px 0;
    }

    .part-details-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .detail-image-placeholder {
        min-height: 400px;
    }

    .part-help-box {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .part-breadcrumb {
        padding: 18px 0;
    }

    .part-breadcrumb .container {
        gap: 8px;

        font-size: 0.7rem;

        flex-wrap: wrap;
    }

    .part-details {
        padding: 55px 0;
    }

    .detail-image-placeholder {
        min-height: 300px;
    }

    .part-spec {
        flex-direction: column;
        gap: 8px;
    }

    .part-spec strong {
        text-align: left;
    }

    .part-help-section {
        padding: 60px 0;
    }

    .part-quote-button,
    .part-help-button {
        width: 100%;

        justify-content: space-between;
    }

}