/* ==========================================================================
 |    PARTNER - INTRODUCTION SECTION
 |    ========================================================================== */

/* Professional Introduction Section */
.partner-intro {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    opacity: 1 !important; /* Always visible */
    transform: translateY(0) !important; /* No parallax animation */
    will-change: auto; /* Remove transform optimization */
}

.partner-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 83, 154, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.partner-intro::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 58, 107, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-header {
    margin-bottom: 60px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #14539a, #0d3a6b);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(20, 83, 154, 0.3);
    transition: all 0.3s ease;
}

.about-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(20, 83, 154, 0.4);
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1e293b 0%, #14539a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}

/* Partner Description Section */
.partner-description {
    margin: 40px 0;
    text-align: center;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* Professional Highlight Cards */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 80px auto 0;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.highlight-card {
    background: white;
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 20px 60px rgba(20, 83, 154, 0.12);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 83, 154, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 25px 80px rgba(20, 83, 154, 0.2);
    border-color: rgba(20, 83, 154, 0.3);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, #14539a, #0d3a6b);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(20, 83, 154, 0.25);
    position: relative;
    flex-shrink: 0;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(20, 83, 154, 0.4);
}

.highlight-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    line-height: 1.4;
    background: linear-gradient(135deg, #1e293b 0%, #14539a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.highlight-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 100%;
    word-wrap: break-word;
}

/* Journey Cards */
.ministry-journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.journey-item {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 10px 40px rgba(20, 83, 154, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.journey-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 83, 154, 0.1), transparent);
    transition: left 0.6s ease;
}

.journey-item:hover::before {
    left: 100%;
}

.journey-item: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),
        0 25px 60px rgba(20, 83, 154, 0.15);
}

.journey-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #14539a, #0d3a6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: all 0.3s ease;
}

.journey-item:hover .journey-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(20, 83, 154, 0.4);
}

.journey-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.journey-text p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Partnership Values */
.partnership-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 10px 40px rgba(20, 83, 154, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 83, 154, 0.1), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-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),
        0 25px 60px rgba(20, 83, 154, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #14539a, #0d3a6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(20, 83, 154, 0.4);
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    opacity: 1 !important;
    transform: translateY(0) !important;
    will-change: auto;
}

.community-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20, 83, 154, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-50%);
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.community-message {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 10px 40px rgba(20, 83, 154, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.community-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 83, 154, 0.1), transparent);
    transition: left 0.6s ease;
}

.community-message:hover::before {
    left: 100%;
}

.community-message: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),
        0 25px 60px rgba(20, 83, 154, 0.15);
}

.community-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #14539a, #0d3a6b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.community-message:hover .community-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(20, 83, 154, 0.4);
}

.community-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.community-message p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 1.2rem;
}