.estimate-section {
    background: #e9f2f7;
    padding: 70px 0 40px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.estimate-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.estimate-title span {
    color: #158f8f;
}

.estimate-subtitle {
    font-size: 16px;
    color: #333;
    margin-bottom: 60px;
}

.form-label-est {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
    text-align: left;
}

.form-control-est {
    width: 100%;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 16px;
    transition: 0.3s ease;
}

.form-control-est:focus {
    border-color: #158f8f;
    box-shadow: 0 0 0 3px rgba(21, 143, 143, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .estimate-title {
        font-size: 32px;
    }
    .estimate-subtitle {
        font-size: 14px;
    }
}









.primary-section {
    background: #e9f2f7;
    padding: 40px 0 50px;
    font-family: 'Outfit', sans-serif;
}

.primary-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.primary-title span {
    color: #158f8f;
}

/* Inputs already styled using .form-control-est */






.primary-product-section {
    background: #e9f2f7;
    padding: 50px 0;
}

.sub-info {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #444;
}

/* Reuse same inputs: form-control-est + form-label-est */

@media (max-width: 768px) {
    .primary-product-section .col-lg-4,
    .primary-product-section .col-lg-6 {
        margin-bottom: 15px;
    }
}







.disclaimer-section {
    background: #e9f2f7;
    padding: 60px 0 80px;
}

.disclaimer-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.disclaimer-title span {
    color: #0e8f8e;
}

.disclaimer-text {
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 26px;
    color: #444;
}

/* Buttons */
.form-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 40px;
}

.btn-cancel {
    background: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}

.btn-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .form-buttons {
        justify-content: center;
        margin-top: 30px;
    }
}
