/* 
 * Orange-Blue Design System for Flying Travel
 * Focused on colors, fonts, and search section styling
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* CSS Variables - Orange-Blue Color Palette */
:root {
    /* Primary Colors */
    --orange-primary: #ff6600;
    --orange-dark: #e55a00;
    --orange-light: #ff8533;
    --orange-secondary: #fff3e6;
    
    --blue-primary: #0066cc;
    --blue-dark: #004499;
    --blue-light: #3385dd;
    --blue-secondary: #e6f2ff;

    --flight-blue-primary: #1e3a8a;
    --flight-blue-secondary: #3b82f6;
    --flight-blue-light: #dbeafe;
    --flight-orange-primary: #ea580c;
    --flight-orange-secondary: #fb923c;
    --flight-orange-light: #fed7aa;
    --flight-white: #ffffff;
    --flight-gray-light: #f8fafc;
    --flight-gray-border: #e2e8f0;
    --flight-text-dark: #1e293b;
    --flight-text-light: #64748b;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--gray-50);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
}

/* Header Styles */
.main-header {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative; 
    /* position: fixed;
    z-index: 1000;
    width: 100%; */
}

.top-bar {
    background: rgb(10 0 100 / 85%);
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-lg);
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    margin-right: var(--spacing-lg);
    transition: color 0.3s ease;
    font-family: var(--font-family);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.contact-info a:hover {
    color: var(--orange-light);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    /* width: 30px; */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--orange-primary);
    background: var(--white);
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-family);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Flag icons in language toggle button */
.language-toggle .flag-icon {
    width: 20px !important;
    height: 15px !important;
    border-radius: 2px !important;
    object-fit: cover !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: none !important;
    max-height: none !important;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-top: var(--spacing-xs);
}

.language-dropdown:hover .language-dropdown-menu,
.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-800) !important;
    text-decoration: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    font-family: var(--font-family);
    font-size: 0.875rem;
    background: var(--white);
}

.language-option:hover {
    background: var(--blue-secondary) !important;
    color: var(--blue-primary) !important;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option.active {
    background: var(--blue-primary) !important;
    color: var(--white) !important;
}

.language-option.active:hover {
    background: var(--blue-dark) !important;
    color: var(--white) !important;
}

.flag-icon {
    width: 20px !important;
    height: 15px !important;
    border-radius: 2px !important;
    object-fit: cover !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: none !important;
    max-height: none !important;
    border: 1px solid #ccc !important;
    background: #f0f0f0 !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Dropdown menu flag icons */
.language-dropdown-menu .flag-icon {
    width: 20px !important;
    height: 15px !important;
    border-radius: 2px !important;
    object-fit: cover !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-width: none !important;
    max-height: none !important;
    border: 1px solid #ccc !important;
    background: #f0f0f0 !important;
    position: relative !important;
    z-index: 10 !important;
}

.flag-icon-us { background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyMCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjE1IiBmaWxsPSIjQjIyMjM0Ii8+CjxyZWN0IHk9IjEiIHdpZHRoPSIyMCIgaGVpZ2h0PSIxIiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB5PSIzIiB3aWR0aD0iMjAiIGhlaWdodD0iMSIgZmlsbD0id2hpdGUiLz4KPC9zdmc+'); }
.flag-icon-fr { background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyMCAxNSIgZmlsbD0ibm9uZSIgeG1zbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjYuNjciIGhlaWdodD0iMTUiIGZpbGw9IiMwMDIzOTUiLz4KPHJlY3QgeD0iNi42NyIgd2lkdGg9IjYuNjciIGhlaWdodD0iMTUiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHg9IjEzLjMzIiB3aWR0aD0iNi42NyIgaGVpZ2h0PSIxNSIgZmlsbD0iI0VEMjkzOSIvPgo8L3N2Zz4K'); }
.flag-icon-es { background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyMCAxNSIgZmlsbD0ibm9uZSIgeG1zbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjE1IiBmaWxsPSIjRkZDNDAwIi8+CjxyZWN0IHk9IjMiIHdpZHRoPSIyMCIgaGVpZ2h0PSI5IiBmaWxsPSIjRkY3NDAwIi8+Cjwvc3ZnPgo='); }
.flag-icon-ar { background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyMCAxNSIgZmlsbD0ibm9uZSIgeG1zbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjIwIiBoZWlnaHQ9IjE1IiBmaWxsPSIjRkY3NDAwIi8+CjxyZWN0IHk9IjUiIHdpZHRoPSIyMCIgaGVpZ2h0PSI1IiBmaWxsPSIjRkZGRkZGIi8+Cjwvc3ZnPgo='); }

.header-main {
    padding: var(--spacing-lg) 0;
}

.header-main .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-lg);
}

.logo {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--orange-light);
}

.header-actions {
    display: flex;
    gap: var(--spacing-md);
}

.btn-header {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: var(--font-family);
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-header:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Navigation Styles */
.main-nav {
    /* background: rgb(10 0 100 / 85%); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: var(--blue-dark);
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-md);
    transition: all 0.3s ease;
    font-family: var(--font-family);
    font-weight: var(--font-weight-medium);
    border-bottom: 3px solid transparent;
}

.nav-link:hover, .nav-item.active .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--orange-primary);
    color: var(--orange-light);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    color: var(--gray-800);
    text-decoration: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    font-family: var(--font-family);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.dropdown-link:hover {
    background: var(--blue-secondary);
    color: var(--blue-primary);
    padding-left: var(--spacing-xl);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
}

.breadcrumb-nav a:hover {
    color: var(--orange-light);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header Responsive Design */
@media (max-width: 992px) {
    .header-actions {
        gap: var(--spacing-sm);
    }
    
    .btn-header {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: var(--spacing-xs) 0;
        font-size: 0.8rem;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: var(--spacing-xs);
        padding: 0 var(--spacing-md);
    }
    
    .contact-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }
    
    .contact-info a {
        margin-right: 0;
        font-size: 0.75rem;
    }
    
    .social-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-xs);
    }
    
    .social-links a {
        font-size: 0.9rem;
    }
    
    /* Mobile language selector adjustments */
    .language-selector {
        order: -1;
        margin-bottom: var(--spacing-xs);
    }
    
    .language-toggle {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .flag-icon {
        width: 16px;
        height: 12px;
    }
    
    .header-main .container {
        flex-direction: row;
        gap: var(--spacing-md);
        align-items: center;
        position: relative;
    }
    
    .header-main {
        padding: var(--spacing-md) 0;
    }
    
    .logo {
        text-align: center;
        justify-content: center;
    }
    
    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        color: rgb(10 0 100 / 85%);
        display: block;
        align-self: center;
        margin-left: auto;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        border-radius: var(--radius-lg);
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none;
        border-right: none;
        border-top: none;
        padding: var(--spacing-md) var(--spacing-lg);
        color: var(--white);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--orange-light);
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
        border: none;
        margin: 0;
    }
    
    .dropdown-link {
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: var(--spacing-xl);
    }
    
    .dropdown-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--orange-light);
        padding-left: var(--spacing-xxl);
    }
    
    /* Mobile Language Selector */
    .language-dropdown-menu {
        right: auto;
        left: 0;
        min-width: 120px;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .top-bar {
        padding: var(--spacing-xs) 0;
        font-size: 0.75rem;
    }
    
    .contact-info a {
        font-size: 0.7rem;
        margin-right: 0;
    }
    
    .social-links a {
        font-size: 0.8rem;
        padding: var(--spacing-xs);
    }
    
    .language-toggle {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .top-login-link, .account-toggle {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .header-actions {
        flex-direction: column;
    }
    
    .btn-header {
        text-align: center;
        justify-content: center;
    }
}

/* Hero Section Slider Styles */
.hero-section {
    position: relative;
    height: 80vh;
    max-height: 400px;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 var(--spacing-xs);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
    color: white;
}

/* Search Section Styles */
.search-section {
    margin-top: 0px;
    position: relative;
    z-index: 10;
    padding: 0 var(--spacing-lg);
}

.search-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
}

.search-tabs {
    display: flex;
    border-bottom: none;
    margin-bottom: var(--spacing-sm);
    background: var(--gray-50);
    border-radius: var(--radius-full);
    padding: 6px;
    box-shadow: inset var(--shadow-sm);
}

.search-tab {
    flex: 1;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-md);
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
    margin: 2px;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-tab.active {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.search-tab:hover:not(.active) {
    color: var(--blue-primary);
    background: var(--blue-secondary);
}

.search-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.search-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Search Form Layout */
.search-form-row {
    display: flex;
    gap: var(--spacing-lg);
    align-items: end;
    margin-bottom: 0;
}

.search-form-col {
    flex: 1;
    min-width: 0;
}

.search-form-col.search-btn-col {
    flex: 0 0 auto;
    min-width: 200px;
}

.search-form-col.search-small-col {
    flex: 0 0 auto;
    min-width: 160px;
}

.search-input-group {
    position: relative;
}

.search-input-group .form-label {
    position: absolute;
    top: -8px;
    left: var(--spacing-md);
    background: var(--white);
    padding: 0 var(--spacing-sm);
    font-size: 0.75rem;
    color: var(--blue-primary);
    z-index: 1;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
}

/* Form Controls */
.form-label {
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    font-family: var(--font-family);
}

.form-control, .form-select {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--gray-800);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background: var(--blue-secondary);
}

.form-control:hover, .form-select:hover {
    border-color: var(--blue-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-family: var(--font-family);
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    line-height: 1.5;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: var(--spacing-xs);
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
    
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-orange {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-primary) 100%);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
}

.btn-search {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-primary) 100%);
    color: var(--white);
}

