/* Business Partners Page Styles */

/* Hero Section */
.partners_hero_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.partners_hero_title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.partners_hero_description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero_buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn_become_partner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #43c59e 0%, #3ab58c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_become_partner:hover {
    background: linear-gradient(135deg, #3ab58c 0%, #32a07d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 197, 158, 0.3);
    color: #ffffff;
    gap: 12px;
}

.btn_contact_outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_contact_outline:hover {
    border-color: #43c59e;
    color: #43c59e;
    background: #e8f5f1;
}

.partners_hero_image .image_placeholder {
    width: 100%;
    height: 400px;
    background: #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
}

.partners_hero_image .image_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partner With Us Section */
.partner_with_us_section {
    padding: 80px 0;
    background: #ffffff;
}

.section_header {
    margin-bottom: 48px;
}

.section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section_description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Partner Option Cards */
.partner_option_card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner_option_card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.option_header {
    background: linear-gradient(135deg, #c8e9dd 0%, #b8e1d1 100%);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.option_icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.option_body {
    padding: 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.option_subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 12px;
}

.option_description {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 24px;
}

.option_features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.option_features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.option_features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.option_features li span {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.btn_get_started {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: transparent;
    color: #333;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn_get_started:hover {
    border-color: #43c59e;
    color: #43c59e;
    background: #e8f5f1;
}

/* Why Partner Section */
.why_partner_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5f1 0%, #d4ede5 100%);
}

.why_card {
    background: linear-gradient(135deg, #c8e9dd 0%, #b8e1d1 100%);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.why_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(67, 197, 158, 0.2);
}

.why_icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.why_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why_description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .partners_hero_title {
        font-size: 2.5rem;
    }

    .section_title {
        font-size: 2rem;
    }

    .partners_hero_image .image_placeholder {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .partners_hero_section,
    .partner_with_us_section,
    .why_partner_section {
        padding: 50px 0;
    }

    .partners_hero_title {
        font-size: 2rem;
        text-align: center;
    }

    .partners_hero_description {
        text-align: center;
    }

    .hero_buttons {
        justify-content: center;
    }

    .section_title {
        font-size: 1.75rem;
    }

    .option_header {
        flex-direction: column;
        align-items: flex-start;
    }

    .why_card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .partners_hero_title {
        font-size: 1.75rem;
    }

    .section_title {
        font-size: 1.5rem;
    }

    .hero_buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn_become_partner,
    .btn_contact_outline {
        width: 100%;
        justify-content: center;
    }

    .option_title {
        font-size: 1.25rem;
    }

    .why_icon {
        width: 56px;
        height: 56px;
    }

    .why_icon svg {
        width: 28px;
        height: 28px;
    }
}
