﻿/* Header Styles */
.top-bar {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.top-bar-container {
    max-width: 96%;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adventure-text {
    color: #666;
    font-weight: 400;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-email {
    color: #000000;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 8px;
}

    .social-icons a {
        width: 24px;
        height: 24px;
        background: #333;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 10px;
        border-radius: 50%;
    }

.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #007bff;
    }

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.live-service {
    color: #666;
    font-size: 12px;
    font-weight: 400;
}

.phone-button {
    background: #001C40;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
}

    .phone-button i {
        font-size: 10px;
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: #333;
    order: 2;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid #eee;
}

    .mobile-menu.active {
        display: block;
    }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
}

    .mobile-nav-links .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: left;
        display: block;
        font-size: 14px;
    }

        .mobile-nav-links .nav-link:last-child {
            border-bottom: none;
        }