/* Travelers Button */
.btn-travelers {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-align: left;
    width: 100%;
    color: var(--gray-700);
    font-size: 0.875rem;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-travelers:hover {
    border-color: var(--blue-primary);
    background: var(--blue-secondary);
    color: var(--gray-700);
}

/* Flight Travelers Grid */
.flight-travelers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-sm);
    align-items: end;
}

.flight-travelers-grid .form-select {
    padding: var(--spacing-md) var(--spacing-sm);
    font-size: 0.875rem;
}

.flight-travelers-grid small {
    color: var(--gray-600);
    font-size: 0.75rem;
    text-align: center;
    display: block;
    margin-top: var(--spacing-xs);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
}

/* Travelers Selector for Hotels */
.travelers-selector .form-select {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .search-form-row {
        flex-wrap: wrap;
    }
    
    .search-form-col {
        flex: 1 1 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
    }
    
    .search-form-col.search-btn-col {
        flex: 1 1 100%;
        min-width: 100%;
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .search-container {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .search-tabs {
        flex-direction: row;
        border-radius: var(--radius-lg);
    }
    
    .search-tab {
        border-radius: var(--radius-md);
        margin: 1px;
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .search-form-row {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .search-form-col {
        flex: none;
        min-width: 100%;
    }
    
    .search-form-col.search-btn-col {
        margin-top: 0;
    }
    
    .flight-travelers-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Section Styling */
.section-spacing {
    padding: var(--spacing-md) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-family);
}

/* Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* Travel Cards */
.travel-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.travel-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.travel-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.travel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.travel-card:hover .travel-card-image img {
    transform: scale(1.05);
}

.travel-card-content {
    padding: var(--spacing-md);
}

.travel-card-title {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
}

.travel-card-location {
    color: var(--blue-primary);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family);
}

.travel-card-details {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--gray-600);
    font-family: var(--font-family);
}

.travel-card-price {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
    font-family: var(--font-family);
}

.price-amount {
    font-size: 1.5rem;
    color: var(--orange-primary);
}

.price-currency {
    font-weight: var(--font-weight-bold);
    color: var(--orange-primary);
    font-size: 1.125rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
}

/* Icon Overlays */
.card-icons-overlay {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    flex-direction: row;
    gap: var(--spacing-sm);
    z-index: 3;
}

.icon-squircle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.icon-squircle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Icon color classes for home page cards */
.icon-flight {
    color: #1976d2;
}

.icon-hotel, .icon-accommodation {
    color: #388e3c;
}

.icon-guide {
    color: #c2185b;
}

.icon-local-flight {
    color: #0277bd;
}

.icon-local-assistance {
    color: #7b1fa2;
}

.icon-breakfast {
    color: #ff6f00;
}

.icon-transport {
    color: #455a64;
}

.icon-insurance {
    color: #d32f2f;
}

.icon-excursion {
    color: #ff6f00;
}

.icon-meals {
    color: #388e3c;
}

.icon-default {
    color: var(--gray-600);
}

/* Hotel specific icons */
.icon-animation {
    color: #e91e63;
}

.icon-kids-club {
    color: #ff9800;
}

.icon-beachfront {
    color: #2196f3;
}

.icon-aqua-park {
    color: #00bcd4;
}

.icon-adults-only {
    color: #9c27b0;
}

.card-features {
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--gray-600);
    font-family: var(--font-family);
}

/* Responsive Design for Cards */
@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    color: var(--white);
    margin-top: var(--spacing-xxl);
}

.footer-content {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xxl);
}

.footer-section h3 {
    color: var(--blue-primary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--blue-primary);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-300);
    font-family: var(--font-family);
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-family);
}

.footer-section ul li a:hover {
    color: var(--blue-primary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 204, 0.2);
    color: var(--blue-primary);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item i {
    color: var(--blue-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item strong {
    color: var(--white);
    font-family: var(--font-family);
}

.contact-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-family);
}

.contact-item a:hover {
    color: var(--blue-primary);
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.newsletter-form .form-control {
    flex: 1;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    font-family: var(--font-family);
    color: var(--gray-800);
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.newsletter-form .btn-newsletter {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-sm);
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form .btn-newsletter:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.newsletter-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    display: none;
}

.newsletter-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-family);
}

.footer-links a:hover {
    color: var(--blue-primary);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-sections {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn-newsletter {
        align-self: stretch;
    }
}

/* Utilities */
.w-100 { width: 100%; }
.text-center { text-align: center; }

/* Tours Listing Styles */
.tours-listing {
    background: var(--gray-50);
    min-height: 100vh;
}

.search-section {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: var(--spacing-md) 0;
}

.search-wrapper {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.search-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.search-row {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spacing-md);
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.search-field label {
    font-weight: var(--font-weight-medium);
    color: var(--white);
    font-size: 0.9rem;
}

.search-field input,
.search-field select {
    padding: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    font-size: 1rem;
    transition: all var(--transition-speed);
    min-height: 44px;
    width: 100%;
    box-sizing: border-box;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.search-field button {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    min-height: 44px;
    white-space: nowrap;
}

.search-field button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile: Keep closed by default */
@media (max-width: 768px) {
    .results-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .results-sidebar {
        position: static;
        order: 2;
    }
    
    .results-main {
        order: 1;
    }
    
    .sidebar-content {
        margin-bottom: var(--spacing-lg);
    }
}

.results-section {
    padding: var(--spacing-lg) 0;
}

.results-layout {
    display: block;
    width: 100%;
}

.results-summary {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--blue-primary);
}

.results-summary p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
}

/* Refine Search Section */
.refine-search-section {
    margin: 0 0 var(--spacing-xl) 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.refine-search-toggle {
    padding: var(--spacing-sm) var(--spacing-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--gray-800);
    font-weight: var(--font-weight-medium);
    list-style: none;
    transition: all 0.3s ease;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
}

.refine-search-toggle:hover {
    background: var(--gray-100);
}

.refine-search-toggle::-webkit-details-marker {
    display: none;
}

.refine-search-content {
    padding: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.refine-filters-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.refine-search-content .filter-group {
    margin-bottom: var(--spacing-xs);
}

.refine-search-content .filter-group:last-of-type {
    margin-bottom: 0;
}

.refine-search-content label {
    display: block;
    color: var(--gray-800);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
}

.refine-search-content input,
.refine-search-content select {
    width: 100%;
    padding: var(--spacing-xs) var(--spacing-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-800);
    font-size: 0.8rem;
}

.refine-search-content input:focus,
.refine-search-content select:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
}

.refine-search-content .price-inputs {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.refine-search-content .price-inputs input {
    flex: 1;
    min-width: 0;
}

.refine-search-content .price-inputs span {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.refine-search-content .features-checkboxes {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.refine-search-content .checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.75rem;
    position: relative;
}

.refine-search-content .checkbox-item:hover {
    background: var(--gray-50);
}

.refine-search-content .checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: auto;
    padding: 0;
}

.refine-search-content .checkmark {
    height: 14px;
    width: 14px;
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.refine-search-content .checkbox-item input:checked ~ .checkmark {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.refine-search-content .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.refine-search-content .checkbox-item input:checked ~ .checkmark:after {
    display: block;
}

.refine-search-content .checkbox-item i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.refine-search-content .filter-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.refine-search-content .btn-sm {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.75rem;
}

.refine-search-content .btn-outline {
    background: transparent;
    color: var(--gray-600);
    border: 1px solid var(--gray-300);
}

.refine-search-content .btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--gray-700);
    transform: translateY(-1px);
}

/* Mobile: Keep closed by default */
@media (max-width: 768px) {
    .refine-search-section {
        max-width: 100%;
    }
}

.tours-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.tour-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-speed);
    display: grid;
    grid-template-columns: 300px 1fr 250px;
    min-height: 200px;
    align-items: stretch;
}

.tour-departures {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    margin-top: 0;
    margin-bottom: 0;
}

.tour-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.tour-image {
    position: relative;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.tour-item:hover .tour-image img {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 3rem;
}

.tour-content {
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tour-header {
    margin-bottom: var(--spacing-sm);
}

.tour-title {
    margin: 0 0 var(--spacing-sm) 0;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.tour-title a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.tour-title a:hover {
    color: var(--blue-primary);
}

.location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
}

.tour-location {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-600);
    font-size: 0.9rem;
}

.tour-location i {
    color: var(--orange-primary);
}

.category-tag {
    background: var(--blue-secondary);
    color: var(--blue-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

.tour-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

/* Travel Card Details */
.travel-card-details {
    margin-bottom: var(--spacing-sm);
}

.duration-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
}

.duration-days {
    color: var(--blue-primary);
}

.duration-nights {
    color: var(--orange-primary);
}

.duration-separator {
    color: var(--gray-400);
}

/* Card Icons Overlay */
.card-icons-overlay {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xs);
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    min-width: 60px;
    transition: all var(--transition-speed);
}

.icon-item i {
    font-size: 1.2rem;
}

.icon-item:hover {
    transform: translateY(-2px);
}

/* Third column: Price and Actions */
.tour-price {
    background: var(--gray-50);
    padding: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-left: 1px solid var(--gray-200);
    min-height: 200px;
}

.price-info {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xs);
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--orange-primary);
    margin-bottom: var(--spacing-xs);
}

