/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

:root {
    --navy: #061a36;
    --navy-dark: #031329;
    --yellow: #ffc21a;
    --yellow-hover: #ffd24d;
    --text: #0c1c34;
    --muted: #657184;
    --border: #e4e8ed;
    --light: #f6f8fb;
    --blue: #0957a5;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: white;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.section-container {
    width: min(1110px, calc(100% - 48px));
    margin: auto;
}

.section-label {
    margin-bottom: 9px;
    color: #d99d00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.yellow-line {
    width: 38px;
    height: 3px;
    margin: 15px 0 22px;
    background: var(--yellow);
    border-radius: 10px;
}

.center-line {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    height: 68px;
    background: var(--navy);
    color: white;
    position: relative;
    z-index: 100;
}

.header-container {
    width: min(1110px, calc(100% - 48px));
    height: 68px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.logo-globe {
    width: 40px;
    color: var(--yellow);
    font-size: 40px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.5px;
}

.logo-name span {
    color: var(--yellow);
}

.logo-subtitle {
    margin-top: 2px;
    color: white;
    font-size: 8px;
    letter-spacing: 1.2px;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
}

.desktop-navigation a {
    position: relative;
    transition: color 0.2s ease;
}

.desktop-navigation a:hover,
.desktop-navigation a.active {
    color: var(--yellow);
}

.desktop-navigation a.active::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;

    height: 2px;
    background: var(--yellow);
}

.language-button {
    padding: 9px 14px;

    background: transparent;
    color: white;

    border: 1px solid #5c6d84;
    border-radius: 7px;

    cursor: pointer;
}

.language-button span {
    margin-left: 8px;
}

.mobile-menu-button {
    display: none;

    border: none;
    background: transparent;

    color: white;
    font-size: 25px;

    cursor: pointer;
}

.mobile-navigation {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    min-height: 390px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    background:url("/static/GlobalPathA.png");
    color: white;
}

.about-hero::after {
    content: "";

    width: 480px;
    height: 480px;

    position: absolute;
    right: -160px;
    top: -190px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
}

.hero-decoration-one {
    width: 260px;
    height: 260px;

    right: 70px;
    bottom: -170px;

    border: 40px solid rgba(255,194,26,0.06);
}

.hero-decoration-two {
    width: 10px;
    height: 10px;

    right: 34%;
    top: 80px;

    background: var(--yellow);
}

.about-hero-container {
    width: min(1110px, calc(100% - 48px));
    margin: auto;

    position: relative;
    z-index: 2;
}

