/* ============================================
   RCG CONNECT - STYLES
   ============================================ */

:root {
    --navy: #0A0E27;
    --aqua: #00D9FF;
    --white: #FFFFFF;
    --coral: #FF6B6B;
    --navy-light: #1A1F3A;
    --aqua-light: #4DE8FF;
    --gray-light: #F8F9FC;
    --gray: #E8EAED;
    --gray-dark: #6B7280;
    --gray-darker: #374151;
    --shadow: rgba(10, 14, 39, 0.08);
    --shadow-lg: rgba(10, 14, 39, 0.12);
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    --gradient-secondary: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-dark: rgba(10, 14, 39, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background: var(--gray-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVIGATION
   ============================================ */

/* Navigation Bar - Responsive padding */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 40, 0.7), rgba(0, 0, 40, 0.3));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: clamp(0.5rem, 2vw, 1rem) 0;
    width: 100%;
    max-width: 100vw;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    height: 100%;
    max-width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--navy);
    transition: opacity 0.2s ease;
    height: 100%;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
    filter: brightness(0) invert(1);
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    opacity: 0.9;
}


.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    opacity: 1;
}

.nav-links a.active::after {
    width: 100%;
    background: white;
}

/* Hide mobile menu header on desktop only */
@media (min-width: 769px) {
    .mobile-menu-header {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
    
    .mobile-menu-logo,
    .mobile-menu-logo img {
        display: none !important;
        visibility: hidden !important;
    }
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    cursor: pointer;
    padding: clamp(0.5rem, 2vw, 0.75rem);
    min-width: 44px; /* Minimum tap target */
    min-height: 44px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: clamp(6px, 1.5vw, 8px);
    transition: all 0.3s ease;
    flex-direction: row;
    flex-shrink: 0;
    touch-action: manipulation;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-menu-toggle i {
    display: block;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    white-space: nowrap;
}

.nav-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.nav-action-btn:disabled,
.nav-action-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-action-btn i {
    font-size: 1rem;
}

.nav-action-btn .badge-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FF6B6B;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

#favoritesBtn:hover {
    color: #FF6B6B;
    border-color: rgba(255, 107, 107, 0.5);
}

#favoritesBtn:hover i {
    color: #FF6B6B;
}

.sign-in-btn {
    background: #00AEEF;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
}

.sign-in-btn:hover {
    background: #0099D6;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.4);
}

.sign-out-btn {
    width: 100%;
    padding: 0.75rem;
    margin-top: 1rem;
    background: var(--gray-light);
    border: 1px solid var(--gray);
    border-radius: 8px;
    color: var(--navy);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.sign-out-btn:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

.user-profile {
    position: relative;
}

.profile-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.profile-avatar:hover {
    background: var(--gray-light);
}

.profile-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--aqua);
}

.profile-badge {
    background: linear-gradient(135deg, var(--aqua), var(--navy));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    min-width: 300px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 1rem;
}

.dropdown-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--aqua);
}

.dropdown-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.progress-section {
    margin-bottom: 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.progress-bar {
    height: 8px;
    background: var(--gray);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--aqua), var(--navy));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.badges-section {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mini-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-light);
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--navy);
}

.mini-badge i {
    color: var(--aqua);
}

/* ============================================
   HERO SECTION
   ============================================ */

/* ============================================
   HERO SECTION - Mobile-First Responsive
   ============================================
   
   MOBILE OPTIMIZATION SUMMARY:
   - All typography uses clamp() for fluid scaling (iPhone SE → iPad Pro)
   - Hero title: clamp(2rem, 8vw, 4.5rem) - scales from 32px to 72px
   - Hero subtitle: clamp(0.95rem, 3vw, 1.25rem) - scales from 15px to 20px
   - Hero tag bubble: Responsive padding and border-radius with clamp()
   - Buttons: Minimum 44px height for proper tap targets (WCAG AA)
   - Navigation: Responsive padding using clamp() for all screen sizes
   - Hero stats: Stack vertically on screens ≤480px, horizontal on larger
   - All spacing uses clamp() or vw units for proportional scaling
   - Text alignment: Centered on mobile, left-aligned on desktop (≥769px)
   - Buttons: Full-width stacked on mobile, side-by-side on ≥481px
   - Overflow prevention: max-width: 100vw on all containers
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    padding: clamp(4rem, 8vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
    width: 100%;
    max-width: 100vw;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    max-width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.7) 0%, rgba(10, 14, 39, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    width: 100%;
    text-align: center;
}

/* Desktop: Single column layout (logo removed) - Centered */
@media (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Hero Tag - "Check Out Trending Discussions" - Responsive */
.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    padding: clamp(0.625rem, 2vw, 0.75rem) clamp(1rem, 4vw, 1.5rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: clamp(25px, 8vw, 50px);
    color: white;
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
    font-weight: 600;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    animation: fadeInDown 0.6s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    width: fit-content;
    max-width: 90%;
    box-sizing: border-box;
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-tag i {
    color: #FF6B6B;
    font-size: clamp(0.875rem, 2.5vw, 1.1rem);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Hero Title - Responsive with clamp() */
.hero-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: clamp(1.2, 1.1 + 0.1vw, 1.1);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: -0.02em;
    color: white;
    word-wrap: break-word;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 769px) {
    .hero-title {
        text-align: center;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle - Responsive */
.hero-subtitle {
    font-size: clamp(0.95rem, 3vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
    line-height: clamp(1.5, 1.6 + 0.1vw, 1.7);
    max-width: min(600px, 90%);
    text-align: center;
    width: 100%;
}

@media (min-width: 769px) {
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hero Actions - Stacked on mobile, side-by-side on desktop */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    align-items: stretch;
    justify-content: center;
}

@media (min-width: 481px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .hero-actions {
        justify-content: center;
    }
}

/* CTA Buttons - Responsive with proper tap targets (min 44px) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1.5rem, 5vw, 2rem);
    border-radius: clamp(8px, 2vw, 12px);
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    border: none;
    cursor: pointer;
    min-height: 44px; /* Minimum tap target size for accessibility */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
    touch-action: manipulation; /* Prevents double-tap zoom on mobile */
}

/* Buttons side-by-side on larger screens */
@media (min-width: 481px) {
    .hero-actions .cta-button {
        width: auto;
        min-width: clamp(140px, 20vw, 180px);
    }
}

.cta-button {
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 217, 255, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Forum Preview in Hero */
.forum-preview {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease 0.2s both;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.preview-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
}

.view-all {
    color: var(--aqua);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.view-all:hover {
    gap: 0.75rem;
    color: var(--navy);
}

.preview-threads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-thread {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
}

.preview-thread:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--shadow);
    border-color: var(--aqua);
}

.thread-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.thread-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.thread-meta-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--gray-dark);
}

/* AI Summary Badge */
.ai-summary-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(0, 102, 255, 0.05));
    border-left: 3px solid var(--aqua);
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--navy);
}

