/* Our Recommendations Section - Premium White Version */
.recommendations-section {
    padding: 100px 0;
    background: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.recommendations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(14, 86, 162, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: #0e56a2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(14, 86, 162, 0.25);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 0;
}

.recommendation-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    /* Softer shadow for white bg */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 50px;
    background: #ffffff;
    /* White background for both */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.recommendation-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(14, 86, 162, 0.1);
    /* Blue tinted shadow on hover */
    border-color: rgba(14, 86, 162, 0.1);
}

.recommendation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.recommendation-content {
    flex: 1;
    z-index: 2;
}

.recommendation-badge {
    display: inline-block;
    background: transparent;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    position: relative;
    color: #0e56a2;
    /* Blue badge text */
}

.recommendation-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #1e272e;
    /* Dark title for both */
}

.recommendation-description {
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 400px;
    color: #636e72;
    /* Grey description for both */
}

.recommendation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 35px;
    background: #0e56a2;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-transform: capitalize;
}

.recommendation-btn:hover {
    background: #0a4380;
    color: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 8px 25px rgba(14, 86, 162, 0.3);
}

.recommendation-btn i {
    display: none;
}

.recommendation-image-wrapper {
    flex: 0 0 auto;
    max-width: 45%;
    position: relative;
    z-index: 1;
}

.recommendation-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
    /* Added curve radius to images */
}

.recommendation-box:hover .recommendation-image-wrapper img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .recommendations-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .recommendation-box {
        min-height: 380px;
        margin-bottom: 30px;
        padding: 40px 30px;
    }

    .recommendation-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .recommendation-image-wrapper {
        max-width: 70%;
        order: -1;
    }

    .recommendation-description {
        max-width: 100%;
    }

    .recommendation-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .recommendations-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .recommendation-title {
        font-size: 28px;
    }

    .recommendation-box {
        min-height: 350px;
        padding: 35px 25px;
    }

    .recommendation-image-wrapper {
        max-width: 85%;
    }

    .recommendation-image-wrapper img {
        max-height: 220px;
    }
}