/* Loan Hero Section */
.loan-hero {
    /* background: linear-gradient(135deg, #56ccf2 0%, #2f80ed 50%, #f2994a 100%); */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.loan-hero-content {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center; */
}

.loan-hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.feature-list {
    background: linear-gradient( 135deg, #00B7FF 0%, #DAFF35 100%);;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

.feature-list .checklist {
    margin: 0;
}
.feature-list .checklist li{
    color:#fff;
    margin-bottom: 30px;
}

.phone-mockup {
    width: 600px;
    height: 500px;
    background: white;
    border-radius: 40px;    
    margin: 0 auto;
    padding: 20px;
    position: absolute;
    background:url("../images/app.png") no-repeat;
    background-size: 100% 100%;
    top: -476px;
    right:-25px;
}


/* Why Choose Section */
.why-choose-section {
    background: white;
}

.feature-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
    flex:1
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #00d4aa;
}

.feature-card.full-width {
    grid-column: 1 / -1;    
    margin: 0 auto;
    width: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

/* Product Details Section */
.product-details-section {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 230, 184, 0.1) 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient( 90deg, #FFFFFF 0%, #D3FFF3 100%);
}

.detail-item {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.detail-amount {
    font-size: 26px;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 10px;
}

.detail-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    background: #DEFAF2;
    color: #00CD96;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

.detail-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works-section {
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4aa 0%, #00e6b8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-connector {
    height: 3px;
    background: linear-gradient(90deg, #00d4aa 0%, #00e6b8 100%);
    border-radius: 2px;
}

/* Compliance Section */
.compliance-section {
    background: #f8f9fa;
}

.compliance-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.compliance-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}
.compliance-text p strong{
    font-weight: 700;
}

.compliance-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.graphic-icon {
    animation: float 3s ease-in-out infinite;
}

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

/* App Features Section */
.app-features-section {
    background: white;
}

.app-feature-item {    
    gap: 20px;    
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
}

.app-feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.app-feature-icon {
    width: 60px;
    height: 60px;    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.app-feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-left: 10px;
}
.afi-top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.app-feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .loan-hero-content {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-connector {
        width: 3px;
        height: 50px;
        margin: 0 auto;
    }

    .compliance-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .loan-hero-text h1 {
        font-size: 28px;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.full-width {
        grid-column: 1;
    }

    .compliance-box {
        padding: 30px 20px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}