.ai-summary-badge i {
    color: var(--aqua);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.ai-summary-badge span {
    line-height: 1.5;
}

/* Bookings Section */
.bookings-section {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    font-weight: 400;
}

.bookings-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gray-light);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-darker);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tab-button:hover {
    background: var(--gray);
    color: var(--navy);
}

.tab-button.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* Ensure first tab is visible on load */
.tab-content:first-of-type.active {
    display: block;
}

.brand-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: var(--gray-light);
    border-radius: 24px;
    min-height: 400px;
}

.brand-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-info > p {
    font-size: 1.125rem;
    color: var(--gray-darker);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray);
}

.feature-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--navy);
}

.book-now-btn {
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    width: 100%;
    max-width: 300px;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 217, 255, 0.4);
}

.book-now-btn:active {
    transform: translateY(0);
}

.brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    opacity: 0.9;
    min-height: 300px;
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .image-placeholder {
        font-size: 3rem;
        min-height: 250px;
    }

    .image-placeholder p {
        font-size: 1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Stats - Responsive positioning and sizing */
.hero-stats {
    position: absolute;
    bottom: clamp(1.5rem, 4vw, 3rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(1rem, 5vw, 4rem);
    z-index: 3;
    color: white;
    width: 100%;
    max-width: 90%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

/* Stack stats vertically on very small screens */
@media (max-width: 480px) {
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: clamp(2rem, 5vw, 3rem);
        flex-direction: column;
        gap: clamp(1rem, 3vw, 1.5rem);
    }
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    min-width: fit-content;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: clamp(0.75rem, 2.5vw, 1rem);
    font-weight: 400;
    margin-top: clamp(0.375rem, 1.5vw, 0.5rem);
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Forum Page Styles */
.forum-page {
    padding-top: 100px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ============================================
   FORUM SECTION
   ============================================ */

.forum-section {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.bookings-section .container {
    max-width: 1200px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3rem;
    text-align: center;
}

.forum-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.forum-filters {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.forum-filters h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--aqua);
}

.tier-filters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.tier-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--aqua);
}

.forum-threads {
    display: grid;
    gap: 1.5rem;
}

.thread-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thread-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
    border-color: var(--aqua);
}

.thread-header {
    margin-bottom: 1rem;
}

.thread-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
}

.thread-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray);
}

.username {
    font-weight: 600;
    color: var(--navy);
    display: block;
    font-size: 0.9rem;
}

.thread-preview {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thread-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.thread-stats i {
    margin-right: 0.5rem;
    color: var(--aqua);
}

.thread-time {
    margin-left: auto;
    color: var(--gray-dark);
}

/* Tier Badges */
.tier-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tier-badge.silver {
    background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
    color: white;
}

.tier-badge.gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.tier-badge.platinum {
    background: linear-gradient(135deg, #E5E4E2, #B8B8B8);
    color: var(--navy);
}

.tier-badge.diamond {
    background: linear-gradient(135deg, #B9F2FF, #00AEEF);
    color: var(--navy);
}

/* ============================================
   MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 84, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease;
    padding: 2rem;
    pointer-events: none;
}

.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header h2 i {
    color: var(--aqua);
}

.modal-body {
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gray-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--coral);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid var(--gray);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 2rem;
}

.post-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--aqua);
}

.post-content {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
}

.post-actions button {
    background: var(--gray-light);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: var(--navy);
    transition: all 0.3s ease;
}

.post-actions button:hover {
    background: var(--aqua);
    color: white;
}

.replies-section {
    margin-bottom: 2rem;
}

.replies-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.reply-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.reply-item:last-child {
    border-bottom: none;
}

.reply-item img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gray);
    flex-shrink: 0;
}

.reply-content {
    flex: 1;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.reply-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--gray-dark);
}

.reply-content p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.post-reply-box {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray);
}

.post-reply-box textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--navy);
    resize: vertical;
    transition: border-color 0.3s ease;
}

.post-reply-box textarea:focus {
    outline: none;
    border-color: var(--aqua);
}

.reply-submit {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--aqua), var(--navy));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reply-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
}

/* ============================================
   AI CONCIERGE CHAT WIDGET
   ============================================ */

.chat-widget {
    display: none !important; /* AI chat widget removed */
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
}

.chat-bubble {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--aqua), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.4);
    position: relative;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.6);
}

.chat-bubble i {
    font-size: 1.75rem;
    color: white;
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--aqua);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 174, 239, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 174, 239, 0.6);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-container {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 400px;
    max-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-lg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chat-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: linear-gradient(135deg, var(--aqua), var(--navy));
    color: white;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-content i {
    font-size: 1.25rem;
}

.chat-header-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    animation: slideInUp 0.3s ease;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.bot .message-content {
    background: var(--gray-light);
    color: var(--navy);
    border-radius: 18px 18px 18px 4px;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--aqua), var(--navy));
    color: white;
    border-radius: 18px 18px 4px 18px;
}

.message-content {
    padding: 0.875rem 1.25rem;
    max-width: 80%;
    line-height: 1.5;
    font-size: 0.9rem;
}

.typing-indicator {
    display: flex;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--gray-light);
    border-radius: 18px 18px 18px 4px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-dark);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-action-btn {
    background: white;
    border: 2px solid var(--aqua);
    color: var(--aqua);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: left;
}

.chat-action-btn:hover {
    background: var(--aqua);
    color: white;
    transform: translateX(5px);
}

.destination-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.destination-card {
    min-width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: 0 4px 15px var(--shadow);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 31, 84, 0.8));
    color: white;
    padding: 1rem;
    font-weight: 600;
}

.tier-benefits {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 0.5rem;
}

.tier-benefits h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
}

.tier-benefits li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-benefits li i {
    color: var(--aqua);
    font-size: 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   BOATEY AI PAGE
   ============================================ */

.boatey-section {
    padding: 120px 0 4rem;
    background: linear-gradient(180deg, var(--gray-light) 0%, white 100%);
    min-height: 100vh;
}

.boatey-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.boatey-avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.boatey-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boat-body {
    width: 150px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 60px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.3);
}

.boat-face {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
}

.eye {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 15px;
    animation: blink 3s infinite;
}

.left-eye {
    left: 20px;
}

.right-eye {
    right: 20px;
}

