/* ===== TOP HIGHLIGHT BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--text-gray) 0%, #3a4e5a 100%);
    color: var(--text-white);
    font-size: 13px;
    border-bottom: 2px solid var(--color-yellow);
    position: relative;
    z-index: 999;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    color: var(--text-yellow);
    font-size: 14px;
}

.top-bar-item a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--text-cyan);
}

.top-bar-item span {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-announcement {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: rgba(255, 212, 3, 0.15);
    border-radius: 20px;
    animation: pulse 2s infinite;
}

.top-bar-announcement i {
    color: var(--text-yellow);
    font-size: 14px;
}

.top-bar-announcement span {
    color: var(--text-white);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.top-bar-social {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.top-bar-social a:hover {
    background: var(--text-cyan);
    transform: translateY(-2px);
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    background: var(--nav-bg);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px var(--shadow-navbar);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--nav-padding-horizontal);
    position: relative;
}

.logo {
    position: relative;
    z-index: 1005;
}

.logo a {
    color: var(--text-yellow);
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    padding: var(--nav-padding-vertical) 0;
    display: inline-block;
    position: relative;
}

.logo img {
    height: 80px;
    width: auto;
    vertical-align: middle;
}

.logo a span {
    color: var(--text-cyan);
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-white);
    text-decoration: none;
    padding: var(--nav-link-padding);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a i {
    font-size: 16px;
}

.nav-menu li a:hover {
    background-color: var(--hover-bg-yellow);
    color: var(--text-yellow);
}

.nav-menu li a.active {
    background-color: var(--active-bg-yellow);
    color: var(--text-yellow);
    border-bottom: 3px solid var(--color-yellow);
}

.nav-menu li a.cta-button {
    background: var(--btn-cta-bg);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: var(--border-radius-md);
    margin-left: 15px;
    font-weight: 600;
}

.nav-menu li a.cta-button:hover {
    background: var(--btn-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-button);
}

/* Hamburger Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1006;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-yellow);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin: 0;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Business Status Badge */
.business-status-badge {
    position: fixed;
    top: 120px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 997;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.business-status-badge.open {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.business-status-badge.closed {
    background-color: #ffebee;
    color: #c62828;
}

.business-status-badge i {
    font-size: 8px;
}

.business-status-badge.open i {
    color: #4caf50;
}

.business-status-badge.closed i {
    color: #f44336;
}

/* Mobile Contact Info in Menu */
.mobile-contact-info {
    display: none;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}

.mobile-contact-item i {
    width: 20px;
    color: var(--text-yellow);
}

.mobile-contact-item a {
    color: #fff;
    text-decoration: none;
}

.mobile-contact-item a:hover {
    color: var(--text-cyan);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===== TABLET RESPONSIVE ===== */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .nav-menu li a {
        padding: 24px 15px;
        font-size: 14px;
    }
    
    .nav-menu li a i {
        font-size: 14px;
    }
    
    .nav-menu li a.cta-button {
        padding: 10px 20px;
        margin-left: 10px;
    }
    
    .top-bar-announcement span {
        display: none;
    }
    
    .top-bar-announcement {
        padding: 5px 10px;
    }
}

/* ===== TOP BAR MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        position: sticky;
        top: 0;
        z-index: 1001;
    }
    
    .top-bar-container {
        padding: 8px 15px;
        gap: 10px;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 15px;
    }
    
    .top-bar-item:nth-child(3) {
        display: none;
    }
    
    .top-bar-announcement {
        display: none;
    }
    
    .top-bar-social {
        padding-left: 10px;
        gap: 8px;
    }
    
    .top-bar-social a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    /* Navbar stays below top bar */
    .navbar {
        position: sticky;
        top: 42px;
        z-index: 1000;
    }
    
    /* Hide logo text, show only image */
    .logo a {
        font-size: 0;
        display: flex;
        align-items: center;
        line-height: 0;
    }
    
    .logo img {
        height: 55px;
        margin: 0;
    }
    
    .logo a span {
        display: none !important;
        visibility: hidden;
    }
    
    .logo {
        z-index: 1005;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1006;
    }
    
    .nav-overlay {
        display: block;
        z-index: 1003;
    }
    
    /* Mobile Menu Sidebar */
    .nav-menu-wrapper {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        max-width: 85vw;
        background: var(--nav-bg);
        flex-direction: column;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index: 1004;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu-wrapper.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 70px 0 20px 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li a {
        padding: 18px 25px;
        width: 100%;
        justify-content: flex-start;
        font-size: 16px;
    }
    
    .nav-menu li a i {
        font-size: 18px;
        width: 25px;
    }
    
    .nav-menu li a:hover {
        background-color: var(--hover-bg-cyan);
        color: var(--text-cyan);
        padding-left: 30px;
    }
    
    .nav-menu li a.active {
        background-color: var(--active-bg-yellow);
        color: var(--text-yellow);
        border-bottom: none;
        border-left: 4px solid var(--color-yellow);
    }
    
    .nav-menu li a.cta-button {
        margin: 15px 25px;
        width: calc(100% - 50px);
        justify-content: center;
        background: var(--btn-cta-bg);
        border-radius: var(--border-radius-md);
        padding: 15px 25px;
    }
    
    .nav-menu li a.cta-button:hover {
        transform: scale(1.02);
        padding-left: 25px;
    }
    
    .mobile-contact-info {
        display: block;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
        z-index: 998;
    }
    
    .business-status-badge {
        top: 115px;
        right: 10px;
        font-size: 11px;
        padding: 6px 12px;
        z-index: 997;
    }
}

/* ===== SMALL MOBILE DEVICES ===== */
@media screen and (max-width: 480px) {
    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .top-bar-social {
        border-left: none;
        padding-left: 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav-menu-wrapper {
        width: 260px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* ===== LANDSCAPE MODE MOBILE ===== */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        padding: 60px 0 10px 0;
    }
    
    .nav-menu li a {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .mobile-contact-info {
        margin-top: 10px;
        padding: 15px;
    }
}
