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

* {
    box-sizing: border-box;
}


:root {
    --navy: #061a36;
    --navy-light: #0b2c56;
    --yellow: #ffc21a;
    --text: #14233a;
    --muted: #687587;
    --border: #e4e9ef;
    --background: #f7f9fc;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    background: #ffffff;

    color: var(--text);
}


a {
    text-decoration: none;
}


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

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: #ffffff;

    border-bottom:
        1px solid #edf0f4;
}


.header-container {
    width: 100%;
    max-width: 1180px;

    height: 76px;

    margin: auto;

    padding:
        0
        20px;

    display: flex;

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


.logo {
    display: flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;
}


.logo-globe {
    color: var(--yellow);

    font-size: 37px;
}


.logo-name {
    color: var(--navy);

    font-size: 18px;

    font-weight: 700;
}


.logo-name span {
    color: #dfa700;
}


.logo-subtitle {
    margin-top: 2px;

    color: #7d8998;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1px;
}


.desktop-navigation {
    display: flex;

    align-items: center;

    gap: 24px;
}


.desktop-navigation a {
    color: #445166;

    font-size: 10px;

    font-weight: 600;
}


.desktop-navigation a:hover,
.desktop-navigation a.active {
    color: #dfa700;
}


.mobile-menu-button {
    display: none;

    border: none;

    background: transparent;

    color: var(--navy);

    font-size: 24px;

    cursor: pointer;
}


.mobile-navigation {
    display: none;
}


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

.reviews-hero {
    padding:
        75px
        20px;

    background:
        linear-gradient(
            120deg,
            #041934,
            #07315e
        );

    color: white;
}


.reviews-hero-container {
    max-width: 1180px;

    margin: auto;
}


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

    color: var(--yellow);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.reviews-hero h1 {
    max-width: 700px;

    margin:
        0
        0
        15px;

    font-size: 42px;

    line-height: 1.15;
}


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

    margin-bottom: 18px;

    border-radius: 10px;

    background: var(--yellow);
}


.reviews-hero p {
    max-width: 680px;

    margin: 0;

    color: #cad5e2;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    padding:
        70px
        20px
        85px;

    background: var(--background);
}


.container {
    width: 100%;

    max-width: 1180px;

    margin: auto;
}


.reviews-heading {
    margin-bottom: 32px;
}


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

    color: #c38b00;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.reviews-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: 27px;
}


/* =========================================================
   GRID
========================================================= */

.reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.review-card {
    position: relative;

    min-height: 285px;

    padding: 25px;

    background: #ffffff;

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

    border-radius: 11px;

    box-shadow:
        0
        6px
        20px
        rgba(6, 26, 54, 0.04);

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


.review-card:hover {
    transform:
        translateY(-4px);

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


.review-top {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 18px;

    padding-bottom: 16px;

    border-bottom:
        1px solid #edf0f4;
}


.review-avatar {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--navy);

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;
}


.review-top h3 {
    margin:
        0
        0
        4px;

    color: var(--navy);

    font-size: 13px;
}


.stars {
    color: #ffb900;

    font-size: 10px;

    letter-spacing: 1px;
}


.review-card p {
    margin: 0;

    color: #5e6c7e;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   STATUS
========================================================= */

.review-status {
    display: inline-flex;

    margin-bottom: 17px;

    padding:
        6px
        9px;

    border-radius: 20px;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.6px;
}


.status-application {
    background: #f0f3f7;
    color: #556579;
}


.status-interview {
    background: #eaf3ff;
    color: #175ba5;
}


.status-progress {
    background: #fff6da;
    color: #9c6c00;
}


.status-offer {
    background: #fff0c6;
    color: #856000;
}


.status-visa {
    background: #f0edff;
    color: #5641a5;
}


.status-success {
    background: #e7f7ee;
    color: #187045;
}


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

.reviews-cta {
    margin-top: 45px;

    padding:
        35px
        40px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-radius: 12px;

    background:
        linear-gradient(
            120deg,
            #041934,
            #07315e
        );
}


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

    color: var(--yellow);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.reviews-cta h2 {
    margin:
        0
        0
        7px;

    color: white;

    font-size: 23px;
}


.reviews-cta p {
    margin: 0;

    color: #c5d0dc;

    font-size: 11px;
}


.cta-button {
    min-width: 185px;

    padding:
        15px
        18px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-radius: 6px;

    background: var(--yellow);

    color: var(--navy);

    font-size: 10px;

    font-weight: 800;
}


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

.footer {
    padding:
        50px
        20px
        25px;

    background: #03152d;

    color: white;
}


.footer-container {
    max-width: 1180px;

    margin: auto;
}


.footer-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding-bottom: 35px;
}


.footer-top h2 {
    max-width: 570px;

    margin:
        0
        0
        8px;

    font-size: 22px;
}


.footer-top p {
    margin: 0;

    color: #9fb0c3;

    font-size: 11px;
}


.footer-button {
    min-width: 175px;

    padding:
        14px
        17px;

    display: flex;

    justify-content: space-between;

    background: var(--yellow);

    color: var(--navy);

    border-radius: 6px;

    font-size: 9px;

    font-weight: 800;
}


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

    display: flex;

    justify-content: space-between;

    border-top:
        1px solid
        rgba(255,255,255,0.1);

    color: #8092a8;

    font-size: 8px;
}


.footer-links {
    display: flex;

    gap: 18px;
}


.footer-links a {
    color: #8092a8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .reviews-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 760px) {

    .desktop-navigation {
        display: none;
    }


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


    .mobile-navigation.open {
        display: flex;

        padding:
            15px
            20px;

        flex-direction: column;

        gap: 15px;

        background: white;

        border-top:
            1px solid var(--border);
    }


    .mobile-navigation a {
        color: var(--navy);

        font-size: 11px;

        font-weight: 600;
    }


    .reviews-hero h1 {
        font-size: 32px;
    }


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


    .reviews-cta,
    .footer-top,
    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    .cta-button,
    .footer-button {
        width: 100%;
    }

}