/* Mobile Menu Styles */

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-orange, #f97316);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hide hamburger button when menu is open to prevent duplicate X */
.menu-toggle.active {
    opacity: 0;
    pointer-events: none;
}

/* Mobile Menu Overlay and Container */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-logo img {
    height: 40px;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.close-menu svg {
    width: 24px;
    height: 24px;
    stroke: #1a1a1a;
}

.mobile-menu-content {
    padding: 20px;
    padding-bottom: 100px;
    /* Extra padding for Book Now button */
}

.mobile-user-section {
    margin-bottom: 24px;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #f97316 0%, #ea580c 100%) border-box;
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}

.mobile-login-btn:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.mobile-login-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: stroke 0.3s ease;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: #1a1a1a;
    border-radius: 8px;
    transition: background 0.2s ease;
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-orange, #f97316);
}

.mobile-nav-link svg {
    width: 20px;
    height: 20px;
}

.mobile-contact-section,
.mobile-social-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.mobile-contact-section h4,
.mobile-social-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 14px;
}

.mobile-contact-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-orange, #f97316);
}

.mobile-social-links {
    display: flex;
    gap: 12px;
}

.mobile-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.mobile-social-links a:hover {
    background: var(--primary-orange, #f97316);
    transform: translateY(-2px);
}

.mobile-social-links a:hover svg {
    fill: white;
}

.mobile-social-links svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
    transition: fill 0.2s ease;
}

.mobile-book-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.mobile-book-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.mobile-book-btn svg {
    width: 20px;
    height: 20px;
}

/* Hide WhatsApp float when mobile menu is open */
.mobile-menu.active~.whatsapp-float {
    opacity: 0;
    pointer-events: none;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}