/**
 * Navigation Bar Styles - Clean Design Matching Screenshot
 */

.main-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Side - Logo + Subtitle */
.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    gap: 2px;
}

.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo-icon {
    color: var(--brand);
    font-size: 16px;
    margin: 0 2px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-subtitle {
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
}

/* Right Side - Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    align-self: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    opacity: 0.8;
}

.dropdown-arrow {
    font-size: 10px;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link-main {
    padding-right: 0;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0 4px;
    margin-left: 4px;
    transition: opacity 0.2s ease;
}

.dropdown-toggle:hover {
    opacity: 0.8;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    background: #000;
    border: 1px solid #333;
    border-radius: 4px;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1001;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    border-bottom: 1px solid #333;
    transition: background 0.2s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #1a1a1a;
}

.nav-search {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    transition: opacity 0.2s ease;
}

.nav-search:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 28px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 16px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: opacity 0.2s ease;
}

.mobile-menu a:hover {
    opacity: 0.8;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 16px 0;
}

.mobile-phone,
.mobile-sms {
    background: var(--brand) !important;
    color: var(--white) !important;
    border-radius: 8px;
    margin: 8px 0;
    text-align: center;
    font-weight: 600 !important;
}

.mobile-phone:hover,
.mobile-sms:hover {
    background: var(--brand-dark) !important;
}

/* Mobile Navigation Styles */
@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-logo-text {
        font-size: 16px;
    }

    .nav-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }

    .nav-logo-text {
        font-size: 15px;
    }

    .nav-subtitle {
        font-size: 11px;
    }
}
