/* ===== HEADER STYLES ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== HEADER TOP BAR ===== */
.header-top {
    background: linear-gradient(135deg, #f23a1a 0%, #ff8a00 100%);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 12px;
    max-height: 50px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.header-top.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-item {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;
    font-size: 12px;
}

.contact-item:hover {
    opacity: 0.85;
}

.contact-item svg {
    flex-shrink: 0;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    color: var(--text-white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.login-link {
    color: var(--text-white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-size: 12px;
}

.login-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== HEADER MAIN ===== */
.header-main {
    padding: 16px 0;
    background-color: var(--bg-white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

/* ===== LOGO ===== */

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.mobile-logo-image {
    height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* ===== SEARCH BAR - HIDDEN ===== */
.search-bar {
    display: none !important;
}

.search-btn {
    display: none !important;
}

/* ===== NAVIGATION MENU - MODERN DESKTOP STYLE ===== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px 3px 0 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(30, 64, 175, 0.12) 100%);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.25);
}

.nav-link.active::before {
    width: 80%;
    height: 3px;
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.icon-btn:hover {
    background-color: var(--bg-gray);
    transform: translateY(-2px);
}

.icon-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border: 2px solid var(--bg-white);
}

.book-now-btn {
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 15px;
}

.book-now-btn svg {
    width: 18px;
    height: 18px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle:hover {
    background-color: var(--bg-gray);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== MOBILE SIDE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, #ffe5d1 0%, #fa7008 100%);
    color: var(--text-white);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.mobile-logo .logo-icon {
    width: 80px;
    height: 80px;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.mobile-logo-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.3px;
    margin: 0;
}

.mobile-logo-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    margin: 0;
}

.close-menu {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 20px 0;
}

/* ===== MOBILE USER SECTION ===== */
.mobile-user-section {
    padding: 0 20px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #fa7008 0%, #fa7008 100%);
    color: var(--text-white);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* ===== MOBILE NAVIGATION LINKS ===== */
.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.mobile-nav-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.mobile-nav-link.active {
    font-weight: 600;
}

.mobile-nav-link.active svg {
    opacity: 1;
}

/* ===== MOBILE CONTACT SECTION ===== */
.mobile-contact-section {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-contact-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-contact-item:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.mobile-contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* ===== MOBILE SOCIAL SECTION ===== */
.mobile-social-section {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-social-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.mobile-social-links {
    display: flex;
    gap: 12px;
}

.mobile-social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-social-links a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* ===== MOBILE BOOK SECTION ===== */
.mobile-book-section {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-book-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 16px;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
    .nav-link {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .navbar {
        gap: 20px;
    }
}

/* Small Desktop / Large Tablet (900px - 1023px) */
@media (max-width: 1023px) {
    .nav-link {
        padding: 9px 14px;
        font-size: 14px;
    }
    
    .nav-menu {
        gap: 2px;
    }
}

/* Tablet (768px - 899px) - Hide navigation */
@media (max-width: 899px) {
    .nav-menu {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex !important;
    }
    
    .book-now-btn {
        display: none !important;
    }
}

/* Tablets and below (768px) */
@media (max-width: 768px) {
    
    .logo-image {
        height: 48;
    }
    
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .icon-btn {
        width: 40px;
        height: 40px;
    }
    
    .header-actions {
        gap: 12px;
    }
}

/* Mobile Phones (480px) */
@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .mobile-logo-image {
        height: 35px !important;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .logo-icon {
        width: 8px;
        height: 8px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .icon-btn {
        width: 36px;
        height: 36px;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .mobile-logo-title {
        font-size: 16px;
    }
}

/* Extra Small Phones (360px) */
@media (max-width: 360px) {
    .header-main {
        padding: 10px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mobile-logo-image {
        height: 60px !important;
    }
    
    .mobile-logo-title {
        font-size: 15px;
    }
    
    .mobile-logo-subtitle {
        font-size: 10px;
    }
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header-top,
    .menu-toggle,
    .header-actions,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}