/* ==========================================================================
   YOUR HURGHADA EXCURSION - RESPONSIVE & MOBILE POLISH + RTL
   Domain: yourhurghadaexcursion.com
   ========================================================================== */

/* Mobile Sticky Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1200;
    padding: 8px 14px;
    align-items: center;
    justify-content: space-around;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    position: relative;
}

.mobile-nav-item.active, .mobile-nav-item:hover {
    color: var(--brand-blue);
}

.mobile-nav-item svg {
    font-size: 1.2rem;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (max-width: 1080px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-search-bar {
        grid-template-columns: 1fr 1fr;
        border-radius: var(--radius-xl);
        padding: 14px;
    }
    
    .search-col {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 8px 0;
    }
    
    .floating-search-btn {
        grid-column: 1 / -1;
        justify-content: center;
    }
    
    .spotlight-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .why-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .tour-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    
    .top-bar-actions {
        width: 100%;
        justify-content: center;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-card);
        gap: 14px;
    }
    
    .main-nav.show {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 50px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.98rem;
    }
    
    .floating-search-bar {
        grid-template-columns: 1fr;
        padding: 12px;
    }
    
    .hero-trust-bar {
        font-size: 0.8rem;
        gap: 10px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid, .reviews-grid, .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .toolbar-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .toolbar-left {
        flex-direction: column;
        width: 100%;
    }
    
    .toolbar-search {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .mobile-bottom-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 56px;
    }
    
    .floating-whatsapp {
        bottom: 74px;
        right: 16px;
    }
    
    body.rtl .floating-whatsapp {
        left: 16px;
        right: auto;
    }
    
    .live-toast {
        bottom: 74px;
        left: 14px;
        right: 14px;
        max-width: none;
    }
    
    .detail-gallery-main {
        height: 240px;
    }
}
