/* Business Loan Page Styles */

.business-loan-page {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #f8fafc;
}

/* Hero Section */
.bl-hero-section {
    position: relative;
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    overflow: hidden;
}

.bl-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 0% 100%, rgba(244, 180, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.bl-hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.bl-hero-content {
    flex: 1;
    max-width: 800px;
    text-align: center;
}

.bl-hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 31, 77, 0.1);
    color: #0B1F4D;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.bl-hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 25px;
}

.bl-hero-title .dark-blue {
    color: #0B1F4D;
}

.bl-hero-title .orange {
    color: #ff9800;
    position: relative;
    display: inline-block;
}

.bl-hero-title .orange::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(255, 152, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.bl-hero-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

.bl-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-bl-primary {
    background: #0B1F4D;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(11, 31, 77, 0.2);
}

.btn-bl-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(11, 31, 77, 0.3);
}

.btn-bl-secondary {
    background: #ffffff;
    color: #0B1F4D;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.btn-bl-secondary:hover {
    border-color: #0B1F4D;
    background: #f8fafc;
    transform: translateY(-2px);
}

.bl-hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
}

.feature-item i {
    font-size: 18px;
}

.text-yellow { color: #f59e0b; }
.text-green { color: #10b981; }
.text-blue { color: #3b82f6; }
.text-purple { color: #8b5cf6; }

.bg-blue-light { background: rgba(59, 130, 246, 0.15); }
.bg-green-light { background: rgba(16, 185, 129, 0.15); }
.bg-purple-light { background: rgba(139, 92, 246, 0.15); }
.bg-yellow-light { background: rgba(245, 158, 11, 0.15); }

.bl-hero-visual {
    display: none;
}



.visual-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s infinite alternate;
}

.visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(11, 31, 77, 0.1);
    border: 1px solid rgba(255, 255, 255, 1);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    min-width: 260px;
}

.card-top {
    top: 5%;
    left: 0;
    animation-delay: 0s;
}

.card-middle {
    top: 40%;
    right: 0;
    animation-delay: 1.5s;
    z-index: 2;
    transform: translateX(10%);
}

.card-bottom {
    bottom: 5%;
    left: 10%;
    animation-delay: 3s;
}

.v-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.yellow-bg { background: rgba(244, 180, 0, 0.15); color: #F4B400; }
.blue-bg { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.green-bg { background: rgba(16, 185, 129, 0.15); color: #10b981; }

.v-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #0B1F4D;
}

.v-info p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0.8; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Highlights Section */
.bl-highlights-section {
    padding: 50px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 50px;
}

.bl-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #F4B400; /* Yellow */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bl-subtitle .line {
    width: 30px;
    height: 2px;
    background: #F4B400;
}

.bl-title {
    font-size: 42px;
    font-weight: 900;
    color: #0B1F4D; /* Dark Blue */
    margin-bottom: 15px;
    line-height: 1.2;
}

.bl-title .yellow-text {
    color: #F4B400;
}

.bl-desc {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.bl-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.bl-highlight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bl-highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 30px -5px rgba(11, 31, 77, 0.1), 0 10px 15px -5px rgba(11, 31, 77, 0.05);
    border-color: transparent;
}

/* Glowing Top Border */
.bl-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F4B400;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(244, 180, 0, 0.5);
}

.bl-highlight-card:hover::before {
    transform: scaleX(1);
}

/* Premium Shine Sweep Effect */
.bl-highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

.bl-highlight-card:hover::after {
    left: 150%;
}

.hl-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.bl-highlight-card:hover .hl-icon {
    transform: scale(1.1) rotate(5deg);
}

.bl-highlight-card h3 {
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hl-value {
    font-size: 24px;
    font-weight: 800;
    color: #0B1F4D;
    margin-bottom: 15px;
}

.hl-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .bl-hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .bl-hero-content {
        max-width: 100%;
    }
    
    .bl-hero-title {
        font-size: 36px;
    }
    
    .bl-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .bl-hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .bl-hero-image {
        margin-top: 40px;
    }
    
    .bl-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bl-hero-features {
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: center;
        gap: 14px 20px;
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0 auto;
    }
    
    .bl-hero-features .feature-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        font-size: 13px;
        gap: 5px;
        line-height: 1.3;
    }

    .bl-hero-features .feature-item i {
        font-size: 16px;
        flex-shrink: 0;
    }

    .bl-hero-features .feature-item span {
        text-align: left;
        margin: 0;
    }

    .bl-hero-features .feature-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 576px) {
    .bl-highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.bl-why-choose-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0a1c3a 0%, #06122a 100%);
    position: relative;
    overflow: hidden;
}

/* Background floating elements */
.bl-why-choose-section::before,
.bl-why-choose-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(244, 180, 0, 0.03);
    z-index: 0;
}

