/* --- CALCULATOR PAGE CSS --- */

.calculator-page-section {
    background-color: #ffffff;
}

/* Left Side Inputs */
.calc-input-card {
    background-color: #f4f7f9; /* Very soft slate blue */
    border: 1px solid #e2e8f0;
}

.calc-form-input {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #0c0e1b;
}
.calc-form-input:focus {
    border-color: #20b038;
    box-shadow: 0 0 0 0.25rem rgba(32, 176, 56, 0.15);
}

/* Floating Bill Value Display */
.floating-bill-value {
    display: inline-block;
    background-color: #0c0e1b;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}



/* Right Side Outputs */
.calc-output-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0c0e1b;
}

.calc-output-card {
    background-color: #ffffff;
    border-color: #e0e7ff !important; /* Soft blue tint to the borders */
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.text-vanguard-green {
    color: #20b038 !important;
}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .calc-output-card .fs-4 {
        font-size: 18px !important;
    }
    .calc-output-card .fs-5 {
        font-size: 15px !important;
    }
}












/* =========================================
   NEW CONTENT SECTIONS (BELOW CALCULATOR)
   ========================================= */

/* --- SECTION A: WHY USE THE CALCULATOR --- */
.calc-why-section {
    background-color: #f8fafc; /* Soft slate contrast */
}

.calc-why-desc {
    font-size: 18px;
    line-height: 1.6;
}
.calc-why-desc strong {
    color: #0c0e1b;
}

.calc-why-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}
.calc-why-list li:last-child {
    margin-bottom: 0;
}

.calc-why-icon {
    width: 48px;
    height: 48px;
    background-color: #dcfce7;
    color: #15803d; /* Vanguard dark green */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 20px;
}

.calc-why-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c0e1b;
    margin-bottom: 6px;
}
.calc-why-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
    line-height: 1.5;
    margin-bottom: 0;
}



/* --- SECTION B: HOW IT WORKS --- */
.calc-how-section {
    background-color: #ffffff;
}

/* Steps Layout */
.calc-step-item {
    transition: transform 0.3s ease;
    cursor: default;
}
.calc-step-item:hover {
    transform: translateX(6px); /* Very subtle nudge right on hover */
}

/* Icon Box */
.calc-step-icon {
    width: 64px;
    height: 64px;
    background-color: #f0fdf4; /* Light Vanguard Green */
    color: #15803d; /* Dark Vanguard Green */
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.calc-step-item:hover .calc-step-icon {
    background-color: #20b038; /* Fills solid green on hover */
    color: #ffffff;
    border-color: #20b038;
    box-shadow: 0 6px 15px rgba(32, 176, 56, 0.25);
}

/* Text */
.calc-step-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c0e1b;
    line-height: 1.3;
}

.calc-step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
}

/* Image Wrapper Frame */
/* .calc-how-img-wrapper {
    padding: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
} */

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 991.98px) {
    .calc-step-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        border-radius: 12px;
    }
    .calc-step-title {
        font-size: 18px;
    }
    /* .calc-how-img-wrapper {
        padding: 8px;
    } */
}

/* --- SECTION C: YOUR VANGUARD JOURNEY (Mini Timeline) --- */
.calc-journey-section {
    background-color: #f8fafc;
}

.calc-journey-row {
    position: relative;
    z-index: 1;
}

/* Dashed Line on Desktop */
@media (min-width: 992px) {
    .calc-journey-row::before {
        content: '';
        position: absolute;
        top: 9rem; /* Matches the pill badge height */
        left: 10%;
        right: 10%;
        border-top: 2px dashed #cbd5e1;
        z-index: -1;
    }
}

.calc-journey-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 32px 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.calc-journey-card:hover {
    transform: translateY(-5px);
    border-color: #20b038;
}

.calc-journey-badge {
    position: absolute;
    top: -20px;
    left: 32px;
    background: linear-gradient(135deg, #20b038, #15803d);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 8px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(32, 176, 56, 0.3);
    border: 4px solid #f8fafc; /* Matches section bg */
}

.calc-journey-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0c0e1b;
    margin-bottom: 12px;
}
.calc-journey-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a4a52;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- SECTION D: CLOSING CTA --- */
.calc-cta-section {
    background-color: #ffffff;
}

.calc-cta-card {
    background: linear-gradient(135deg, #0c0e1b 0%, #1e293b 100%); /* Vanguard Navy */
}

.calc-cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

/* Mobile Tweaks */
@media (max-width: 991.98px) {
    .calc-why-desc, .calc-cta-desc { font-size: 16px; }
    .calc-why-title, .calc-journey-title { font-size: 18px; }
    .calc-why-text, .calc-journey-desc { font-size: 14px; }
    .calc-journey-card { padding: 36px 24px 24px; }
    .calc-journey-badge { left: 24px; }
}