.contact-page {
    background: #f6f8fb;
    color: var(--ink)
}

.light-header {
    background: rgba(246, 248, 251, .88);
    border-bottom: 1px solid rgba(7, 19, 31, .10)
}

.light-header .brand-text strong,
.light-header .main-nav a {
    color: #07131f
}

.light-header .brand-text small {
    color: #526173
}

.light-header .nav-toggle span {
    background: #07131f
}

.contact-hero {
    min-height: calc(100vh - 120px);
    padding: 155px 0 90px;
    background: linear-gradient(180deg, #f6f8fb, #eef3f8)
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1fr;
    gap: 70px;
    align-items: start
}

.contact-copy .eyebrow {
    color: #007987
}

.contact-copy h1 {
    color: #07131f
}

.contact-copy p {
    font-size: 1.1rem;
    color: #435267;
    max-width: 560px;
    margin-top: 22px
}

.contact-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px
}

.contact-notes span {
    padding: 10px 13px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dce4ed;
    color: #263548;
    font-weight: 800;
    font-size: .84rem
}

.contact-form {
    background: #fff;
    border: 1px solid #dce4ed;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(7, 19, 31, .10)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 800;
    color: #07131f;
    font-size: .9rem;
    margin-bottom: 16px
}

input,
textarea {
    width: 100%;
    border: 1px solid #d6e0ea;
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit;
    color: #07131f;
    background: #f8fafc;
    outline: none;
    transition: .2s ease
}

input:focus,
textarea:focus {
    border-color: #00aabc;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 207, 232, .12)
}

textarea {
    resize: vertical
}

.contact-form .btn {
    width: 100%;
    border: 0;
    cursor: pointer
}

.form-caption {
    font-size: .82rem;
    color: #6b7788;
    text-align: center;
    margin-top: 14px
}

.light-footer {
    background: #eef3f8;
    color: #07131f;
    border-top: 1px solid #dce4ed
}

.light-footer p,
.light-footer nav {
    color: #526173
}

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

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

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

    padding:18px 50px;

    background:transparent;

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        border-color .35s ease;
}

.site-header.scrolled{
    background:rgba(5,12,25,.88);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

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

.brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.brand-logo{
    height:60px;
    width:auto;
    display:block;
}

/* =========================
   MENU
========================= */

.main-nav{
    display:flex;
    align-items:center;
    gap:10px;
}

.main-nav a{
    color:#fff;
    text-decoration:none;
    font-size:.95rem;
    font-weight:600;
    letter-spacing:.5px;

    padding:12px 18px;
    border-radius:14px;

    transition:all .3s ease;
}

.main-nav a:hover{
    color:#22d3ff;
    background:rgba(34,211,255,.08);

    transform:translateY(-2px);

    box-shadow:
        0 0 20px rgba(34,211,255,.15),
        inset 0 0 0 1px rgba(34,211,255,.18);
}

.main-nav a.active{
    color:#22d3ff;

    background:rgba(34,211,255,.10);

    box-shadow:
        0 0 24px rgba(34,211,255,.18),
        inset 0 0 0 1px rgba(34,211,255,.25);
}

.footer-nav{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.footer-social{
    display:flex;
    align-items:center;
    gap:16px;
}

.footer-social a{
    width:46px;
    height:46px;

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

    border-radius:14px;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);

    transition:.3s ease;
}

.footer-social svg{
    width:22px;
    height:22px;
    fill:currentColor;
}

.footer-social a:hover{
    color:var(--cyan);

    background:rgba(0,207,232,.08);

    border-color:rgba(0,207,232,.35);

    transform:translateY(-3px);

    box-shadow:
        0 0 20px rgba(0,207,232,.25);
}

.footer-bottom{
    text-align:center;

    padding:20px;

    color:#8fa5ba;

    font-size:.9rem;

    border-top:none;
}
/* =========================
   MENU MOBILE
========================= */

.nav-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
}

.nav-toggle span{
    display:block;

    width:28px;
    height:3px;

    margin:5px 0;

    border-radius:20px;

    background:#fff;

    transition:.3s;
}

@media(max-width:900px) {
    .contact-hero {
        padding: 126px 0 64px
    }

    .contact-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .contact-form {
        padding: 22px;
        border-radius: 22px
    }

    .light-header .main-nav {
        background: rgba(246, 248, 251, .98)
    }
    .site-header{
    padding:15px 20px;
}

.brand-logo{
    height:48px;
}

.nav-toggle{
    display:block;
    z-index:10001;
}

.main-nav{
    position:fixed;

    top:0;
    right:-100%;

    width:280px;
    height:100vh;

    background:#08111f;

    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:20px;

    transition:.35s ease;

    z-index:10000;
}

.main-nav.open{
    right:0;
}

.main-nav a{
    font-size:1.05rem;
}
}