/* ── Mobile-First App UI Overhaul ── */

:root{
    --app-primary: #e65100;
    --app-bg: #f8f9fa;
    --app-card-shadow: 0 4px 15px rgba(0,0,0,0.08);
    --bottom-nav-height: 65px;
}/* ── General App-like Spacing ── */
@media (max-width: 767px){
    body {
        background-color: var(--app-bg);
    }
    .section {
        padding: 30px 0 !important;
    }
}/* ── Mobile Bottom Navigation ── */
.mobile-bottom-nav{
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 10000;
    border-top: 1px solid #eee;
    padding: 8px 0;
}@media (max-width: 767px){
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}.nav-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    transition: color 0.2s;
}.nav-item i{
    font-size: 20px;
    margin-bottom: 4px;
}.nav-item.active{
    color: var(--app-primary);
}.nav-item.center-btn{
    background: var(--app-primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    margin-top: -30px;
    box-shadow: 0 4px 12px rgba(230,81,0,0.4);
    border: 4px solid #fff;
}.nav-item.center-btn i{
    margin-bottom: 0;
    font-size: 24px;
}/* ── Video Section Refinements ── */
.video-card{
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--app-card-shadow);
    transition: transform 0.3s;
    height: 100%;
}.video-thumb-wrap{
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    cursor: pointer;
}.video-thumb-wrap img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
}.play-icon{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(230,81,0,0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: transform 0.3s, background 0.3s;
}.video-card:hover .play-icon{
    transform: translate(-50%, -50%) scale(1.1);
    background: #e65100;
}.video-info{
    padding: 15px;
}.video-cat{
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 8px;
}.video-title{
    font-size: 14px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}/* ── Horizontal Scroll for mobile ── */
@media (max-width: 767px){
    .mobile-scroll {
        display: flex;
        overflow-x: auto;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }
    .mobile-scroll > * {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .mobile-scroll::-webkit-scrollbar {
        display: none;
    }
}/* ── Floating WhatsApp adjustment ── */
@media (max-width: 767px){
    .float-wa {
        bottom: calc(var(--bottom-nav-height) + 20px) !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }
}/* ── Boat Detail Page: Mobile Bottom CTA ── */
.mobile-book-bar{
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 10001;
    padding: 12px 16px;
    align-items: center;
    gap: 12px;
}@media (max-width: 767px){
    .mobile-book-bar {
        display: flex;
    }
    /* Hide the default bottom nav on detail pages if needed, 
       or just show this above it. I will overlay this on detail pages. */
    .mobile-bottom-nav.detail-page-hidden {
        display: none;
    }
}.m-price-info{ flex: 1; }.m-price{ font-size: 18px; font-weight: 800; color: #e65100; margin: 0; }.m-price-label{ font-size: 11px; color: #888; }.m-book-btn{
    background: linear-gradient(135deg, #e65100, #ff8f00);
    color: #fff;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
}
@media (max-width: 767px) {
    .site-footer {
        padding-bottom: calc(var(--bottom-nav-height) + 20px) !important;
    }
}