/**
 * Kemer Travel Yacht - Premium Tourism Theme
 * Dark Blue + Gold + White - Luxury Style
 */

/* ===================================
   CSS VARIABLES - Premium Dark Theme
   =================================== */
:root {
    /* Primary Colors */
    --primary-dark: #0A1628;
    --primary-navy: #0F2744;
    --primary-blue: #1A3A5C;
    
    /* Accent Colors - Gold */
    --accent-gold: #F4D03F;
    --accent-gold-light: #F7DC6F;
    --accent-gold-dark: #D4AC0D;
    
    /* Background Colors */
    --bg-dark: #0A1628;
    --bg-darker: #061018;
    --bg-light: #FFFFFF;
    --bg-cream: #FFFEF7;
    --bg-gray: #F8F9FA;
    
    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-muted: #A0A0A0;
    --text-dark: #1A1A1A;
    --text-body: #4A4A4A;
    
    /* Border Colors */
    --border-light: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(244, 208, 63, 0.3);
    --border-dark: #E0E0E0;
    
    /* Fonts */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    /* Shadows - Enhanced */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 24px rgba(244, 208, 63, 0.35);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Heights */
    --topbar-height: 40px;
    --header-height: 80px;
    --total-header: 120px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.text-white { color: var(--text-white); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.container-fluid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.container-narrow {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.section {
    padding: var(--spacing-4xl) 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-white);
}

.section-gray {
    background: var(--bg-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 2px;
}

.section-header .section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: var(--spacing-xl) auto 0;
    line-height: 1.8;
}

/* ===================================
   TOP BAR
   =================================== */
.topbar {
    background: var(--bg-darker);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.topbar-social {
    display: flex;
    gap: var(--spacing-sm);
}

.topbar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.topbar-social a:hover {
    color: var(--accent-gold);
    background: rgba(244, 208, 63, 0.1);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.topbar-contact a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-light);
    font-size: 0.85rem;
}

.topbar-contact a:hover {
    color: var(--accent-gold);
}

.topbar-contact i {
    color: var(--accent-gold);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background: var(--primary-dark);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Mobile Header Actions - Hidden on desktop */
.mobile-header-actions {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-left: var(--spacing-sm);
}

.logo-text span {
    color: var(--accent-gold);
}

/* Main Navigation */
.nav-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-dark);
    transition: all var(--transition-fast);
}

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

.nav-dropdown a:hover {
    background: var(--bg-gray);
    color: var(--primary-dark);
    padding-left: var(--spacing-xl);
}

.nav-dropdown a i {
    color: var(--accent-gold);
    width: 20px;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    overflow: hidden;
    min-width: 140px;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    font-size: 0.85rem;
}

.lang-dropdown a:hover {
    background: var(--bg-gray);
}

.lang-dropdown a img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

/* Currency Selector */
.currency-selector {
    position: relative;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.85rem;
    cursor: pointer;
}

.currency-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.currency-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--spacing-sm);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    overflow: hidden;
    min-width: 100px;
}

.currency-selector:hover .currency-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    font-size: 0.85rem;
}

.currency-dropdown a:hover {
    background: var(--bg-gray);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-sm);
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: all var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide video {
    background: var(--dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.6) 0%,
        rgba(10, 22, 40, 0.4) 50%,
        rgba(10, 22, 40, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--spacing-xl);
}

