/* =========================================================
   Global Partners Page
   Suggested file: css/global-partners.css
   ========================================================= */

:root {
    --gp-primary: #1769aa;
    --gp-primary-dark: #0e4f86;
    --gp-heading: #1d2633;
    --gp-text: #5d6673;
    --gp-border: #e3e8ee;
    --gp-light: #f5f8fb;
    --gp-white: #ffffff;
    --gp-shadow: 0 16px 40px rgba(30, 51, 75, 0.09);
}

.global-partners-page {
    color: var(--gp-text);
    background: var(--gp-white);
}

.global-partners-page *,
.global-partners-page *::before,
.global-partners-page *::after {
    box-sizing: border-box;
}

.global-partners-page h1,
.global-partners-page h2,
.global-partners-page h3,
.global-partners-page p {
    margin-top: 0;
}

.global-partners-page h1,
.global-partners-page h2,
.global-partners-page h3 {
    color: var(--gp-heading);
    font-weight: 700;
}

.global-partners-page p {
    line-height: 1.75;
}

.section-space {
    padding: 80px 0;
}

.section-space--light {
    background: var(--gp-light);
}

/* Section heading */
.gp-section-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.gp-section-heading h2,
.gp-region__header h2,
.gp-cta__box h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.25;
}

.gp-section-heading p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
}

/* Hero */
.gp-eyebrow,
.gp-section-heading__label,
.gp-region__eyebrow,
.gp-cta__label {
    display: block;
    margin-bottom: 13px;
    color: var(--gp-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

/* Region */
.gp-region__header {
	display: block;
	margin-bottom: 36px;
}

.gp-region__header h2 {
　　margin-bottom: 12px;
}

.gp-region__header p {
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
}

/* Partner card */
.gp-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.gp-partner-card {
    overflow: hidden;
    border: 1px solid var(--gp-border);
    border-radius: 12px;
    background: var(--gp-white);
    box-shadow: var(--gp-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gp-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(30, 51, 75, 0.13);
}

.gp-partner-card__country {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 26px;
    border-bottom: 1px solid var(--gp-border);
    background: #f9fbfd;
}

.gp-country-code {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gp-white);
    background: var(--gp-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.gp-country-label,
.gp-partner-status {
    display: block;
}

.gp-country-label {
    margin-bottom: 2px;
    color: var(--gp-heading);
    font-size: 17px;
    font-weight: 700;
}

.gp-partner-status {
    color: var(--gp-primary);
    font-size: 13px;
    font-weight: 600;
}

.gp-partner-card__body {
    padding: 30px;
}

.gp-partner-logo {
    display: flex;
    min-height: 105px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 20px;
    border: 1px solid var(--gp-border);
    border-radius: 8px;
    background: var(--gp-white);
}

.gp-partner-logo img {
    display: block;
    max-width: 250px;
    max-height: 72px;
    object-fit: contain;
}

.gp-partner-info h3 {
    margin-bottom: 14px;
    font-size: 25px;
}

.gp-partner-info p {
    margin-bottom: 20px;
}

.gp-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.gp-service-list li {
    position: relative;
    padding-left: 19px;
    color: #46515e;
    font-size: 14px;
}

.gp-service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gp-primary);
}

.gp-partner-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gp-primary);
    font-weight: 700;
    text-decoration: none;
}

.gp-partner-link:hover {
    color: var(--gp-primary-dark);
}

.gp-partner-link span {
    transition: transform 0.2s ease;
}

.gp-partner-link:hover span {
    transform: translate(2px, -2px);
}

/* CTA */
.gp-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 46px 50px;
    border-radius: 12px;
    background: #102f4d;
}

.gp-cta__box h2 {
    margin-bottom: 10px;
    color: var(--gp-white);
}

.gp-cta__box p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
}

.gp-cta__label {
    color: #8bc7f3;
}

.gp-button {
    display: inline-flex;
    min-width: 142px;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    color: var(--gp-white);
    background: var(--gp-primary);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.gp-button:hover {
    color: var(--gp-white);
    background: #2382ca;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .section-space {
        padding: 65px 0;
    }

    .gp-hero {
        padding: 90px 0 85px;
    }

    .gp-region__header {
        display: block;
    }

    .gp-region__header p {
        margin-top: 18px;
    }

    .gp-partner-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 767px) {
    .section-space {
        padding: 52px 0;
    }

    .gp-hero {
        padding: 72px 0 68px;
    }

    .gp-hero p {
        font-size: 16px;
    }

    .gp-partner-card__body {
        padding: 24px 20px;
    }

    .gp-partner-card__country {
        padding: 17px 20px;
    }

    .gp-service-list {
        grid-template-columns: 1fr;
    }

    .gp-cta__box {
        padding: 34px 26px;
    }

    .gp-button {
        width: 100%;
    }
}
