* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e8ebef;
}

.navbar {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #102a43;
    color: #ffffff;

    font-size: 22px;
    font-weight: 800;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    font-size: 14px;
    letter-spacing: 1px;
}

.logo-text small {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: #8a929d;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;

    color: #596472;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #102a43;
}

.nav-menu a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 2px;

    background: #c49a5a;
}

.nav-button {
    padding: 12px 20px;

    background: #102a43;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-button:hover {
    background: #c49a5a;
}

.menu-toggle {
    display: none;

    border: none;
    background: none;

    color: #102a43;

    font-size: 25px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.page-hero {
    min-height: 500px;

    display: flex;
    align-items: center;

    padding-top: 82px;

    background:
        linear-gradient(
            115deg,
            #0b2237,
            #163851,
            #24475f
        );

    color: #ffffff;
}

.page-hero-content {
    max-width: 850px;
}

.hero-label {
    display: block;

    margin-bottom: 20px;

    color: #d8b476;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.page-hero h1 {
    max-width: 850px;

    font-size: clamp(45px, 6vw, 70px);

    line-height: 1.08;

    letter-spacing: -3px;

    margin-bottom: 25px;
}

.page-hero h1 span {
    color: #d8b476;
}

.page-hero p {
    max-width: 680px;

    color: #d5dfe7;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 28px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #aebdca;

    font-size: 12px;
}

.breadcrumb a {
    color: #d8b476;
}


/* =====================================================
   GENERAL
===================================================== */

.section {
    padding: 110px 0;
}

.section-label {
    display: block;

    color: #c49a5a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

h2 {
    font-size: 45px;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

h2 span {
    color: #c49a5a;
}

.section-heading {
    margin-bottom: 60px;
}

.centered {
    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.centered p {
    max-width: 680px;

    margin: 20px auto 0;

    color: #707a85;

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   CONTACT INTRO
===================================================== */

.contact-intro {
    background: #ffffff;
}

.contact-info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.contact-info-card {
    padding: 35px 30px;

    background: #ffffff;

    border: 1px solid #e3e7ea;

    transition: 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    border-color: #c49a5a;

    box-shadow: 0 15px 35px rgba(16, 42, 67, 0.07);
}

.contact-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #102a43;

    color: #d8b476;

    font-size: 18px;
    font-weight: 800;
}

.contact-info-card > span {
    display: block;

    color: #c49a5a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.contact-info-card h3 {
    font-size: 19px;

    margin-bottom: 10px;

    word-break: break-word;
}

.contact-info-card p {
    color: #707a85;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.contact-info-card a {
    color: #102a43;

    font-size: 12px;
    font-weight: 800;

    transition: 0.3s;
}

.contact-info-card a:hover {
    color: #c49a5a;
}


/* =====================================================
   CONTACT FORM SECTION
===================================================== */

.contact-section {
    background: #f7f8f9;
}

.contact-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 80px;

    align-items: start;
}

.contact-content > p {
    max-width: 560px;

    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin: 20px 0 35px;
}

.contact-points {
    display: flex;
    flex-direction: column;
}

.contact-points > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 18px;

    padding: 20px 0;

    border-bottom: 1px solid #dfe4e8;
}

.contact-points > div:first-child {
    border-top: 1px solid #dfe4e8;
}

.contact-points > div > span {
    color: #c49a5a;

    font-size: 11px;
    font-weight: 800;
}

.contact-points h3 {
    font-size: 16px;

    margin-bottom: 5px;
}

.contact-points p {
    color: #707a85;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   FORM
===================================================== */

.form-box {
    padding: 40px;

    background: #ffffff;

    border: 1px solid #e1e5e8;

    box-shadow: 0 20px 50px rgba(16, 42, 67, 0.06);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    color: #172033;

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 13px 15px;

    border: 1px solid #dce1e5;

    background: #ffffff;

    color: #172033;

    font-size: 13px;

    outline: none;

    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c49a5a;

    box-shadow: 0 0 0 3px rgba(196, 154, 90, 0.08);
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a8b0;
}

.consent {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 5px 0 22px;

    color: #707a85;

    font-size: 11px;

    cursor: pointer;
}

.consent input {
    margin-top: 3px;

    accent-color: #102a43;
}

.submit-button {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 20px;

    border: none;

    background: #102a43;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;
}

.submit-button:hover {
    background: #c49a5a;

    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}

.form-message {
    display: none;

    margin-top: 18px;

    padding: 12px 15px;

    font-size: 12px;

    line-height: 1.6;
}

.form-message.success {
    display: block;

    background: #edf7f0;

    color: #28633a;

    border: 1px solid #cce5d2;
}

.form-message.error {
    display: block;

    background: #fff1f1;

    color: #9b3030;

    border: 1px solid #edcccc;
}


/* =====================================================
   OFFICE
===================================================== */

.office {
    background: #ffffff;
}

.office-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.office-map {
    min-height: 430px;

    background:
        linear-gradient(
            135deg,
            #dfe5e8,
            #f1f3f4
        );

    padding: 18px;
}

.map-placeholder {
    height: 100%;

    min-height: 394px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            45deg,
            rgba(16, 42, 67, 0.06) 25%,
            transparent 25%
        ),
        linear-gradient(
            -45deg,
            rgba(16, 42, 67, 0.06) 25%,
            transparent 25%
        );

    background-size: 40px 40px;

    border: 1px solid #d7dde1;
}

.map-pin {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #102a43;

    color: #d8b476;

    font-size: 25px;
}

.map-placeholder strong {
    color: #172033;

    font-size: 16px;

    margin-bottom: 5px;
}

.map-placeholder span {
    color: #707a85;

    font-size: 12px;
}

.office-content > p {
    max-width: 560px;

    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin: 20px 0 30px;
}

.office-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    padding-top: 25px;

    border-top: 1px solid #e1e5e8;
}

.office-details > div:last-child {
    grid-column: 1 / -1;
}

.office-details span {
    display: block;

    color: #c49a5a;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.office-details p {
    color: #596472;

    font-size: 12px;

    line-height: 1.8;
}


/* =====================================================
   BENEFITS
===================================================== */

.contact-benefits {
    background: #f7f8f9;
}

.benefit-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.benefit-card {
    padding: 35px 27px;

    background: #ffffff;

    border-top: 2px solid #c49a5a;

    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(16, 42, 67, 0.07);
}

.benefit-number {
    color: #c49a5a;

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 25px;
}

.benefit-card h3 {
    font-size: 17px;

    margin-bottom: 12px;
}

.benefit-card p {
    color: #707a85;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   FAQ
===================================================== */

.faq {
    background: #ffffff;
}

.faq-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
}

.faq-grid > div:first-child p {
    color: #707a85;

    font-size: 14px;

    line-height: 1.9;

    margin-top: 20px;
}

.faq-list {
    border-top: 1px solid #e1e5e8;
}

.faq-item {
    border-bottom: 1px solid #e1e5e8;
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 22px 5px;

    border: none;

    background: #ffffff;

    color: #172033;

    text-align: left;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.faq-question span {
    color: #c49a5a;

    font-size: 20px;

    transition: 0.3s;
}

.faq-answer {
    display: none;

    padding: 0 5px 22px;

    color: #707a85;

    font-size: 13px;

    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}


/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 90px 0;

    background:
        linear-gradient(
            110deg,
            #163852,
            #0b2237
        );

    color: #ffffff;
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.cta h2 {
    max-width: 700px;
}

.cta p {
    max-width: 650px;

    margin-top: 18px;

    color: #c5d1da;

    font-size: 14px;
}

.cta-button {
    white-space: nowrap;

    padding: 16px 25px;

    background: #c49a5a;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    transition: 0.3s;
}

.cta-button:hover {
    background: #d8b476;

    transform: translateY(-2px);
}

.cta-button span {
    margin-left: 10px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #0a1d2e;

    color: #aebac5;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding: 65px 0;
}

.footer-logo {
    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.footer-grid p {
    max-width: 280px;

    font-size: 12px;

    line-height: 1.8;
}

.footer-grid h4 {
    color: #ffffff;

    font-size: 13px;

    margin-bottom: 18px;
}

.footer-grid a {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;

    transition: 0.3s;
}

.footer-grid a:hover {
    color: #d8b476;
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    font-size: 11px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 15px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .nav-menu,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu.show {
        display: flex;

        position: absolute;

        top: 82px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: #ffffff;

        flex-direction: column;

        gap: 20px;

        border-bottom: 1px solid #e5e8eb;
    }

    .contact-grid,
    .office-grid,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 600px) {

    .navbar {
        height: 72px;
    }

    .page-hero {
        min-height: 470px;

        padding-top: 72px;
    }

    .page-hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .section {
        padding: 75px 0;
    }

    h2 {
        font-size: 35px;
    }

    .contact-info-grid,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-box {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .office-map {
        min-height: 350px;
    }

    .map-placeholder {
        min-height: 314px;
    }

    .office-details {
        grid-template-columns: 1fr;
    }

    .office-details > div:last-child {
        grid-column: auto;
    }

    .cta {
        padding: 70px 0;
    }
}
/* Reduce spacing in Footer Contact section */
.footer-grid > div:last-child p {
    margin: 0 0 10px;
    line-height: 1.5;
}

.footer-grid > div:last-child a {
    display: inline;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid #e8ebef;
}

/* ================================
   HEADER - DESKTOP
================================ */
/* DESKTOP */
.navbar {
    height: 82px;
    display: flex;
    align-items: center;
}
/* LOGO ONLY */
.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

.logo img {
    width: 80px;
    height: 58px;
    object-fit: contain;
    display: block;
    transform: scale(4);
    transform-origin: left center;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-button {
    display: block;
    margin-left: 28px;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
}

/* ================================
   MOBILE MENU
================================ */

@media (max-width: 800px) {

    .nav-menu {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 20px 25px;
        box-sizing: border-box;
        z-index: 9999;
    }

    /* OPEN MENU */
    .nav-menu.show {
        display: flex !important;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 0;
        color: #102a43;
    }

    /* Hide Book Consultation on mobile */
    .nav-button {
        display: none;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
        margin-left: auto;
        background: none;
        border: none;
        font-size: 30px;
        color: #102a43;
        cursor: pointer;
        z-index: 10000;
    }
}
.copyright {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 13px;
    color: #8a929d;
}