/* =======================
   QUOTE PAGE
======================= */

.row-quote {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

section.quote {
    padding: 140px 0 100px 0;
    background:
        linear-gradient(to bottom,
            var(--var-blue-dark-tech),
            var(--var-blue-lighter-dark-tech)),
        radial-gradient(800px 400px at 50% 0%, rgba(255, 255, 255, 0.04), transparent);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--var-text-white);
}

/* =======================
   FORM WRAPPER
======================= */
.quote-wrapper {
    width: 100%;
}

.quote-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    padding: 36px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-top: 3px solid var(--var-blue-primary);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18);
}

/* =======================
   FORM SECTIONS
======================= */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.form-section:first-child {
    padding-top: 0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

/* =======================
   LABEL
======================= */
.label {
    font-size: 12px;
    font-weight: 700;
    color: #6b7a99;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* =======================
   INPUTS
======================= */
.quote-form input,
.quote-form select,
.quote-form textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(0, 0, 0, 0.09);
    font-size: 14.5px;
    background: #f9fafb;
    color: #0B1220;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
    border-color: rgba(31, 75, 153, 0.3);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--var-blue-primary);
    box-shadow: 0 0 0 3px rgba(31, 75, 153, 0.1);
    background: #fff;
}

.quote-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* =======================
   SERVICE INFO BOX
======================= */
.service-info {
    display: none;
    border-left: 3px solid var(--var-blue-primary);
    background: #f4f7fd;
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 13.5px;
    color: #1e2f4d;
    line-height: 1.75;
}

/* =======================
   ADDONS
======================= */
.addons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addons label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9fafb;
    color: #0B1220;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 11px 14px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.addons label:hover {
    background: #eef3ff;
    border-color: rgba(31, 75, 153, 0.25);
}

.addons label:has(input:checked) {
    background: rgba(31, 75, 153, 0.06);
    border-color: rgba(31, 75, 153, 0.35);
}

.addons input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    min-width: 17px;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.addons input[type="checkbox"]:checked {
    background: var(--var-blue-primary);
    border-color: var(--var-blue-primary);
}

.addons input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.addons label span {
    font-size: 14px;
    font-weight: 500;
    color: #0B1220;
}

/* =======================
   PRICE BOX
======================= */
.price-box {
    display: none !important;
    padding: 16px 20px;
    border-radius: 10px;
    background: var(--var-blue-primary);
    color: white;
    text-align: center;
}

.price-box p {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.price-box h3 {
    font-size: 20px;
    font-weight: 700;
}

/* =======================
   SUBMIT BUTTON
======================= */
.quote-sec-btn {
    width: 100%;
    padding: 14px;
    border-radius: 9px;
    background: var(--var-blue-primary);
    border: 1.8px solid var(--var-blue-primary);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-sec-btn:hover {
    background: #193e80;
    border-color: #193e80;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(31, 75, 153, 0.35);
}

.quote-sec-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* =======================
   GRID
======================= */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* =======================
   ADDON INFO
======================= */
.addon-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.addon-card {
    border-left: 3px solid var(--var-blue-secondary);
    background: #f4f7fd;
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 13.5px;
    color: #1e2f4d;
    line-height: 1.75;
}

.addon-card strong {
    display: block;
    margin-bottom: 4px;
    color: #0B1220;
}

.addon-note {
    font-size: 12.5px;
    color: #6b7a99;
}

/* =======================
   RESPONSIVE
======================= */
@media screen and (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    section.quote {
        padding: 60px 0;
    }

    .quote-form {
        padding: 24px 20px;
    }
}
