/* =========================================================
   PAWAR RUBBER PRODUCTS
   REQUEST A QUOTE PAGE
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    --black: #151719;
    --dark: #1d1f21;

    --text: #343638;
    --muted: #6f7275;

    --light: #f5f5f3;
    --lighter: #fafaf9;

    --white: #ffffff;

    --border: #dededb;

    --red: #b3262d;

    --container: min(1180px, calc(100% - 48px));
}


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

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


html {

    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}


html::-webkit-scrollbar {
    width: 0;
}


body {

    overflow-x: hidden;

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

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}


img {
    max-width: 100%;
}


a {

    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {

    font-family: inherit;
}


button {
    cursor: pointer;
}


.container {

    width: var(--container);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   SCROLL PROGRESS
   ========================================================= */

.scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 3px;

    background: transparent;

    z-index: 9999;
}


.scroll-progress span {

    display: block;

    width: 0;

    height: 100%;

    background: var(--red);
}


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

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    min-height: 82px;

    z-index: 1000;

    color: var(--white);

    background: transparent;

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


.site-header.scrolled {

    color: var(--black);

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

    box-shadow:
        0 5px 24px rgba(0, 0, 0, 0.06);

    backdrop-filter: blur(12px);
}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


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

.brand {

    display: flex;

    align-items: center;

    gap: 11px;
}


.brand-mark {

    width: 42px;
    height: 42px;

    display: flex;

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

    border: 1px solid currentColor;

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

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;
}


.brand-text strong {

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

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.8px;
}


.brand-text span {

    margin-top: 4px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.8px;

    opacity: 0.68;
}


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

.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;
}


.nav-link {

    position: relative;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 0.2px;

    padding: 8px 0;

    transition: color 0.25s ease;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 1px;

    background: var(--red);

    transition: width 0.25s ease;
}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}

/* =========================================================
   PRODUCTS NAVBAR DROPDOWN
   ========================================================= */

.nav-product-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}


/* PRODUCTS LINK */

.nav-product-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
}


/* DROPDOWN BOX */

.products-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 235px;
    padding: 8px;
    
    background: #ffffff;
    border: 1px solid #e3e3e1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);

    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);

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

    z-index: 2000;
}


/* SMALL SPACE ABOVE DROPDOWN
   Keeps hover active while moving mouse down */

.products-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    width: 100%;
    height: 19px;
}


/* SHOW DROPDOWN ON HOVER */

.nav-product-dropdown:hover .products-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* DROPDOWN ITEMS */

.products-dropdown-menu a {
    min-height: 43px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 0 13px;

    color: #222222;
    background: transparent;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


/* DROPDOWN ITEM HOVER */

.products-dropdown-menu a:hover {
    color: #b3262d;
    background: #f6f6f4;
}


/* DROPDOWN ARROW */

.products-dropdown-menu a span:last-child {
    color: #b3262d;
    font-size: 16px;
    font-weight: 700;

    transform: translateX(0);

    transition: transform 0.2s ease;
}


/* ARROW MOVEMENT */

.products-dropdown-menu a:hover span:last-child {
    transform: translateX(4px);
}

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

.header-quote {

    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 16px;

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

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

    border-radius: 6px;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

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


.header-quote span:last-child {

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.header-quote:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);

    transform: translateY(-2px);
}


.header-quote:hover span:last-child {

    transform: translateX(5px);
}


.site-header.scrolled .header-quote {

    background: transparent;

    border-color: var(--black);

    color: var(--black);
}


.site-header.scrolled .header-quote:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);
}


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

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.menu-toggle span {

    display: block;

    width: 23px;

    height: 1px;

    margin: 5px auto;

    background: currentColor;

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


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);
}


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

.quote-hero {

    position: relative;

    height: 560px;

    min-height: 560px;

    overflow: hidden;

    background: #000000;
}


.quote-hero-background {
    display: none;
}


.quote-hero-overlay {
    display: none;
}


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