.bl-why-choose-section::before {
    top: -100px;
    left: -100px;
}

.bl-why-choose-section::after {
    bottom: -150px;
    right: -100px;
    background: rgba(59, 130, 246, 0.03);
}

.bl-why-choose-section .container {
    position: relative;
    z-index: 1;
}

.bl-why-choose-section .text-white {
    color: #ffffff !important;
}

.bl-why-choose-section .text-light {
    color: #94a3b8 !important;
}

.bl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.bl-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bl-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #F4B400;
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.bl-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bl-feature-card:hover::before {
    transform: scaleY(1);
}

.bl-feature-card .f-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 180, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #F4B400;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.bl-feature-card:hover .f-icon {
    background: #F4B400;
    color: #0B1F4D;
    transform: rotate(10deg) scale(1.1);
}

.bl-feature-card .f-content h3 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.bl-feature-card:hover .f-content h3 {
    color: #F4B400;
}

.bl-feature-card .f-content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .bl-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bl-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Business Loan Calculator Section */
.bl-calculator-section {
    padding: 50px 0;
    background: #f8fafc;
}

.calculator-wrapper {
    display: flex;
    gap: 50px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.05);
    padding: 40px;
    margin: 40px auto 0 auto;
    max-width: 1100px;
}

.calc-left {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.calc-right {
    flex: 2;
}

.calc-group {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calc-label-row label {
    font-size: 16px;
    font-weight: 700;
    color: #0B1F4D;
}

.calc-input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 700;
    color: #0B1F4D;
    width: 140px;
    text-align: right;
    outline: none;
    transition: all 0.3s ease;
}

.calc-input:focus {
    border-color: #F4B400;
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.2);
}

/* Custom Range Slider */
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    outline: none;
    margin-bottom: 15px;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #F4B400;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 4px solid #ffffff;
    transition: transform 0.1s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

/* Result Card */
.calc-result-card {
    background: linear-gradient(135deg, #0B1F4D 0%, #0a1c3a 100%);
    border-radius: 16px;
    padding: 40px 30px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.primary-result p {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.primary-result h3 {
    font-size: 42px;
    font-weight: 900;
    color: #F4B400;
    margin: 0;
}

.result-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.result-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.result-details .result-item {
    flex: 1;
}

.result-item p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.result-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.calc-btn {
    background: #F4B400 !important;
    color: #0B1F4D !important;
    justify-content: center;
    border: none;
}

.calc-btn:hover {
    background: #f5b914 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(244, 180, 0, 0.4);
}

.w-100 {
    width: 100%;
}

@media (max-width: 991px) {
    .calculator-wrapper {
        flex-direction: column;
    }
}


/* Business Loan Benefits Section */
.bl-benefits-section {
    padding: 50px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
    border-top: 4px solid #F4B400;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.benefit-card .b-icon {
    width: 70px;
    height: 70px;
    background: #0B1F4D;
    color: #F4B400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.benefit-card:hover .b-icon {
    transform: scale(1.1) rotate(5deg);
    background: #F4B400;
    color: #0B1F4D;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0B1F4D;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
/* Eligibility Section */
.bl-eligibility-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    scroll-margin-top: 75px;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.el-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid #0B1F4D;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.el-card:hover {
    transform: translateX(10px);
    background: #ffffff;
    border-left-color: #F4B400;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.el-icon {
    width: 50px;
    height: 50px;
    background: #0B1F4D;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.el-card:hover .el-icon {
    background: #F4B400;
    color: #0B1F4D;
    transform: scale(1.1);
}

.el-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B1F4D;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.el-card:hover .el-info h4 {
    color: #F4B400;
}

.el-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.el-footer {
    margin-top: 20px;
}

/* Required Documents Section */
.bl-documents-section {
    padding: 50px 0;
    background: #f8fafc;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.doc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.doc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #F4B400;
}

.doc-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.doc-card:hover .doc-icon {
    transform: scale(1.15) rotate(5deg);
}

.doc-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    transition: color 0.3s ease;
}

.doc-card:hover h4 {
    color: #F4B400;
}

@media (max-width: 576px) {
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Types of Business Loans Section */
.bl-types-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.type-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none !important;
}

.type-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0B1F4D, #F4B400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.type-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 30px -5px rgba(11, 31, 77, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.type-card:hover::after {
    transform: scaleX(1);
}

.t-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0B1F4D;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.type-card:hover .t-icon {
    background: #0B1F4D;
    color: #F4B400;
    transform: rotateY(180deg);
}

.type-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B1F4D;
    margin: 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.type-card:hover h4 {
    color: #F4B400;
}

.t-link {
    color: #94a3b8;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.type-card:hover .t-link {
    opacity: 1;
    transform: translateX(0);
    color: #F4B400;
}

/* FAQ Section */
.bl-faq-section {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: #F4B400;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.1);
}

.faq-item summary {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #0B1F4D;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-item[open] summary {
    color: #F4B400;
    background: rgba(244, 180, 0, 0.05);
}

.faq-item[open] summary i {
    transform: rotate(180deg);
    color: #F4B400;
}

.faq-content {
    padding: 0 25px 25px;
}

.faq-content p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}


