/*--------------------------------------------------------------
# Calculator Section Styles
--------------------------------------------------------------*/
.calculator-section {
    padding: 40px 0 60px;
}

.calculator-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 73, 159, 0.15);
    overflow: hidden;
}

.calculator-header {
    background: linear-gradient(135deg, #00499f 0%, #012c6d 100%);
    padding: 20px 30px;
}

.calculator-header h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-header h4 i {
    font-size: 28px;
}

.calculator-body {
    padding: 30px;
}

/* Slider Group */
.calc-slider-group {
    margin-bottom: 30px;
}

.calc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 15px;
}

.calc-label i {
    color: #00499f;
    font-size: 20px;
}

.calc-range-container {
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.calc-range {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2eefd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00499f;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 73, 159, 0.4);
    transition: all 0.2s ease;
}

.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: #012c6d;
}

.calc-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00499f;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 73, 159, 0.4);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #7f8c8d;
    margin-top: 8px;
}

.calc-amount-display {
    text-align: center;
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e7f1fd 0%, #f6f9fe 100%);
    border-radius: 8px;
    border: 1px solid #d0e3f7;
}

.calc-amount-value {
    font-size: 32px;
    font-weight: 700;
    color: #00499f;
}

/* Results Section */
.calc-results {
    margin: 30px 0;
    padding: 25px;
    background: #f6f9fe;
    border-radius: 8px;
    transition: opacity 0.4s ease;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.calc-result-item {
    flex: 1;
    min-width: 150px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2eefd;
}

.calc-result-label {
    display: block;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.calc-result-value {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #222222;
}

.calc-result-highlight {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.calc-monthly {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.calc-monthly-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-monthly-label {
    font-size: 16px;
    color: #333333;
}

.calc-monthly-label i {
    font-size: 20px;
}

.calc-monthly-value {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

/* CTA Button */
.calc-cta {
    text-align: center;
    margin: 30px 0 20px;
}

.calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #00499f 0%, #012c6d 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 73, 159, 0.3);
}

.calc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 73, 159, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.calc-btn i {
    font-size: 22px;
}

/* Disclaimer */
.calc-disclaimer {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #00499f;
}

.calc-disclaimer p {
    font-size: 12px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.calc-disclaimer strong {
    color: #444444;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .calculator-body {
        padding: 20px;
    }

    .calc-amount-value {
        font-size: 26px;
    }

    .calc-result-row {
        flex-direction: column;
    }

    .calc-result-item {
        min-width: 100%;
    }

    .calc-monthly-value {
        font-size: 20px;
    }

    .calc-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
}

@media screen and (max-width: 480px) {
    .calculator-header {
        padding: 15px 20px;
    }

    .calculator-header h4 {
        font-size: 18px;
    }

    .calc-amount-value {
        font-size: 22px;
    }

    .calc-results {
        padding: 15px;
    }

    .calc-result-value {
        font-size: 18px;
    }
}