.quote-hero-content {

    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    text-align: center;

    padding: 0 30px 185px;
}


.quote-hero h1 {

    position: relative;

    display: inline-block;

    margin: 0;

    padding-bottom: 18px;

    color: #ffffff;

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

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

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: 2px;

    word-spacing: 17px;

    text-transform: uppercase;

    margin-top: 30px;
}


/* RED LINE BELOW HERO TITLE */

.quote-hero h1::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: +87px;

    width: 550px;

    height: 3px;

    background: var(--red);

    transform: translateX(-50%);
    margin-top: 11px;
}

.quote-hero h1 span {
    display: inline-block;
    margin-top: 25px;
}


/* =========================================================
   HERO PAGE NUMBER
   ========================================================= */

.hero-page-number {

    position: absolute;

    right: 55px;
    bottom: 72px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 13px;

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

    font-size: 11px;

    letter-spacing: 1.5px;
}


.hero-page-number div {

    width: 42px;

    height: 1px;

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


/* =========================================================
   SCROLL TO EXPLORE
   ========================================================= */

.scroll-explore {

    position: fixed;

    top: 50%;
    right: 28px;

    z-index: 900;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    transform: translateY(-50%);

    transition:
        opacity 0.3s ease;
}


.scroll-explore > span {

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.4px;

    color: #777;
}


.scroll-line {

    position: relative;

    width: 2px;

    height: 120px;

    overflow: hidden;

    background: #d5d5d2;
}


.scroll-line span {

    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100%;

    height: 0;

    background: var(--red);

    transition:
        height 0.05s linear;
}


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

.quote-form-section {

    padding-top: 65px;

    padding-bottom: 85px;

    background: var(--white);
}


/* =========================================================
   FORM WRAPPER
   ========================================================= */

.quote-form-wrapper {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;
}


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

.quote-form-header {

    margin-bottom: 32px;
}


.quote-form-header .section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: var(--red);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1;

    text-transform: uppercase;
}


.quote-form-header .section-label::before {

    content: "";

    display: block;

    width: 3px;

    height: 18px;

    background: var(--red);
}


.quote-form-header h2 {

    position: relative;

    display: inline-block;

    padding-bottom: 5px;
}


.quote-form-header h2::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 70px;

    height: 3px;

    background: var(--red);
}


.quote-form-header p {

    max-width: 700px;

    margin-top: 6px;

    font-size: 14px;

    line-height: 1.7;

    color: var(--muted);
}


/* =========================================================
   SINGLE FORM BOX
   ========================================================= */

.quote-form {

    width: 100%;

    padding: 36px 40px 32px;

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

    background: var(--white);

    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.045);
}


/* =========================================================
   FORM SECTION
   ========================================================= */

