@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Shreelipi';
    src: url('../Fonts/Shreelipi_4672.TTF') format('truetype');
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gelion', sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

/* Header Container Settings */
.header {
    width: 100%;
    position: relative;
    z-index: 100;
}

/* Top thin bar */
.top-bar {
    height: 12px;
    background-color: #333333;
    /* Dark gray border above */
    width: 100%;
}

/* Main header */
.header-main {
    background-color: #fff100;
    /* Vibrant yellow */
    padding: 15px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #000;
}

.logo-placeholder img {
    max-height: 50px;
}

.logo-text {
    display: block;
    font-family: 'Shreelipi', sans-serif;
    transform: skewX(5deg);
}

/* Navigation */
.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Call to Action Button */
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
    /* space between toggle and button if they sit side-by-side */
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
}

/* Toggle active animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.call-btn {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}

/* Pill shape for text */
.call-text {
    border: 1.5px solid #000;
    border-radius: 6px;
    padding: 4px 12px 4px 12px;
    /* Extra padding on left for icon overlap */
    margin-left: 15px;
    /* Space for the icon circle to jut out */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    min-width: 140px;
}

.call-subtitle {
    font-size: 11px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.call-number {
    font-size: 18px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

/* Circle shape for the icon overlapping the border */
.call-icon {
    width: 25px;
    height: 25px;
    border: 1.5px solid #000;
    border-radius: 50%;
    background-color: #fee614;
    /* Match header background */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 2;
}

.call-icon svg {
    width: 14px;
    height: 14px;
    color: #000;
}

/* Hover effects for button */
.call-btn:hover .call-text {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive considerations */
@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        margin-left: auto;
        /* Pushes the call button to the right */
        margin-right: 20px;
        /* Space between call btn and toggle */
    }

    .mobile-toggle {
        display: flex;
        order: 3;
        /* Put toggle on the far right */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        /* Slide in from left */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fee614;
        z-index: 100;
        padding-top: 80px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    /* Let's shrink the logo image if we don't have enough space */
    .logo-placeholder img {
        max-height: 40px;
    }

    .call-btn {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .header-action {
        margin-right: 15px;
        /* slightly less space on mobile */
    }
}

@media (max-width: 480px) {
    .call-btn {
        transform: scale(0.75);
    }

    .logo-placeholder img {
        max-height: 30px;
    }

    .header-action {
        margin-right: 10px;
    }
}

/* ================== Breadcrumb Section ================== */
.breadcrumb-section {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/about-us/WhatsApp-Image-2026-02-19-at-3.42.11-PM.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Ensure items start from left */
    position: relative;
}

.breadcrumb-section .container {
    width: 100%; /* Take full width of its max-width (1280px) */
    display: flex;
    justify-content: flex-start; /* Ensure content inside container is left-aligned */
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff; /* Changed to white for better visibility on dark background */
}

.breadcrumb-title {
    font-family: 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb-nav {
    font-family: 'Gelion', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav span {
    color: #fff;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 12px;
    }
}

/* Contact page hero — theme images/contact_us_banner.png */
/* Contact page hero — image only */
.contact-page-banner {
    display: block;
    width: 100%;
    margin: 16px 0 0;
    padding: 0;
    line-height: 0;
    background: #fff;
    overflow: hidden;
}

.contact-page-banner__img {
    display: block;
    width: 100%;
    height: 500px;
    max-height: 540px;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 768px) {
    .contact-page-banner {
        margin-top: 12px;
    }

    .contact-page-banner__img {
        height: 320px;
        max-height: 360px;
    }
}

@media (max-width: 576px) {
    .contact-page-banner__img {
        height: 260px;
        max-height: 300px;
    }
}

/* ================== Contact page — Get in Touch ================== */
.contact-get-in-touch-section {
    background-color: #ececec;
    padding: 48px 0 56px;
    font-family: 'Gelion', sans-serif;
}

.contact-get-in-touch-frame {
    border: 1px solid #a8a8a8;
    background-color: #f5f5f5;
    padding: 0;
    overflow: hidden;
}

.contact-get-in-touch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 420px;
}

.contact-get-in-touch-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f5f5f5;
    padding: 52px 36px;
    color: #333333;
}

.contact-get-in-touch-title {
    margin: 0 0 12px;
    font-family: 'Gelion', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6b6b;
    line-height: 1.15;
}

.contact-get-in-touch-accent {
    display: block;
    width: 92px;
    height: 5px;
    margin: 0 auto 20px;
    background-color: #fee614;
    border: none;
}

.contact-get-in-touch-lede {
    margin: 0;
    max-width: 352px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Gelion', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #333333;
    letter-spacing: 0.12em;
    word-spacing: normal;
    text-transform: none;
}

.contact-get-in-touch-form-col {
    min-width: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 52px 44px 52px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background-color: #f5f5f5;
}

/* Get in Touch form — match mockup (lighter fields than dialog PARTNER INQUIRY) */
.contact-get-in-touch-form.partner-inquiry-form {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin: 0;
}

.contact-get-in-touch-form .partner-inquiry-input,
.contact-get-in-touch-form .partner-inquiry-textarea {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 11px 20px;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    font-family: 'Gelion', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #333333;
    outline: none;
    border-radius: 0;
    line-height: 1.35;
    min-height: 46px;
}

.contact-get-in-touch-form .partner-inquiry-textarea {
    min-height: 128px;
    resize: vertical;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.45;
}

.contact-get-in-touch-form .partner-inquiry-input::placeholder {
    color: #b8b8b8;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 1;
}

.contact-get-in-touch-form .partner-inquiry-textarea::placeholder {
    color: #b8b8b8;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    opacity: 1;
}

.contact-get-in-touch-form .partner-inquiry-submit {
    width: 100%;
    margin-top: 4px;
    padding: 11px 20px;
    min-height: 48px;
    border: none;
    background-color: #fee614;
    color: #000000;
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-get-in-touch-form .partner-inquiry-submit:hover {
    background-color: #ecd413;
}

/* Dialog / partner block — keep original textarea rules */
.partner-inquiry-textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.4;
    text-transform: none;
}

.contact-dialog .partner-inquiry-textarea::placeholder,
.partner-network-section:not(.contact-get-in-touch-section) .partner-inquiry-textarea::placeholder {
    text-transform: none;
    letter-spacing: 0.02em;
}

@media (max-width: 992px) {
    .contact-get-in-touch-section {
        padding: 36px 0 44px;
    }

    .contact-get-in-touch-frame {
        padding: 0;
    }

    .contact-get-in-touch-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-get-in-touch-copy {
        order: 1;
        padding: 36px 24px 32px;
    }

    .contact-get-in-touch-form-col {
        order: 2;
        max-width: 100%;
        padding: 28px 24px 36px;
    }

    .contact-get-in-touch-title {
        font-size: 22px;
    }

    .contact-get-in-touch-accent {
        width: 80px;
        margin-bottom: 16px;
    }

    .contact-get-in-touch-lede {
        font-size: 15px;
        max-width: 320px;
        line-height: 1.65;
        letter-spacing: 0.1em;
    }

    .contact-get-in-touch-grid {
        min-height: 0;
    }

    .contact-get-in-touch-form .partner-inquiry-input,
    .contact-get-in-touch-form .partner-inquiry-textarea {
        font-size: 16px;
        padding: 10px 16px;
    }

    .contact-get-in-touch-form .partner-inquiry-input::placeholder,
    .contact-get-in-touch-form .partner-inquiry-textarea::placeholder {
        font-size: 15px;
    }

    .contact-get-in-touch-form .partner-inquiry-submit {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .contact-get-in-touch-section {
        padding: 28px 0 36px;
    }

    .contact-get-in-touch-frame {
        padding: 0;
    }

    .contact-get-in-touch-grid {
        gap: 0;
    }

    .contact-get-in-touch-copy {
        padding: 28px 16px 24px;
    }

    .contact-get-in-touch-form-col {
        padding: 24px 16px 28px;
    }

    .contact-get-in-touch-title {
        font-size: 20px;
    }

    .contact-get-in-touch-accent {
        width: 72px;
        height: 4px;
        margin-bottom: 14px;
    }

    .contact-get-in-touch-lede {
        font-size: 14px;
        max-width: 280px;
    }
}

/* ================== Partner network (distribution) ================== */
.contact-page-container {
    display: block;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 992px) {
    .contact-page-container {
        padding: 0 10px;
    }
}

.partner-network-section {
    background-color: #ffffff;
    padding: 48px 0 56px;
    font-family: 'Gelion', sans-serif;
    color: #333333;
}

.partner-network-frame {
    position: relative;
    border: 4px solid #fee614;
    background-color: #ffffff;
    padding: 0 60px;
    padding-bottom: 60px;
}

.partner-network-badge {
    position: relative;
    display: inline-block;
    margin: 0 0 28px 0;
    max-width: 100%;
}

.partner-network-badge-svg {
    display: block;
    width: min(100%, 320px);
    height: auto;
}

.partner-network-badge-text {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    pointer-events: none;
}

.partner-network-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.0fr) minmax(0, 0.8fr) minmax(0, 1.3fr);
    gap: 0;
}

.partner-network-copy {
    text-align: left;
}

.partner-network-heading {
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 54px;
    color: #6B6B6B;
    margin: 0 0 18px;
    max-width: 15ch;
}

.partner-network-lede {
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.2px;
    color: #6B6B6B;
    margin: 0;
    max-width: 32ch;
}

.partner-network-visual {
    position: relative;
    z-index: 1;
    margin-left: -12px;
    margin-right: -12px;
    align-self: flex-end;
    margin-bottom: -50px;
}

.partner-network-visual img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.partner-network-form-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-inquiry-title {
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: 32.38px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6B6B6B;
    text-align: center;
    width: 100%;
    margin: 0 0 14px;
}

.partner-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}
@media (max-width: 992px) {
    .partner-inquiry-form {
        margin-bottom: 24px;
    }
}

