/* =========================================
   Book PAGE
========================================= */

body {
    background: #f5f8fb;
}



/* =========================================
   Book PAGE NAVBAR
========================================= */

.navbar {
    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e5e9ed;

    position: relative;

    z-index: 1000;
}


.nav-container {
    width: 100%;
    max-width: 1400px;

    min-height: 72px;

    margin: 0 auto;

    padding: 0 6%;

    box-sizing: border-box;

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


/* =========================================
   LOGO
========================================= */

.logo {
    color: #071e33;

    text-decoration: none;

    font-size: 27px;

    font-weight: 800;
}


/* =========================================
   NAVIGATION
========================================= */

.nav-links {
    display: flex;

    align-items: center;

    gap: 34px;
}


.nav-links a {
    position: relative;

    padding: 25px 0;

    color: #344657;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: color 0.25s ease;
}


/* Hover */

.nav-links a:hover {
    color: #dfa12d;
}


/* Active Apply link */

.nav-links a.active {
    color: #dfa12d;
}


/* Active underline */

.nav-links a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 15px;

    height: 3px;

    background: #dfa12d;

    border-radius: 10px;
}


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

@media (max-width: 800px) {

    .nav-container {
        min-height: 65px;

        padding: 0 5%;
    }

    .logo {
        font-size: 23px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        padding: 23px 0;

        font-size: 13px;
    }

}


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

@media (max-width: 600px) {

    .nav-container {
        flex-direction: column;

        padding: 15px 5%;

        gap: 12px;
    }

    .nav-links {
        width: 100%;

        justify-content: center;

        gap: 14px;

        flex-wrap: wrap;
    }

    .nav-links a {
        padding: 5px 0;

        font-size: 12px;
    }

    .nav-links a.active::after {
        bottom: -4px;
    }

}


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

.apply-hero {
    min-height: 380px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 6%;

    background: #071e33;

    text-align: center;

    color: #ffffff;
}

.apply-hero-content {
    max-width: 850px;
}

.apply-hero h1 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 72px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.apply-hero h1 span {
    color: #f4b942;
}

.apply-hero p {
    max-width: 700px;

    margin: 25px auto 0;

    color: #d9e2eb;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================
   APPLICATION SECTION
========================================= */

.application-section {
    padding: 100px 6%;
}

.application-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 40px;

    align-items: stretch;
}


/* =========================================
   LEFT INFORMATION CARD
========================================= */

.application-info {
    padding: 45px;

    background: #071e33;

    border-radius: 18px;

    color: #ffffff;
}

.application-info h2 {
    margin: 0 0 18px;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;
}

.application-info > p {
    margin: 0 0 35px;

    color: #cbd7e1;

    line-height: 1.75;
}


/* INFO ITEMS */

.application-feature {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 25px;
}

.application-feature-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff5df;

    color: #dfa12d;

    border-radius: 10px;

    font-size: 21px;
}

.application-feature h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 17px;
}

.application-feature p {
    margin: 0;

    color: #b8c7d3;

    font-size: 14px;

    line-height: 1.5;
}


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

.application-form-card {
    padding: 45px;

    background: #ffffff;

    border: 1px solid #e2e8ee;

    border-radius: 18px;

    box-shadow: 0 12px 40px rgba(7, 30, 51, 0.08);
}

.application-form-card h2 {
    margin: 0 0 8px;

    color: #071e33;

    font-size: 30px;

    font-weight: 800;
}

.form-description {
    margin: 0 0 30px;

    color: #617080;

    line-height: 1.6;
}


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

.application-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #071e33;

    font-size: 14px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    background: #f8fafc;

    color: #071e33;

    border: 1px solid #d7e0e7;

    border-radius: 7px;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #ffffff;

    border-color: #dfa12d;

    box-shadow: 0 0 0 3px rgba(223, 161, 45, 0.12);
}


/* =========================================
   SUBMIT BUTTON
========================================= */

.apply-submit {
    grid-column: 1 / -1;

    display: inline-flex;

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

    gap: 10px;

    width: 100%;

    min-height: 56px;

    margin-top: 5px;

    background: #dfa12d;

    color: #ffffff;

    border: 2px solid #dfa12d;

    border-radius: 7px;

    font-family: inherit;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}

.apply-submit::after {
    content: "→";

    font-size: 20px;

    transition: transform 0.25s ease;
}

.apply-submit:hover {
    background: #071e33;

    border-color: #071e33;

    transform: translateY(-2px);
}

.apply-submit:hover::after {
    transform: translateX(5px);
}


/* =========================================
   HOW IT WORKS
========================================= */

.application-steps {
    padding: 90px 6%;

    background: #ffffff;

    text-align: center;
}

.application-steps h2 {
    margin: 0;

    color: #071e33;

    font-size: clamp(32px, 4vw, 45px);

    font-weight: 800;
}

.steps-intro {
    max-width: 650px;

    margin: 18px auto 50px;

    color: #617080;

    line-height: 1.7;
}

.steps-grid {
    width: 100%;
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

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

    gap: 30px;
}

.step {
    padding: 30px;

    border: 1px solid #e2e8ee;

    border-radius: 16px;

    background: #f8fafc;
}

.step-number {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    background: #071e33;

    color: #f4b942;

    border-radius: 50%;

    font-weight: 800;

    font-size: 18px;
}

.step h3 {
    margin: 0 0 10px;

    color: #071e33;

    font-size: 20px;
}

.step p {
    margin: 0;

    color: #617080;

    line-height: 1.6;
}


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

@media (max-width: 900px) {

    .application-section {
        padding: 80px 5%;
    }

    .application-container {
        grid-template-columns: 1fr;

    }

    .application-info {
        padding: 35px;
    }

    .application-form-card {
        padding: 35px;
    }

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


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

@media (max-width: 600px) {

    .apply-hero {
        min-height: 330px;

        padding: 65px 6%;
    }

    .apply-hero h1 {
        font-size: 44px;

        letter-spacing: -1px;
    }

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

    .application-section {
        padding: 60px 5%;
    }

    .application-info,
    .application-form-card {
        padding: 28px 22px;
    }

    .application-info h2 {
        font-size: 29px;
    }

    .application-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .apply-submit {
        grid-column: auto;
    }

    .application-steps {
        padding: 65px 5%;
    }

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