* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

:root {
    --brand-blue: #007bff;
    --dark-text: #333;
}

/* -------- TOP STRIP -------- */
.top-strip {
    background: #f5f5f5;
    padding: 6px 0;
    border-bottom: 1px solid #ddd;
}

.top-strip-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #444;
}

.strip-btn {
    padding: 6px 14px;
    border: 1px solid #0098db;
    color: #0098db;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
}
.strip-btn.filled {
    background: #0098db;
    color: #fff;
}

/* -------- NAVBAR -------- */
.main-header {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
}

.nav-container {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-menu a.active {
    color: #0098db;
}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile Navbar */
@media (max-width: 900px) {
    .nav-menu {
        position: absolute;
        top: 75px;
        right: 0;
        background: #fff;
        width: 220px;
        padding: 20px;
        gap: 0;
        display: none;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .nav-menu.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 60px 0;
    background: #fafafa;
}

.contact-wrapper {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-left { width: 45%; }

.contact-left h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-info-box h4 {
    margin-top: 20px;
    font-size: 16px;
}

.contact-form {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.contact-form h3 { margin-bottom: 20px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: var(--brand-blue);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover { background: #005fcc; }

@media(max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-left,
    .contact-form {
        width: 100%;
    }
}

/* ===== Footer ===== */
.footer {
    background: #f5f7fa;
    color: #2b2b2b;
    margin-top: 70px;
    border-top: 1px solid #e0e0e0;
}

.footer-top {
    max-width: 1300px;
    padding: 60px 30px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #003366;
}

.footer-logo {
    width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 280px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #2b2b2b;
    font-size: 14px;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #0078d4;
}

/* Contact Icons */
.footer-contact li i {
    margin-right: 8px;
    color: #0078d4;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8ecf1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0078d4;
    font-size: 18px;
    transition: 0.25s ease;
}

.social-icon:hover {
    background: #0078d4;
    color: #fff;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 18px;
    background: #e7ecf5;
    font-size: 14px;
    color: #4d4d4d;
}

/* Responsive */
@media(max-width: 950px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-tagline {
        max-width: 100%;
    }
    .footer-social {
        justify-content: center;
    }
}