.partner-inquiry-input {
    width: 100%;
    padding: 2px 25px;
    border: 1px solid #6B6B6B;
    background-color: #ffffff;
    font-family: 'Gelion', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #6B6B6B;
    outline: none;
    border-radius: 0;
}
@media (max-width: 992px) {
    .partner-inquiry-input {
        font-size: 21px;
    }
}

.partner-inquiry-input::placeholder {
    color: #b0b0b0;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}


.partner-inquiry-submit {
    width: 100%;
    margin-top: 6px;
    padding: 6px 20px;
    border: none;
    background-color: #fee614;
    color: #000000;
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.partner-inquiry-submit:hover {
    background-color: #ecd413;
}


.partner-network-corner-accent {
    position: absolute;
    left: 60px;
    bottom: 0;
    width: 70px;
    height: 20px;
    background-color: #fee614;
}
@media (max-width: 992px) {
    .partner-network-corner-accent {
        display: none;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .partner-network-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .partner-network-visual {
        grid-column: 1 / -1;
        order: 2;
        max-width: 480px;
        margin: 0 auto;
    }

    .partner-network-copy {
        order: 1;
    }

    .partner-network-form-col {
        order: 3;
        grid-column: 1 / -1;
    }

    .partner-network-visual {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .partner-network-section {
        padding: 32px 0 40px;
    }

    .partner-network-frame {
        padding: 0 8px;
    }

    .partner-network-heading {
        max-width: none;
        font-size: 50px;
    }

    .partner-network-lede {
        max-width: none;
    }

    .partner-network-grid {
        grid-template-columns: 1fr;
    }

    .partner-network-visual {
        grid-column: auto;
    }

    .partner-network-form-col {
        grid-column: auto;
    }
}

/* ================== Request a quote (contact) ================== */
.quote-request-section {
    background-color: #ffffff;
    padding: 24px 0 56px;
    font-family: 'Gelion', sans-serif;
    color: #333333;
}

.quote-request-frame {
    position: relative;
    border: 4px solid #fee614;
    background-color: #ffffff;
    padding: 0 60px;
    padding-bottom: 60px;
}

.quote-request-badge {
    position: relative;
    display: inline-block;
    margin: 0 0 28px 0;
    max-width: 100%;
}

.quote-request-badge-svg {
    display: block;
    width: min(100%, 360px);
    height: auto;
}

.quote-request-badge-text {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2.2vw, 21px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
    white-space: nowrap;
    pointer-events: none;
}

.quote-request-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 0 40px;
    align-items: start;
}

.quote-request-aside {
    min-width: 0;
}

.quote-request-intro {
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 39.2px;
    color: #6B6B6B;
    margin: 0 0 28px;
    max-width: 36ch;
}

.quote-request-contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
}

.quote-contact-text,
.quote-contact-link {
    font-family: 'Gelion', sans-serif;
    font-size: 28px;
    line-height: 1.4;
    color: #6B6B6B;
}
@media (max-width: 992px) {
    .quote-contact-text,
    .quote-contact-link,
    .quote-request-address {
        font-size: 18px!important;
    }
}

.quote-contact-link {
    text-decoration: none;
}

.quote-contact-link:hover {
    text-decoration: underline;
}

.quote-request-address {
    font-family: 'Gelion', sans-serif;
    font-size: 28px;
    line-height: 34.03px;
    color: #6B6B6B;
    font-style: normal;
    margin: 8px 0 0 0;
    max-width: 32ch;
    padding-left: 30px;
}

.quote-request-form-col {
    min-width: 0;
    max-width: 100%;
}

.quote-request-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.quote-form-field-col {
    min-width: 0;
    max-width: 100%;
}

.quote-form-row-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px min(28px, 4vw);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.quote-field-label {
    display: block;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6B6B6B;
    margin-bottom: 8px;
}

.quote-form-control {
    width: 100%;
    padding: 2px 16px;
    border: 1px solid #6B6B6B;
    background-color: #ffffff;
    font-family: 'Gelion', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #6B6B6B;
    outline: none;
    border-radius: 4px;
    min-height: 44px;
}

/* Model + quantity: bordered shell with #808080 suffix + white chevrons */
.quote-form-control-affix {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    overflow: hidden;
    background-color: #ffffff;
    min-height: 44px;
    box-sizing: border-box;
}

.quote-form-control-affix:focus-within {
    box-shadow: 0 0 0 1px #808080;
}

.quote-form-control-el {
    flex: 1 1 0%;
    min-width: 0;
    max-width: 100%;
    border: none;
    border-radius: 0;
    padding: 2px 14px;
    background-color: #ffffff;
    font-family: 'Gelion', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #6B6B6B;
    outline: none;
    min-height: 44px;
    box-sizing: border-box;
}

.quote-form-select.quote-form-control-el {
    appearance: none;
    cursor: pointer;
}

.quote-form-number.quote-form-control-el {
    -moz-appearance: textfield;
}

.quote-form-number.quote-form-control-el::-webkit-outer-spin-button,
.quote-form-number.quote-form-control-el::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quote-form-select option {
    color: #333333;
}

.quote-input-suffix {
    flex-shrink: 0;
    width: 44px;
    background-color: #808080;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    align-self: stretch;
}

.quote-input-suffix-arrows {
    display: block;
    pointer-events: none;
}

.quote-input-suffix--stepper .quote-suffix-step-targets {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.quote-step-btn {
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.quote-step-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: -2px;
}

.quote-form-textarea {
    height: 140px;
    resize: vertical;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.45;
}

.quote-form-textarea::placeholder {
    color: #6B6B6B;
    font-family: 'Gelion', sans-serif;
    font-size: 18px;
}

.quote-form-block {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.quote-form-section-banner {
    display: inline-block;
    align-self: flex-start;
    background-color: #fee614;
    color: #6B6B6B;
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 18px;
}

.quote-addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 20px;
    margin-top: 20px;
}

.quote-addon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Gelion', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #6B6B6B;
    position: relative;
    padding-left: 30px;
    min-height: 26px;
}

.quote-addon-checkbox {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1px solid #6B6B6B;
    border-radius: 4px;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.quote-addon-item input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.quote-addon-item input:focus-visible + .quote-addon-checkbox {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

.quote-addon-item input:checked + .quote-addon-checkbox {
    background-color: #fee614;
    border-color: #000000;
}

.quote-addon-item input:checked + .quote-addon-checkbox::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.quote-request-submit {
    width: 100%;
    margin-top: 4px;
    padding: 6px 20px;
    border: none;
    background-color: #fee614;
    color: #000000;
    font-family: 'Gelion', sans-serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.quote-request-submit:hover {
    background-color: #ecd413;
}

.quote-request-corner-accent {
    position: absolute;
    left: 60px;
    bottom: 0;
    width: 70px;
    height: 20px;
    background-color: #fee614;
}
@media (max-width: 992px) {
    .quote-request-corner-accent {
        display: none;
    }
}

@media (max-width: 992px) {
    .quote-request-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .quote-request-intro,
    .quote-request-address {
        max-width: none;
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .quote-request-section {
        padding: 16px 0 40px;
    }

    .quote-request-frame {
        padding: 0 8px;
        padding-bottom: 24px;
    }

    .quote-form-row-fields {
        grid-template-columns: 1fr;
    }

    .quote-addons-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quote-request-corner-accent {
        left: 30px;
    }
}

@media (max-width: 480px) {
    .quote-addons-grid {
        grid-template-columns: 1fr;
    }
}

/* ================== Footer Section ================== */
.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
    /* We don't need margin-top, because upper sections have padding */
}

.footer-top {
    background-color: #fee614;
    padding: 40px 0 50px 0;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.relative-container {
    position: relative;
}

/* Catalogue Button */
.catalogue-btn {
    position: absolute;
    top: -60px;
    /* Touch the very top of the yellow */
    right: 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.catalogue-btn:hover {
    background-color: #333;
}

.download-icon {
    width: 24px;
    height: 24px;
}

/* Footer Grid */
.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Stretch columns to same height */
    gap: 40px;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col-content {
    margin-top: auto;
    /* Push content to bottom */
    position: relative;
    padding: 0;
}

/* Column 1 */
.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin: 0 auto 15px auto;
    /* Centered */
    display: block;
}

.col-about p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
}

/* Column 2 */
.col-contact {
    padding: 0 40px;
}

.col-contact .footer-col-content::before,
.col-contact .footer-col-content::after {
    content: "";
    position: absolute;
    top: 10px;
    /* Added gap at top */
    bottom: 10px;
    /* Added gap at bottom */
    width: 1px;
    background-color: #000;
}

.col-contact .footer-col-content::before {
    left: -40px;
}

.col-contact .footer-col-content::after {
    right: -40px;
}

.footer-sankalp-logo {
    max-width: 180px;
    margin: 0 auto 15px auto;
    /* Centered */
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-icon {
    margin-top: 2px;
}

.mt-2 {
    margin-top: 0px;
}

.mt-3 {
    margin-top: 0px;
}

/* Column 3 */
.col-links {
    padding-left: 30px;
}

.footer-links-title {
    background-color: #808080;
    color: #fee614;
    display: inline-block;
    /* Full width bar */
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col-links li {
    margin-bottom: 6px;
}

.col-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.col-links a:hover {
    opacity: 0.6;
}

/* Back To Top Button */
.back-to-top {
    position: absolute;
    bottom: -20px;
    /* Overlap the grey bar */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fee614;
    border: none;
    padding: 12px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
    white-space: nowrap;
}

.back-to-top:hover {
    background-color: #333;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #DDE1E3;
    /* grey */
    padding: 25px 0 15px 0;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .col-about {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-contact {
        border-left: none;
        border-right: none;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 30px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .footer-col-content {
        margin-top: 0;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .col-links {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .catalogue-btn {
        position: static;
        display: inline-flex;
        margin: 0 auto 30px 0;
    }

    .footer-top {
        padding: 40px 0 60px 0;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        max-width: 170px;
    }

    .catalogue-btn {
        padding: 10px 20px;
        font-size: 10px;
        margin: 0 auto 20px 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .back-to-top {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 140px;
    }

    .catalogue-btn {
        padding: 8px 16px;
        font-size: 9px;
    }

    .footer-sankalp-logo {
        max-width: 140px;
    }

    .back-to-top {
        padding: 8px 20px;
        font-size: 10px;
        bottom: -15px;
    }
}

/* Contact Page Specific Styles */

/* Dealer Section */
.dealer-section {
    padding: 80px 0;
    text-align: center;
}

.dealer-section h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.dealer-section p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Info Cards Section */
.info-card-section {
    background-color: #FFF100;
    padding: 80px 0;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-card-icon {
    background-color: #FFF100;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon img {
    width: 30px;
    height: 30px;
}

.info-card-content h3 {
    font-family: 'Gotham', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card-content p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    line-height: 1.6;
}

/* Get In Touch Form Section */
.get-in-touch-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.get-in-touch-header {
    text-align: center;
    margin-bottom: 50px;
}

.get-in-touch-header .subtitle {
    color: #E53935; /* Red color from image */
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.get-in-touch-header h2 {
    font-family: 'Gotham', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.get-in-touch-header p {
    font-family: 'Gelion', sans-serif;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: 'Gelion', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #FFF100;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

.form-submit-btn {
    background-color: #FFF100;
    color: #000;
    border: none;
    padding: 18px 50px;
    border-radius: 30px;
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    justify-self: center;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background-color: #ffe000;
}

/* Google Map Section */
.google-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .info-card-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer parity override: match css/style.css exactly */
.main-footer { width: 100%; font-family: 'Gelion', sans-serif; position: relative; }
.footer-top { background-color: #fee614; padding: 40px 0 50px; position: relative; }
.footer-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; position: relative; }
.relative-container { position: relative; }
.catalogue-btn { position: absolute; top: -77px; right: 40px; background-color: #0D0C0F; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 15px; padding: 6px 10px; font-size: 11px; font-weight: 700; letter-spacing: 1px; line-height: 1.3; }
.catalogue-btn:hover { background-color: #333; }
.footer-columns { display: flex; justify-content: space-between; align-items: stretch; gap: 40px; margin-top: 20px; }
.footer-col { flex: 1; display: flex; flex-direction: column; }
.footer-col-content { margin-top: auto; position: relative; padding: 0; }
.col-about { padding-right: 30px; }
.footer-logo { max-width: 220px; margin: 0 auto 15px; display: block; }
.col-about p { font-size: 20px; line-height: 1.4; color: #000; font-weight: 500; margin: 0; letter-spacing: 1px; }
.col-contact { padding: 0 40px; }
.col-contact .footer-col-content::before, .col-contact .footer-col-content::after { content: ""; position: absolute; top: 10px; bottom: 10px; width: 1px; background-color: #000; }
.col-contact .footer-col-content::before { left: -40px; }
.col-contact .footer-col-content::after { right: -40px; }
.footer-sankalp-logo { max-width: 180px; margin: 0 auto 15px; align-self: center; display: block; }
.contact-item { display: flex; align-items: center; gap: 5px; font-size: 21px; line-height: 1.3; color: #000; font-weight: 500; margin-bottom: 2px; text-align: center; justify-content: center; }
.mt-2 { margin-top: 0px; }
.mt-3 { margin-top: 13px; }
.col-links { padding-left: 30px; }
.footer-links-title { background-color: #808080; color: #fee614; display: inline-block; padding: 6px 20px; font-size: 14px; letter-spacing: 1px; margin: 0 0 15px; font-weight: 600; }
.col-links ul { list-style: none; }
.col-links a { color: #000; text-decoration: none; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; }
.footer-col-quicklinks { padding-left: 20px; padding-right: 10px; align-self: flex-end; }
.footer-col-quicklinks .footer-col-content { margin-top: 0; display: flex; flex-direction: column; align-items: center; max-width: 270px; }
.footer-quick-title { margin: 0 0 18px; padding: 0; background: none; color: #000; font-size: 22px; font-weight: 400; letter-spacing: 0.08em; line-height: 1.1; }
.footer-quick-buttons { display: flex; flex-direction: column; gap: 7px; margin-bottom: 22px; width: 100%; }
.footer-quick-btn { display: inline-block; text-align: center; text-decoration: none; color: #000; font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border: 2px solid #000; border-radius: 9999px; background: transparent; box-shadow: none; }
.footer-col-quicklinks .footer-quick-btn:hover, .footer-col-quicklinks .footer-quick-btn:focus-visible { color: #000; background: transparent; text-decoration: none; box-shadow: none; transform: none; }
.footer-col-quicklinks .footer-quick-btn:focus-visible { outline: 2px solid #000; outline-offset: 3px; }
.footer-social-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; }
.footer-social-link { width: 44px; height: 44px; min-width: 44px; min-height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; }
.footer-social-link svg { display: block; }
.back-to-top { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); background-color: #000; color: #fee614; border: none; padding: 12px 40px; font-size: 12px; font-weight: 700; letter-spacing: 1px; cursor: pointer; z-index: 10; }
.footer-bottom { background-color: #dde1e3; padding: 25px 0 15px; }
.footer-bottom p { margin: 0; font-size: 12px; color: #666; font-weight: 500; }

@media (max-width: 992px) {
    .catalogue-btn { top: 0px; }
    .footer-col-quicklinks { padding-left: 0; padding-right: 0; align-self: center; width: 100%; }
    .footer-col-quicklinks .footer-col-content { max-width: 360px; width: 100%; margin-left: auto; margin-right: auto; text-align: center; }
    .footer-quick-buttons { width: 100%; }
    .footer-quick-btn { width: 100%; }
    .footer-columns { flex-direction: column; text-align: center; gap: 24px; }
    .col-contact { padding: 0 16px; }
    .col-contact .footer-col-content::before, .col-contact .footer-col-content::after { display: none; }
    .catalogue-btn { position: relative; left: 50%; transform: translateX(-50%); display: inline-flex; width: auto; max-width: max-content; margin: 0 0 30px; }
    .col-about p { font-size: 16px; letter-spacing: 0.4px; }
    .contact-item { font-size: 16px; line-height: 1.35; }
    .footer-quick-title { font-size: 18px; margin-bottom: 12px; }
    .footer-quick-buttons { margin-bottom: 14px; }
    .footer-quick-btn { font-size: 12px; padding: 7px 12px; }
    .footer-social-link { width: 40px; height: 40px; min-width: 40px; min-height: 40px; }
    .footer-social-link svg { width: 22px; height: 22px; }
}

@media (max-width: 768px) {
    .footer-container { padding: 0 20px; }
    .footer-logo { max-width: 170px; }
    .catalogue-btn { padding: 10px 20px; font-size: 10px; margin: 0 auto 20px 0; }
    .col-about p { font-size: 14px; }
    .contact-item { font-size: 14px; gap: 6px; }
    .footer-quick-title { font-size: 16px; letter-spacing: 0.05em; }
    .footer-col-quicklinks .footer-col-content { max-width: 320px; }
    .footer-quick-btn { font-size: 11px; padding: 6px 10px; }
    .footer-social-row { gap: 9px; }
    .footer-social-link { width: 36px; height: 36px; min-width: 36px; min-height: 36px; }
    .footer-social-link svg { width: 20px; height: 20px; }
    .back-to-top { padding: 10px 30px; font-size: 11px; }
}

@media (max-width: 480px) {
    .footer-logo { max-width: 140px; }
    .catalogue-btn { padding: 8px 16px; font-size: 9px; }
    .footer-sankalp-logo { max-width: 140px; }
    .footer-top { padding: 28px 0 44px; }
    .contact-item { font-size: 12px; line-height: 1.3; }
    .footer-quick-title { font-size: 15px; }
    .footer-col-quicklinks .footer-col-content { max-width: 280px; }
    .footer-quick-btn { font-size: 10px; letter-spacing: 0.04em; }
    .footer-social-link { width: 32px; height: 32px; min-width: 32px; min-height: 32px; }
    .footer-social-link svg { width: 18px; height: 18px; }
    .back-to-top { padding: 8px 20px; font-size: 10px; bottom: -15px; }
}
