/* ================= GLOBAL RESET ================= */

* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    color: #0f1f33;
    background-color: #ffffff;
    line-height: 1.6;
}

h1 {
    font-weight: 600;
}


/* ================= NAVIGATION ================= */

.navbar {
    background-color: #061c33; /* Deep blue */
    padding: 18px 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.nav-links li a:hover {
    opacity: 0.85;
}

.nav-cta {
    padding: 8px 16px;
    border: 1px solid #ffffff;
    border-radius: 4px;
}


/* ================= HERO ================= */

.contact-hero {
    background-color: #0b2a4a;
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    max-width: 720px;
    margin: auto;
    opacity: 0.95;
}

/* ================= FORM SECTION ================= */

.contact-section {
    padding: 80px 20px;
}

.contact-container {
    width: 100%;
    max-width: 640px;
    margin: auto;
}

/* ================= FORM ================= */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #0b2a4a;
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #cfd6dc;
    border-radius: 4px;
    font-family: inherit;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0b2a4a;
}

/* ================= BUTTON ================= */

.contact-btn {
    margin-top: 16px;
    background-color: #0b2a4a;
    color: #ffffff;
    padding: 14px 26px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start; /* keeps it from stretching */
}

.contact-btn:hover {
    opacity: 0.9;
}

/* ================= HIDDEN (HONEYPOT) ================= */

.hidden {
    display: none;
}

/* ================= FOOTER ================= */

.enterprise-footer {
    background-color: #0b2a4a;
    color: #ffffff;
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 24px;
}

.footer-column h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-column p,
.footer-column ul li {
    font-size: 14px;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-legal {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

.footer-legal a {
    color: #ffffff;
    margin: 0 6px;
}