.mouth {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    border: 3px solid white;
    border-top: none;
    border-radius: 0 0 30px 30px;
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.boatey-name h1 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.boatey-name p {
    font-size: 1.25rem;
    color: var(--gray-dark);
}

.boatey-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.boatey-intro h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.boatey-intro p {
    font-size: 1.125rem;
    color: var(--gray-darker);
    line-height: 1.7;
}

.boatey-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.boatey-chat-interface {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 40px var(--shadow-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.chat-header-boatey {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.boatey-chat-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.boat-body-small {
    width: 40px;
    height: 30px;
    background: white;
    border-radius: 8px 8px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aqua);
    font-size: 1.25rem;
}

.boat-face-small {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 20px;
}

.eye-small {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--aqua);
    border-radius: 50%;
    top: 5px;
}

.eye-small.left {
    left: 6px;
}

.eye-small.right {
    right: 6px;
}

.mouth-small {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 5px;
    border: 1px solid var(--aqua);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.boat-body-tiny {
    width: 32px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 6px 6px 16px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.status-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.chat-messages-boatey {
    height: 400px;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--gray-light);
}

.message {
    display: flex;
    gap: 1rem;
    animation: slideIn 0.3s ease;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    flex-shrink: 0;
}

.message-content {
    max-width: 70%;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    line-height: 1.6;
}

.bot-message .message-content {
    background: white;
    color: var(--navy);
    border-radius: 16px 16px 16px 4px;
}

.user-message .message-content {
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px 16px 4px 16px;
}

.typing-indicator-boatey .message-content {
    background: white;
    padding: 0.75rem 1rem;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--gray-dark);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-input-area {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid var(--gray);
}

.quick-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.quick-action-btn {
    padding: 0.5rem 1rem;
    background: var(--gray-light);
    border: 1px solid var(--gray);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.input-wrapper input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--aqua);
}

.send-btn {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4);
}

/* ============================================
   LOYALTY PROGRAM PAGE
   ============================================ */

.loyalty-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--aqua) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.loyalty-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.loyalty-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.loyalty-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.loyalty-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.loyalty-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.loyalty-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.loyalty-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--aqua);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

.loyalty-tiers-section {
    padding: 6rem 0;
    background: white;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.tier-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 40px var(--shadow-lg);
    border-color: var(--aqua);
}

.tier-card:hover::before {
    opacity: 1;
}

.tier-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-light);
}

.tier-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
    color: white;
}

.gold-tier .tier-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.platinum-tier .tier-icon {
    background: linear-gradient(135deg, #E5E4E2, #B8B8B8);
}

.diamond-tier .tier-icon {
    background: linear-gradient(135deg, #B9F2FF, #00AEEF);
}

.diamond-plus-tier .tier-icon {
    background: linear-gradient(135deg, #00AEEF, #0066FF);
}

.pinnacle-tier .tier-icon {
    background: linear-gradient(135deg, #FFD700, #FF6B6B);
}

.tier-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.tier-requirement {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.tier-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-light);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: var(--gray);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--aqua);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--navy);
    line-height: 1.5;
}

.earn-points-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.earn-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.earn-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.earn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.earn-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.earn-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.earn-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--aqua);
    margin-bottom: 1rem;
}

.earn-description {
    color: var(--gray-darker);
    line-height: 1.6;
}

.rcg-brands-section {
    padding: 6rem 0;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.brand-card {
    background: var(--gray-light);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--aqua);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.brand-logo-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.brand-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.brand-description {
    color: var(--gray-darker);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.brand-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
}

.highlight-item i {
    color: var(--aqua);
    font-size: 1.25rem;
}

.highlight-item span {
    font-weight: 600;
    color: var(--navy);
}

.loyalty-faq-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.faq-question i {
    color: var(--aqua);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray-darker);
    line-height: 1.7;
    margin: 0;
}

/* Help Modal Styles */
.help-modal .help-section {
    margin-bottom: 2.5rem;
}

.help-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-section h3 i {
    color: var(--aqua);
}

.help-section p {
    color: var(--gray-darker);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-link {
    padding: 0.75rem 1rem;
    background: var(--gray-light);
    border-radius: 8px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: all 0.2s ease;
}

.help-link:hover {
    background: var(--gray);
    transform: translateX(5px);
}

/* Favorites Modal Styles */
.empty-favorites {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-favorites i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.empty-favorites h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.empty-favorites p {
    color: var(--gray-darker);
    margin-bottom: 2rem;
}

.favorites-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.favorite-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--gray-light);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.favorite-item:hover {
    background: var(--gray);
}

.favorite-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.favorite-content p {
    color: var(--gray-darker);
    font-size: 0.9rem;
}

.remove-favorite {
    background: transparent;
    border: none;
    color: var(--gray-dark);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.remove-favorite:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

/* Manage Cruise Modal Styles */
.sign-in-prompt {
    text-align: center;
    padding: 3rem 2rem;
}

.sign-in-prompt i {
    font-size: 4rem;
    color: var(--aqua);
    margin-bottom: 1.5rem;
}

.sign-in-prompt h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.sign-in-prompt p {
    color: var(--gray-darker);
    margin-bottom: 2rem;
}

.cruise-management {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.management-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.management-section h3 i {
    color: var(--aqua);
}

.management-section p {
    color: var(--gray-darker);
    margin-bottom: 1.5rem;
}

.search-booking {
    display: flex;
    gap: 1rem;
}

.booking-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease;
}

.booking-input:focus {
    outline: none;
    border-color: var(--aqua);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    transition: all 0.3s ease;
}

.action-card:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.action-card i {
    font-size: 2rem;
}

.action-card span {
    font-weight: 600;
    text-align: center;
}

/* Loyalty Preview Section on Homepage */
.loyalty-preview-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.loyalty-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.loyalty-preview-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.loyalty-preview-text {
    animation: fadeInLeft 0.8s ease;
}

.preview-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--aqua) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.preview-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.preview-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.preview-benefit i {
    color: var(--aqua);
    font-size: 1.1rem;
}

.preview-benefit span {
    font-size: 0.95rem;
}

.loyalty-preview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease;
}

.tier-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.tier-mini {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tier-mini:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--aqua);
}

.tier-mini i {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.tier-mini span {
    font-size: 1.25rem;
    font-weight: 600;
}

.gold-mini i {
    color: #FFD700;
}

.platinum-mini i {
    color: #E5E4E2;
}

.diamond-mini i {
    color: #00AEEF;
}

.pinnacle-mini i {
    color: #FFD700;
}

.footer {
    position: relative;
    background: var(--navy);
    color: white;
    padding: 3rem 0 2rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='%2300AEEF' fill-opacity='0.1' d='M0,100 Q360,50 720,100 T1440,100 L1440,200 L0,200 Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 200px;
    animation: wave 15s linear infinite;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--aqua);
}

