/* =========================
   Header (Larger, confident)
   ========================= */

.site-header {
    background-color: #003366; /* Navy #003366   #0b1f33*/
    height: 80px;              /* Increased from 64px */
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Brand */

.brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 62px;              /* Increased from 26px */
    width: auto;
    display: block;
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 28px;
    font-size: 1rem;           /* Slightly larger */
    font-weight: 500;
    opacity: 0.9;
}

.main-nav a:hover {
    opacity: 1;
}


.section h2 {
    margin-bottom: 2px;
}

.section ul {
    margin-top: 0;
}

.section p {
    margin-top: 0;
    margin-bottom: 6px;
}


/* =========================
   Footer (matched to header)
   ========================= */

.site-footer {
    background-color: #000000; /* Black */
    height: 80px;              /* Same as header */
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-brand,
.footer-meta {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.85;
}


/* Contact form */

.contact-form {
    max-width: 480px;
}

.contact-form label {
    display: block;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form button {
    background-color: #0b1f33;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
    cursor: pointer;
}

.contact-form button:hover {
    opacity: 0.9;
}


/* =========================
   Mobile navigation fix
   ========================= */

@media (max-width: 768px) {

    .site-header {
        height: auto;
        padding: 16px 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand {
        margin-bottom: 12px;
    }

    .logo {
        height: 48px;
    }

    .main-nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .main-nav a {
        margin: 8px 16px 0 0;
        font-size: 0.95rem;
    }
}



/* =========================
   Contact form wrapper
   ========================= */

.form-wrapper {
    max-width: 520px;
    background: #ffffff;
    border: 1px solid #e5e9ee;
    border-radius: 6px;
    padding: 20px 22px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.035);
    margin-bottom: 20px;
}


.form-wrapper h2 {
    margin: 0 0 6px 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0b1f33;
}

.form-intro {
    margin: 0 0 16px 0;
    font-size: 0.85rem;
    color: #667085;
    line-height: 1.4;
}

/* =========================
   Form field layout (correct)
   ========================= */

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475467;
}


.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 9px 10px;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    box-sizing: border-box;
    background-color: #f8fafc; /* very light grey */
}



.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #0b1f33;
    box-shadow: 0 0 0 1px rgba(11, 31, 51, 0.15);
}



/* =========================
   Button
   ========================= */

.contact-form button {
    margin-top: 8px;
    background-color: #0b1f33;
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
}


.contact-form button:hover {
    opacity: 0.95;
}

body {
    background-color: #f5f6f8;
}