.hero-badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(244, 208, 63, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-xl);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-lg);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    z-index: 15;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-nav-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.hero-dots {
    display: flex;
    gap: var(--spacing-sm);
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent-gold);
    transform: scale(1.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background: var(--accent-gold-dark);
    border-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background: var(--text-white);
    color: var(--primary-dark);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Booking Buttons - Product Page */
.booking-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.book-btn i {
    font-size: 1.1rem;
}

.book-btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.book-btn-primary:hover {
    background: #e6c235;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.4);
    color: var(--primary-dark);
}

.book-btn-whatsapp {
    background: #25D366;
    color: white;
}

.book-btn-whatsapp:hover {
    background: #1fa855;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Full Width WhatsApp Button - When Reservation Disabled */
.book-btn-whatsapp-full {
    flex: 1;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #1fa855 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
}

.book-btn-whatsapp-full:hover {
    background: linear-gradient(135deg, #1fa855 0%, #128C7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.book-btn-whatsapp-full i {
    font-size: 1.3rem;
}

@media (max-width: 480px) {
    .booking-buttons {
        flex-direction: column;
    }
    .book-btn {
        justify-content: center;
    }
}

.btn-dark {
    background: var(--primary-dark);
    color: var(--text-white);
    border-color: var(--primary-dark);
}

.btn-dark:hover {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.service-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.service-card:hover {
    background: rgba(244, 208, 63, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

.service-card .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* ===================================
   FEATURED TOURS
   =================================== */
.tours-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-xl);
    color: var(--text-body);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn i {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-white);
}

.filter-btn:hover i,
.filter-btn.active i {
    opacity: 1;
    color: var(--accent-gold);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.tour-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    padding: 6px 14px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.tour-favorite {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tour-favorite:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.tour-content {
    padding: var(--spacing-lg);
}

.tour-meta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.tour-meta i {
    color: var(--accent-gold);
}

.tour-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-weight: 600;
}

.tour-title a {
    color: var(--text-dark);
}

.tour-title a:hover {
    color: var(--primary-dark);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.tour-rating .stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.tour-rating span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-dark);
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.tour-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ===================================
   YACHT SECTION
   =================================== */
.yacht-section {
    position: relative;
    padding: var(--spacing-4xl) 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.yacht-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(10, 22, 40, 0.7) 50%,
        rgba(10, 22, 40, 0.4) 100%
    );
}

.yacht-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.yacht-content h2 {
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
}

.yacht-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
    line-height: 1.8;
}

.yacht-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.yacht-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-light);
}

.yacht-feature i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* ===================================
   TRANSFER SECTION
   =================================== */
.transfer-section {
    background: var(--bg-gray);
}

.transfer-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-2xl);
}

.transfer-tabs {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--border-dark);
    padding-bottom: var(--spacing-md);
}

