/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */
/* ================= TOP BAR ================= */
.top-bar {
    background: #ffffff;
    font-size: 14px;
}

.top-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 5px;
    padding-bottom: 0px;
    display: flex;
    justify-content: space-between;
    align-items: baseline
}



.top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-right a {
    margin-right: 0px;
    text-decoration: none;
    color: #999999;
}

.top-right .phone {
    color: #999999;
    font-weight: 400;
}

/* ================= MAIN NAVBAR ================= */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 8vh;
    align-items: center;
    padding: auto;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8vh;
}

.logo img {
    height: 42px;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 5px;

}

.nav-container-right {
    /*USE TO SEPRATE NAV LINKS AND SOCIAL ICONS FROM LOGO */
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    color: #0088cc;
    padding: 8px 14px;
    border-radius: 6px;
}

.nav-links a:hover {
    background: #0088cc;
    color: #fff;
}

.nav-links a.active {
    background: #0088cc;
    color: #fff;
}

/* ================= SOCIAL ICONS ================= */
.nav-social {
    display: flex;
    gap: 5px;
}

.nav-social .social {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

/* Hover animations */
.nav-social .social:hover {
    transform: translateY(-4px);
    color: #fff;
}

/* Platform colors */
.nav-social .facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.nav-social .x:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}


.nav-social .instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
    border-color: transparent;
}

.nav-social .linkedin:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

/* ================= HAMBURGER ================= */
#nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 24px;
    background: #111;
    margin-bottom: 5px;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        padding: 16px;
        border-top: 1px solid #f1f1f1;
        text-align: center;
    }

    #nav-toggle:checked~.nav-links {
        max-height: 500px;
    }

    .nav-social,
    .top-bar {
        display: none;
    }
}



/* ================= MAIN ================= */
.main-content {
    min-height: 70vh;
    padding: 40px 20px;
}

/* ================= FOOTER ================= */
.footer {
    background: #0d0d0d;
    color: #fff;
    padding: 70px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 18px;
    position: relative;
}

.footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #0088cc;
}

.footer p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer a {
    display: block;
    text-decoration: none;
    color: #bbb;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #0088cc;
    transform: translateX(5px);
}

/* Social Icons */
.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #0088cc;
    color: #fff;
}

/* Contact Icons */
.footer-contact i {
    margin-right: 8px;
    color: #0088cc;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: #222;
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hamburger {
        padding-right: 20px;
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        padding: 16px;
        width: 100%;
        text-align: center;
        border-top: 1px solid #f0f0f0;
    }

    #nav-toggle:checked~.nav-links {
        max-height: 600px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}