/* ============================================
   QUOTE REQUEST FORM
   ============================================ */
.inner_banner {
	background-position: 0 55%;
}
.inner_bnr_cont h2 {
	display: none;
}
.inner_banner:before {
	background: none;
}
.quote-form-section {
    padding: 80px 0 100px;
}

.quote-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-form-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #131313;
    margin: 0 0 20px;
}

.quote-form-desc {
    font-size: 18px;
    color: rgba(19, 19, 19, 0.7);
    line-height: 1.6;
    margin: 0 0 50px;
    font-weight: 300;
}

/* Section headings */
.form-section-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #131313;
    margin: 50px 0 30px;
    padding: 0;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

/* 2-column row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.form-row.notes {
    grid-template-columns: 1fr;
}

.form-col {
    display: flex;
    flex-direction: column;
}

/* Labels */
.rota-quote-form label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(19, 19, 19, 0.45);
    margin-bottom: 8px;
}

/* Input fields — underline style */
.rota-quote-form input[type="text"],
.rota-quote-form input[type="email"],
.rota-quote-form input[type="tel"],
.rota-quote-form textarea,
.rota-quote-form select {
    border: none;
    border-bottom: 1px solid #cccccc;
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    box-shadow: none;
    font-size: 16px;
    color: #131313;
    outline: none;
    width: 100%;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.rota-quote-form input:focus,
.rota-quote-form textarea:focus,
.rota-quote-form select:focus {
    border-bottom-color: #1a1a8c;
}

/* File upload area */
.form-upload-area {
    position: relative;
    border: 2px dashed #cccccc;
    border-radius: 0;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    margin-bottom: 40px;
}

.form-upload-area:hover,
.form-upload-area.is-dragover {
    border-color: #1a1a8c;
    background-color: #f8f8ff;
}

.form-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.form-upload-content {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-upload-content p {
    font-size: 16px;
    color: rgba(19, 19, 19, 0.5);
    margin: 0;
}

.upload-browse {
    color: #1B81B5;
    text-decoration: none;
    font-weight: 500;
}

.form-file-names {
    margin-top: 10px;
    font-size: 14px;
    color: #1B81B5;
    pointer-events: none;
}

/* Submit button */
.quote-submit-btn {
    background-color: #1B81B5;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 40px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: inherit;
}

.quote-submit-btn:hover {
    background-color: #1276A9;
}

/* Success message */
.quote-success-message {
    text-align: center;
    padding: 60px 20px;
}

.quote-success-message h2 {
    font-size: 32px;
    font-weight: 700;
    color: #131313;
    margin: 0 0 15px;
	text-transform: uppercase;
}

.quote-success-message p {
    font-size: 18px;
    color: rgba(19, 19, 19, 0.7);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
	font-weight: 300;
}

/* ---- PRODUCT QUOTE REQUEST --- */
.quote-products-table { width: 100%; border-collapse: collapse; margin: 0 0 10px; }
.quote-products-table th { text-align: left; font-size: 14px; padding: 10px 12px; border-bottom: 2px solid #e3e3e3; }
.quote-products-table td { padding: 12px; border-bottom: 1px solid #eee; vertical-align: middle; }
.quote-products-table .col-qty { width: 120px; }
.quote-products-table .col-remove { width: 50px; text-align: right; }
.quote-qty-input { width: 72px; padding: 6px 8px; border: 1px solid #ccc; border-radius: 4px; }
.quote-remove-btn { background: none; border: none; font-size: 22px; line-height: 1; color: #c0392b; cursor: pointer; padding: 0 6px; }
.quote-remove-btn:hover { color: #e74c3c; }
.quote-empty-message { padding: 16px; background: #f7f7f7; border-radius: 6px; }
.form-col-full { width: 100%; flex: 0 0 100%; }
#rotaQuoteForm textarea { width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; }

.quote-table-actions { margin: 4px 0 14px; }
.quote-update-btn { background: #1B81B5; color: #fff; border: none; border-radius: 0; padding: 8px 16px; font-size: 13px; cursor: pointer; }
.quote-update-btn:disabled { background: #cfd8dc; cursor: not-allowed; }
.quote-updated-notice { padding: 12px 16px; background: #e7f4ea; border: 1px solid #b6dfc1; border-radius: 6px; margin-bottom: 16px; color: #1f6b34; }
.quote-empty-message a {
	color: #1B81B5;
}

/* Responsive */
@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .quote-form-title {
        font-size: 24px;
    }

    .quote-form-desc {
        font-size: 16px;
    }

    .quote-form-section {
        padding: 50px 0 70px;
    }
}