@media (max-width: 991px) {
    .types-grid, .eligibility-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .docs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .eligibility-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .type-card {
        padding: 12px 10px;
        gap: 5px;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .t-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .type-card h4 {
        font-size: 14px;
    }
    
    .bl-hero-section {
        padding: 20px 0 30px;
    }
    .bl-hero-content .badge {
        padding: 6px 12px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    .bl-hero-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .bl-hero-title .orange::after {
        height: 8px;
        bottom: 2px;
    }
    .bl-hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.5;
        text-align: justify;
    }
    
    .bl-hero-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .btn-bl-primary,
    .btn-bl-secondary {
        padding: 10px 8px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        gap: 5px;
    }
    
    .section-header {
        margin-bottom: 25px;
        text-align: left !important;
    }
    .bl-subtitle {
        font-size: 10px;
        margin-bottom: 10px;
        gap: 8px;
        justify-content: flex-start;
    }
    .bl-subtitle .line {
        width: 15px;
    }
    .bl-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .bl-desc {
        font-size: 13px;
        text-align: justify;
    }
    
    .bl-highlight-card {
        padding: 20px 15px;
    }
    .hl-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    .bl-highlight-card h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .hl-value {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .bl-highlight-card .hl-desc {
        font-size: 12px;
        text-align: center;
    }
    
    .bl-feature-card {
        padding: 25px 20px;
        gap: 15px;
    }
    .bl-feature-card .f-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    .bl-feature-card .f-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .bl-feature-card .f-content p {
        font-size: 13px;
    }
    
    .calculator-wrapper {
        padding: 20px 15px;
        gap: 30px;
    }
    .calc-group {
        padding: 15px;
    }
    .calc-label-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .calc-input {
        width: 100%;
        text-align: left;
    }
    
    .calc-result-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .result-details {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .result-item h4 {
        font-size: 18px;
    }
    
    .result-item p {
        font-size: 12px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    .benefit-card .b-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    .benefit-card h3,
    .benefit-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .benefit-card p {
        font-size: 13px;
    }
    
    .el-card {
        padding: 15px 20px;
        gap: 15px;
    }
    .el-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .el-info h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .el-info p {
        font-size: 13px;
    }
    
    .doc-card {
        padding: 15px 10px;
    }
    .doc-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .doc-card h4 {
        font-size: 13px;
    }
    
    .faq-item summary {
        padding: 15px;
        font-size: 15px;
    }
    .faq-content {
        padding: 0 15px 15px;
    }
    .faq-content p {
        font-size: 14px;
        padding-top: 15px;
        text-align: justify;
    }
}
