/* Site Header - Logo Left | Menu Center | Actions Right */

.site-header .navbar {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.site-header .logo {
    flex-shrink: 0;
    width: 180px;
    display: block;
}

.site-header .logo img {
    width: 100%;
    height: auto;
    display: block;
}

.site-header .navbar-toggler {
    margin-left: auto;
    border: none;
    padding: 0.4rem 0.6rem;
}

.site-header .navbar-toggler:focus {
    box-shadow: none;
}

/* Desktop layout */
@media (min-width: 992px) {
    .site-header .navbar-collapse {
        display: flex !important;
        flex: 1;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .site-header .header-menu {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        margin: 0 auto;
    }

    .site-header .header-menu .nav-item {
        white-space: nowrap;
    }

    .site-header .header-menu .nav-link {
        white-space: nowrap;
        font-size: 0.875rem;
        padding: 0.25rem 0;
    }

    .site-header .header-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-shrink: 0;
        margin-left: auto;
    }

    .site-header .header-actions .header-btn {
        white-space: nowrap;
        padding: 0.65rem 1.4rem;
        font-size: 0.85rem;
        line-height: 1.2;
        display: inline-block;
        text-align: center;
    }

    .site-header .emailSec {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .site-header .emailSec li a {
        white-space: nowrap;
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
    .site-header .logo {
        width: 150px;
    }

    .site-header .header-menu {
        gap: 0.75rem;
    }

    .site-header .header-menu .nav-link {
        font-size: 0.8rem;
    }

    .site-header .emailSec {
        display: none;
    }
}

/* Mobile */
@media (max-width: 991px) {
    .site-header .navbar {
        flex-wrap: wrap;
    }

    .site-header .navbar-collapse {
        width: 100%;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header .header-menu {
        width: 100%;
        margin-bottom: 1rem;
    }

    .site-header .header-menu .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header .header-menu .nav-link {
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .site-header .header-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        min-width: 100% !important;
        top: auto !important;
        left: auto !important;
        box-shadow: none;
        border-top: 1px solid var(--theme-color);
        margin-bottom: 0.5rem;
    }

    .site-header .header-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        padding-bottom: 0.5rem;
    }

    .site-header .header-actions .header-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        white-space: nowrap;
    }

    .site-header .emailSec {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .site-header .emailSec li a {
        font-size: 0.85rem;
        display: block;
        padding: 0.25rem 0;
    }
}

.socialIcons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: start!important;
}
