/* --- Page Banner --- */

.page-banner {
    background-color: #454646;
    background-image: url('assets/img/backgrounds/quote-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 110px 0 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12,10,12,0.62);
}

.page-banner__content {
    position: relative;
    z-index: 2;
}

.page-banner__title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-banner__title span {
    color: #b0ce5a;
}

.breadcrumb-wrap {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}

.breadcrumb-wrap li {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

.breadcrumb-wrap li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.breadcrumb-wrap li a:hover {
    color: #b0ce5a;
}

.breadcrumb-wrap li+li::before {
    content: '›';
    margin-right: 8px;
}

/* --- Intro strip --- */

.rfq-intro {
    background: #fff;
    padding: 70px 0 50px;
}

.rfq-intro .highlight {
    color: #b0ce5a;
}

/* --- Process steps --- */

.rfq-steps {
    background: #f5f5f5;
    padding: 60px 0;
}

.step-item {
    text-align: center;
    padding: 0 16px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #454646;
    color: #b0ce5a;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-item h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #454646;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.step-arrow {
    font-size: 28px;
    color: #b0ce5a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 12px;
}

/* --- RFQ Form --- */

.rfq-form-area {
    background: #fff;
    padding: 80px 0;
}

.rfq-form .form-control {
    border: 1px solid #dcdfdf;
    border-radius: 0;
    padding: 12px 16px;
    font-size: 14px;
    color: #454646;
    background: #f9f9f9;
    height: auto;
}

.rfq-form .form-control:focus {
    border-color: #b0ce5a;
    box-shadow: none;
    background: #fff;
}

.rfq-form label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #454646;
    margin-bottom: 6px;
}

.rfq-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.rfq-form .form-group {
    margin-bottom: 22px;
}

.rfq-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23454646' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.rfq-form .form-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b0ce5a;
    border-bottom: 2px solid #b0ce5a;
    padding-bottom: 8px;
    margin-bottom: 24px;
    margin-top: 36px;
}

.rfq-form .form-section-title:first-child {
    margin-top: 0;
}

.form-submit-btn {
    background: #b0ce5a;
    color: #454646;
    border: 2px solid #b0ce5a;
    padding: 15px 48px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.form-submit-btn:hover {
    background: #454646;
    border-color: #454646;
    color: #fff;
}

/* file upload */

.file-upload-label {
    display: block;
    border: 2px dashed #dcdfdf;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

.file-upload-label:hover {
    border-color: #b0ce5a;
}

.file-upload-label i {
    font-size: 32px;
    color: #b0ce5a;
    display: block;
    margin-bottom: 10px;
}

.file-upload-label span {
    font-size: 13px;
    color: #555;
    display: block;
    line-height: 1.6;
}

.file-upload-label small {
    font-size: 11px;
    color: #888;
}

#rfq-files {
    display: none;
}

/* checkbox group */

.capability-checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.capability-checkbox-group label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.capability-checkbox-group input[type=checkbox] {
    width: 16px;
    height: 16px;
    accent-color: #b0ce5a;
    flex-shrink: 0;
}

/* --- Sidebar --- */

.rfq-sidebar {
    padding-left: 30px;
}

.sidebar-block {
    background: #f5f5f5;
    padding: 30px;
    margin-bottom: 30px;
    border-top: 4px solid #b0ce5a;
}

.sidebar-block h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #454646;
    margin-bottom: 16px;
}

.sidebar-block p {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 0;
}

.sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-block ul li {
    font-size: 13px;
    color: #555;
    padding: 7px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sidebar-block ul li:last-child {
    border-bottom: none;
}

.sidebar-block ul li i {
    color: #b0ce5a;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sidebar-contact-btn {
    display: block;
    background: #454646;
    color: #fff;
    text-align: center;
    padding: 13px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 18px;
    transition: background 0.2s;
}

.sidebar-contact-btn:hover {
    background: #b0ce5a;
    color: #454646;
    text-decoration: none;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.cert-badge {
    background: #454646;
    color: #b0ce5a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
}

/* --- CTA Strip --- */

.rfq-cta-strip {
    background: #454646;
    padding: 60px 0;
}

.rfq-cta-strip h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.rfq-cta-strip p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-bottom: 0;
}

.rfq-cta-strip .ht-btn {
    margin-top: 30px;
}

@media (max-width:991px) {

     {
        padding-left: 0;
        margin-top: 50px;
    }

     {
        grid-template-columns: 1fr;
    }

     {
        display: none;
    }
}
