/* =========================================================
   PARTNERS PAGE CSS — Dark Navy & Gold Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1650;
    --navy-deep: #07091A;
    --gold: #FFD700;
    --gold-soft: #FFE44A;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--navy-deep);
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Offset Clearance for Floating Right Side Buttons */
.partner-container,
.partnership-container,
.glow-container,
.who-container,
.benefits-container,
.cta-container {
    padding-right: 75px !important;
}

/* Global Typography Hierarchy */
h1, h2, h3, h4,
.partner-content h1,
.partnership-title,
.glow-section-title,
.who-title,
.benefits-title,
.cta-card h2 {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}

p, span, label, input, textarea, button, a, li, small {
    font-family: var(--font-body) !important;
}

/* =========================================
        PARTNER HERO SECTION
========================================= */

.partner-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding-top: 130px;
    padding-bottom: 45px;
    display: flex;
    align-items: center;
    background: url("../image/partners-hero.webp") center center / cover no-repeat;
    overflow: hidden;
}

.partner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 26, 0.78);
    z-index: 1;
}

.partner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.partner-content {
    flex: 1;
    max-width: 720px;
}

.partner-content h1 {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 28px;
    line-height: 1.25;
    text-transform: uppercase;
}

.partner-content h2 {
    color: var(--gold-soft);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.partner-content p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13.5px;
    line-height: 1.6;
}

/* Form Box */
.partner-form-box {
    width: 360px;
    padding: 22px 24px;
    border-radius: 12px;
    background: rgba(7, 9, 26, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.partner-form-box h3 {
    color: var(--gold);
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
}

.partner-form-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner-form-box input {
    width: 100%;
    height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.25s ease;
}

.partner-form-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.partner-form-box input:focus {
    border-color: var(--gold);
}

.partner-form-box button {
    height: 40px;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 4px;
}

.partner-form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
}

/* ==========================================
        POWER OF PARTNERSHIP
========================================== */

.partnership-section {
    width: 100%;
    background: #0b112c;
    padding: 45px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.partnership-container {
    width: 100%;
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
    text-align: center;
}

/* Shared Section Titles Centered */
.partnership-title,
.glow-section-title,
.who-title,
.benefits-title {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 28px;
    text-transform: uppercase;
    text-align: center !important;
}

.partnership-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partnership-grid .partners-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.partners-card {
    background: rgba(7, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.partners-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.partners-img {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
}

.partners-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.partners-card:hover img {
    transform: scale(1.04);
}

.partners-body h4 {
    color: var(--gold);
    font-family: var(--font-heading) !important;
    font-size: 16px;
    font-weight: 700 !important;
    margin: 0 0 6px;
    text-align: center;
}

.partners-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.partnership-btn,
.glow-join-btn,
.who-btn a,
.join-btn,
.cta-btn {
    display: inline-flex !important;
    width: auto !important;
    height: 38px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

/* ==========================================
          WHAT YOU'LL DO (GLOW SECTION)
========================================== */

.glow-section {
    width: 100%;
    background: var(--navy-deep);
    padding: 45px 0;
}

.glow-container {
    width: 100%;
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
}

.glow-section-title {
    color: var(--gold);
}

.glow-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.glow-circle {
    width: 220px;
    height: 220px;
    flex: 0 0 220px;
    border-radius: 50%;
    background: rgba(7, 9, 26, 0.8);
    border: 3px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glow-circle:hover {
    transform: scale(1.04);
    border-color: var(--gold-soft);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.icon-glow {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
}

.glow-circle p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.45;
    margin: 0;
}

.glow-btn-wrap {
    text-align: center;
}

/* ====================================
        WHO CAN JOIN
===================================== */

.who-section {
    position: relative;
    padding: 45px 0;
    background: url("../image/visit.webp") center center / cover no-repeat;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.who-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 9, 26, 0.85);
}

.who-container {
    position: relative;
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
    z-index: 2;
}

.who-title {
    color: var(--gold);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.who-card {
    height: 160px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.who-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.who-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.who-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.who-btn {
    text-align: center;
}

/* ==========================================
            WHAT YOU GET
========================================== */

.benefits-section {
    width: 100%;
    background: #0b112c;
    padding: 45px 0;
}

.benefits-container {
    width: 100%;
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.benefit-card {
    display: flex;
    align-items: center;
    background: rgba(7, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 18px;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.benefit-icon {
    width: 44px;
    min-width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 14px;
}

.benefit-icon i {
    font-size: 26px;
    color: var(--gold);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    color: #fff;
    font-family: var(--font-heading) !important;
    font-size: 15px;
    font-weight: 700 !important;
    margin: 0 0 4px;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 12.5px;
    line-height: 1.45;
    margin: 0;
}

.benefits-btn {
    text-align: center;
}

/* ==========================================
            CTA SECTION
========================================== */

.cta-section {
    background: var(--navy-deep);
    padding: 45px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.cta-container {
    max-width: 1380px;
    margin: auto;
    padding-left: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.cta-card {
    background: rgba(7, 9, 26, 0.85);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.cta-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.cta-card h2 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 8px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==========================================
            RESPONSIVE MEDIA QUERIES
========================================== */

@media(max-width: 1100px) {
    .partner-container {
        flex-direction: column;
        text-align: center;
    }
    .partner-content {
        max-width: 100%;
    }
    .partner-form-box {
        width: 100%;
        max-width: 400px;
    }
}

@media(max-width: 991px) {
    .partner-container,
    .partnership-container,
    .glow-container,
    .who-container,
    .benefits-container,
    .cta-container {
        padding-right: 20px !important;
    }

    .partnership-grid .partners-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .benefits-grid,
    .cta-container {
        grid-template-columns: 1fr;
    }

    .glow-grid {
        flex-direction: column;
        gap: 20px;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .partner-hero {
        padding-top: 110px;
    }

    .partnership-grid .partners-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .who-card {
        height: auto;
    }
}

@media(max-width: 576px) {
    .partner-content h1 {
        font-size: 22px;
    }

    .partnership-title,
    .glow-section-title,
    .who-title,
    .benefits-title {
        font-size: 20px;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 0 10px;
    }
}