.price-unit {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Multi-Payment Badge */
.multi-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    animation: pulse-glow 2s infinite;
}

.multi-payment-badge i {
    font-size: 0.8rem;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-sm);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
        transform: scale(1.02);
    }
}

.tour-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

.tour-actions .btn {
    width: 100%;
    text-align: center;
}

.tour-departures {
    margin-bottom: var(--spacing-lg);
}

.departures-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.departure-option {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    border: 2px solid transparent;
    transition: all var(--transition-speed);
}

.departure-option.nearest {
    border-color: var(--blue-light);
}

.departure-option.cheapest {
    border-color: var(--orange-light);
}

.departure-option h4 {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-700);
}

.departure-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.departure-dates,
.departure-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
}

.departure-dates {
    color: var(--gray-600);
}

.departure-price {
    color: var(--orange-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
}

.departure-seats.warning {
    background: var(--orange-light);
    color: var,--white;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Sidebar Styles */
.results-sidebar {
    position: sticky;
    top: var(--spacing-xl);
    height: fit-content;
}

.sidebar-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.sidebar-content h3 {
    margin: 0 0 var(--spacing-lg) 0;
    color: var(--gray-800);
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    border-bottom: 2px solid var(--blue-primary);
    padding-bottom: var(--spacing-sm);
}

.filters-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-group h4 {
    margin: 0;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.price-inputs input {
    flex: 1;
    padding: var(--spacing-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    width: 100px;
}

.price-inputs span {
    color: var(--gray-500);
    font-weight: var(--font-weight-medium);
}

.filter-group select {
    padding: var(--spacing-sm);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: var(--white);
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn-outline {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--gray-700);
}

.no-results {
    text-align: center;
    padding: var(--spacing-xxl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

.no-results h3 {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

.no-results p {
    color: var(--gray-500);
    margin-bottom: var(--spacing-lg);
}

/* Responsive Design for Tours Listing */
@media (max-width: 1024px) {
    .tour-item {
        grid-template-columns: 250px 1fr 200px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .search-form {
        padding: var(--spacing-lg);
    }
    
    .search-row {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: stretch;
    }
    
    .search-field {
        width: 100%;
    }
    
    .search-field button {
        padding: var(--spacing-lg) var(--spacing-xl);
        font-size: 1rem;
        margin-top: var(--spacing-sm);
    }
    
    .departures-row {
        grid-template-columns: 1fr;
    }
    
    .tour-content {
        padding: var(--spacing-sm);
    }
    
    /* Mobile: Change columns to rows */
    .tour-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    
    .tour-image {
        height: 200px;
        order: 1;
    }
    
    .tour-content {
        order: 2;
    }
    
    .tour-price {
        order: 3;
        border-left: none;
        border-top: 1px solid var(--gray-200);
        flex-direction: column;
        justify-content: space-between;
        min-height: auto;
        padding: var(--spacing-xs);
    }
    
    .price-info {
        margin-bottom: 0;
        text-align: center;
    }
    
    .tour-actions {
        margin: var(--spacing-sm);
    }
    
    .tour-actions .btn {
        width: 100%;
        min-width: 120px;
    }
    
    /* Mobile: Responsive card icons */
    .card-icons-overlay {
        justify-content: space-between;
    }
    
    .icon-item {
        min-width: 50px;
        padding: var(--spacing-xs);
        font-size: 0.75rem;
    }
    
    .icon-item i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .search-form {
        padding: var(--spacing-md);
        margin: 0 -var(--spacing-sm);
        border-radius: 0;
    }
    
    .search-field button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 0.95rem;
    }
    
    .search-field {
        margin-bottom: var(--spacing-xs);
    }
    
    .search-field label {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .tour-item {
        margin: 0 -var(--spacing-md);
        border-radius: 0;
    }
    
    .sidebar-content {
        margin: 0 -var(--spacing-md);
        border-radius: 0;
    }
}

/* ======================================
   Voyage Details Page Styles
   ====================================== */

/* Voyage Details Hero Section */
.voyage-hero {
    position: relative;
    height: 40vh;
    min-height: 40vh;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    align-items: flex-start;
    padding: var(--spacing-sm);
}

.hero-content {
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: rgb(63, 63, 63);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.voyage-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
    color: #ffffff;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.6);
}

.voyage-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.8rem;
    justify-content: center;
}

.voyage-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Voyage Content Layout */
.voyage-content {
    padding: 1rem 0;
}

.content-layout {
        display: flow;
        grid-template-columns: 1fr 350px;
        gap: 3rem;
}

.main-content > div {
    margin-bottom: 1rem;
}

.main-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--orange-primary);
    padding-bottom: 0.5rem;
}

/* Voyage Description */
.voyage-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Tour Details Accordion */
.tour-details {
    margin-bottom: 3rem;
}

.details-list.accordion {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: var(--gray-50);
    border: none;
    padding: 0.5rem 0.5rem 0rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.accordion-header:hover {
    background: var(--orange-secondary);
    color: var(--orange-primary);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
    text-align: left;
}

.accordion-header:hover h3 {
    color: var(--orange-primary);
}

.accordion-icon {
    font-size: 1rem;
    color: var(--gray-600);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: var(--orange-secondary);
}

.accordion-item.active .accordion-header h3,
.accordion-item.active .accordion-icon {
    color: var(--orange-primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
}

.accordion-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* Gallery Styles */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Detail Items */
.details-list {
    display: grid;
    gap: var(--spacing-sm);
}

.detail-item {
    background: var(--gray-50);
    padding: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--orange-primary);
}

.detail-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Period Cards */
.periods-list {
    display: grid;
    gap: 0.5rem;
}

/* New 4-Section Period Card Layout */
.period-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: var(--spacing-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--spacing-sm);
    align-items: center;
    min-height: 120px;
}

.period-card:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
}

.period-card.selected {
    border-color: var(--orange-primary);
    background: #fff5f2;
}

/* Selected Period Card (3-Column Layout for Booking Card) */
.selected-period-card {
    background: var(--blue-secondary);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.selected-period-card .selected-departure-section {
    grid-column: 1;
}

.selected-period-card .selected-package-section {
    grid-column: 2;
}

.selected-period-card .selected-pricing {
    grid-column: 3;
    margin-top: 0;
}

/* Mobile responsive for selected period card */
@media (max-width: 768px) {
    .selected-period-card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .selected-period-card .selected-departure-section,
    .selected-period-card .selected-package-section,
    .selected-period-card .selected-pricing {
        grid-column: 1;
    }
}

/* Section 1: Departure Information */
.departure-section {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.supplier-info {
    text-align: center;
    margin-bottom: 0.5rem;
}

.supplier-logo {
    max-height: 40px;
    max-width: 80px;
    object-fit: contain;
}

.flight-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.flight-info .departure,
.flight-info .return {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.flight-info i {
    color: var(--blue-primary);
    width: 16px;
}

/* Section 2: Travel Package */
.package-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.package-details > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.package-details i {
    color: var(--orange-primary);
    width: 16px;
}

.package-features {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.package-features i {
    color: var(--gray-500);
    font-size: 1rem;
}

.more-features {
    background: var(--gray-200);
    color: var(--gray-600);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Section 3: Pricing */
.pricing-section {
    text-align: center;
}

.main-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-weight: bold;
    color: var(--orange-primary);
    font-size: 1.4rem;
    line-height: 1.2;
}

.price-unit {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.installment-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--blue-primary);
    background: var(--blue-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.installment-info i {
    color: var(--blue-primary);
}

/* Section 4: Availability & Booking */
.availability-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.sold-out {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    font-weight: 500;
    background: #f8d7da;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.limited-availability {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.seats-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fd7e14;
    font-weight: 500;
    font-size: 0.85rem;
}

.seats-left i {
    color: #fd7e14;
}

.select-period-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.select-period-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.select-period-btn i {
    font-size: 0.9rem;
}

/* Mobile Responsive: 2x2 Grid */
@media (max-width: 768px) {
    .period-card {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .departure-section {
        grid-column: 1;
        grid-row: 1;
    }
    
    .package-section {
        grid-column: 2;
        grid-row: 1;
    }
    
    .pricing-section {
        grid-column: 1;
        grid-row: 2;
    }
    
    .availability-section {
        grid-column: 2;
        grid-row: 2;
		align-self: self-end;
    }
    
    .supplier-logo {
        max-height: 30px;
        max-width: 60px;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .select-period-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Availability Status */
.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.availability.warning {
    color: #dc3545;
}

.availability.available {
    color: #28a745;
}

/* duration */
.duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    justify-self: center;
}

.duration i {
    color: var(--orange-primary);
}

.duration span {
    color: var(--gray-600);
}

/* Sidebar Styles */
.sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.booking-card, .price-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.booking-card h3, .price-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Room Selection */
.room-selection {
    margin-bottom: 1.5rem;
}

.room-selection label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.room-selection select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 1rem;
}

.room-inputs {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.room-inputs h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.guest-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.guest-input label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.guest-input input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

/* Supplements */
.supplements-selection {
    margin-bottom: 1.5rem;
}

.supplements-selection.accordion-section {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.supplements-selection .accordion-header {
    width: 100%;
    background: var(--gray-50);
    border: none;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.supplements-selection .accordion-header:hover {
    background: var(--orange-secondary);
    color: var(--orange-primary);
}

.supplements-selection .accordion-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
}

.supplements-selection .accordion-header:hover h4 {
    color: var(--orange-primary);
}

.supplements-selection .accordion-icon {
    font-size: 1rem;
    color: var(--gray-600);
    transition: transform 0.3s ease;
}

.supplements-selection.accordion-section.active .accordion-header {
    background: var(--orange-secondary);
}

.supplements-selection.accordion-section.active .accordion-header h4,
.supplements-selection.accordion-section.active .accordion-icon {
    color: var(--orange-primary);
}

.supplements-selection .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.supplements-selection .accordion-body {
    padding: 1.5rem;
    background: var(--white);
}

.supplements-selection h4 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.supplement-item {
    margin-bottom: 1rem;
}

.supplement-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.supplement-label:hover {
    background: var(--gray-200);
}

.supplement-quantity {
    margin-top: 0.5rem;
    padding-left: 1rem;
}

/* Price Summary */
.price-summary {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}
.start-price {
    background: linear-gradient(135deg, var(--flight-orange-primary) 0%, var(--flight-orange-secondary) 100%);
    color: var(--flight-white);
    padding: 0.5rem;
    margin-top: 5px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 10px rgba(234, 88, 12, 0.3);
    display: block;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 1;
}
.total-price {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.installment-price {
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Price Card */
.min-price {
    text-align: center;
    margin-bottom: 0.5rem;
}

.min-price .amount {
    display: block;
    font-size: 2.1rem;
    font-weight: bold;
    color: var(--orange-primary);
    background-color: var(--orange-secondary);
    line-height: 1;
    border-radius: 6px;
}

.min-price .unit {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.payment-option {
    /* display: flex; */
    align-items: center;
    /* justify-content: center; */
    /* gap: 0.5rem; */
    color: var(--blue-dark);
    font-weight: bold;
    /* background-color: azure; 
    border-radius: 6px;
    /*background: linear-gradient(135deg, #226faa 0%, #558bcc 100%);*/
    color: var(--flight-white);
    padding: 0.5rem;
    margin-top: 5px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 10px rgba(34, 34, 170, 0.3);
    display: block;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}


.price-payment-option {
    /* display: flex; */
    align-items: center;
    /* justify-content: center; */
    /* gap: 0.5rem; */
    color: var(--blue-dark);
    font-weight: bold;
    /* background-color: azure; 
    border-radius: 6px;*/
    background: linear-gradient(135deg, #226faa 0%, #558bcc 100%);
    color: var(--flight-white);
    padding: 0.5rem;
    margin-top: 5px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 5px 10px rgba(34, 34, 170, 0.3);
    display: block;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}


/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    margin-top: 5%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
}

/* Gallery Trigger Button */
.gallery-trigger-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.gallery-trigger-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-trigger-btn i {
    color: var(--orange-primary);
    font-size: 1.1rem;
}

.gallery-trigger-btn .image-count {
    background: var(--orange-primary);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 4px;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.gallery-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.gallery-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.gallery-main-image {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gray-800);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
    max-height: 120px;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 3px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: var(--orange-primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qty-btn {
    background: #F47C00;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-trigger-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .gallery-trigger-btn .image-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .gallery-modal-content {
        padding: 15px;
    }
    
    .gallery-header h3 {
        font-size: 1.2rem;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-counter {
        bottom: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .gallery-thumb {
        width: 80px;
        height: 60px;
    }
    
    .gallery-thumbnails {
        gap: 8px;
        max-height: 100px;
    }
}

/* Voyage Details Responsive Design */
@media (max-width: 768px) {
    .voyage-title {
        font-size: 2rem;
    }
    
    .voyage-meta {
        gap: 1rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .periods-list {
        gap: 0.5rem;
    }
    
    .period-dates {
        grid-template-columns: 1fr;
    }
    
    .prices {
        flex-direction: column;
    }
    
    .guest-inputs {
        grid-template-columns: 1fr;
    }
}

/* Price formatting for currency position flexibility */
.price-full {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--orange-primary);
}

/* Pricing Table Styles */
.pricing-table {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rates-table th,
.rates-table td {
    padding: 0.75rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.rates-table th {
    background: var(--gray-100);
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rates-table td {
    color: var(--gray-800);
}

.rates-table tr:last-child td {
    border-bottom: none;
}

.rates-table tr:hover {
    background: var(--white);
}

.pricing-notes {
    padding: 0.75rem;
    background: var(--blue-secondary);
    border-radius: 6px;
    border-left: 4px solid var(--blue-primary);
}

.pricing-notes small {
    color: var(--gray-700);
    line-height: 1.4;
}

/* Mobile responsive for pricing table */
@media (max-width: 768px) {
    .rates-table {
        font-size: 0.8rem;
    }
    
    .rates-table th,
    .rates-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .pricing-notes {
        padding: 0.5rem;
    }
}

/* ===== TRAVELERS INPUT SYSTEM ===== */
.travelers-input {
    position: relative;
}

.travelers-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

.travelers-display:hover {
    border-color: var(--orange-primary);
}

.travelers-dropdown {
    position: absolute;
    top: 100%;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.travelers-dropdown.show {
    display: block;
}

.room-config {
    padding: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.room-config:last-child {
    border-bottom: none;
}

.room-header {
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-room-btn {
    background: #dc3545;
    color: var(--white);
    border: none;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-room-btn:hover {
    background: #c82333;
}

.room-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-group label {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: var(--orange-primary);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.qty-btn:hover {
    background: var(--orange-dark);
}

.qty-btn:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: var(--font-weight-medium);
}

.children-ages {
    margin-top: 8px;
    display: none;
}

.children-ages.show {
    display: block;
}

.children-ages label {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 5px;
    display: block;
}

.age-input {
    margin: 2px;
    width: 60px;
    padding: 4px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 12px;
}

.dropdown-actions {
    padding: 15px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.dropdown-actions .btn {
    padding: 8px 15px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-secondary {
    background: var(--gray-600);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-700);
}

.btn-primary {
    background: var(--orange-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
}

/* ===== HOTELS PAGE STYLES ===== */
.hotels-hero {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.9), rgba(229, 90, 0, 0.9));
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 2rem 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    padding: 2rem;
    text-align: left;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hotels-search {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    position: relative;
    z-index: 10;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

.search-form {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.form-group label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange-light);
    box-shadow: 0 0 0 3px rgba(255,165,0,0.1);
}

.cities-section {
    padding: 3rem 0;
}

.city-section {
    margin-bottom: 4rem;
}

.city-header {
    text-align: center;
    margin-bottom: 2rem;
}

.city-header h2 {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.city-header h2 span {
    color: var(--orange-primary);
    text-transform: capitalize;
}

.city-description {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hotel-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-features {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.features-overlay {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    max-width: 300px;
    justify-content: flex-end;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--orange-primary);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.hotel-stars {
    background: rgba(255,255,255,0.95);
    color: var(--orange-primary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    box-shadow: var(--shadow-sm);
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.hotel-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
    margin: 0;
    flex: 1;
}

.hotel-title-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--orange-primary);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    white-space: nowrap;
}

.hotel-regime {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-price {
    display: flex;
    margin-top: 1rem;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--orange-primary);
}

.price-period {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.btn-book {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-book:hover {
    background: linear-gradient(135deg, var(--orange-dark), #d55a00);
    transform: translateY(-1px);
    color: var(--white);
    text-decoration: none;
}

.no-hotels {
    text-align: center;
    padding: 3rem;
    color: var(--gray-600);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: var(--white);
}

/* ===== HOTELS LIST PAGE STYLES ===== */
.location-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.search-details {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hotel-includes {
    color: var(--gray-800);
    font-size: 0.9rem;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid var(--gray-200);
}

.hotel-includes strong {
    color: var(--orange-primary);
}

.hotel-rooms-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.rooms-section-title {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}

.room-listing-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    flex-wrap: nowrap;
    font-size: 0.9rem;
}

.room-listing-item:last-child {
    border-bottom: none;
}

.room-prefix {
    color: var(--orange-primary);
    font-weight: var(--font-weight-bold);
}

.room-type {
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
    min-width: 150px;
}

.room-board {
    color: var(--gray-600);
    min-width: 100px;
}

.room-details {
    color: var(--gray-600);
    font-size: 0.85rem;
    min-width: 120px;
}

.room-price {
    font-weight: var(--font-weight-bold);
    color: var(--orange-primary);
    font-size: 1rem;
    min-width: 80px;
}

.reserve-btn {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    margin-left: auto;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.reserve-btn:hover {
    text-decoration: underline;
    color: var(--orange-dark);
}

.original-price-small {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.savings-info {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

.new-search-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.new-search-link:hover {
    color: var(--orange-dark);
    text-decoration: none;
}

/* Hotel rating stars */
.hotel-rating .fa-star {
    color: #ffd700;
    font-size: 0.9rem;
    margin-right: 2px;
}

.hotel-rating .fa-star:not(.active) {
    color: var(--gray-300);
}

.rating-text {
    margin-left: 0.5rem;
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .city-header h2 {
        font-size: 1.5rem;
    }
    
    .breadcrumb-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-params-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .room-listing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reserve-btn {
        margin-left: 0;
    }
    
    .voyage-title {
        font-size: 2rem;
    }
    
    .voyage-meta {
        font-size: 0.9rem;
    }
    
    .gallery-trigger-btn {
        right: 1rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .voyage-title {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hotel-card {
        margin-bottom: 1rem;
    }
    
    .hotels-search {
        padding: 1rem;
        margin: -1rem auto 2rem;
    }
}

/* ========== MAROC VOYAGE STYLE ROOM LAYOUT ========== */

/* Table Style Room Layout */
.available-rooms-table-style {
    margin-top: 2rem;
}

.room-config-section {
    margin-bottom: 3rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.room-config-title {
    background: linear-gradient(135deg, var(--orange-primary), #e55a00);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rooms-table {
    display: flex;
    flex-direction: column;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 700;
    font-size: 0.95rem;
    color: #495057;
}

.header-col {
    padding: 1rem;
    border-right: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-col:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.table-row:hover {
    background: #f8f9fa;
}

.table-row:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.03), rgba(255, 102, 0, 0.05));
    border-left: 4px solid var(--orange-primary);
}

.table-col {
    padding: 1.5rem 1rem;
    border-right: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.table-col:last-child {
    border-right: none;
}

/* Room Type Column */
.room-type-col {
    padding: 1rem;
}

.room-type-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.room-selection-radio {
    flex-shrink: 0;
    margin-right: 1rem;
}

.room-selection-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.room-image-small {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-name {
    flex: 1;
}

.room-name h5 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}

.room-features-small {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.room-features-small span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #6c757d;
    font-size: 0.8rem;
}

.room-features-small i {
    color: var(--orange-primary);
    width: 12px;
}

.btn-services-toggle {
    background: none;
    border: none;
    color: var(--orange-primary);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-services-toggle:hover {
    color: var(--orange-dark);
}

.room-services-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-top: none;
    padding: 1rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.services-list i {
    color: var(--orange-primary);
    width: 14px;
}

/* Period Column */
.period-col {
    justify-content: center;
    text-align: center;
}

.period-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.nights-count {
    font-weight: 600;
    color: #212529;
    font-size: 1rem;
}

.dates-range {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Price Column */
.price-col {
    justify-content: center;
    text-align: center;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.original-price-small {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.85rem;
}

.discount-badge-small {
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.final-price-large {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.taxes-info {
    color: #6c757d;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

/* Board Plan Column */
.board-plan-col {
    justify-content: center;
    text-align: center;
}

.board-plan-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.meal-plan-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.meal-plan-select:focus {
    border-color: var(--orange-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.2);
}

.meal-plan-features {
    width: 100%;
}

.plan-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.8rem;
    text-align: center;
}

.plan-feature i {
    color: var(--orange-primary);
    width: 14px;
}

.select-room-btn-table {
    background: var(--orange-primary);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
}

.select-room-btn-table:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

/* Booking Confirmation Table */
.booking-confirmation-table {
    margin-top: 2rem;
    border: 2px solid var(--orange-primary);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.booking-summary-table {
    padding: 1.5rem;
}

.summary-details {
    margin-bottom: 1rem;
}

.total-display-table {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.total-label-table {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
}

.total-amount-table {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.total-info-table {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.book-now-btn-table {
    background: var(--blue-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.book-now-btn-table:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Mobile Responsiveness for Table Layout */
@media (max-width: 1024px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .header-col,
    .table-col {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        justify-content: flex-start;
        text-align: left;
    }
    
    .header-col:before {
        content: attr(data-label);
        font-weight: 700;
        margin-right: 1rem;
    }
    
    .table-col:before {
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
        margin-right: 1rem;
        min-width: 100px;
    }
    
    .room-type-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .room-image-small {
        width: 100%;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .room-config-title {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .table-col {
        padding: 1rem 0.75rem;
		display: block;
    }
    
    .booking-summary-table {
        padding: 1rem;
    }
}

/* Search Period Header */
.search-period-header {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.period-info,
.room-guests-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.period-label,
.info-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.period-dates,
.info-details {
    font-size: 1rem;
    color: #212529;
}

.btn-orange {
    background: var(--orange-primary);
    color: white;
    border: 1px solid var(--orange-primary);
}

.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: white;
}

.btn-search {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Available Rooms Maroc Style */
.available-rooms-maroc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-option-maroc {
    display: flex;
    align-items: stretch;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.room-option-maroc:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 2px 8px rgba(244, 124, 0, 0.15);
    transform: translateY(-1px);
}

.room-option-maroc input[type="radio"]:checked + .room-image-container + .room-details-maroc,
.room-option-maroc input[type="radio"]:checked + .room-image-container + .room-details-maroc + .room-pricing-maroc {
    background: linear-gradient(135deg, rgba(244, 124, 0, 0.02), rgba(244, 124, 0, 0.05));
}

.room-option-maroc input[type="radio"]:checked {
    accent-color: var(--orange-primary);
}

.room-selection-radio {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    min-width: 60px;
}

.room-selection-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.room-image-container {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.room-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-option-maroc:hover .room-image {
    transform: scale(1.05);
}

.room-details-maroc {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-title-maroc {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.5rem 0;
}

.room-capacity-maroc {
    color: #6c757d;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.room-features-maroc {
    margin-bottom: 1rem;
}

.feature-item-maroc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.feature-item-maroc i {
    width: 16px;
    color: #28a745;
}

.room-services-toggle {
    margin-top: auto;
}

.btn-link-maroc {
    background: none;
    border: none;
    color: var(--orange-primary);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-link-maroc:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

.room-services-content {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

.room-description {
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.services-list i {
    color: var(--orange-primary);
    width: 16px;
}

.room-pricing-maroc {
    width: 250px;
    padding: 1.5rem;
    border-left: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: #f8f9fa;
}

.meal-plan-maroc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.meal-plan-maroc i {
    color: var(--orange-primary);
}

.stay-duration-maroc {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price-display-maroc {
    margin-bottom: 1.5rem;
}

.original-price-maroc {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.discount-percentage {
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.final-price-maroc {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.taxes-included-maroc {
    color: #6c757d;
    font-size: 0.8rem;
}

.select-room-btn-maroc {
    background: var(--orange-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
}

.select-room-btn-maroc:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(244, 124, 0, 0.3);
}

/* Booking Confirmation Section */
.booking-confirmation-maroc {
    margin-top: 2rem;
    border: 2px solid var(--orange-primary);
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.confirmation-header {
    background: var(--orange-primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.confirmation-header i {
    font-size: 1.2rem;
}

.booking-summary-maroc {
    padding: 1.5rem;
}

.summary-details {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.total-display-maroc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.total-label-maroc {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
}

.total-amount-maroc {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.total-info-maroc {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Mobile Responsiveness for Maroc Style */
@media (max-width: 768px) {
    .search-period-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .room-option-maroc {
        flex-direction: column;
    }
    
    .room-selection-radio {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        justify-content: flex-start;
        padding: 1rem;
        min-width: auto;
    }
    
    .room-image-container {
        width: 100%;
        height: 200px;
    }
    
    .room-details-maroc {
        padding: 1rem;
    }
    
    .room-pricing-maroc {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e9ecef;
        padding: 1rem;
    }
    
    .room-title-maroc {
        font-size: 1.1rem;
    }
    
    .final-price-maroc {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .search-period-header {
        padding: 1rem;
    }
    
    .room-option-maroc {
        margin-bottom: 1rem;
    }
    
    .booking-confirmation-maroc {
        margin-top: 1rem;
    }
    
    .booking-summary-maroc {
        padding: 1rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Page Variables */
:root {
    --contact-primary: #F47C00;
    --contact-primary-dark: #e66b00;
    --contact-secondary: #2A4D7A;
    --contact-accent: #4FC3F7;
    --contact-success: #4CAF50;
    --contact-warning: #FF9800;
    --contact-light: #f8f9fa;
    --contact-dark: #2c3e50;
    --contact-shadow: rgba(0, 0, 0, 0.1);
    --contact-shadow-hover: rgba(244, 124, 0, 0.3);
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-secondary) 100%);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    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 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom center no-repeat;
    background-size: cover;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-stat i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--contact-accent);
}

.contact-hero-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-hero-stat p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--contact-shadow);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--contact-primary), var(--contact-accent));
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px var(--contact-shadow);
    border-left: 5px solid var(--contact-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--contact-primary), var(--contact-accent));
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--contact-shadow-hover);
}

.contact-info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--contact-primary), var(--contact-primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--contact-dark);
    margin: 0;
}

.contact-info-card-content {
    position: relative;
    z-index: 2;
}

.contact-info-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.contact-info-item i {
    width: 30px;
    color: var(--contact-primary);
    margin-right: 1rem;
}

.contact-info-item span {
    color: var(--contact-dark);
    font-weight: 500;
}

.contact-info-item a {
    color: var(--contact-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--contact-primary);
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--contact-primary), var(--contact-primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-social-link:hover::before {
    left: 100%;
}

.contact-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--contact-shadow-hover);
}

/* Contact Form Styles */
.contact-form-group {
    margin-bottom: 1rem;
}

.contact-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--contact-dark);
    font-size: 1rem;
}

.contact-form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form-control:focus {
    outline: none;
    border-color: var(--contact-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(244, 124, 0, 0.1);
}

.contact-form-control.textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-btn-submit {
    background: linear-gradient(135deg, var(--contact-primary), var(--contact-primary-dark));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-btn-submit:hover::before {
    left: 100%;
}

.contact-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px var(--contact-shadow-hover);
}

/* Contact Map Section */
.contact-map-section {
    margin-top: 5rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--contact-shadow);
}

.contact-map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--contact-dark);
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--contact-shadow);
    height: 400px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-dark);
    font-size: 1.1rem;
}

/* Contact Page Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section,
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-map-section {
        padding: 2rem;
    }
    
    .contact-hero-stat {
        padding: 1rem;
    }
    
    .contact-hero-stat i {
        font-size: 2rem;
    }
    
    .contact-hero-stat h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-social-links {
        justify-content: center;
    }
    
    .contact-info-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ========================================
 * TOURS LIST STYLES (list- prefix)
 * ======================================== */

.list-tours-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .list-tours-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .list-tours-grid {
        gap: 10px;
    }
}

.list-tour-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr 280px;
    height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 992px) {
    .list-tour-card {
        grid-template-columns: 200px 1fr 240px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .list-tour-card {
        grid-template-columns: 1fr;
        grid-template-rows: 200px auto auto;
        height: auto;
    }
    
    .list-tour-card .list-tour-image {
        order: 1;
    }
    
    .list-tour-card .list-tour-content {
        order: 2;
        padding: 15px;
    }
    
    .list-tour-card .list-tour-sidebar {
        order: 3;
        padding: 15px;
        border-left: none;
        border-top: 1px solid #eee;
        background: white;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .list-tour-actions {
        width: auto;
        min-width: 140px;
    }
    
    .list-tour-card .list-btn-primary {
        width: auto;
        min-width: 120px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .list-price-info {
        flex: 1;
        margin-right: 15px;
    }
    
    .list-payment-option {
        margin-bottom: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

.list-tour-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.list-tour-card .list-tour-image {
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-tour-card .list-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-tour-card .list-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.list-tour-card .list-category-tag {
    background: rgba(255,255,255,0.9);
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #333;
}

/* Column 2: Title, Duration and Icons */
.list-tour-card .list-tour-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-tour-card .list-tour-title a {
    color: #333;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    display: block;
}

.list-tour-card .list-tour-title a:hover {
    color: var(--blue-primary);
}

.list-tour-card .list-tour-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.list-tour-card .list-tour-location i {
    color: var(--blue-primary);
    margin-right: 5px;
}

.list-tour-card .list-tour-details {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #666;
}

.list-tour-card .list-tour-details i {
    color: var(--blue-primary);
    margin-right: 5px;
    width: 12px;
}

/* Card Icons Overlay */
.list-card-icons-overlay {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0px 0px 10px 0px;
    z-index: auto !important;
}

@media (max-width: 768px) {
    .list-card-icons-overlay {
        gap: 6px;
        margin: 0px 0px 8px 0px;
    }
}

@media (max-width: 480px) {
    .list-card-icons-overlay {
        gap: 4px;
        margin: 0px 0px 6px 0px;
        justify-content: flex-start;
    }
    
    .list-icon-squircle {
        width: 24px;
        height: 24px;
        font-size: 12px;
        border-radius: 6px;
    }
}

.list-icon-squircle {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.list-icon-squircle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Icon color classes */
.list-icon-flight {
    color: #1976d2;
}

.list-icon-hotel, 
.list-icon-accommodation {
    color: #388e3c;
}

.list-icon-guide {
    color: #c2185b;
}

.list-icon-local-flight {
    color: #0277bd;
}

.list-icon-excursion {
    color: var(--orange-primary);
}

.list-icon-local-assistance {
    color: #7b1fa2;
}

.list-icon-transport {
    color: #455a64;
}

.list-icon-default {
    color: #666;
}

/* Column 3: Price and Actions */
.list-tour-card .list-tour-sidebar {
    padding: 5px;
    background: var(--gray-50);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border-left: 1px solid #eee;
    flex-direction: column;
}

.list-tour-card .list-price-info .list-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.list-tour-card .list-price-info .list-price-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 5px;
}

.list-payment-option {
    background: #28a74533;
    color: #28a745;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid #28a745;
}

.list-tour-card .list-btn-primary {
    background: var(--blue-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    display: inline-block;
}

.list-tour-card .list-btn-primary:hover {
    background: var(--blue-dark);
    text-decoration: none;
    color: white;
}

.list-tour-card .list-availability-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--orange-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* PDF Download Link */
.list-tour-card .list-pdf-download {
    position: sticky;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}
.pdf-download-card{
    place-self: center;
}

.list-tour-card .list-pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.list-tour-card .list-pdf-link:hover {
    background: rgba(220, 53, 69, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    color: white;
    text-decoration: none;
}

.list-tour-card .list-pdf-link i {
    font-size: 0.9rem;
}

.list-tour-card .list-pdf-link span {
    font-weight: 600;
}

.list-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.list-no-results i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.list-no-results h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Additional tour content classes */
.list-tour-header {
    margin-bottom: 12px;
}

.list-duration {
    margin-bottom: 8px;
}

.list-next-departure {
    margin-bottom: 8px;
}

.list-tour-actions {
    width: 100%;
}

/* Mobile styles for very small screens */
@media (max-width: 480px) {
    .list-tour-card .list-tour-sidebar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }
    
    .list-price-info {
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .list-tour-actions {
        width: 100%;
    }
    
    .list-tour-card .list-btn-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .list-payment-option {
        margin-bottom: 10px;
    }
    
    /* Mobile PDF Download adjustments */
    .list-tour-card .list-pdf-download {
        bottom: 10px;
        right: 10px;
    }
    
    .list-tour-card .list-pdf-link {
        padding: 6px 10px;
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .list-tour-card .list-pdf-link i {
        font-size: 0.8rem;
    }
}

.voyage-details .hero-price-container {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    align-items: flex-start !important;
    align-items: stretch !important;
}

.voyage-details .hero-image {
    flex: 0 0 65% !important;
    position: relative !important;
    height: 400px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.voyage-details .gallery-trigger-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

voyage-details .gallery-trigger-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.voyage-details .hero-price-container .price-card {
    flex: 0 0 35% !important;
    margin-bottom: 0 !important;
    /* height: fit-content !important; */
    position: sticky !important;
    top: 20px !important;
    border: 2px solid var(--orange-primary) !important;
    box-shadow: 0 8px 24px rgba(244, 124, 0, 0.1) !important;
    background: var(--white) !important;
    border-radius: 12px !important;
    padding: 0.5rem !important;
    transition: box-shadow 0.3s ease !important;
}

@media (max-width: 768px) {
    .voyage-details .hero-price-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Contact Alternative Dates Section */
.contact-alternative-dates {
    margin: 30px 0;
}

.contact-card {
    background: linear-gradient(135deg, var(--blue-secondary) 0%, var(--white) 100%);
    border: 2px solid var(--blue-primary);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.contact-header {
    color: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-header i {
    font-size: 1.5rem;
    color: var(--orange-primary);
}

.contact-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-content {
    padding: 25px;
}

.contact-content > p {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
}


.contact-item-footer a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-family);
}

.contact-item-footer a:hover {
    color: var(--blue-primary);
}

.contact-item:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.1);
}

.contact-item i {
    color: var(--orange-primary);
    font-size: 1.2rem;
    width: 20px;
}

.contact-label {
    font-weight: 600;
    color: var(--gray-700);
    min-width: 80px;
}

.contact-link {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--orange-primary);
    text-decoration: underline;
}

.contact-cta {
    background: var(--orange-secondary);
    border: 1px solid var(--orange-primary);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-top: 15px;
}

.contact-subtitle {
    margin: 0;
    color: var(--gray-700);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
}

.contact-subtitle i {
    color: var(--orange-primary);
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contact-header {
        padding: 15px;
        text-align: center;
    }
}

    .room-services-content {
        margin-top: 10px;
        padding: 10px;
        background-color: #f8f9fa;
        border-radius: 5px;
        border: 1px solid #dee2e6;
    }
    .room-services-content ul.services-list {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .room-services-content ul.services-list li {
        margin: 5px 0;
        padding: 2px 0;
    }
    .room-services-content ul.services-list li i {
        margin-right: 8px;
        color: #007bff;
        width: 16px;
    }
    .btn-services-toggle {
        background: none;
        border: none;
        color: #007bff;
        text-decoration: underline;
        cursor: pointer;
        font-size: 12px;
        margin-top: 5px;
    }
    .btn-services-toggle:hover {
        color: #0056b3;
    }
    
    /* Tour Details Accordion */
    .details-list.accordion {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
    }

    .accordion-item {
        border-bottom: 1px solid #e2e8f0;
    }

    .accordion-item:last-child {
        border-bottom: none;
    }

    .accordion-header {
        width: 100%;
        background: #f8fafc;
        border: none;
        padding: 0.5rem 0.5rem 0rem 0.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .accordion-header:hover {
        background: #fed7d7;
        color: #e53e3e;
    }

    .accordion-header h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 500;
        color: #2d3748;
        text-align: left;
    }

    .accordion-header:hover h3 {
        color: #e53e3e;
    }

    .accordion-icon {
        font-size: 1rem;
        color: #718096;
        transition: transform 0.3s ease;
    }

    .accordion-item.active .accordion-header {
        background: var(--orange-secondary);
    }

    .accordion-item.active .accordion-header h3,
    .accordion-item.active .accordion-icon {
        background: var(--orange-secondary);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .accordion-body {
        padding: 1.5rem;
        background: #ffffff;
    }

    .accordion-body p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.6;
        color: #4a5568;
    }
    
.breadcrumb-section {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #e0650e;
    text-decoration: none;
}

.search-params-display {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.search-dates,
.search-travelers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-dates i,
.search-travelers i {
    color: var(--orange-primary);
}

@media (max-width: 768px) {
    .breadcrumb-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-params-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.promotion-banner {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promotion-banner h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.promotion-banner .discount {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Form layout improvements */
.booking-form .form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.booking-form .form-group {
    margin-bottom: 1rem;
    padding: 0 0.75rem;
}

.booking-form .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.booking-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.booking-form .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.booking-form .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    display: flex;
    flex-direction: column;
}

.booking-form .col-md-4 .btn {
    margin-top: auto;
}

/* Mobile responsiveness for form */
@media (max-width: 768px) {
    .booking-form .form-row {
        margin: 0;
    }
    
    .booking-form .form-group {
        padding: 0;
    }
    
    .booking-form .col-md-3,
    .booking-form .col-md-6,
    .booking-form .col-md-8,
    .booking-form .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .booking-form .col-md-4 .btn {
        margin-top: 0;
    }
}

/* Room Configuration Styles */
.room-configuration-section {
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.config-title {
    background: linear-gradient(135deg, var(--orange-primary), #ff8c42);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-options-grid {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-option-card {
    position: relative;
}

.room-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.room-card-label {
    display: block;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.room-card-label:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 4px 12px rgba(244, 124, 0, 0.15);
}

.room-option-card input[type="radio"]:checked + .room-card-label {
    border-color: var(--orange-primary);
    background: linear-gradient(135deg, rgba(244, 124, 0, 0.05), rgba(244, 124, 0, 0.1));
    box-shadow: 0 4px 15px rgba(244, 124, 0, 0.2);
}

.room-card-content {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.room-card-image {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card-label:hover .room-card-image img {
    transform: scale(1.05);
}

.room-card-badge {
    position: absolute;
    top: 5px;
    right: 5px;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
}

.room-card-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-info-left {
    flex: 1;
}

.room-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
}

.room-card-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #64748b;
    font-size: 0.85rem;
}

.feature-item i {
    color: var(--orange-primary);
    width: 14px;
}

.room-card-description {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
}

.promotion-info {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.room-pricing {
    text-align: right;
    min-width: 120px;
}

.original-price {
    margin-bottom: 0.2rem;
}

.crossed-price {
    text-decoration: line-through;
    color: #64748b;
    font-size: 0.85rem;
}

.final-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.price-label {
    font-size: 0.75rem;
    color: #64748b;
}

.selection-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange-primary);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(244, 124, 0, 0.4);
}

.room-option-card input[type="radio"]:checked + .room-card-label .selection-indicator {
    display: flex;
}

/* Booking Summary */
.booking-summary {
    margin-top: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 2rem;
}

.summary-content h4 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-details {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-title {
    font-weight: 600;
    color: #2d3748;
}

.summary-item-price {
    font-weight: 600;
    color: var(--orange-primary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #dee2e6;
    margin-bottom: 1.5rem;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.book-now-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Maroc Voyage Style Room Layout */
.search-period-header {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.period-info,
.room-guests-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.period-label,
.info-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.period-dates,
.info-details {
    font-size: 1rem;
    color: #212529;
}

.btn-search {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.available-rooms-maroc {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.room-option-maroc {
    display: flex;
    align-items: stretch;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.room-option-maroc:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 2px 8px rgba(244, 124, 0, 0.15);
}

.room-option-maroc input[type="radio"]:checked ~ .room-details-maroc,
.room-option-maroc input[type="radio"]:checked ~ .room-pricing-maroc {
    background: linear-gradient(135deg, rgba(244, 124, 0, 0.02), rgba(244, 124, 0, 0.05));
}

.room-selection-radio {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
}

.room-selection-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--orange-primary);
    cursor: pointer;
}

.room-image-container {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.room-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-option-maroc:hover .room-image {
    transform: scale(1.05);
}

.room-details-maroc {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.room-title-maroc {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 0.5rem 0;
}

.room-capacity-maroc {
    color: #6c757d;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.room-features-maroc {
    margin-bottom: 1rem;
}

.feature-item-maroc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.feature-item-maroc i {
    width: 16px;
}

.room-services-toggle {
    margin-top: auto;
}

.btn-link-maroc {
    background: none;
    border: none;
    color: var(--orange-primary);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    transition: color 0.3s ease;
}

.btn-link-maroc:hover {
    color: #e0650e;
}

.room-services-content {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.room-description {
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.services-list i {
    color: var(--orange-primary);
    width: 16px;
}

.room-pricing-maroc {
    width: 250px;
    padding: 1.5rem;
    border-left: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: #f8f9fa;
}

.meal-plan-maroc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stay-duration-maroc {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-display-maroc {
    margin-bottom: 1.5rem;
}

.original-price-maroc {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.discount-percentage {
    background: #dc3545;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.final-price-maroc {
    font-size: 1.4rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.taxes-included-maroc {
    color: #6c757d;
    font-size: 0.8rem;
}

.select-room-btn-maroc {
    background: var(--orange-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-room-btn-maroc:hover {
    background: #e0650e;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(244, 124, 0, 0.3);
}

.booking-confirmation-maroc {
    margin-top: 2rem;
    border: 2px solid var(--orange-primary);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.confirmation-header {
    background: var(--orange-primary);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-summary-maroc {
    padding: 1.5rem;
}

.summary-details {
    margin-bottom: 1rem;
}

.total-display-maroc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #e9ecef;
    margin-bottom: 0.5rem;
}

.total-label-maroc {
    font-size: 1.2rem;
    font-weight: 700;
    color: #212529;
}

.total-amount-maroc {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.total-info-maroc {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for Maroc Style */
@media (max-width: 768px) {
    .search-period-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .room-option-maroc {
        flex-direction: column;
    }
    
    .room-selection-radio {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .room-image-container {
        width: 100%;
        height: 200px;
    }
    
    .room-pricing-maroc {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .room-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .room-card-image {
        width: 100%;
        height: 150px;
    }
    
    .room-card-details {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .room-pricing {
        width: 100%;
        text-align: left;
    }
    
    .final-price {
        align-items: flex-start;
    }
    
    .room-card-features {
        flex-wrap: wrap;
    }
    
    .config-title {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .room-options-grid {
        padding: 1rem;
    }
    
    .booking-summary {
        padding: 1.5rem;
    }
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.option-title {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.1rem;
}

.option-price {
    font-weight: 700;
    color: var(--orange-primary);
    font-size: 1.1rem;
}

.original-price {
    text-decoration: line-through;
    color: #64748b;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.option-details {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

.total-section {
    border-top: 2px solid #e2e8f0;
    padding-top: 1rem;
    text-align: right;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.travelers-input {
    position: relative;
}

.travelers-dropdown {
    position: absolute;
    top: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
}

.travelers-dropdown.show {
    display: block;
}

.room-config {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.room-config:last-child {
    border-bottom: none;
}

.room-header {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remove-room-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
}

.room-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.control-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-group label {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    background: var(--orange-primary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: black;
}

.children-ages {
    margin-top: 8px;
    display: none;
}

.children-ages.show {
    display: block;
}

.children-ages label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.age-input {
    margin: 2px;
    width: 60px;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
}

.dropdown-actions {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.dropdown-actions .btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-primary {
    background: var(--orange-primary);
    color: white;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
}

.gallery-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-thumbnails-modal {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumb.active {
    border-color: var(--orange-primary);
}

.close-gallery {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

    /* Ensure accordion content is hidden by default */
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    /* Allow JavaScript to control the max-height when active */
    .accordion-item.active .accordion-content {
        overflow: visible;
    }

    
/* Promotion styling enhancements */
.promotion-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.promotion-badge i {
    font-size: 0.7rem;
}

.original-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F47C00;
    margin-bottom: 0.25rem;
}

.from-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748b;
    margin-right: 0.25rem;
}

.price-period {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Enhanced hotel card styling */
.hotel-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .promotion-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .price-amount {
        font-size: 1.1rem;
    }
    
    .hotels-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .hotel-card {
        margin-bottom: 1.5rem;
    }
    
    .price-amount {
        font-size: 1rem;
    }
}

    .flight-main-card {
    background: var(--flight-white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
        border: 2px solid var(--flight-blue-light);
    }

    .flight-header {
        background: linear-gradient(135deg, var(--flight-blue-primary) 0%, var(--flight-blue-secondary) 100%);
        color: var(--flight-white);
        padding: 1rem;
        position: relative;
        overflow: hidden;
    }

    .flight-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 200px;
        height: 200px;
        background: var(--flight-orange-primary);
        border-radius: 50%;
        opacity: 0.1;
    }

    .flight-number {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .flight-number .fas {
        color: var(--flight-orange-secondary);
        font-size: 2.5rem;
    }

    .flight-route {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 2rem 0;
    }

    .flight-airport {
        text-align: center;
        flex: 1;
    }

    .flight-airport-code {
        font-size: 2rem;
        font-weight: bold;
        color: var(--flight-orange-secondary);
        margin-bottom: 0.5rem;
    }

    .flight-airport-time {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .flight-arrow {
        flex: 0 0 auto;
        margin: 0 2rem;
        text-align: center;
    }

    .flight-arrow .fas {
        font-size: 2rem;
        color: var(--flight-orange-primary);
        animation: flight-pulse 2s infinite;
    }

    @keyframes flight-pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .flight-price {
        background: linear-gradient(135deg, var(--flight-orange-primary) 0%, var(--flight-orange-secondary) 100%);
        color: var(--flight-white);
        padding: 1.5rem;
        border-radius: 15px;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
    }

    .flight-info-grid {
        background: var(--flight-gray-light);
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .flight-info-item {
        text-align: center;
        padding: 1rem;
        background: var(--flight-white);
        border-radius: 10px;
        border: 1px solid var(--flight-gray-border);
        transition: all 0.3s ease;
    }

    .flight-info-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(30, 58, 138, 0.1);
        border-color: var(--flight-blue-secondary);
    }

    .flight-info-label {
        font-size: 0.9rem;
        color: var(--flight-text-light);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        font-weight: 600;
    }

    .flight-info-value {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--flight-text-dark);
    }

    .flight-booking-section {
        background: var(--flight-white);
        border-radius: 20px;
        padding: 1rem;
        box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
        border: 2px solid var(--flight-blue-light);
    }

    .flight-section-title {
        color: var(--flight-blue-primary);
        font-weight: bold;
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .flight-section-title .fas {
        color: var(--flight-orange-primary);
        font-size: 2rem;
    }

    .flight-passenger-selector {
        background: var(--flight-blue-light);
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .flight-passenger-type {
        background: var(--flight-white);
        border-radius: 10px;
        padding: 0.5rem;
        border: 2px solid var(--flight-gray-border);
        transition: all 0.3s ease;
    }

    .flight-passenger-type:hover {
        border-color: var(--flight-blue-secondary);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
    }

    .flight-passenger-label {
        font-weight: bold;
        color: var(--flight-blue-primary);
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .flight-counter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--flight-gray-light);
        border-radius: 50px;
        padding: 0.5rem;
    }

    .flight-counter-btn {
        width: 35px;
        height: 35px;
        border: none;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--flight-blue-primary) 0%, var(--flight-blue-secondary) 100%);
        color: var(--flight-white);
        cursor: pointer;
        font-weight: bold;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flight-counter-btn:hover {
        background: linear-gradient(135deg, var(--flight-orange-primary) 0%, var(--flight-orange-secondary) 100%);
        transform: scale(1.1);
    }

    .flight-counter-display {
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--flight-blue-primary);
        min-width: 60px;
        text-align: center;
    }

    .flight-form-section {
        background: var(--flight-gray-light);
        border-radius: 15px;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .flight-form-control {
        border: 2px solid var(--flight-gray-border);
        border-radius: 10px;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .flight-form-control:focus {
        border-color: var(--flight-blue-secondary);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        outline: none;
    }

    .flight-form-label {
        font-weight: 600;
        color: var(--flight-blue-primary);
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }

    .flight-total-price {
        background: linear-gradient(135deg, var(--flight-orange-primary) 0%, var(--flight-orange-secondary) 100%);
        color: var(--flight-white);
        padding: 0.5rem;
        margin-top: 5px;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 2rem;
        box-shadow: 0 15px 30px rgba(234, 88, 12, 0.3);
    }

    .flight-total-label {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        opacity: 0.9;
    }

    .flight-total-amount {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .flight-book-btn {
        background: linear-gradient(135deg, var(--flight-blue-primary) 0%, var(--flight-blue-secondary) 100%);
        color: var(--flight-white);
        border: none;
        border-radius: 50px;
        padding: 1.5rem 3rem;
        font-size: 1.3rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .flight-book-btn:hover {
        background: linear-gradient(135deg, var(--flight-orange-primary) 0%, var(--flight-orange-secondary) 100%);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(234, 88, 12, 0.4);
    }

    .flight-book-btn .fas {
        margin-right: 0.5rem;
        font-size: 1.1rem;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .flight-route {
            gap: 1rem;
        }
        
        .flight-arrow {
            margin: 1rem 0;
        }
        
        .flight-airport-code {
            font-size: 1.5rem;
        }
        
        .flight-number {
            font-size: 1.5rem;
        }
        
        .flight-counter {
            justify-content: space-around;
        }
    }

/* ================================================
   SPECIAL DESTINATION HERO SECTION
   ================================================ */

.special-destination-hero {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 1rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.special-destination-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.special-destination-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.special-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.special-destination-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.special-destination-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.special-destination-location i {
    color: var(--orange-primary);
    font-size: 1.1rem;
}

.special-destination-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.special-destination-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.tours-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.special-destination-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.2;
    z-index: 1;
}

.special-destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .special-destination-image {
        display: none;
    }
    
    .special-destination-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .special-destination-hero {
        padding: 2.5rem 0;
    }
    
    .special-destination-title {
        font-size: 2.2rem;
    }
    
    .special-destination-location {
        font-size: 1rem;
    }
    
    .special-destination-description {
        font-size: 1rem;
    }
    
    .special-destination-stats {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .special-destination-hero {
        padding: 2rem 0;
    }
    
    .special-destination-title {
        font-size: 1.8rem;
    }
    
    .special-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ================================================
   SPECIAL ENHANCED TOURS DESIGN
   ================================================ */

.special-enhanced-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-enhanced-tour-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
}

.special-enhanced-tour-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.special-tour-card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Section */
.special-tour-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.special-tour-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-enhanced-tour-card:hover .special-tour-main-image {
    transform: scale(1.05);
}

.special-tour-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.special-tour-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Image Overlay Badges */
.special-image-overlay-badges {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.special-availability-badge,
.special-payment-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.special-availability-badge.urgent {
    background: rgba(220, 53, 69, 0.9);
    color: var(--white);
}

.special-payment-badge {
    background: rgba(40, 167, 69, 0.9);
    color: var(--white);
}

/* Quick Actions */
.special-quick-actions {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.special-enhanced-tour-card:hover .special-quick-actions {
    opacity: 1;
}

.special-quick-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.special-quick-action-btn:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: scale(1.1);
}

.special-favorite-btn.favorited {
    background: var(--orange-primary);
    color: var(--white);
}

/* Content Section */
.special-tour-content-container {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.special-category-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--orange-secondary);
    color: var(--orange-primary);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.special-tour-header {
    margin-bottom: 1rem;
}

.special-tour-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.special-tour-title a {
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.special-tour-title a:hover {
    color: var(--orange-primary);
}

.special-tour-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.special-tour-location i {
    color: var(--orange-primary);
}

/* Tour Highlights */
.special-tour-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.special-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.special-highlight-item i {
    color: var(--blue-primary);
    width: 16px;
    text-align: center;
}

/* Tour Features */
.special-tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.special-feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: var(--gray-100);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.special-feature-item:hover {
    background: var(--blue-secondary);
    color: var(--blue-primary);
}

.special-feature-item i {
    font-size: 0.7rem;
}

.special-more-features {
    background: var(--orange-secondary);
    color: var(--orange-primary);
    font-weight: 600;
}

/* Price & Action Section */
.special-tour-action-container {
    padding: 0.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.special-price-section {
    margin-bottom: 1rem;
}

.special-price-wrapper {
    text-align: center;
}

.special-price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.special-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.special-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-primary);
    line-height: 1;
}

.special-amount.special {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-primary);
}

.special-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
}

.special-price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Buttons */
.special-action-buttons {
    display: flex;
    gap: 0.75rem;
}

.special-btn-primary-enhanced,
.special-btn-secondary-enhanced {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.special-btn-primary-enhanced {
    background: var(--orange-primary);
    color: var(--white);
}

.special-btn-primary-enhanced:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.special-btn-secondary-enhanced {
    background: transparent;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.special-btn-secondary-enhanced:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .special-enhanced-tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .special-enhanced-tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .special-enhanced-tour-card {
        margin: 0 1rem;
    }
    
    .special-tour-image-container {
        height: 200px;
    }
    
    .special-action-buttons {
        flex-direction: column;
    }
    
    .special-btn-primary-enhanced {
        padding: 1rem;
    }
    .special-btn-secondary-enhanced {
        padding: 1rem;
        display: none;
    }
    
    .special-quick-actions {
        opacity: 1;
        flex-direction: row;
        top: auto;
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .special-enhanced-tours-grid {
        margin: 0;
    }
    
    .special-enhanced-tour-card {
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .special-tour-content-container {
        padding: 1rem;
    }
    
    .special-tour-action-container {
        padding: 0.5rem;
    }
}

/* Animation for image loading */
.special-tour-main-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.special-tour-main-image.loaded {
    opacity: 1;
}