/* ================= 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;
}

/* ================= SCHEDULER SECTION ================= */

.contact-section {
    padding: 60px 20px;
}

.scheduler-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.zoom-scheduler {
    width: 100%;
    max-width: 750px;
    height: 660px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .zoom-scheduler {
        height: 700px;
    }
}

/* ================= 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;
}