.form-section {

    padding: 0 0 27px;

    margin: 0 0 27px;

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


.form-section:last-of-type {

    border-bottom: none;

    margin-bottom: 0;
}


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

.form-section-header {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 18px;
}


.form-section-number {

    width: 27px;
    height: 27px;

    display: flex;

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

    flex: 0 0 27px;

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

    color: var(--red);

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

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.7px;
}


.form-section-title {

    margin: 0;

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

    font-size: 19px;

    font-weight: 700;

    line-height: 1.2;

    color: var(--black);
}


/* =========================================================
   FORM GRID
   ========================================================= */

.form-grid {

    display: grid;

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

    gap: 15px 22px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.form-group {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


.form-group.full {

    grid-column: 1 / -1;

    margin-top: 15px;
}


/* =========================================================
   LABEL
   ========================================================= */

.form-group label {

    margin-bottom: 5px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    color: var(--text);
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
   ========================================================= */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #d7d8d5;

    border-radius: 3px;

    background: #fcfcfb;

    color: var(--black);

    font-size: 13px;

    outline: none;

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


/* INPUTS */

.form-group input,
.form-group select {

    height: 43px;

    padding: 0 13px;
}


/* TEXTAREA */

.form-group textarea {

    height: 82px;

    min-height: 82px;

    padding: 10px 13px;

    resize: vertical;

    line-height: 1.5;
}


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

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #a3a5a6;

    opacity: 1;
}


/* =========================================================
   FOCUS
   ========================================================= */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--red);

    background: var(--white);

    box-shadow:
        0 0 0 2px rgba(179, 38, 45, 0.07);
}


/* =========================================================
   SELECT
   ========================================================= */

.form-group select {

    appearance: none;

    -webkit-appearance: none;

    background-image:

        linear-gradient(
            45deg,
            transparent 50%,
            #777 50%
        ),

        linear-gradient(
            135deg,
            #777 50%,
            transparent 50%
        );

    background-position:

        calc(100% - 17px) 18px,
        calc(100% - 12px) 18px;

    background-size:

        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    padding-right: 38px;
}


/* =========================================================
   UPLOAD DESCRIPTION
   ========================================================= */

.upload-description {

    max-width: 650px;

    margin-bottom: 13px;

    font-size: 12px;

    line-height: 1.6;

    color: var(--muted);
}


/* =========================================================
   UPLOAD BOX
   ========================================================= */

.upload-box {

    position: relative;

    min-height: 88px;

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 16px 19px;

    border: 1px dashed #c7c8c5;

    border-radius: 4px;

    background: #fafaf9;

    cursor: pointer;

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


.upload-box:hover {

    border-color: var(--red);

    background: #fdfdfc;
}


.upload-box.has-file {

    border-color: var(--red);

    background: #fffafa;
}


/* =========================================================
   UPLOAD ICON
   ========================================================= */

.upload-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

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

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

    border-radius: 50%;

    background: var(--white);

    color: var(--red);

    font-size: 22px;

    font-weight: 300;

    line-height: 1;
}


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

.upload-content {

    display: flex;

    flex-direction: column;

    min-width: 0;
}


.upload-title {

    margin-bottom: 2px;

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

    font-size: 13px;

    font-weight: 700;

    color: var(--black);
}


.file-name {

    font-size: 11px;

    line-height: 1.5;

    color: var(--muted);
}


/* =========================================================
   FILE INPUT
   ========================================================= */

.upload-box input[type="file"] {

    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    overflow: hidden;

    pointer-events: none;
}


/* =========================================================
   SELECTED FILE LIST
   ========================================================= */

.file-list {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-top: 14px;
}


/* =========================================================
   SELECTED FILE
   ========================================================= */

.selected-file {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 11px 13px;

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

    border-radius: 4px;

    background: var(--lighter);

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.selected-file:hover {

    border-color: #c8c8c5;

    background: var(--light);
}


/* =========================================================
   FILE INFORMATION
   ========================================================= */

.selected-file-info {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 11px;

    flex: 1;
}


.file-number {

    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    display: flex;

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

    border-radius: 50%;

    background: var(--red);

    color: var(--white);

    font-size: 11px;

    font-weight: 700;
}


.file-details {

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 1px;
}


.file-name-display {

    display: block;

    max-width: 100%;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 13px;

    font-weight: 600;

    color: var(--black);
}


.file-size {

    font-size: 11px;

    line-height: 1.4;

    color: var(--muted);
}


/* =========================================================
   REMOVE FILE BUTTON
   ========================================================= */

.remove-file {

    width: 28px;
    height: 28px;

    flex: 0 0 28px;

    display: flex;

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

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

    border-radius: 50%;

    background: var(--white);

    color: var(--muted);

    font-size: 19px;

    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.remove-file:hover {

    background: var(--red);

    border-color: var(--red);

    color: var(--white);
}


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

.form-note {

    margin-top: 6px;

    font-size: 10px;

    line-height: 1.5;

    color: #929496;
}


/* =========================================================
   FORM SUBMIT
   ========================================================= */

.form-submit {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding-top: 3px;
}


.form-submit-note {

    max-width: 500px;

    margin: 0;

    font-size: 12px;

    line-height: 1.6;

    color: var(--muted);
}


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

.submit-button {

    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    flex: 0 0 auto;

    padding: 0 22px;

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

    border-radius: 4px;

    background: var(--red);

    color: var(--white);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

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


.submit-button span:last-child {

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.submit-button:hover {

    background: var(--black);

    border-color: var(--black);

    transform: translateY(-2px);
}


.submit-button:hover span:last-child {

    transform: translateX(4px);
}


.submit-button:disabled {

    cursor: not-allowed;

    opacity: 0.75;

    transform: none;
}


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

.site-footer {

    padding-top: 58px;

    padding-bottom: 24px;

    background: var(--black);

    color: var(--white);
}


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

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        0.9fr
        1.2fr;

    gap: 55px;

    padding-bottom: 42px;

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


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

.footer-brand {

    color: var(--white);
}


.footer-brand p {

    max-width: 360px;

    margin-top: 18px;

    font-size: 15px;

    line-height: 1.75;

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


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

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h4 {

    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;

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


.footer-column a {

    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.5;

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

    transition:
        color 0.25s ease;
}


.footer-column a:hover {

    color: var(--white);
}


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

.footer-contact p {

    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.7;

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


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

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    font-size: 11px;

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


/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 850px) {


    /* =====================================================
       MOBILE HEADER + NAVIGATION
       ===================================================== */

    html,
    body {

        max-width: 100%;

        width: 100%;

        overflow-x: hidden;
    }


    body {

        width: 100%;
    }


    .site-header {

        width: 100%;

        max-width: 100vw;
    }


    .header-inner {

        width: 100%;

        min-width: 0;
    }


    .brand {

        min-width: 0;

        max-width:
            calc(100% - 58px);
    }


    .brand-text {

        min-width: 0;
    }


    .brand-text strong,
    .brand-text span {

        white-space: nowrap;
    }


    /* =====================================================
       HAMBURGER BUTTON
       ===================================================== */

    .site-header .menu-toggle {

        position: relative;

        z-index: 3000;

        display: block;

        width: 42px;

        height: 42px;

        flex-shrink: 0;

        padding: 0;

        border: 0;

        background: transparent !important;

        color: #ffffff !important;

        cursor: pointer;

        -webkit-tap-highlight-color: transparent;
    }


    .site-header .menu-toggle span {

        display: block;

        width: 23px;

        height: 1px;

        margin: 5px auto;

        background:
            currentColor !important;

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


    /* =====================================================
       HAMBURGER → X
       ===================================================== */

    .site-header .menu-toggle.active span:nth-child(1) {

        transform:
            translateY(6px)
            rotate(45deg);
    }


    .site-header .menu-toggle.active span:nth-child(2) {

        opacity: 0;
    }


    .site-header .menu-toggle.active span:nth-child(3) {

        transform:
            translateY(-6px)
            rotate(-45deg);
    }


    /* =====================================================
       SCROLLED HEADER
       HAMBURGER BECOMES BLACK
       ===================================================== */

    .site-header.scrolled .menu-toggle,
    .site-header.scrolled .menu-toggle:hover,
    .site-header.scrolled .menu-toggle:focus,
    .site-header.scrolled .menu-toggle:active {

        color: #111111 !important;

        background: transparent !important;
    }


    .site-header.scrolled .menu-toggle span,
    .site-header.scrolled .menu-toggle:hover span,
    .site-header.scrolled .menu-toggle:focus span,
    .site-header.scrolled .menu-toggle:active span {

        background-color:
            #111111 !important;
    }


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

    .site-header .main-nav {

        position: fixed;

        top: 82px;

        left: 0;

        width: 100%;

        max-width: 100vw;

        min-width: 0;

        max-height:
            calc(100vh - 82px);

        overflow-x: hidden;

        overflow-y: auto;

        padding:
            22px 24px 28px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 4px;

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

        color: var(--black);

        box-shadow:
            0 12px 30px
            rgba(
                0,
                0,
                0,
                0.08
            );

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-10px);

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

        z-index: 2500;
    }


    /* =====================================================
       OPEN MENU
       ===================================================== */

    .site-header .main-nav.open {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }


    /* =====================================================
       MAIN MENU LINKS
       ===================================================== */

    .site-header .main-nav .nav-link {

        width: 100%;

        min-width: 0;

        padding:
            11px 0;

        font-size: 14px;

        color: var(--black);

        background: transparent;

        text-decoration: none;
    }


    .site-header .main-nav .nav-link::after {

        display: none;
    }


    .site-header .main-nav .nav-link.active {

        color: var(--red);
    }


    /* =====================================================
       PRODUCTS DROPDOWN
       ===================================================== */

    .site-header .nav-product-dropdown {

        width: 100%;

        min-width: 0;

        display: block;

        position: relative;
    }


    .site-header .nav-product-dropdown > .nav-link {

        width: 100%;
    }


    /* =====================================================
       PRODUCTS SUBMENU
       ===================================================== */

    .site-header .products-dropdown-menu {

        position: static;

        width: 100%;

        min-width: 0;

        margin-top: 4px;

        padding: 0;

        display: block;

        background:
            #f6f6f4;

        border: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;
    }


    .site-header .products-dropdown-menu::before {

        display: none;
    }


    .site-header .products-dropdown-menu a {

        width: 100%;

        min-height: 42px;

        padding:
            0 12px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;

        box-sizing: border-box;

        color: var(--black);

        background: transparent;

        font-size: 10px;

        font-weight: 700;

        letter-spacing: 0.7px;

        text-transform: uppercase;

        text-decoration: none;

        touch-action: manipulation;
    }


    .site-header .products-dropdown-menu a:hover {

        color: var(--red);

        background: transparent;
    }


    .site-header .products-dropdown-menu a .arrow {

        color: var(--red);

        font-size: 16px;

        transition:
            transform 0.25s ease;
    }


    .site-header .products-dropdown-menu a:hover .arrow {

        transform:
            translateX(4px);
    }


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

    .site-header .header-quote {

        display: none !important;
    }


    /* =====================================================
       TOUCH
       ===================================================== */

    .site-header .main-nav a,
    .site-header .nav-product-dropdown,
    .site-header .menu-toggle {

        touch-action: manipulation;
    }


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

    .quote-hero {

        height: 540px;

        min-height: 540px;
    }


    .quote-hero-content {

        padding-bottom: 75px;
    }


    .quote-hero h1 {

        font-size:
            clamp(40px, 8vw, 58px);
    }


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

    .quote-form {

        padding:
            32px 28px 30px;
    }


    .form-grid {

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


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

    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 40px;
    }

}


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

@media (max-width: 600px) {


    .container {

        width:
            calc(100% - 32px);
    }


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

    .site-header,
    .header-inner {

        min-height: 82px;
    }


    .header-inner {

        width: 100%;
    }


    .site-header .main-nav {

        top: 82px;

        padding-left: 16px;

        padding-right: 16px;

        max-height:
            calc(100vh - 82px);
    }


    .brand-mark {

        width: 38px;

        height: 38px;

        font-size: 12px;
    }


    .brand-text strong {

        font-size: 12px;
    }


    .brand-text span {

        font-size: 7px;

        letter-spacing: 1.5px;
    }


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

    .quote-hero {

        height: 520px;

        min-height: 520px;
    }


    .quote-hero-content {

        padding:
            0 20px 70px;
    }


    .quote-hero h1 {

        font-size:
            clamp(34px, 10vw, 48px);

        letter-spacing: 0;

        word-spacing: 10px;
    }


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

    .hero-page-number {

        right: 22px;

        bottom: 45px;
    }


    /* =====================================================
       SCROLL
       ===================================================== */

    .scroll-explore {

        right: 12px;
    }


    .scroll-explore > span {

        font-size: 8px;

        letter-spacing: 2px;
    }


    .scroll-line {

        height: 85px;
    }


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

    .quote-form-section {

        padding-top: 55px;

        padding-bottom: 65px;
    }


    .quote-form-header {

        margin-bottom: 28px;
    }


    .quote-form-header h2 {

        font-size: 30px;

        letter-spacing: -1px;
    }


    .quote-form-header p {

        font-size: 13px;
    }


    .quote-form {

        padding:
            25px 18px 25px;
    }


    .form-section {

        padding-bottom: 23px;

        margin-bottom: 23px;
    }


    .form-section-header {

        margin-bottom: 17px;
    }


    .form-section-title {

        font-size: 18px;
    }


    .form-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }


    .form-group.full {

        grid-column: auto;

        margin-top: 14px;
    }


    .form-group input,
    .form-group select {

        height: 43px;
    }


    .form-group textarea {

        height: 75px;

        min-height: 75px;
    }


    /* =====================================================
       UPLOAD
       ===================================================== */

    .upload-box {

        min-height: 82px;

        padding: 14px;

        gap: 12px;
    }


    .upload-icon {

        width: 37px;

        height: 37px;

        flex-basis: 37px;
    }


    .upload-title {

        font-size: 12px;
    }


    .file-name {

        font-size: 10px;
    }


    .selected-file {

        padding:
            10px 11px;

        gap: 8px;
    }


    .selected-file-info {

        gap: 9px;
    }


    .file-number {

        width: 24px;

        height: 24px;

        flex-basis: 24px;

        font-size: 10px;
    }


    .file-name-display {

        font-size: 12px;
    }


    .file-size {

        font-size: 10px;
    }


    .remove-file {

        width: 27px;

        height: 27px;

        flex-basis: 27px;
    }


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

    .form-submit {

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }


    .submit-button {

        width: 100%;
    }


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

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 35px;
    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

}


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

@media (max-width: 400px) {

    .scroll-explore {

        display: none;
    }


    .quote-hero {

        height: 500px;

        min-height: 500px;
    }


    .quote-hero h1 {

        font-size: 32px;

        letter-spacing: -0.5px;

        word-spacing: 8px;
    }


    .quote-form-header h2 {

        font-size: 28px;
    }


    .section-label {

        font-size: 12px;

        letter-spacing: 1.5px;
    }


    .form-section-title {

        font-size: 17px;
    }

}


/* =====================================================
   FILE REMOVE BUTTON + CIRCULAR PROGRESS
   ===================================================== */

.remove-file {
    --progress: 0deg;

    position: relative;

    width: 38px;
    height: 38px;

    min-width: 38px;
    min-height: 38px;

    padding: 0;

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

    border: none;

    border-radius: 50%;

    background: #f5f5f3;

    color: #151719;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;

    overflow: visible;
}


/* -----------------------------------------------------
   GREY BASE CIRCLE
----------------------------------------------------- */

.remove-file::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 1.5px solid #d9d9d6;

    box-sizing: border-box;

}


/* -----------------------------------------------------
   RED PROGRESS RING
----------------------------------------------------- */

.remove-file .progress-ring {

    position: absolute;

    inset: -1px;

    border-radius: 50%;

    background: conic-gradient(
        from 0deg,
        #b3262d var(--progress),
        transparent var(--progress)
    );

    -webkit-mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 2px),
            #000 calc(100% - 2px)
        );

    mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 2px),
            #000 calc(100% - 2px)
        );

    pointer-events: none;
}


/* -----------------------------------------------------
   X
----------------------------------------------------- */

.remove-x {

    position: relative;

    z-index: 3;

    font-size: 20px;

    line-height: 1;

    font-weight: 400;

    color: #151719;

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


/* -----------------------------------------------------
   COMPLETED STATE
----------------------------------------------------- */

.remove-file.upload-complete .progress-ring {

    background: conic-gradient(
        from 0deg,
        #b3262d 0deg,
        #b3262d 360deg
    );
}


.remove-file.upload-complete .remove-x {

    color: #b3262d;
}


/* -----------------------------------------------------
   HOVER
----------------------------------------------------- */

.remove-file:hover {

    background: #ffffff;

    transform: scale(1.05);
}


.remove-file:hover .remove-x {

    color: #b3262d;
}


/* -----------------------------------------------------
   ACTIVE / CLICK
----------------------------------------------------- */

.remove-file:active {

    transform: scale(0.96);
}


/* =====================================================
   SELECTED FILE
   ===================================================== */

.selected-file {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

    padding: 13px 15px;

    margin-top: 8px;

    background: #fafaf9;

    border: 1px solid #e2e2df;

    border-radius: 4px;

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


.selected-file:hover {

    border-color: #d2d2cf;

    background: #ffffff;
}


/* =====================================================
   FILE INFORMATION
   ===================================================== */

.selected-file-info {

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 0;

    flex: 1;
}


.file-number {

    width: 25px;

    height: 25px;

    min-width: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #151719;

    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 600;
}


.file-details {

    display: flex;

    flex-direction: column;

    min-width: 0;

    gap: 2px;
}


.file-name-display {

    display: block;

    max-width: 100%;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 13px;

    font-weight: 600;

    color: #343638;
}


.file-size {

    font-size: 11px;

    color: #858585;
}


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

@media (max-width: 600px) {

    .selected-file {

        padding: 11px 12px;

        gap: 10px;
    }


    .selected-file-info {

        gap: 9px;
    }


    .file-number {

        width: 23px;

        height: 23px;

        min-width: 23px;

        font-size: 10px;
    }


    .file-name-display {

        font-size: 12px;
    }


    .file-size {

        font-size: 10px;
    }


    .remove-file {

        width: 34px;

        height: 34px;

        min-width: 34px;

        min-height: 34px;
    }


    .remove-x {

        font-size: 18px;
    }

}


/* =====================================================
   SUCCESS MESSAGE
   ===================================================== */

.success-message {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 35px;

    padding: 20px 24px;

    background: #f1f9f3;

    border: 1px solid #c8e6ce;

    border-left: 4px solid #2e8b57;

    border-radius: 8px;

    box-shadow:
        0 8px 25px rgba(46, 139, 87, 0.08);
}


/* =====================================================
   SUCCESS ICON
   ===================================================== */

.success-icon {

    width: 44px;

    height: 44px;

    flex: 0 0 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #2e8b57;

    color: #ffffff;

    border-radius: 50%;

    font-size: 25px;

    font-weight: 700;

    line-height: 1;

    box-shadow:
        0 5px 15px rgba(46, 139, 87, 0.20);
}


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

.success-content {

    display: flex;

    flex-direction: column;

    gap: 5px;
}


.success-content strong {

    display: block;

    color: #236b43;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 0.1px;
}


.success-content span {

    display: block;

    color: #587062;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   VERY SMALL MOBILE HEADER
   ========================================================= */

@media (max-width: 400px) {

    .header-inner {

        width:
            calc(100% - 26px);
    }

}


/* =========================================================
   MOBILE ONLY — HERO RED LINE
========================================================= */

@media (max-width: 850px) {

    .quote-hero h1::after {

        width:
            calc(100% - 32px);
        bottom: +5px  
    }

}


/* =========================================================
   MOBILE ONLY — MOVE FORM HEADER RED LINE UP
========================================================= */

@media (max-width: 850px) {

    .quote-form-header h2::after {

        bottom: 47px;
    }

}


/* =========================================================
   DESKTOP ONLY — SCROLL TO EXPLORE
========================================================= */

@media (max-width: 850px) {

    .scroll-explore {

        display: none !important;
    }

}