/* ============================================
   MOBILE ENHANCEMENTS - Premium Life Style
   ============================================ */

/* ==========================================
   SOCIAL MEDIA ICONS (Header - Below Logo)
   ========================================== */
.social-icons-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons-header a {
    color: #D4AF37;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icons-header a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* ==========================================
   CITIES HEADER (Below Social Icons)
   ========================================== */
.cities-header {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.cities-header span {
    color: #D4AF37;
}

.badge-new {
    background: #000;
    color: #FFD700;
    font-size: 12px;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 6px;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    border: 2px solid #FFD700;
    letter-spacing: 0.5px;
}

/* ==========================================
   MOBILE EXPLORE SECTION (Mobile-Only)
   ========================================== */
.mobile-explore {
    display: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
}

.mobile-explore h2 {
    text-align: center;
    color: #1a1a2e;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.explore-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.explore-card:hover,
.explore-card:active {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.explore-card i {
    font-size: 28px;
    color: #D4AF37;
}

.explore-card span {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

/* ==========================================
   MOBILE BOTTOM NAVIGATION BAR (Fixed)
   ========================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 999;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    padding: 8px 5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 2px;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
}

.bottom-nav-item i {
    font-size: 22px;
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* ==========================================
   MOBILE RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 768px) {
    /* Show mobile elements */
    .mobile-explore {
        display: block;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Hide desktop navigation */
    header nav {
        display: none;
    }
    
    /* Hide desktop WhatsApp button in header */
    .header-right .whatsapp-btn {
        display: none;
    }
    
    /* Adjust header for mobile */
    .header-logo-row {
        position: relative;
        padding: 15px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Center language selector in mobile */
    .header-right {
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    
    #langSelector {
        font-size: 13px;
        padding: 6px 8px;
        margin: 0 auto;
    }
    
    /* Cities header responsive */
    .cities-header {
        font-size: 12px;
        padding: 0 10px;
    }
    
    /* Add padding bottom to body to account for fixed bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    /* Adjust footer to not overlap with bottom nav */
    footer {
        margin-bottom: 70px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .explore-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    
    .explore-card {
        padding: 15px 8px;
    }
    
    .explore-card i {
        font-size: 24px;
    }
    
    .explore-card span {
        font-size: 11px;
    }
    
    .bottom-nav-item i {
        font-size: 20px;
    }
    
    .bottom-nav-item span {
        font-size: 10px;
    }
}

/* Tablet devices - keep desktop experience */
@media (min-width: 769px) {
    .mobile-explore,
    .mobile-bottom-nav {
        display: none !important;
    }
    
    /* Show social icons on desktop too */
    .social-icons-header {
        display: flex;
    }
}

/* ==========================================
   YACHT SECTION STYLES
   ========================================== */
.yachts-section {
    background: #111;
    padding: 80px 0;
}

.yachts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.yacht-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(212,175,55,0.2);
}

.yacht-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.yacht-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.yacht-info {
    padding: 20px;
}

.yacht-name {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

.yacht-brand {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.yacht-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.yacht-detail i {
    color: #D4AF37;
    width: 20px;
}

.yacht-pricing {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.pricing-label {
    color: #999;
}

.pricing-value {
    color: #fff;
    font-weight: 600;
}

.yacht-promo-badge {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block;
}

.yacht-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s;
}

.yacht-link:hover {
    transform: scale(1.05);
}

.yacht-general-info {
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(212,175,55,0.5);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.yacht-general-info h3 {
    color: #D4AF37;
    font-size: 24px;
    margin-bottom: 20px;
}

.yacht-inclusions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.yacht-inclusions li {
    color: #fff;
    padding-left: 25px;
    position: relative;
}

.yacht-inclusions li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.yacht-note {
    color: #ccc;
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.6;
}

.yacht-location-small {
    font-size: 13px;
    color: #999;
    margin: 5px 0;
}

.yacht-location-small i {
    color: #D4AF37;
}

.yacht-promo-modal,
.yacht-special-modal {
    background: rgba(212,175,55,0.2);
    border-left: 3px solid #D4AF37;
    padding: 10px 15px;
    margin: 15px 0;
    border-radius: 4px;
    color: #000;
}

.modal-info {
    color: #000;
}

.modal-info h3 {
    color: #000;
    margin-top: 20px;
    margin-bottom: 15px;
}

.modal-detail {
    color: #000;
    margin-bottom: 15px;
}

.modal-detail strong {
    color: #000;
}

.modal-detail i {
    color: #D4AF37;
}

.modal-pricing-table {
    margin: 20px 0;
    color: #000;
}

.pricing-section {
    margin-bottom: 20px;
}

.pricing-section h4 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 16px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #000;
}

.modal-tax-notice {
    background: rgba(212,175,55,0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    color: #000;
}

@media (max-width: 768px) {
    .yachts-section {
        padding: 40px 0;
    }
    
    .yachts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .yacht-inclusions {
        grid-template-columns: 1fr;
    }
}

