/* ==========================================
   Header
========================================== */

.site-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

/* ==========================================
   Logo
========================================== */

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo a {
    text-decoration: none;
}

/* ==========================================
   Desktop Navigation
========================================== */

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #1D5689;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #a61c3c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links li a.enquire-btn::after {
    content: none;
}
.nav-links li a:hover::after,
.nav-links li.current-menu-item a::after {
    transform: scaleX(1);
}

.nav-links li a:hover,
.nav-links li.current-menu-item a {
    color: #a61c3c;
}

/* ==========================================
   Enquire Button
========================================== */


.enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background-color: #1D5689;
    color: #fff !important;
    
    width: 140px;
    height: 50px;
    
    padding: 0 !important;
    margin-left: 20px;
    
    border-radius: 10px;
    
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    
    transition: background-color 0.3s ease;
}



.enquire-btn:hover {
    background-color: #002244;
}

/* ==========================================
   Mobile Right Section
========================================== */

.mobile-right {
    display: none;
    align-items: center;
    gap: 12px;
}

/* ==========================================
   Mobile Menu Button
========================================== */

.menu-toggle {
    display: none;

    background: transparent;
    border: none;

    font-size: 24px;
    color: #333;

    cursor: pointer;
    padding: 5px;
}
/* ==========================================
   Tablet / Mobile - 1024px and below
========================================== */

@media screen and (max-width: 1024px) {

    .site-header {
        padding: 12px 5%;
    }

    .navbar {
        width: 100%;
        min-height: 50px;
    }

    /* Hide desktop navigation */
    .nav-links {
        display: none;

        position: absolute;
        top: calc(100% + 13px);
        left: 0;

        width: 100%;
        max-height: calc(100vh - 80px);
        overflow-y: auto;

        background-color: #f8f9fa;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 15px 25px;

        border-top: 1px solid #e5e5e5;

        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);

        box-sizing: border-box;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        font-size: 16px;
        padding: 5px 0;
        box-sizing: border-box;
    }

    /* Remove underline on mobile */
    .nav-links li a::after {
        content: none;
    }

    /* Hide desktop enquire button */
    .desktop-enquire {
        display: none;
    }

    /* Mobile right section */
    .mobile-right {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }

    /* Menu button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 40px;
        height: 40px;

        background: transparent;
        border: none;

        font-size: 24px;
        line-height: 1;

        color: #333;
        cursor: pointer;

        padding: 0;
    }

    /* Mobile enquire button */
    .mobile-enquire {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: auto !important;
        height: 40px;

        padding: 0 16px !important;
        margin-left: 0 !important;

        font-size: 13px !important;
        line-height: 1 !important;

        border-radius: 20px;
        box-sizing: border-box;
        white-space: nowrap;
    }
}


/* ==========================================
   Small Mobile - 480px and below
========================================== */

@media screen and (max-width: 480px) {

    .site-header {
        padding: 10px 20px;
    }

    .navbar {
        min-height: 40px;
    }

    .logo img {
        height: 38px;
    }

    .mobile-right {
        gap: 6px;
    }

    .mobile-enquire {
        height: 36px;
        padding: 0 13px !important;
        font-size: 12px !important;
        border-radius: 18px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .nav-links {
        top: calc(100% + 10px);
        padding: 12px 20px;
    }

    .nav-links li {
        padding: 9px 0;
    }

    .nav-links li a {
        font-size: 15px;
    }
}