/* Basic Reset and Font Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
}

/* Header and Navbar Container (Desktop) */
header {
    background-color: #fff;
    padding: 15px 50px;
    border-bottom: 1px solid #e0e0e0;
}

.aw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aw-header__hamburger,
.aw-header__mobile-placeholder {
    display: none;
}

.aw-header ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.aw-header a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

/* Logo Styling */
.aw-header__logo a {
    display: flex;
    align-items: center;
}

.aw-header__logo img {
    max-height: 115px; /* Increased from 40px */
    width: auto;
}

.aw-header__right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.aw-header__search-icon {
    font-size: 16px;
    color: #555;
}

.aw-header__contact-btn {
    background-color: #3B5998;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

/* --- Mobile Menu Styles --- */
.aw-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.aw-mobile-menu.is-open {
    transform: translateX(0);
}

.aw-mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    min-height: 60px;
}

.aw-mobile-menu__logo img {
    max-height: 45px; /* Increased from 35px */
}

.aw-mobile-menu__search-icon, .aw-mobile-menu__close {
    font-size: 22px;
    color: #555;
    cursor: pointer;
    flex: 0 0 30px;
}

.aw-mobile-menu__logo {
    flex-grow: 1;
    text-align: center;
}

.aw-mobile-menu__links {
    list-style: none;
    padding: 20px 0;
}

.aw-mobile-menu__links li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 900px) {
    header {
        padding: 10px 20px;
    }

    .aw-header__left, .aw-header__right {
        display: none;
    }

    .aw-header__hamburger {
        display: block;
        font-size: 24px;
        color: #555;
        cursor: pointer;
        flex: 0 0 40px;
        text-align: left;
    }

    .aw-header__mobile-placeholder {
        display: block;
        flex: 0 0 40px;
    }
}