.transfer-tab {
    padding: var(--spacing-md) var(--spacing-xl);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.transfer-tab.active {
    color: var(--primary-dark);
}

.transfer-tab.active::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--spacing-md) - 2px);
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.transfer-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-control {
    padding: 14px 16px;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A4A4A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.counter-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.counter {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.counter-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.counter-btn:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.counter-value {
    width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.transfer-submit {
    grid-column: 1 / -1;
    margin-top: var(--spacing-md);
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-card {
    text-align: center;
    padding: var(--spacing-2xl);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 4px solid var(--accent-gold);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.testimonial-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-nav:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(244, 208, 63, 0.15);
}

.faq-item.active {
    background: white;
    border-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.2);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(244, 208, 63, 0.05);
}

.faq-question i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    background: var(--primary-dark);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    opacity: 1;
}

.faq-answer-content {
    padding: 20px 24px 24px 24px;
    margin: 0 24px 24px 24px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    border-left: 3px solid var(--accent-gold);
    display: block;
    visibility: visible;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.blog-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-date {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
    font-weight: 600;
}

.blog-title a {
    color: var(--text-dark);
}

.blog-title a:hover {
    color: var(--primary-dark);
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.blog-link {
    color: var(--primary-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.blog-link:hover {
    color: var(--accent-gold);
}

.blog-link i {
    transition: transform var(--transition-fast);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding-top: var(--spacing-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--border-light);
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-primary);
    font-weight: 600;
}

.footer-about .logo {
    margin-bottom: var(--spacing-lg);
}

.footer-about p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-links ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-badges {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-badges img {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-badges img:hover {
    opacity: 1;
}

.footer-badges a {
    display: inline-block;
}

.tursab-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.tursab-badge.no-image {
    background: rgba(244, 208, 63, 0.1);
    border-color: var(--accent-gold);
}

.tursab-badge img {
    height: 35px;
    width: auto;
}

.tursab-number {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.footer-bottom {
    padding: var(--spacing-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payments img {
    height: 28px;
    width: auto;
    opacity: 0.85;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-payments img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20BA5C;
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 998;
}

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

.back-to-top:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.8) 0%,
        rgba(10, 22, 40, 0.6) 100%
    );
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-md);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ===================================
   MOBILE MENU STYLES - HAMBURGER ANIMATION
   =================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    top: 14px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 28px;
}

/* Hamburger to X animation */
.menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* Mobile Navigation Styles */
.nav-main {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* Mobile Contact Bar (visible when topbar hidden) */
.mobile-contact-bar {
    display: none;
    background: var(--bg-darker);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.mobile-contact-bar .container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.mobile-contact-bar a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.mobile-contact-bar i {
    color: var(--accent-gold);
}

/* Mobile navigation icon (hidden on desktop) */
.nav-icon-mobile {
    display: none;
}

/* Mobile Language/Currency in Menu */
.mobile-selectors {
    display: none;
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
    gap: var(--spacing-md);
}

.mobile-selectors .lang-selector,
.mobile-selectors .currency-selector {
    position: relative;
    width: 100%;
}

.mobile-selectors .lang-btn,
.mobile-selectors .currency-btn {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px;
    border-radius: var(--radius-md);
}

/* Mobile Menu Footer - Language & Currency */
.mobile-menu-footer {
    display: none;
    border-top: 1px solid var(--border-light);
    background: var(--bg-darker);
    margin-top: auto;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Show mobile-menu-footer on mobile when nav is active */
.nav-main.active .mobile-menu-footer {
    display: block;
}

.mobile-menu-section {
    padding: 0;
}

.mobile-menu-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(244, 208, 63, 0.05);
}

.mobile-menu-label i {
    font-size: 0.9rem;
}

.mobile-menu-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 20px;
}

.mobile-option-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px; /* Touch-friendly minimum height */
    -webkit-tap-highlight-color: transparent;
}

.mobile-option-btn img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mobile-option-btn .option-symbol {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.mobile-option-btn:hover,
.mobile-option-btn:focus {
    background: rgba(244, 208, 63, 0.1);
    border-color: var(--accent-gold);
    outline: none;
}

.mobile-option-btn:active {
    transform: scale(0.98);
}

.mobile-option-btn.active {
    background: rgba(244, 208, 63, 0.25);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.15);
}

/* Mobile-only navigation items */
.nav-item-mobile {
    display: none;
}

/* Slide animations for testimonials */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Extra Large Screens - 1400px */
@media (max-width: 1400px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
    
    .container-fluid {
        padding: 0 var(--spacing-xl);
    }
}

/* Large Screens - 1200px */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-link {
        padding: var(--spacing-md) var(--spacing-md);
        font-size: 0.9rem;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    /* Header adjustments */
    .header-right {
        gap: var(--spacing-sm);
    }
    
    .lang-btn span,
    .currency-btn span:last-of-type {
        display: none;
    }
    
    /* Mobile Navigation */
    .nav-main {
        display: none !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border-top: 1px solid var(--border-light);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-main.active {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link {
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1rem;
    }
    
    /* Only dropdown items have space-between for the arrow icon */
    .nav-item.has-dropdown > .nav-link {
        justify-content: space-between;
    }
    
    .nav-link i {
        transition: transform 0.3s ease;
    }
    
    .nav-item.active .nav-link i {
        transform: rotate(180deg);
    }
    
    /* Dropdown accordion style */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.active .nav-dropdown {
        max-height: 400px;
    }
    
    .nav-dropdown a {
        color: var(--text-light);
        border-bottom-color: var(--border-light);
        padding: var(--spacing-md) var(--spacing-xl);
        padding-left: calc(var(--spacing-xl) + 20px);
    }
    
    .nav-dropdown a:hover {
        background: rgba(244, 208, 63, 0.1);
        padding-left: calc(var(--spacing-xl) + 25px);
    }
    
    /* Mobile currency bar visibility */
    .mobile-currency-bar {
        display: flex;
    }
    
    /* Show mobile-only nav items */
    .nav-item-mobile {
        display: block;
    }
    
    /* Show mobile icons */
    .nav-icon-mobile {
        display: inline;
        margin-right: 8px;
        color: var(--accent-gold);
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
    }
    
    /* Mobile Header Actions */
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        order: 2;
    }
    
    /* Mobile Language Dropdown */
    .mobile-lang-dropdown {
        position: relative;
    }
    
    .mobile-lang-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid var(--border-light);
        border-radius: var(--radius-md);
        cursor: pointer;
        transition: all var(--transition-fast);
    }
    
    .mobile-lang-toggle img {
        width: 24px;
        height: 18px;
        object-fit: cover;
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    .mobile-lang-toggle i {
        color: var(--text-light);
        font-size: 0.7rem;
        transition: transform var(--transition-fast);
    }
    
    .mobile-lang-toggle:hover,
    .mobile-lang-dropdown.active .mobile-lang-toggle {
        background: rgba(244, 208, 63, 0.15);
        border-color: var(--accent-gold);
    }
    
    .mobile-lang-dropdown.active .mobile-lang-toggle i {
        transform: rotate(180deg);
    }
    
    .mobile-lang-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 160px;
        background: var(--bg-dark);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all var(--transition-fast);
        z-index: 1002;
    }
    
    .mobile-lang-dropdown.active .mobile-lang-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-lang-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        color: var(--text-light);
        font-size: 0.95rem;
        transition: background var(--transition-fast);
    }
    
    .mobile-lang-menu a:first-child {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    
    .mobile-lang-menu a:last-child {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    
    .mobile-lang-menu a:hover {
        background: rgba(244, 208, 63, 0.1);
    }
    
    .mobile-lang-menu a.active {
        background: rgba(244, 208, 63, 0.15);
        color: var(--accent-gold);
    }
    
    .mobile-lang-menu a.active::after {
        content: '✓';
        margin-left: auto;
        color: var(--accent-gold);
    }
    
    .mobile-lang-menu img {
        width: 24px;
        height: 18px;
        object-fit: cover;
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    /* Logo order */
    .logo {
        order: 1;
    }
    
    /* Hide desktop header-right on mobile */
    .header-right {
        display: none;
    }
    
    /* Grid adjustments */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .yacht-content {
        max-width: 100%;
    }
    
    /* Section padding reduction */
    .section {
        padding: var(--spacing-3xl) 0;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    :root {
        --topbar-height: 0px;
        --header-height: 64px;
        --spacing-3xl: 2.5rem;
        --spacing-4xl: 3.5rem;
    }
    
    /* Typography scaling */
    h1 { font-size: clamp(2rem, 6vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
    h3 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
    
    /* Topbar hidden */
    .topbar {
        display: none;
    }
    
    /* Mobile contact bar also hidden per user request */
    .mobile-contact-bar {
        display: none;
    }
    
    /* Header adjustments */
    .header {
        height: var(--header-height);
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .header-right {
        display: none;
    }
    
    /* Grid systems */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .transfer-form {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer - Enhanced Mobile */
    .footer {
        padding-top: var(--spacing-2xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .footer-about {
        order: 1;
    }
    
    .footer-col:nth-child(2) {
        order: 3;
    }
    
    .footer-col:nth-child(3) {
        order: 4;
    }
    
    .footer-col:nth-child(4) {
        order: 2;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .footer-contact li {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .footer-social a {
        width: 44px;
        height: 44px;
    }
    
    .footer-links a {
        justify-content: center;
        padding: var(--spacing-xs) 0;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
        padding: var(--spacing-md) 0;
    }
    
    .footer-payments {
        justify-content: center;
    }
    
    /* Hero section */
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: var(--spacing-lg);
    }
    
    .hero-nav {
        bottom: 60px;
        gap: var(--spacing-md);
    }
    
    .hero-nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Section header */
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Service cards */
    .service-card {
        padding: var(--spacing-xl);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Tour cards */
    .tour-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    /* Testimonials */
    .testimonials-slider {
        padding: 0;
    }
    
    .testimonial-nav {
        display: none;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .faq-question i {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .faq-answer-content {
        padding: 16px;
        margin: 0 20px 20px 20px;
        font-size: 0.9rem;
    }
    
    /* Page header */
    .page-header {
        min-height: 280px;
        padding: 100px 20px 40px;
    }
    
    /* Yacht section */
    .yacht-section {
        background-attachment: scroll;
    }
    
    .yacht-features {
        grid-template-columns: 1fr;
    }
    
    /* Transfer form container */
    .transfer-form-container {
        padding: var(--spacing-xl);
    }
    
    .transfer-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .transfer-tab {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
    
    /* Counter group */
    .counter-group {
        justify-content: flex-start;
    }
    
    /* Floating elements */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 85px;
        right: 20px;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    /* Services grid single column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Service card compact */
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Hero adjustments */
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile contact bar compact */
    .mobile-contact-bar .container {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    /* Nav link padding */
    .nav-link {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .nav-dropdown a {
        padding: var(--spacing-md) var(--spacing-lg);
        padding-left: calc(var(--spacing-lg) + 15px);
    }
    
    /* Tour card mobile */
    .tour-card {
        margin-bottom: var(--spacing-md);
    }
    
    .tour-content {
        padding: var(--spacing-md);
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    /* Section header mobile */
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }
    
    /* Hero section */
    .hero {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-nav {
        bottom: 40px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 16px 32px;
    }
    
    .btn-sm {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    /* Logo */
    .logo img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    /* Tour card */
    .tour-card {
        max-width: 100%;
    }
    
    .tour-image {
        height: 200px;
    }
    
    .tour-content {
        padding: var(--spacing-md);
    }
    
    .tour-price {
        font-size: 1.2rem;
    }
    
    /* Page header */
    .page-header {
        min-height: 240px;
        padding: 90px 15px 30px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    /* Section header */
    .section-header h2::after {
        width: 40px;
    }
    
    /* Footer */
    .footer {
        padding-top: var(--spacing-2xl);
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
    :root {
        --header-height: 56px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-text span {
        display: none;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ===================================
   TOUCH-FRIENDLY STYLES
   =================================== */
@media (hover: none) and (pointer: coarse) {
    /* Increase tap targets */
    .btn {
        min-height: 44px;
    }
    
    .form-control {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    select.form-control {
        min-height: 48px;
    }
    
    /* Remove hover effects, use active states */
    .nav-link:hover {
        color: var(--text-light);
    }
    
    .nav-link:active {
        color: var(--accent-gold);
    }
    
    .tour-card:hover {
        transform: none;
    }
    
    .tour-card:active {
        transform: scale(0.98);
    }
    
    .service-card:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .service-card:active {
        background: rgba(244, 208, 63, 0.1);
        border-color: var(--accent-gold);
    }
    
    /* Larger touch targets for icons */
    .tour-favorite,
    .topbar-social a,
    .footer-social a {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Remove parallax on touch devices */
    .yacht-section,
    .yacht-cta,
    .cta-section {
        background-attachment: scroll;
    }
    
    /* Disable hover dropdowns, use click */
    .nav-dropdown,
    .lang-dropdown,
    .currency-dropdown {
        pointer-events: auto;
    }
    
    .lang-selector:hover .lang-dropdown,
    .currency-selector:hover .currency-dropdown {
        opacity: 0;
        visibility: hidden;
    }
    
    .lang-selector.active .lang-dropdown,
    .currency-selector.active .currency-dropdown {
        opacity: 1;
        visibility: visible;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        display: none;
    }
    
    .hero-nav {
        bottom: 20px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .nav-main {
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(var(--spacing-lg), env(safe-area-inset-left));
        padding-right: max(var(--spacing-lg), env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(var(--spacing-lg), env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        right: max(20px, env(safe-area-inset-right));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .back-to-top {
        right: max(20px, env(safe-area-inset-right));
    }
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Fix header position when menu is open */
body.menu-open .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-sm) !important; }
.mb-2 { margin-bottom: var(--spacing-md) !important; }
.mb-3 { margin-bottom: var(--spacing-lg) !important; }
.mb-4 { margin-bottom: var(--spacing-xl) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-sm) !important; }
.mt-2 { margin-top: var(--spacing-md) !important; }
.mt-3 { margin-top: var(--spacing-lg) !important; }
.mt-4 { margin-top: var(--spacing-xl) !important; }

.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }

/* ===================================
   ENHANCED PAGE HEADER
   =================================== */
.page-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.9));
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--text-light);
    font-size: 0.95rem;
}

.page-header .breadcrumb a {
    color: var(--accent-gold);
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

.page-header .breadcrumb span {
    color: var(--text-muted);
}

/* ===================================
   ENHANCED FORM STYLES
   =================================== */
.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(244, 208, 63, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    cursor: pointer;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.form-group label.required::after {
    content: ' *';
    color: #e74c3c;
}

.form-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--spacing-xs);
}

/* ===================================
   ALERT MESSAGES
   =================================== */
.alert {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 500;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.5);
    color: #27ae60;
}

.alert-error,
.alert-danger {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #e74c3c;
}

.alert-warning {
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.5);
    color: #f39c12;
}

.alert-info {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.5);
    color: #3498db;
}

/* ===================================
   ENHANCED TOUR CARDS
   =================================== */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.tour-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-muted);
}

.tour-favorite:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.tour-favorite.active {
    background: #e74c3c;
    color: white;
}

.tour-content {
    padding: var(--spacing-lg);
}

.tour-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-meta i {
    color: var(--accent-gold);
}

.tour-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
}

.tour-title a {
    color: var(--text-dark);
}

.tour-title a:hover {
    color: var(--primary-dark);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.tour-rating .stars {
    color: var(--accent-gold);
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-dark);
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.tour-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ===================================
   LOADING SPINNER
   =================================== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   SKELETON LOADING
   =================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===================================
   TABS COMPONENT
   =================================== */
.tabs-header {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--border-dark);
    margin-bottom: var(--spacing-xl);
}

.tabs-header .tab-btn {
    padding: 15px 25px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-fast);
}

.tabs-header .tab-btn:hover {
    color: var(--primary-dark);
}

.tabs-header .tab-btn.active {
    color: var(--primary-dark);
}

.tabs-header .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ===================================
   PRICE TABLE
   =================================== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    border-bottom: 1px solid var(--border-dark);
}

.price-table th {
    background: var(--primary-dark);
    color: var(--text-white);
    font-weight: 600;
}

.price-table tbody tr:hover {
    background: var(--bg-gray);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===================================
   MOBILE NAV OVERLAY
   =================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--primary-dark);
    z-index: 1000;
    padding: var(--spacing-xl);
    overflow-y: auto;
    transition: right var(--transition-normal);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
}

.mobile-nav-menu {
    margin-top: var(--spacing-3xl);
}

.mobile-nav-menu a {
    display: block;
    padding: var(--spacing-md) 0;
    color: var(--text-light);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-menu a:hover {
    color: var(--accent-gold);
}

/* ===================================
   ENHANCED RESPONSIVE STYLES
   =================================== */
@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        min-height: 280px;
        padding: 100px 20px 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}

/* ===================================
   QUICK CATEGORIES - Homepage
   =================================== */
.quick-categories {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-light);
    position: relative;
    z-index: 10;
}

.categories-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-box {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.category-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.category-box:hover .category-bg {
    transform: scale(1.1);
}

.category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.2) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.category-box:hover::before {
    background: linear-gradient(to top, rgba(244, 208, 63, 0.9) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.3) 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    text-align: center;
}

.category-content i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.category-box:hover .category-content i {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.category-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 6px 0;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.category-box:hover .category-content h3 {
    color: var(--primary-dark);
}

.category-count {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-box:hover .category-count {
    color: var(--primary-dark);
}

@media (max-width: 992px) {
    .categories-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-categories {
        padding: var(--spacing-2xl) 0;
    }
}

@media (max-width: 576px) {
    .categories-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .category-box {
        height: 180px;
    }
    .quick-categories {
        padding: var(--spacing-xl) 0;
    }
}

/* ===================================
   HOMEPAGE MODERN TOUR CARDS
   =================================== */
.homepage-filter-bar {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}

.homepage-filter-bar .filter-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.homepage-filter-bar .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-body);
}

.homepage-filter-bar .filter-btn:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.homepage-filter-bar .filter-btn.active {
    background: var(--primary-dark);
    color: white;
    border-color: var(--primary-dark);
}

.homepage-filter-bar .filter-btn i {
    font-size: 0.9rem;
}

/* Modern Tours Grid */
.tours-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.tour-card-modern {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card-modern:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.tour-card-modern:hover .tour-card-overlay {
    opacity: 1;
}

.view-details {
    padding: 15px 30px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.view-details:hover {
    background: white;
    color: var(--primary-dark);
}

.tour-card-modern:hover .view-details {
    transform: translateY(0);
}

.tour-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-card-image .tour-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-muted);
}

.tour-card-image .tour-favorite:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.tour-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary-dark);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
}

.tour-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.tour-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-info i {
    color: var(--accent-gold);
}

.tour-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    line-height: 1.4;
}

.tour-name a {
    color: var(--text-dark);
}

.tour-name a:hover {
    color: var(--primary-dark);
}

.tour-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px dashed var(--border-dark);
    margin-top: auto;
}

.tour-card-footer .btn,
.tour-card-footer .btn-primary,
.tour-card-footer .btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.tour-rating-stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.tour-rating-stars span {
    color: var(--text-dark);
    font-weight: 600;
    margin-left: 5px;
}

/* Responsive for Modern Cards */
@media (max-width: 1200px) {
    .tours-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .homepage-filter-bar .filter-categories {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .homepage-filter-bar .filter-categories::-webkit-scrollbar {
        display: none;
    }
    
    .homepage-filter-bar .filter-btn {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .tours-grid-modern {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    
    .tour-card-modern {
        max-width: 400px;
        margin: 0 auto;
    }
}