.hero-label {
    margin-bottom: 15px;

    color: var(--yellow);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.about-hero h1 {
    max-width: 730px;

    margin: 0;

    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-hero h1 span {
    display: block;
    color: var(--yellow);
}

.hero-yellow-line {
    width: 45px;
    height: 4px;

    margin: 22px 0;

    background: var(--yellow);
}

.about-hero p {
    max-width: 650px;

    margin: 0;

    color: #c8d3df;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.who-section {
    padding: 90px 0;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.who-content h2,
.values-intro h2 {
    max-width: 600px;

    margin: 0;

    color: var(--navy);

    font-size: 34px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.who-content p {
    margin: 0 0 16px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.8;
}

.who-card {
    padding: 38px;

    position: relative;

    background: url("/static/GlobalPathA.png");;

    color: white;

    border-radius: 14px;

    box-shadow:
        0 20px 45px
        rgba(6, 26, 54, 0.15);
}

.who-card::before {
    content: "";

    width: 55px;
    height: 5px;

    position: absolute;
    left: 38px;
    top: 0;

    background: var(--yellow);
}

.who-card-icon {
    color: var(--yellow);
    font-size: 54px;
}

.who-card h3 {
    margin: 15px 0 14px;

    font-size: 24px;
    line-height: 1.3;
}

.who-card > p {
    margin: 0;

    color: #bdc9d7;

    font-size: 13px;
    line-height: 1.8;
}

.mini-stats {
    margin-top: 30px;
    padding-top: 25px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    border-top: 1px solid #2b415d;
}

.mini-stat strong {
    display: block;

    color: var(--yellow);

    font-size: 17px;
}

.mini-stat span {
    display: block;

    margin-top: 5px;

    color: #aebdcd;

    font-size: 10px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: 34px;
    letter-spacing: -1px;
}

.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   MISSION
========================================================= */

.mission-section {
    padding: 85px 0;
    background: var(--light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-card {
    min-height: 300px;
    padding: 34px;

    position: relative;

    background: white;

    border: 1px solid var(--border);
    border-radius: 12px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mission-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px
        rgba(6, 26, 54, 0.08);
}

.card-number {
    position: absolute;
    right: 25px;
    top: 18px;

    color: #edf1f5;

    font-size: 52px;
    font-weight: 800;
}

.card-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    background: var(--yellow);

    border-radius: 10px;

    color: var(--navy);

    font-size: 23px;
    font-weight: 800;
}

.mission-card h3 {
    margin: 25px 0 12px;

    color: var(--navy);

    font-size: 20px;
}

.mission-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 90px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    padding: 28px 24px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 10px;

    transition: 0.25s ease;
}

.service-card:hover {
    border-color: #d4a400;
    transform: translateY(-4px);
}

.service-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    background: #fff7db;

    border-radius: 8px;

    color: #b88200;

    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    margin: 20px 0 10px;

    color: var(--navy);

    font-size: 16px;
}

.service-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.75;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    padding: 90px 0;
    background: var(--navy);
}

.values-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.values-intro h2 {
    color: white;
}

.values-intro p {
    margin: 0;

    color: #aebdcd;

    font-size: 13px;
    line-height: 1.8;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.value-item {
    padding: 22px;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    background: rgba(255,255,255,0.055);

    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9px;
}

.value-check {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--yellow);

    border-radius: 50%;

    color: var(--navy);

    font-size: 13px;
    font-weight: 800;
}

.value-item h3 {
    margin: 3px 0 7px;

    color: white;

    font-size: 14px;
}

.value-item p {
    margin: 0;

    color: #aebdcd;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   IMPORTANT INFORMATION
========================================================= */

.important-section {
    padding: 70px 0;
    background: #fff;
}

.important-card {
    padding: 35px 40px;

    display: flex;
    align-items: flex-start;
    gap: 22px;

    background: #fffaf0;

    border: 1px solid #f2dfa2;
    border-radius: 12px;
}

.important-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    background: var(--yellow);

    border-radius: 50%;

    color: var(--navy);

    font-size: 22px;
    font-weight: 800;
}

.important-label {
    margin-bottom: 7px;

    color: #b27d00;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.important-content h2 {
    margin: 0 0 10px;

    color: var(--navy);

    font-size: 20px;
}

.important-content p {
    margin: 0;

    color: #756a50;

    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 55px 0;
    background: var(--yellow);
}

.cta-container {
    width: min(1110px, calc(100% - 48px));
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-label {
    margin-bottom: 7px;

    color: #715500;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.cta-content h2 {
    margin: 0 0 8px;

    color: var(--navy);

    font-size: 29px;
}

.cta-content p {
    max-width: 650px;

    margin: 0;

    color: #594b22;

    font-size: 12px;
    line-height: 1.7;
}

.cta-button {
    min-height: 49px;
    padding: 0 25px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: var(--navy);
    color: white;

    border-radius: 6px;

    font-size: 11px;
    font-weight: 800;

    transition: 0.2s ease;
}

.cta-button:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 50px 0 18px;

    background: var(--navy-dark);
    color: white;
}

.footer-container {
    width: min(1110px, calc(100% - 48px));
    margin: auto;
}

.footer-main {
    padding-bottom: 40px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;

    border-bottom: 1px solid #29415e;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 20px;
    font-weight: 700;
}

.footer-logo-icon {
    color: var(--yellow);
    font-size: 32px;
}

.footer-logo strong {
    color: var(--yellow);
}

.footer-brand p {
    max-width: 350px;

    margin: 14px 0 0;

    color: #9eacbc;

    font-size: 11px;
    line-height: 1.7;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-navigation h4 {
    margin: 0 0 6px;

    color: white;

    font-size: 12px;
}

.footer-navigation a {
    color: #9eacbc;
    font-size: 10px;
}

.footer-navigation a:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding-top: 17px;

    display: flex;
    justify-content: space-between;

    color: #8999ab;

    font-size: 9px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a:hover {
    color: white;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-navigation {
        position: absolute;

        top: 68px;
        left: 0;
        right: 0;

        padding: 22px;

        flex-direction: column;
        gap: 18px;

        background: var(--navy);

        box-shadow:
            0 10px 20px
            rgba(0,0,0,0.2);
    }

    .mobile-navigation.open {
        display: flex;
    }

    .who-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header-container,
    .section-container,
    .about-hero-container,
    .cta-container,
    .footer-container {
        width: calc(100% - 32px);
    }

    .about-hero {
        min-height: 420px;
    }

    .about-hero h1 {
        font-size: 36px;
        letter-spacing: -1.3px;
    }

    .about-hero p {
        font-size: 13px;
    }

    .who-section,
    .mission-section,
    .services-section,
    .values-section {
        padding: 65px 0;
    }

    .who-content h2,
    .section-heading h2,
    .values-intro h2 {
        font-size: 28px;
    }

    .who-card {
        padding: 28px 24px;
    }

    .mission-grid,
    .services-grid,
    .values-list {
        grid-template-columns: 1fr;
    }

    .important-card {
        padding: 25px 20px;
        flex-direction: column;
    }

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

    .cta-content h2 {
        font-size: 25px;
    }

    .cta-button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        line-height: 1.6;
    }

}