.footer-tagline {
    font-size: 0.875rem;
    opacity: 0.8;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--aqua);
    padding-left: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .forum-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .forum-filters {
        position: static;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    .nav-container {
        padding: 0 1rem;
        position: relative;
        max-width: 100%;
        width: 100%;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: auto;
        margin-right: 0;
        z-index: 1002;
        position: relative;
    }

    /* Hide desktop navigation links on mobile - show only hamburger */
    .nav-links {
        /* Hide desktop navigation by default on mobile */
        display: none !important;
    }

    /* Full-page mobile menu - Premium Dark Theme - Only show when active */
    .nav-links.active {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0b1224 0%, #141a33 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1002 !important;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        visibility: visible;
        pointer-events: auto !important;
        transform: translateX(0);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    }

    /* When menu is not active, keep it hidden off-screen */
    .nav-links:not(.active) {
        display: none !important;
        transform: translateX(-100%);
        visibility: hidden;
    }

    /* Premium Mobile Menu Header */
    .mobile-menu-header {
        display: none;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 1.5rem;
        position: sticky;
        top: 0;
        background: linear-gradient(180deg, #0b1224 0%, #141a33 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 10;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        flex-shrink: 0;
        min-height: 80px;
    }

    .nav-links.active .mobile-menu-header {
        display: flex;
    }

    /* Premium Close and Sign In Buttons - Same size, equal margins */
    .mobile-menu-close,
    .mobile-menu-signin {
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(255, 255, 255, 0.15);
        color: white;
        font-size: 1.25rem;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-shrink: 0;
        margin: 0;
    }

    .mobile-menu-close {
        margin-right: auto;
    }

    .mobile-menu-signin {
        margin-left: auto;
    }

    .mobile-menu-close:hover,
    .mobile-menu-close:active,
    .mobile-menu-signin:hover,
    .mobile-menu-signin:active {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    /* Premium Logo Section - Centered with breathing room */
    .mobile-menu-logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
    }

    .mobile-menu-logo img {
        height: 40px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }

    /* Premium Mobile Menu Items */
    .nav-links a {
        color: rgba(255, 255, 255, 0.95);
        padding: 16px 1.5rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        font-size: 17px;
        font-weight: 600;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        letter-spacing: -0.01em;
        min-height: 56px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        pointer-events: auto !important;
        position: relative;
        z-index: 1005 !important;
        -webkit-user-select: none;
        user-select: none;
        background: transparent;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Subtle gradient divider between items using border */
    .nav-links a:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        background-image: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.03) 20%, 
            rgba(255, 255, 255, 0.03) 80%, 
            transparent 100%);
        background-position: bottom;
        background-size: 100% 1px;
        background-repeat: no-repeat;
    }

    /* Premium hover/tap highlight effect */
    .nav-links a:hover,
    .nav-links a:active {
        background-color: rgba(255, 255, 255, 0.05);
    }

    /* Chevron indicator - positioned on the right */
    .nav-links a::after {
        content: '›';
        color: rgba(255, 255, 255, 0.5);
        font-size: 1.4rem;
        font-weight: 300;
        margin-left: auto;
        margin-right: 0;
        line-height: 1;
        transition: all 0.25s ease;
        flex-shrink: 0;
    }

    .nav-links a:hover::after {
        color: rgba(255, 255, 255, 0.7);
        transform: translateX(2px);
    }

    /* Active state */
    .nav-links a.active {
        background: rgba(0, 217, 255, 0.12);
        color: #00D9FF;
        font-weight: 700;
        border-left: 3px solid #00D9FF;
        padding-left: calc(1.5rem - 3px);
    }

    .nav-links a.active::after {
        color: #00D9FF;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Ensure links are always clickable when menu is active */
    .nav-links.active a {
        pointer-events: auto !important;
        z-index: 1005 !important;
        position: relative;
    }

    /* Small devices - scrollable menu with fixed header */
    @media (max-width: 400px) {
        .nav-links.active {
            overflow-y: auto;
        }

        .mobile-menu-header {
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .nav-links a {
            font-size: 16px;
            padding: 16px 1.25rem;
        }

        .mobile-menu-logo {
            padding: 18px 0;
        }

        .mobile-menu-logo img {
            height: 36px;
            max-width: 160px;
        }
    }

    .user-profile {
        order: 3;
    }

    .nav-actions {
        display: none;
    }

    .nav-actions.mobile-visible {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        background: white;
        border-top: 1px solid var(--gray);
    }

    .nav-action-btn span:not(.badge-count) {
        display: none;
    }

    .nav-action-btn {
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        padding: 0.5rem;
    }

    .logo-image {
        height: 32px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        position: relative;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        max-width: 100vw;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-text {
        text-align: center;
    }

    .hero-tag {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
        margin-bottom: 1.25rem;
    }

    .forum-preview {
        margin-top: 2rem;
    }

    .brand-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        min-height: auto;
    }

    .brand-info h3 {
        font-size: 2rem;
    }

    .bookings-tabs {
        gap: 0.75rem;
    }

    .tab-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .tab-button span {
        display: none;
    }

    .tab-button i {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        padding: 0 1rem;
        line-height: 1.4;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        bottom: 2rem;
        padding: 0 1rem;
        width: 100%;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .forum-section {
        padding: 3rem 0;
    }
    
    .forum-header {
        margin-bottom: 1.5rem;
    }
    
    .forum-page .page-subtitle {
        margin-bottom: 1rem;
    }

    .forum-filters {
        padding: 1.5rem;
        margin-bottom: 0;
    }
    
    .forum-layout {
        gap: 1rem;
    }

    .forum-filters h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .thread-card {
        padding: 1.5rem;
    }

    .thread-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .thread-stats {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.8rem;
    }

    .chat-container {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 90px;
        max-height: calc(100vh - 120px);
        border-radius: 16px;
    }

    .chat-bubble {
        width: 60px;
        height: 60px;
        bottom: 1rem;
        right: 1rem;
    }

    .chat-bubble i {
        font-size: 1.5rem;
    }

    .chat-header {
        padding: 1rem;
    }

    .chat-header-content h3 {
        font-size: 1rem;
    }

    .chat-messages {
        padding: 1rem;
        max-height: calc(100vh - 250px);
    }

    .message-content {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
        max-width: 85%;
    }

    .chat-actions {
        padding: 0.75rem 1rem;
    }

    .chat-action-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .modal-overlay {
        padding: 0;
    }

    .modal-content {
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
        width: 100%;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .modal-header {
        padding: 1.5rem 1rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .modal-body {
        padding: 1rem;
    }

    .post-reply-box textarea {
        min-height: 100px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .reply-submit {
        width: 100%;
        padding: 1rem;
        min-height: 44px;
        font-size: 1rem;
    }

    .cta-button {
        padding: 1.125rem 2.5rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .profile-dropdown {
        right: 0;
        left: 0;
        min-width: auto;
        width: calc(100vw - 2rem);
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 32px;
    }

    .profile-avatar img {
        width: 36px;
        height: 36px;
    }

    .profile-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        min-height: 48px;
        width: auto;
    }

    .hero-stats {
        gap: 1rem;
        bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .forum-section {
        padding: 2rem 0;
    }

    .thread-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .thread-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .thread-preview {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .thread-stats {
        font-size: 0.75rem;
        gap: 0.75rem;
    }

    .user-info img {
        width: 32px;
        height: 32px;
    }

    .username {
        font-size: 0.85rem;
    }

    .tier-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .forum-filters {
        padding: 1.25rem;
    }

    .filter-group {
        margin-bottom: 1.5rem;
    }

    .filter-select {
        padding: 0.875rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .chat-bubble {
        width: 56px;
        height: 56px;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .chat-bubble i {
        font-size: 1.25rem;
    }

    .chat-container {
        width: 100vw;
        right: 0;
        bottom: 0;
        border-radius: 20px 20px 0 0;
        max-height: 85vh;
    }

    .chat-header {
        padding: 1rem;
    }

    .chat-header-content h3 {
        font-size: 0.95rem;
    }

    .chat-close {
        width: 36px;
        height: 36px;
        min-width: 44px;
        min-height: 44px;
    }

    .chat-messages {
        padding: 1rem;
        max-height: calc(85vh - 180px);
    }

    .message-content {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }

    .chat-actions {
        padding: 0.75rem;
    }

    .chat-action-btn {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-header,
    .modal-body {
        padding: 1rem;
    }

    .post-author img {
        width: 40px;
        height: 40px;
    }

    .reply-item img {
        width: 36px;
        height: 36px;
    }

    .reply-content p {
        font-size: 0.9rem;
    }

    .loyalty-title {
        font-size: 2.5rem;
    }

    .loyalty-subtitle {
        font-size: 1.25rem;
    }

    .loyalty-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tiers-container {
        grid-template-columns: 1fr;
    }

    .earn-points-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .loyalty-preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .preview-title {
        font-size: 2.25rem;
    }

    .preview-benefits {
        grid-template-columns: 1fr;
    }

    .tier-showcase {
        max-width: 100%;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-links a {
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-tagline {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .destination-card {
        min-width: 180px;
        height: 120px;
    }

    .tier-benefits {
        padding: 1rem;
    }

    .tier-benefits h4 {
        font-size: 0.95rem;
    }

    .tier-benefits li {
        font-size: 0.85rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--aqua);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    button, a, input, select, textarea {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Prevent text size adjustment on iOS */
    input, select, textarea {
        font-size: 16px;
    }

    /* Better focus states for mobile */
    *:focus {
        outline: 2px solid var(--aqua);
        outline-offset: 2px;
    }

    /* Smooth scrolling with momentum on iOS */
    .chat-messages,
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent pull-to-refresh on mobile */
    body {
        overscroll-behavior-y: contain;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 100px 0 2rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
    }

    .chat-container {
        max-height: 80vh;
    }
}

/* ============================================
   NEW PAGES STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001F54 0%, #00AEEF 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.page-hero .page-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cruise Search Section */
.cruise-search-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.search-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px var(--shadow);
    max-width: 1200px;
    margin: 0 auto;
}

.search-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-item label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-item label i {
    color: var(--aqua);
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: var(--navy);
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:hover {
    border-color: var(--aqua);
}

.filter-select:focus {
    outline: none;
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.filter-item-full {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.search-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Cruises Grid */
.cruises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.cruise-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.cruise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.cruise-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #00AEEF 0%, #001F54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cruise-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.cruise-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--coral);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cruise-content {
    padding: 1.5rem;
}

.cruise-brand {
    font-size: 0.85rem;
    color: var(--aqua);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.cruise-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.cruise-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.cruise-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cruise-details i {
    color: var(--aqua);
}

.cruise-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-from {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.price-per {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.cruise-btn {
    width: 100%;
}

/* Deals Section */
.featured-deal-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #001F54 0%, #00AEEF 100%);
}

.featured-deal-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.deal-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--coral);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.deal-content {
    text-align: center;
}

.deal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.deal-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.deal-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.deal-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
    font-weight: 600;
}

.deal-detail-item i {
    color: var(--aqua);
    font-size: 1.25rem;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.deal-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-lg);
    border-color: var(--aqua);
}

.deal-card-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: var(--aqua);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.deal-card-icon {
    font-size: 3rem;
    color: var(--aqua);
    margin-bottom: 1rem;
}

.deal-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.deal-card-description {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.deal-card-savings {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.newsletter-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.newsletter-card {
    background: linear-gradient(135deg, #001F54 0%, #00AEEF 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Ships Section */
.ships-filter-section {
    padding: 2rem 0;
    background: var(--gray-light);
    border-bottom: 1px solid var(--gray);
}

.brand-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.brand-tab {
    padding: 0.75rem 2rem;
    border: 2px solid var(--gray);
    background: white;
    border-radius: 30px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
}

.brand-tab:hover {
    border-color: var(--aqua);
    color: var(--aqua);
}

.brand-tab.active {
    background: var(--aqua);
    border-color: var(--aqua);
    color: white;
}

.ships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.ship-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.ship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.ship-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #00AEEF 0%, #001F54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ship-placeholder {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.ship-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.ship-content {
    padding: 1.5rem;
}

.ship-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.ship-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.ship-specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ship-specs i {
    color: var(--aqua);
}

.ship-description {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Destinations Section */
.destinations-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #F6F9FC 0%, #FFFFFF 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 31, 84, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 174, 239, 0.1);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0, 31, 84, 0.15);
    border-color: rgba(0, 174, 239, 0.3);
}

.destination-image {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #00AEEF 0%, #001F54 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.8) 0%, rgba(0, 31, 84, 0.9) 100%);
    z-index: 1;
}

.destination-placeholder {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-placeholder {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 0.8;
}

.destination-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.destination-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0B1630;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.destination-description {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.destination-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #F0F4F8 0%, #E8EDF3 100%);
    border-radius: 12px;
    color: #0B1630;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 174, 239, 0.1);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-highlights span {
    background: linear-gradient(135deg, #E8F4FD 0%, #D6EBF9 100%);
    border-color: rgba(0, 174, 239, 0.2);
    transform: translateY(-2px);
}

.destination-highlights i {
    color: #007BFF;
    font-size: 1rem;
}

.destination-card .cta-button.secondary {
    margin-top: auto;
    align-self: flex-start;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #007BFF 0%, #0056CC 100%);
    color: white;
    border: none;
}

.destination-card .cta-button.secondary:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0088FF 0%, #0066FF 100%);
}

/* Section Header - Destinations specific override */
.destinations-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.destinations-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0B1630;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.destinations-section .section-subtitle {
    font-size: 1.2rem;
    color: #7B8BA5;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-cruises-section {
    padding: 4rem 0;
}

/* ============================================
   BOATEY AI - PREMIUM REDESIGN
   ============================================ */

/* Premium Hero Section */
.boatey-premium-hero {
    position: relative;
    padding: 140px 0 100px;
    margin-top: 80px;
    background: linear-gradient(135deg, #0B1630 0%, #001F54 25%, #0072CE 50%, #00AEEF 75%, #0066FF 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-ocean-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
    z-index: 1;
}

.wave-svg {
    width: 100%;
    height: 100%;
    animation: waveMove 20s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 114, 206, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.boatey-hero-content-premium {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.boatey-character-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.boatey-glow-ring {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.3) 0%, transparent 70%);
    animation: ringPulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.boatey-avatar-premium {
    position: relative;
    width: 320px;
    height: 320px;
    z-index: 1;
    animation: boateyFloat 4s ease-in-out infinite;
}

@keyframes boateyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

.boat-body-premium {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00AEEF 0%, #0072CE 50%, #0066FF 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 30px 80px rgba(0, 174, 239, 0.5),
        inset 0 -20px 40px rgba(0, 31, 84, 0.3);
}

.boat-body-premium i {
    font-size: 9rem;
    color: white;
    opacity: 0.25;
}

.boat-face-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 160px;
}

.eye-premium {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    top: 35px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    animation: blinkPremium 4s infinite;
}

@keyframes blinkPremium {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.left-eye-premium {
    left: 40px;
}

.right-eye-premium {
    right: 40px;
}

.mouth-premium {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 45px;
    border: 5px solid white;
    border-top: none;
    border-radius: 0 0 90px 90px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.boatey-hero-text-premium {
    color: white;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.boatey-title-premium {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.boatey-subtitle-premium {
    font-size: 1.75rem;
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.boatey-description-premium {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 400;
}

.boatey-stats-premium {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-premium:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-icon-premium {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.stat-content-premium {
    display: flex;
    flex-direction: column;
}

.stat-number-premium {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.stat-label-premium {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

/* Premium Features Section */
.boatey-features-premium {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F0F4F8 0%, #E8EDF3 100%);
    position: relative;
}

.boatey-features-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 114, 206, 0.3), transparent);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease;
}

.section-title-premium {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0B1630;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle-premium {
    font-size: 1.2rem;
    color: #7B8BA5;
    font-weight: 400;
}

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-premium {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(11, 22, 48, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 114, 206, 0.1);
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF 0%, #0072CE 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
}

.feature-card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11, 22, 48, 0.15);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
}

.forum-icon {
    background: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
}

.planning-icon {
    background: linear-gradient(135deg, #0072CE 0%, #0056A3 100%);
}

.support-icon {
    background: linear-gradient(135deg, #00AEEF 0%, #0072CE 100%);
}

.insights-icon {
    background: linear-gradient(135deg, #4A90E2 0%, #2E5C8A 100%);
}

.booking-icon {
    background: linear-gradient(135deg, #5B9BD5 0%, #3A6FA5 100%);
}

.loyalty-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.feature-category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 114, 206, 0.1);
    color: #0072CE;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-title-premium {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B1630;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description-premium {
    color: #7B8BA5;
    line-height: 1.7;
    font-size: 1rem;
}

/* Premium Chat Section */
.boatey-chat-premium-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #E8EDF3 0%, #F0F4F8 100%);
}

.chat-container-premium {
    max-width: 950px;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    box-shadow: 
        0 20px 60px rgba(11, 22, 48, 0.12),
        0 0 0 1px rgba(0, 114, 206, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 114, 206, 0.15);
    position: relative;
}

.chat-container-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00AEEF, #0072CE, #0066FF);
    border-radius: 28px;
    z-index: -1;
    opacity: 0.1;
    filter: blur(8px);
}

.chat-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2.5rem;
    background: linear-gradient(135deg, #0B1630 0%, #001F54 50%, #0072CE 100%);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-left-premium {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.boatey-avatar-chat-premium {
    position: relative;
    width: 56px;
    height: 56px;
}

.boat-body-chat-premium {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00AEEF 0%, #0072CE 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.boat-body-chat-premium i {
    font-size: 1.75rem;
    color: white;
    opacity: 0.3;
}

.boat-face-chat-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 28px;
}

.eye-chat-premium {
    position: absolute;
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 50%;
    top: 6px;
    animation: blinkPremium 4s infinite;
}

.eye-chat-premium.left {
    left: 6px;
}

.eye-chat-premium.right {
    right: 6px;
}

.mouth-chat-premium {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 7px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.status-indicator-premium {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: #4CAF50;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.chat-header-info-premium h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.status-text-premium {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.status-dot-premium {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.chat-actions-premium {
    display: flex;
    gap: 0.75rem;
}

.chat-action-btn-premium {
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chat-action-btn-premium:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.chat-messages-premium {
    height: 520px;
    overflow-y: auto;
    padding: 2.5rem;
    background: #F8F9FC;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.message-premium {
    display: flex;
    gap: 1.25rem;
    animation: messageSlideInPremium 0.4s ease;
}

@keyframes messageSlideInPremium {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message-premium {
    flex-direction: row;
}

.user-message-premium {
    flex-direction: row-reverse;
}

.message-avatar-premium {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.boat-body-message-premium {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00AEEF 0%, #0072CE 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 114, 206, 0.3);
}

.boat-body-message-premium i {
    font-size: 1.4rem;
    color: white;
    opacity: 0.3;
}

.message-bubble-premium {
    max-width: 72%;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    position: relative;
}

.bot-bubble-premium {
    background: white;
    border-bottom-left-radius: 6px;
    box-shadow: 0 3px 12px rgba(11, 22, 48, 0.1);
    border: 1px solid rgba(0, 114, 206, 0.1);
}

.user-bubble-premium {
    background: linear-gradient(135deg, #0072CE 0%, #00AEEF 100%);
    color: white;
    border-bottom-right-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 114, 206, 0.3);
}

.message-bubble-premium p {
    margin: 0;
    line-height: 1.7;
    color: #0B1630;
    font-size: 1rem;
    white-space: pre-wrap;
}

.user-bubble-premium p {
    color: white;
}

.message-time-premium {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.75rem;
    display: block;
    font-weight: 500;
}

.quick-suggestions-premium {
    padding: 2rem 2.5rem;
    background: white;
    border-top: 1px solid rgba(0, 114, 206, 0.1);
}

.suggestion-label-premium {
    font-size: 0.9rem;
    color: #7B8BA5;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suggestions-list-premium {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.suggestion-chip-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #F0F4F8;
    border: 1px solid rgba(0, 114, 206, 0.15);
    border-radius: 24px;
    font-size: 0.95rem;
    color: #0B1630;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
}

.suggestion-chip-premium:hover {
    background: linear-gradient(135deg, #0072CE 0%, #00AEEF 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 114, 206, 0.3);
}

.suggestion-chip-premium i {
    font-size: 0.9rem;
}

.chat-input-premium {
    padding: 2rem 2.5rem;
    background: white;
    border-top: 1px solid rgba(0, 114, 206, 0.1);
}

.input-wrapper-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #F0F4F8;
    border-radius: 18px;
    padding: 0.75rem;
    border: 1px solid rgba(0, 114, 206, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper-premium:focus-within {
    border-color: #0072CE;
    box-shadow: 0 0 0 3px rgba(0, 114, 206, 0.1);
}

.input-action-btn-premium {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    border-radius: 12px;
    color: #7B8BA5;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.input-action-btn-premium:hover {
    background: rgba(0, 114, 206, 0.1);
    color: #0072CE;
}

#boateyInput {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: #0B1630;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

#boateyInput::placeholder {
    color: #7B8BA5;
}

.send-btn-premium {
    width: 48px;
    height: 48px;
    border: none;
    background: linear-gradient(135deg, #0072CE 0%, #00AEEF 100%);
    border-radius: 14px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 114, 206, 0.3);
    font-size: 1.1rem;
}

.send-btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 114, 206, 0.4);
}

.send-btn-premium:active {
    transform: scale(0.95);
}

.input-footer-premium {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.input-hint-premium {
    font-size: 0.85rem;
    color: #7B8BA5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.input-hint-premium i {
    font-size: 0.8rem;
}

/* Premium Footer */
.footer-premium {
    position: relative;
    background: #0B1630;
    color: white;
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer-content-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-section-premium h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-section-premium h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-section-premium p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-section-premium ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-section-premium ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-section-premium ul li a:hover {
    color: #00AEEF;
    padding-left: 0.5rem;
}

.social-links-premium {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link-premium {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link-premium:hover {
    background: #00AEEF;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

.footer-tagline-premium {
    font-size: 0.875rem;
    opacity: 0.7;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top-premium {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0072CE 0%, #00AEEF 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 114, 206, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top-premium.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 114, 206, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .boatey-hero-content-premium {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .boatey-avatar-premium {
        width: 280px;
        height: 280px;
    }
    
    .boat-body-premium i {
        font-size: 7rem;
    }
    
    .features-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .boatey-premium-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .boatey-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .boatey-title-premium {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .boatey-subtitle-premium {
        font-size: 1.25rem;
    }
    
    .boatey-description-premium {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .boatey-stats-premium {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .stat-item-premium {
        width: 100%;
    }
    
    .section-title-premium {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-subtitle-premium {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .boatey-features-premium {
        padding: 3rem 0;
    }

    .section-header-premium {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .features-grid-premium {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-card-premium {
        padding: 1.5rem;
    }

    .feature-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-title-premium {
        font-size: 1.25rem;
    }

    .feature-description-premium {
        font-size: 0.95rem;
    }
    
    .boatey-chat-premium-section {
        padding: 3rem 0;
    }

    .chat-container-premium {
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .chat-messages-premium {
        height: 400px;
        padding: 1.5rem;
    }
    
    .message-bubble-premium {
        max-width: 85%;
        font-size: 0.9rem;
        padding: 0.875rem 1rem;
    }
    
    .suggestions-list-premium {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .suggestion-chip-premium {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        min-height: 44px;
    }
    
    .chat-header-premium,
    .chat-input-premium,
    .quick-suggestions-premium {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .chat-input-premium {
        padding: 1rem;
    }

    #boateyInput {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        min-height: 44px;
    }

    .send-btn-premium {
        min-width: 48px;
        min-height: 48px;
    }
    
    .footer-content-premium {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section-premium {
        text-align: center;
    }
    
    .social-links-premium {
        justify-content: center;
    }
    
    .scroll-to-top-premium {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .boatey-title-premium {
        font-size: 2rem;
    }

    .boatey-subtitle-premium {
        font-size: 1.1rem;
    }

    .section-title-premium {
        font-size: 1.75rem;
    }

    .chat-container-premium {
        margin: 0;
        border-radius: 0;
    }

    .chat-messages-premium {
        height: 350px;
        padding: 1rem;
    }
}

.boatey-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 174, 239, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.boatey-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.boatey-character {
    display: flex;
    justify-content: center;
    align-items: center;
}

.boatey-avatar-large {
    position: relative;
    width: 300px;
    height: 300px;
    animation: boateyBounce 3s ease-in-out infinite;
}

@keyframes boateyBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.boat-body-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00AEEF 0%, #0066FF 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 174, 239, 0.4);
}

.boat-body-large i {
    font-size: 8rem;
    color: white;
    opacity: 0.3;
}

.boat-face-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 140px;
}

.eye-large {
    position: absolute;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    top: 30px;
    animation: blink 4s infinite;
}

@keyframes blink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.left-eye-large {
    left: 35px;
}

.right-eye-large {
    right: 35px;
}

.mouth-large {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    border: 4px solid white;
    border-top: none;
    border-radius: 0 0 80px 80px;
}

.boatey-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.boatey-hero-text {
    color: white;
}

.boatey-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.boatey-name-highlight {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.boatey-subtitle-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.boatey-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2.5rem;
}

.boatey-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.boatey-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Boatey Features Section */
.boatey-features-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.boatey-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.boatey-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.boatey-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF 0%, #0066FF 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.boatey-feature-card:hover::before {
    transform: scaleX(1);
}

.boatey-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00AEEF 0%, #0066FF 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.boatey-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.boatey-feature-card p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gray-light);
    color: var(--navy);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Boatey Chat Section */
.boatey-chat-section {
    padding: 5rem 0;
    background: white;
}

.boatey-chat-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray);
}

.chat-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #001F54 0%, #00AEEF 100%);
    color: white;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.boatey-avatar-chat {
    position: relative;
    width: 50px;
    height: 50px;
}

.boat-body-chat {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00AEEF 0%, #0066FF 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.boat-body-chat i {
    font-size: 1.5rem;
    color: white;
    opacity: 0.3;
}

.boat-face-chat {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 25px;
}

.eye-chat {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 5px;
    animation: blink 4s infinite;
}

.eye-chat.left {
    left: 5px;
}

.eye-chat.right {
    right: 5px;
}

.mouth-chat {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border: 3px solid white;
    border-radius: 50%;
}

.chat-header-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.status-text-modern {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-actions-header {
    display: flex;
    gap: 0.5rem;
}

.chat-action-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-action-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.chat-messages-modern {
    height: 500px;
    overflow-y: auto;
    padding: 2rem;
    background: #F8F9FC;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.message-modern {
    display: flex;
    gap: 1rem;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message-modern {
    flex-direction: row;
}

.user-message-modern {
    flex-direction: row-reverse;
}

.message-avatar-modern {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.boat-body-message {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00AEEF 0%, #0066FF 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.boat-body-message i {
    font-size: 1.25rem;
    color: white;
    opacity: 0.3;
}

.message-bubble-modern {
    max-width: 70%;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    position: relative;
}

.bot-bubble {
    background: white;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px var(--shadow);
}

.user-bubble {
    background: linear-gradient(135deg, #00AEEF 0%, #0066FF 100%);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3);
}

.message-bubble-modern p {
    margin: 0;
    line-height: 1.6;
    color: var(--navy);
}

.user-bubble p {
    color: white;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.5rem;
    display: block;
}

.quick-suggestions {
    padding: 1.5rem 2rem;
    background: white;
    border-top: 1px solid var(--gray);
}

.suggestion-label {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.suggestions-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.suggestion-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--gray-light);
    border: 1px solid var(--gray);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.suggestion-chip:hover {
    background: linear-gradient(135deg, #00AEEF 0%, #0066FF 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

.suggestion-chip i {
    font-size: 0.85rem;
}

.chat-input-modern {
    padding: 1.5rem 2rem;
    background: white;
    border-top: 1px solid var(--gray);
}

.input-wrapper-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-light);
    border-radius: 15px;
    padding: 0.5rem;
}

.input-action-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: var(--gray-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-action-btn:hover {
    background: rgba(0, 174, 239, 0.1);
    color: var(--aqua);
}

#boateyInput {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--navy);
    outline: none;
}

#boateyInput::placeholder {
    color: var(--gray-dark);
}

.send-btn-modern {
    width: 45px;
    height: 45px;
    border: none;
    background: linear-gradient(135deg, #00AEEF 0%, #0066FF 100%);
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

.send-btn-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}

.send-btn-modern:active {
    transform: scale(0.95);
}

.input-footer {
    margin-top: 0.75rem;
    display: flex;
    justify-content: center;
}

.input-hint {
    font-size: 0.8rem;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-hint i {
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .boatey-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .boatey-avatar-large {
        width: 250px;
        height: 250px;
    }
    
    .boat-body-large i {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .boatey-title {
        font-size: 2.5rem;
    }
    
    .boatey-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .boatey-features-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-messages-modern {
        height: 400px;
        padding: 1.5rem;
    }
    
    .message-bubble-modern {
        max-width: 85%;
    }
    
    .suggestions-list {
        flex-direction: column;
    }
    
    .suggestion-chip {
        width: 100%;
        justify-content: center;
    }
}

.typing-dots {
    display: flex;
    gap: 6px;
    padding: 0.5rem 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: var(--gray-dark);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero .page-title {
        font-size: 2.5rem;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .cruises-grid,
    .deals-grid,
    .ships-grid,
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-card {
        max-width: 100%;
    }
    
    .destination-content {
        padding: 1.5rem;
    }
    
    .destination-name {
        font-size: 1.5rem;
    }
    
    .destination-description {
        font-size: 0.95rem;
    }
    
    .destinations-section .section-title {
        font-size: 2.25rem;
    }
    
    .destinations-section .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .destination-image {
        height: 240px;
    }
    
    .destination-placeholder {
        font-size: 4rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .deal-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .brand-tab {
        width: 100%;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE ENHANCEMENTS
   ============================================ */

/* Base mobile improvements */
@media (max-width: 768px) {
    /* Ensure proper touch targets */
    button, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve text readability */
    body {
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-text-size-adjust: 100%;
    }

    /* Container improvements */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Section spacing */
    section {
        padding: 2rem 0;
    }

    /* Hero improvements */
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-actions .cta-button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Card improvements */
    .card, .thread-card, .tier-card, .deal-card, .ship-card, .destination-card {
        margin-bottom: 1.5rem;
    }

    /* Grid improvements */
    .grid, .tiers-container, .earn-points-grid, .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Loyalty section mobile */
    .loyalty-hero {
        padding: 100px 0 40px;
    }

    .loyalty-hero-content {
        padding: 0 1rem;
    }

    .loyalty-title {
        font-size: 2.5rem;
    }

    .loyalty-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .loyalty-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .loyalty-stat-card {
        padding: 1.5rem;
    }

    .tier-card {
        margin-bottom: 1.5rem;
    }

    .tier-benefits-list {
        gap: 0.75rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    /* Form improvements */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        width: 100%;
    }

    /* Button improvements */
    .cta-button, button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        touch-action: manipulation;
    }

    /* Navigation improvements */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    /* Mobile menu overlay removed - using full-page menu */

    /* Profile dropdown mobile */
    .profile-dropdown {
        position: fixed;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Modal improvements */
    .modal-content {
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Thread card mobile */
    .thread-card {
        padding: 1.25rem;
    }

    .thread-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Loyalty preview mobile */
    .loyalty-preview-content {
        flex-direction: column;
        gap: 2rem;
    }

    .loyalty-preview-visual {
        order: -1;
    }

    /* Page hero mobile */
    .page-hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .page-hero-content {
        padding: 0 1rem;
    }

    .page-hero .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .page-hero .page-subtitle {
        font-size: 1rem;
    }

    .page-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    /* Filter improvements */
    .filter-row {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        width: 100%;
    }

    /* Search improvements */
    .search-section {
        padding: 2rem 1rem;
    }

    .search-input-wrapper {
        width: 100%;
    }

    /* Stats mobile */
    .hero-stats {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
        padding: 0;
    }

    /* Chat widget mobile */
    .chat-widget {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .chat-container {
        width: 100%;
        height: 85vh;
        max-height: 85vh;
        border-radius: 20px 20px 0 0;
        bottom: 0;
        right: 0;
    }

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    /* Ensure all containers don't overflow */
    .container, section, .hero, .hero-content, .hero-text, .hero-actions {
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    /* Fix any elements that might cause horizontal scroll */
    img, video, iframe, table {
        max-width: 100%;
    }

    video {
        height: auto;
    }

    /* Image responsiveness */
    img, video {
        max-width: 100%;
        height: auto;
    }

    /* Table improvements */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Text improvements */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    /* Spacing improvements */
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Even smaller text */
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Tighter spacing */
    .container {
        padding: 0 0.75rem;
    }

    section {
        padding: 1.5rem 0;
    }

    /* Stats grid */
    .loyalty-stats-grid {
        grid-template-columns: 1fr;
    }

    /* Cards */
    .card, .thread-card {
        padding: 1rem;
    }

    /* Buttons */
    .cta-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Navigation */
    .nav-links {
        width: 100%;
        left: -100%;
    }

    .nav-links.active {
        left: 0;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    /* Hero stats */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-links {
        max-height: 80vh;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    button, a, .clickable {
        min-height: 48px;
        min-width: 48px;
    }

    /* Remove hover effects on touch devices */
    *:hover {
        transition: none;
    }

    /* Improve tap highlights */
    button, a {
        -webkit-tap-highlight-color: rgba(0, 217, 255, 0.2);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp rendering */
    img, video {
        image-rendering: -webkit-optimize-contrast;
    }
}

