/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Perfect Image Slider Styles removed - using Lundev slider instead */

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-top: 80px; /* Account for fixed navbar */
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-item.active span {
    color: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.015)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.015)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.015)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* White navbar for non-home pages */
.navbar.white-navbar {
    background: white;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}



/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.password-strength span:first-child {
    color: #6c757d;
}

#passwordStrength {
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.strength-very-weak {
    background-color: #dc3545;
    color: white;
}

.strength-weak {
    background-color: #fd7e14;
    color: white;
}

.strength-fair {
    background-color: #ffc107;
    color: #212529;
}

.strength-good {
    background-color: #20c997;
    color: white;
}

.strength-strong {
    background-color: #198754;
    color: white;
}

/* Security Status */
.admin-security-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
    justify-content: center;
}

.admin-security-status.secure {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.admin-security-status.warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #856404;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.admin-security-status.locked {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.admin-security-status i {
    font-size: 1rem;
}

.text-success { color: #198754; }
.text-warning { color: #856404; }
.text-danger { color: #dc3545; }



/* Search Bar - Now in Navigation */
.search-container {
    display: none; /* Hidden since search is now in nav */
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.search-box:focus-within {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    border-color: rgba(52, 152, 219, 0.3);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
}

.search-input::placeholder {
    color: #7f8c8d;
    font-weight: 400;
}

.search-btn {
    padding: 15px 20px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    border-radius: 8px;
}

.search-btn:hover {
    background: linear-gradient(90deg, #f06b9a 0%, #de4185 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 44, 97, 0.4);
    border-radius: 12px;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.15);
    z-index: 1000;
    padding: 12px 0;
    overflow: hidden;
}

.search-suggestions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    border: 1px solid rgba(102, 126, 234, 0.25);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.18),
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.suggestion-item {
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.suggestion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

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

.suggestion-item:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.suggestion-item:last-child {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    color: #667eea;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    padding-left: 25px;
}

.suggestion-item:hover::before {
    transform: scaleY(1);
}

.suggestion-item i {
    color: #667eea;
    font-size: 18px;
    width: 24px;
    text-align: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.suggestion-item:hover i {
    color: #667eea;
    transform: scale(1.1);
    opacity: 1;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

/* Navigation logo styles removed */

/* Logo image styles removed */

.nav-search-container {
    position: relative;
    margin: 0 25px;
    animation: searchBarSlideIn 0.6s ease-out;
    z-index: 1002;
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

@keyframes searchBarSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-search-container .search-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    min-width: 350px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(102, 126, 234, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.nav-search-container .search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.nav-search-container .search-box:hover::before {
    left: 100%;
}

.nav-search-container .search-box:focus-within {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 8px 25px rgba(102, 126, 234, 0.2);
    transform: translateY(-3px) scale(1.02);
}

.nav-search-container .search-input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.nav-search-container .search-input {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    outline: none;
    color: #2c3e50;
    font-size: 15px;
    padding: 8px 16px 8px 40px;
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 20px;
    margin-right: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-search-container .search-input::placeholder {
    color: rgba(44, 62, 80, 0.6);
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.nav-search-container .search-input:focus::placeholder {
    color: rgba(102, 126, 234, 0.7);
    transform: translateX(5px);
}

.nav-search-container .search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.4),
        0 2px 8px rgba(118, 75, 162, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-search-container .search-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.nav-search-container .search-btn:hover::before {
    width: 100%;
    height: 100%;
}

.nav-search-container .search-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.5),
        0 4px 15px rgba(118, 75, 162, 0.4);
}

.nav-search-container .search-btn:active {
    transform: scale(0.95);
}

.nav-search-container .search-btn i {
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
    position: relative;
}

.nav-search-container .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 20px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 400px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.15);
    max-height: 400px;
    overflow-y: auto;
    padding: 12px 0;
}

.nav-search-container .search-suggestions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    border: 1px solid rgba(102, 126, 234, 0.25);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.18),
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Search suggestion categories */
.suggestion-category {
    padding: 12px 20px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
}

.suggestion-category::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Enhanced suggestion items for navigation search */
.nav-search-container .suggestion-item,
.nav-search-container .search-suggestion-item {
    padding: 14px 20px;
    margin: 0 8px;
    border-radius: 12px;
    border: none;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-search-container .suggestion-item:hover,
.nav-search-container .search-suggestion-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.nav-search-container .suggestion-item:last-child,
.nav-search-container .search-suggestion-item:last-child {
    margin-bottom: 8px;
    border-bottom: none;
}

.nav-search-container .suggestion-item:first-child,
.nav-search-container .search-suggestion-item:first-child {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.nav-search-container .suggestion-item:last-child,
.nav-search-container .search-suggestion-item:last-child {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Links inside search suggestion items */
.nav-search-container .search-suggestion-item a {
    display: block;
    width: 100%;
    height: 100%;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-search-container .search-suggestion-item a:hover {
    color: #667eea;
    text-decoration: none;
}

/* Enhanced suggestion content layout */
.suggestion-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.suggestion-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.suggestion-meta {
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 400;
}

/* Focused state for keyboard navigation */
.suggestion-item.focused {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-left: 4px solid #667eea;
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.suggestion-item.focused .suggestion-name {
    color: #667eea;
}

.suggestion-item.focused .suggestion-meta {
    color: #764ba2;
}

/* No results styling */
.suggestion-item.no-results {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    background: rgba(255, 255, 255, 0.5);
}

.suggestion-item.no-results i {
    color: #bdc3c7;
    margin-right: 8px;
}

/* Search box focused state */
.nav-search-container .search-box.focused {
    border-color: rgba(102, 126, 234, 0.8);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(102, 126, 234, 0.15),
        0 8px 25px rgba(102, 126, 234, 0.2);
}

/* Custom scrollbar for suggestions */
.search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 25px;
        background: rgba(70, 44, 97, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 80%;
        max-width: 300px;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(70, 44, 97, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-search-container {
        display: none;
    }
    
    /* Ensure nav-toggle is visible and clickable */
    .nav-toggle {
        position: relative;
        z-index: 1002;
    }
    
    .nav-toggle span {
        pointer-events: none;
    }
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #462c61;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Navigation logo text styles removed */

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.2);
}

.nav-link:hover {
    color: #462c61;
    background: rgba(70, 44, 97, 0.1);
    transform: scale(1.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #462c61;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    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 200 200"><defs><pattern id="stars-hero" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="75" cy="35" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="145" cy="55" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="35" cy="115" r="0.7" fill="rgba(255,255,255,0.9)"/><circle cx="115" cy="135" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="175" cy="175" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="55" cy="75" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="135" cy="95" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="95" cy="155" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="25" cy="65" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="165" cy="145" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="85" cy="185" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="185" cy="25" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="45" cy="195" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="195" cy="105" r="0.6" fill="rgba(255,255,255,0.8)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-hero)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    animation: starFloat 25s linear infinite;
}



.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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

/* Hero Spacer - No longer needed */
.hero-spacer {
    display: none;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Center Focused Slider removed - using Lundev slider instead */

/* Side Containers */
.side-container {
    width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
    will-change: transform, opacity, filter;
}

.side-container.left-container {
    left: 25%;
    transform: translateX(-50%) scale(1.1);
    opacity: 0.7;
    overflow: hidden;
}

.side-container.right-container {
    right: 25%;
    transform: translateX(50%) scale(1.1);
    opacity: 0.7;
    overflow: hidden;
}



.side-container.active {
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
    animation: activeSlidePulse 2s ease-in-out infinite, slideInFromLeft 0.6s ease-out;
}

.side-container.inactive {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.1);
    z-index: 1;
}



@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%) scale(1.1);
        opacity: 0;
        filter: blur(0px);
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes activeSlidePulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

.side-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-container:hover {
    transform: translateX(-45%) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(0, 0, 0, 0.3);
}

.side-container.right-container:hover {
    transform: translateX(55%) translateY(-5px);
}

.side-container.active:hover {
    transform: translateX(-50%) translateY(-8px);
}

.side-container:hover::before {
    opacity: 1;
}

.side-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.side-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: brightness(0.9);
}

.side-container:hover .side-slide img {
    transform: translateX(10px) translateY(-5px);
    filter: brightness(1.1) contrast(1.1);
}

/* Center Container */
.center-container {
    width: 700px;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    will-change: transform, opacity;
}

.center-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.center-container:hover {
    transform: translate(-50%, -50%) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 15px 35px rgba(0, 0, 0, 0.4);
}

.center-container:hover::before {
    opacity: 1;
}

.main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.95);
}

.main-slide.active {
    opacity: 1;
    transform: scale(1);
}

.main-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.main-slide.active img {
    filter: brightness(1);
}



/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 3;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    font-size: 1.4rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.prev-btn::before, .next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.prev-btn:hover, .next-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 255, 255, 0.2);
}

.prev-btn:hover::before, .next-btn:hover::before {
    opacity: 1;
}

.prev-btn:active, .next-btn:active {
    transform: scale(0.95) translateY(0);
    transition: all 0.1s ease;
}

/* Button Icon Styling */
.prev-btn i, .next-btn i {
    position: relative;
    z-index: 2;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.prev-btn:hover i, .next-btn:hover i {
    transform: scale(1.1);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 3;
    margin-bottom: 100px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* --- Enhanced Destinations Section --- */
.destinations {
    padding: -10rem 0;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: none;
    z-index: 0;
}

.destinations::after {
    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 200 200"><defs><pattern id="stars-destinations" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="80" cy="40" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="160" cy="60" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="40" cy="120" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="120" cy="140" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="180" cy="180" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="60" cy="80" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="140" cy="100" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="100" cy="160" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="30" cy="70" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="170" cy="150" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="90" cy="190" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="190" cy="30" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="50" cy="200" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="200" cy="110" r="0.5" fill="rgba(255,255,255,0.8)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-destinations)"/></svg>');
    opacity: 0.25;
    pointer-events: none;
    animation: starFloat 30s linear infinite;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.destination-card {
    background: white;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 32px rgba(52, 152, 219, 0.08), 0 2px 8px rgba(44, 62, 80, 0.06);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    z-index: 0;
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    border-radius: 24px;
}

.destination-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(70, 44, 97, 0.75);
    border: 2px solid rgba(70, 44, 97, 0.1);
}

.country-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.country-header::after {
    content: '';
    display: block;
    height: 4px;
    width: 48px;
    border-radius: 2px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    opacity: 0.7;
}

.flag {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(70,44,97,0.10));
}

.country-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(70,44,97,0.1);
    transition: all 0.3s ease;
}

.destination-card:hover .country-name {
    color: #462c61;
    text-shadow: 0 2px 4px rgba(70,44,97,0.15);
}

.cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-top: 2.2rem;
    position: relative;
    z-index: 2;
}

.cities a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #de4185;
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(70, 44, 97, 0.1);
    transition: all 0.22s cubic-bezier(.4,0,.2,1);
    border: 1.5px solid rgba(70, 44, 97, 0.1);
}

.cities a i {
    font-size: 1.1em;
    opacity: 0.7;
}

.cities a:hover {
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    color: #fff;
    border-color: #de4185;
    box-shadow: 0 6px 18px rgba(70, 44, 97, 0.2);
    transform: translateY(-2px) scale(1.07);
}

/* Specific destination card enhancements */
.destination-card.thailand::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card.singapore::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card.europe::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card.japan::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card.australia::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card.usa::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card.uk::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card.uae::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.destination-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.destination-card:hover .card-background {
    transform: scale(1.05);
}

/* Fixed Departures */
.fixed-departures {
    padding: 5rem 0;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    position: relative;
}

.fixed-departures::after {
    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 200 200"><defs><pattern id="stars-departures" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="85" cy="45" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="155" cy="65" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="45" cy="125" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="125" cy="145" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="185" cy="185" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="65" cy="85" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="145" cy="105" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="105" cy="165" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="35" cy="75" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="175" cy="155" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="95" cy="195" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="195" cy="35" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="55" cy="205" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="205" cy="115" r="0.5" fill="rgba(255,255,255,0.8)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-departures)"/></svg>');
    opacity: 0.25;
    pointer-events: none;
    animation: starFloat 35s linear infinite;
}

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

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 400;
}



/* ===== MODERN SECTION TITLES WITH DYNAMIC RESPONSIVENESS ===== */
.destinations .section-title,
.about .section-title,
.fixed-departures .section-title,
.services .section-title,
.blog .section-title,
.book-flight .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.5px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    line-height: 1.1;
    margin-top: -10px;
    color: white !important;
}

.destinations .section-title::after,
.about .section-title::after,
.fixed-departures .section-title::after,
.services .section-title::after,
.blog .section-title::after,
.book-flight .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 8vw, 100px);
    height: 4px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hover effects for section titles */
.destinations .section-title:hover::after,
.about .section-title:hover::after,
.fixed-departures .section-title:hover::after,
.services .section-title:hover::after,
.blog .section-title:hover::after,
.book-flight .section-title:hover::after {
    width: clamp(80px, 12vw, 120px);
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.destinations .section-subtitle,
.about .section-subtitle,
.blog .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

/* ===== FIXED FLIGHTS - 3 COLUMN GRID DESIGN ===== */
.departures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

.departure-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(25px);
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(70, 44, 97, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 0;
}

.departure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(70, 44, 97, 0.02) 0%, rgba(222, 65, 133, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.departure-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(70, 44, 97, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(70, 44, 97, 0.2);
}

/* Image Section */
.departure-image {
    height: 110px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: clamp(12px, 2vw, 16px) clamp(12px, 2vw, 16px) 0 0;
    margin: 0;
    flex-shrink: 0;
}

.departure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.95) contrast(1.1);
}

.departure-card:hover .departure-image img {
    transform: scale(1.1);
    filter: brightness(1.05) contrast(1.2);
}

/* Compact Airline Logo */
.airline-logo {
    position: absolute;
    top: clamp(8px, 1.5vw, 12px);
    left: clamp(8px, 1.5vw, 12px);
    background: rgba(255, 255, 255, 0.98);
    padding: clamp(0.3rem, 0.8vw, 0.5rem);
    border-radius: clamp(8px, 1.5vw, 10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.airline-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.airline-logo img {
    width: clamp(30px, 4vw, 45px);
    height: auto;
    object-fit: contain;
}

/* Compact Departure Badge */
.departure-badge {
    position: absolute;
    top: clamp(8px, 1.5vw, 12px);
    right: clamp(8px, 1.5vw, 12px);
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.6rem, 1.2vw, 0.8rem);
    border-radius: clamp(12px, 2vw, 16px);
    font-size: clamp(0.65rem, 1.2vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 16px rgba(70, 44, 97, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.departure-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 44, 97, 0.4);
}

/* Main Content Section */
.departure-content {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    z-index: 2;
    position: relative;
}

.departure-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
}

.departure-header h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    flex: 1;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

/* Compact Flight Number */
.flight-number {
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.6rem, 1.2vw, 0.8rem);
    border-radius: clamp(10px, 1.5vw, 12px);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 12px rgba(70, 44, 97, 0.25);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.flight-number:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(70, 44, 97, 0.35);
}

/* Compact Rating System */
.rating {
    display: flex;
    align-items: center;
    gap: clamp(0.2rem, 0.5vw, 0.4rem);
    margin-top: clamp(0.3rem, 0.8vw, 0.5rem);
}

.rating i {
    color: #f39c12;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    text-shadow: 0 1px 2px rgba(243, 156, 18, 0.2);
}

.rating span {
    color: #5a6c7d;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    margin-left: clamp(0.2rem, 0.5vw, 0.3rem);
    font-weight: 600;
}

/* Compact Details Section */
.departure-details {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.3rem, 0.6vw, 0.4rem);
    margin-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.6rem);
    color: #4a5568;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 500;
    padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.6rem, 1.2vw, 0.8rem);
    background: rgba(70, 44, 97, 0.04);
    border-radius: clamp(8px, 1.5vw, 12px);
    border: 1px solid rgba(70, 44, 97, 0.08);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.detail-item:hover {
    background: rgba(70, 44, 97, 0.08);
    border-color: rgba(70, 44, 97, 0.2);
    transform: translateY(-2px);
}

.detail-item i {
    color: #462c61;
    width: clamp(14px, 2.5vw, 18px);
    text-align: center;
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    flex-shrink: 0;
}

/* Right Side Action Section */
.departure-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.6rem);
    padding: 0;
    justify-content: center;
    height: auto;
    z-index: 2;
    position: relative;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 800;
    color: #27ae60;
    margin: 0;
    text-shadow: 0 1px 3px rgba(39, 174, 96, 0.2);
    letter-spacing: -0.3px;
}

.price-note {
    color: #7f8c8d;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    margin: 0;
    font-weight: 500;
    margin-top: clamp(0.1rem, 0.3vw, 0.2rem);
}

/* Compact Book Button */
.book-btn {
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    border: none;
    padding: clamp(0.7rem, 1.5vw, 1rem) clamp(1.2rem, 2.5vw, 1.8rem);
    border-radius: clamp(20px, 3vw, 25px);
    cursor: pointer;
    font-weight: 700;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(70, 44, 97, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: clamp(100px, 15vw, 140px);
}

.book-btn::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;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(70, 44, 97, 0.4);
    background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
}

.book-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* --- Enhanced City Detail Pages --- */
.city-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(70, 44, 97, 0.4) 0%, rgba(222, 65, 133, 0.4) 100%);
    z-index: 1;
}

.city-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    width: 100%;
}

.city-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    animation: slideInFromTop 1s ease-out;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
}

.city-hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: slideInFromBottom 1s ease-out 0.3s both;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-align: center;
}

/* City Hero Animations */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.city-content {
    padding: 5rem 0;
    background: white;
}

.city-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.city-main {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(70, 44, 97, 0.08);
    border: 2px solid #f8f9fa;
}

.city-section {
    margin-bottom: 3rem;
}

.city-section:last-child {
    margin-bottom: 0;
}

.city-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.city-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    border-radius: 2px;
}

.city-section p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* City Hero Responsive Design */
@media (max-width: 768px) {
    .city-hero {
        height: 60vh;
        padding: 2rem 0;
    }
    
    /* City hero styles consolidated above */
}

/* Remove conflicting mobile styles - consolidated above */

.city-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-item:hover::before {
    transform: scaleX(1);
}

.highlight-item:hover {
    transform: translateY(-5px);
    border-color: rgba(70, 44, 97, 0.1);
    box-shadow: 0 15px 35px rgba(70, 44, 97, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.highlight-desc {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.city-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.city-widget {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(70, 44, 97, 0.08);
    border: 2px solid #f8f9fa;
}

.city-widget h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.city-widget h3 i {
    color: #de4185;
    font-size: 1.2rem;
}

.city-info-list {
    list-style: none;
    padding: 0;
}

.city-info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
    color: #5a6c7d;
}

.city-info-list li:last-child {
    border-bottom: none;
}

.city-info-list i {
    color: #462c61;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.city-tips {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #de4185;
}

.city-tips h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.city-tips ul {
    list-style: none;
    padding: 0;
}

.city-tips li {
    color: #5a6c7d;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.city-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #de4185;
    font-weight: bold;
}

@media (max-width: 768px) {
    .city-grid {
        grid-template-columns: 1fr;
    }
    
    .city-main,
    .city-widget {
        padding: 2rem;
    }
    
    .city-hero h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .city-hero p {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: 0;
    }
    
    .city-highlights {
        grid-template-columns: 1fr;
    }
}

/* Services */
.services {
    padding: 5rem 0;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    position: relative;
}

/* Mobile Services Optimization */
@media (max-width: 767px) {
    .services {
        padding: 3rem 0;
    }
    
    .services .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 0;
        text-align: center;
        min-height: auto;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.6rem;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-content h3 {
        font-size: 1rem;
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .service-content p {
        display: none;
    }
    
    .service-card .btn {
        display: none;
    }
    
    .service-features {
        display: none;
    }
}

/* Extra Small Mobile Services */
@media (max-width: 480px) {
    .services {
        padding: 2.5rem 0;
    }
    
    .services .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 1.2rem 0.8rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.1;
    }
    
    .service-content p {
        display: none;
    }
    
    .service-card .btn {
        display: none;
    }
    
    .service-features {
        display: none;
    }
}

/* Very Small Mobile Services */
@media (max-width: 360px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        padding: 0 0.3rem;
    }
    
    .service-card {
        padding: 1rem 0.6rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.4rem;
    }
    
    .service-icon i {
        font-size: 1.1rem;
    }
    
    .service-content h3 {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .service-features {
        display: none;
    }
}

.services::after {
    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 200 200"><defs><pattern id="stars-services" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="90" cy="50" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="160" cy="70" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="50" cy="130" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="130" cy="150" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="190" cy="190" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="70" cy="90" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="150" cy="110" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="110" cy="170" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="40" cy="80" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="180" cy="160" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="100" cy="200" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="200" cy="40" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="60" cy="210" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="210" cy="120" r="0.6" fill="rgba(255,255,255,0.9)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-services)"/></svg>');
    opacity: 0.25;
    pointer-events: none;
    animation: starFloat 40s linear infinite;
}

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

.service-card {
    background: white;
    padding: 1rem 1rem 0.7rem 1rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(70, 44, 97, 0.2);
    border: 2px solid rgba(70, 44, 97, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(90deg, #de4185 0%, #f06b9a 100%);
    box-shadow: 0 8px 25px rgba(70, 44, 97, 0.4);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-content {
    margin-top: 1rem;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #462c61;
}

.service-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.service-features i {
    color: #de4185;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-features i {
    color: #462c61;
    transform: scale(1.1);
}

/* Service card improvements */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(70, 44, 97, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(70, 44, 97, 0.15);
    border-color: rgba(70, 44, 97, 0.3);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(70, 44, 97, 0.4);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #5a6c7d;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(70, 44, 97, 0.1);
}

.service-features span:last-child {
    border-bottom: none;
}

.service-features i {
    color: #27ae60;
    font-size: 0.9rem;
    background: rgba(39, 174, 96, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    position: relative;
    overflow: hidden;
}

.blog .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog::after {
    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 200 200"><defs><pattern id="stars-blog" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="95" cy="55" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="165" cy="75" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="55" cy="135" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="135" cy="155" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="195" cy="195" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="75" cy="95" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="155" cy="115" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="115" cy="175" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="45" cy="85" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="185" cy="165" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="105" cy="205" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="205" cy="45" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="65" cy="215" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="215" cy="125" r="0.5" fill="rgba(255,255,255,0.8)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-blog)"/></svg>');
    opacity: 0.25;
    pointer-events: none;
    animation: starFloat 45s linear infinite;
}

.blog-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}



/* ===== COMPLETELY NEW BLOG CARDS - MINIMALIST DESIGN ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 0.2px solid rgba(0, 0, 0, 0.02);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    flex: 1;
    box-sizing: border-box;
}

/* Fallback border-radius for devices that don't support clamp() */
@supports not (border-radius: clamp(16px, 3vw, 20px)) {
    .blog-card {
        border-radius: 18px;
        -webkit-border-radius: 18px;
        -moz-border-radius: 18px;
    }
    
    .blog-image {
        border-radius: 18px 18px 0 0;
        -webkit-border-radius: 18px 18px 0 0;
        -moz-border-radius: 18px 18px 0 0;
    }
    
    .blog-category {
        border-radius: 22px;
        -webkit-border-radius: 22px;
        -moz-border-radius: 22px;
    }
    
    .read-more {
        border-radius: 22px;
        -webkit-border-radius: 22px;
        -moz-border-radius: 22px;
    }
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(70, 44, 97, 0.08);
}

.blog-image {
    height: 140px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-radius: clamp(16px, 3vw, 20px) clamp(16px, 3vw, 20px) 0 0;
    -webkit-border-radius: clamp(16px, 3vw, 20px) clamp(16px, 3vw, 20px) 0 0;
    -moz-border-radius: clamp(16px, 3vw, 20px) clamp(16px, 3vw, 20px) 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Simple Category Badge */
.blog-category {
    position: absolute;
    top: clamp(15px, 3vw, 18px);
    left: clamp(15px, 3vw, 18px);
    background: #462c61;
    color: white;
    padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 1.5vw, 1.2rem);
    border-radius: clamp(20px, 3vw, 25px);
    -webkit-border-radius: clamp(20px, 3vw, 25px);
    -moz-border-radius: clamp(20px, 3vw, 25px);
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
    /* Ensure visibility on mobile */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Clean Blog Content */
.blog-content {
    padding: 0.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

/* Read More Card */
.blog-read-more-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 0.2px solid rgba(0, 0, 0, 0.02);
    min-height: 300px;
    height: 100%;
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.read-more-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.75;
}

.blog-read-more-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(70, 44, 97, 0.08);
}

.read-more-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    color: #2c3e50;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.4) 0%, rgba(233, 236, 239, 0.4) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    min-height: 100%;
}

.read-more-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(70, 44, 97, 0.3);
}

.read-more-icon i {
    font-size: 1.8rem;
    color: white;
}

.blog-read-more-card:hover .read-more-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(70, 44, 97, 0.4);
}

.read-more-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    line-height: 1.3;
}

.read-more-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #6c757d;
    line-height: 1.4;
    max-width: 220px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(70, 44, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(70, 44, 97, 0.4);
}

.blog-header {
    margin-bottom: 0.5rem;
}

.blog-header h3 {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-header h3 {
    color: #462c61;
}

/* Simple Blog Meta */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.6rem);
    font-weight: 500;
}

.blog-meta i {
    color: #462c61;
    width: clamp(14px, 2.5vw, 16px);
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
}

/* Clean Blog Excerpt */
.blog-excerpt {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 400;
    flex: 1;
}

/* Simple Blog Footer */
.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: auto;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-time i {
    color: #462c61;
    font-size: 0.8rem;
}

/* Clean Read More Button */
.read-more {
    color: #462c61;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.4rem 0.8rem;
    background: rgba(70, 44, 97, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(70, 44, 97, 0.15);
    position: relative;
    overflow: hidden;
    min-width: fit-content;
    white-space: nowrap;
}

.read-more:hover {
    background: rgba(70, 44, 97, 0.12);
    border-color: rgba(70, 44, 97, 0.25);
    transform: translateY(-2px);
    color: #462c61;
}

.read-more::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.6s ease;
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(70, 44, 97, 0.4),
        0 8px 25px rgba(222, 65, 133, 0.3);
    background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
}

.read-more:active {
    transform: translateY(-2px) scale(1.02);
}

.read-more i {
    transition: transform 0.4s ease;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Grid Responsive Breakpoints */
@media (min-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 1200px;
    }
    
    .blog-card {
        min-height: 300px;
    }
    
    .blog-read-more-card {
        min-height: 300px;
        height: 100%;
    }
    
    .blog-image {
        height: 140px;
    }
    
    .blog-header h3 {
        font-size: 1.7rem;
    }
    
    .blog-excerpt {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .blog-meta {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .blog-content {
        padding: 2.5rem;
    }
}

@media (min-width: 1600px) {
    .blog-grid {
        gap: 4rem;
        max-width: 1400px;
    }
    
    .blog-card {
        min-height: 550px;
        min-width: 600px;
    }
    
    .blog-image {
        height: 280px;
    }
    
    .blog-header h3 {
        font-size: 1.8rem;
    }
    
    .blog-excerpt {
        font-size: 1.15rem;
        line-height: 1.7;
    }
    
    .blog-content {
        padding: 3rem;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
    }
    
    .blog-card {
        min-height: 300px;
    }
    
    .blog-read-more-card {
        min-height: 300px;
        height: 100%;
    }
    
    .blog-image {
        height: 130px;
    }
    
    .blog-header h3 {
        font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    }
    
    .blog-excerpt {
        font-size: clamp(0.95rem, 1.8vw, 1rem);
    }
    
    .blog-content {
        padding: clamp(1.5rem, 2.5vw, 2rem);
    }
}

@media (max-width: 991px) and (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .blog-card {
        min-height: 280px;
        border-radius: 16px;
    }
    
    .blog-image {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .blog-card {
        min-height: 260px;
        border-radius: 16px;
    }
    
    .blog-image {
        height: 110px;
    }
    
    .blog-content {
        padding: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .blog-header h3 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(0.5rem, 1.5vw, 0.8rem);
        margin-bottom: clamp(1.2rem, 2.5vw, 1.5rem);
    }
    
    .blog-meta span {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        min-height: 240px;
        border-radius: 16px;
        border: 0.2px solid rgba(0, 0, 0, 0.02);
    }
    
    .blog-image {
        height: 100px;
    }
    
    .blog-content {
        padding: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .blog-header h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: clamp(0.8rem, 2vw, 1rem);
    }
    
    .blog-meta {
        gap: clamp(0.4rem, 1.5vw, 0.6rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.2rem);
    }
}

@media (max-width: 360px) {
    .blog-grid {
        gap: clamp(1rem, 2.5vw, 1.5rem);
        padding: clamp(0.5rem, 2.5vw, 1rem);
    }
    
    .blog-card {
        min-height: clamp(480px, 75vh, 550px);
        border-radius: clamp(10px, 4vw, 15px);
        /* Minimal border for very small mobile */
        border: 0.1px solid rgba(0, 0, 0, 0.01) !important;
    }
    
    /* Navigation logo responsive styles removed */
    
    .blog-content {
        padding: clamp(0.8rem, 2.5vw, 1.2rem);
    }
    
    .blog-header h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: clamp(0.7rem, 2vw, 0.9rem);
    }
}

/* Mobile-specific fixes for rounded corners */
@media (max-width: 768px) {
    .blog-card {
        /* Force rounded corners on mobile */
        border-radius: 18px !important;
        -webkit-border-radius: 18px !important;
        -moz-border-radius: 18px !important;
        /* iOS Safari specific fixes */
        -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
        mask-image: radial-gradient(circle, white, black);
        /* Thinner border for mobile */
        border: 0.3px solid rgba(0, 0, 0, 0.03) !important;
    }
    
    .blog-image {
        border-radius: 18px 18px 0 0 !important;
        -webkit-border-radius: 18px 18px 0 0 !important;
        -moz-border-radius: 18px 18px 0 0 !important;
    }
    
    .blog-category {
        border-radius: 22px !important;
        -webkit-border-radius: 22px !important;
        -moz-border-radius: 22px !important;
    }
    
    .read-more {
        border-radius: 22px !important;
        -webkit-border-radius: 22px !important;
        -moz-border-radius: 22px !important;
    }
}

/* Mobile Read More Button Enhancements */
@media (max-width: 768px) {
    .blog-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .read-time {
        text-align: center;
        justify-content: center;
    }
    
    .read-more {
        font-size: clamp(0.75rem, 2.5vw, 0.9rem);
        padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(0.8rem, 2.5vw, 1.5rem);
        border-radius: clamp(15px, 4vw, 25px);
        gap: clamp(0.3rem, 1vw, 0.6rem);
        min-width: clamp(120px, 25vw, 150px);
        justify-content: center;
        text-align: center;
        background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
        color: white;
        border: 2px solid transparent;
        box-shadow: 0 4px 15px rgba(70, 44, 97, 0.3);
        font-weight: 700;
        letter-spacing: 0.6px;
        align-self: center;
        width: 100%;
        max-width: 200px;
    }
    
    .read-more:hover {
        background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(70, 44, 97, 0.4);
    }
    
    .read-more i {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .blog-footer {
        gap: 0.8rem;
        padding-top: 1.2rem;
    }
    
    .read-more {
        font-size: clamp(0.7rem, 3vw, 0.85rem);
        padding: clamp(0.4rem, 2vw, 0.7rem) clamp(0.7rem, 3vw, 1.2rem);
        border-radius: clamp(12px, 5vw, 20px);
        gap: clamp(0.25rem, 1.5vw, 0.5rem);
        min-width: clamp(100px, 30vw, 130px);
        letter-spacing: 0.5px;
        max-width: 180px;
    }
    
    .read-more i {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
}

@media (max-width: 360px) {
    .blog-footer {
        gap: 0.6rem;
        padding-top: 1rem;
    }
    
    .read-more {
        font-size: clamp(0.65rem, 3.5vw, 0.8rem);
        padding: clamp(0.35rem, 2.5vw, 0.6rem) clamp(0.6rem, 3.5vw, 1rem);
        border-radius: clamp(10px, 6vw, 18px);
        gap: clamp(0.2rem, 2vw, 0.4rem);
        min-width: clamp(90px, 35vw, 120px);
        letter-spacing: 0.4px;
        max-width: 160px;
    }
    
    .read-more i {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
    }
}

/* ===== RESPONSIVE BREAKPOINTS FOR 3 COLUMN GRID DESIGN ===== */
@media (max-width: 1200px) {
    .departures-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .departures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .departure-card {
        grid-template-columns: clamp(200px, 22vw, 280px) 1fr auto;
        gap: clamp(0.8rem, 1.5vw, 1.2rem);
        min-height: clamp(90px, 12vh, 120px);
    }
    
    .blog-card {
        min-height: clamp(350px, 55vh, 400px);
    }
    
    .departure-image {
        min-height: clamp(70px, 10vh, 100px);
    }
    
    .blog-image {
        height: clamp(140px, 25vh, 180px);
    }
    
    .departure-content {
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
    }
    
    .departure-footer {
        padding: clamp(0.8rem, 1.5vw, 1.2rem);
        gap: clamp(0.6rem, 1.2vw, 1rem);
    }
}

@media (max-width: 480px) {
    .departures-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .departure-card {
        min-height: auto;
    }
    
    .blog-card {
        min-height: clamp(420px, 70vh, 500px);
        border-radius: clamp(20px, 4vw, 25px);
    }
    
    .departure-image {
        height: clamp(120px, 20vh, 160px);
        width: 100%;
        min-height: auto;
        margin: 0;
        border-radius: clamp(10px, 2vw, 12px);
    }
    
    .departure-content {
        padding: clamp(0.8rem, 2vw, 1.2rem);
        order: 2;
    }
    
    .departure-footer {
        padding: clamp(0.8rem, 2vw, 1.2rem);
        order: 3;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .price-info {
        align-items: flex-start;
        text-align: left;
    }
    
    .departure-header h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .blog-header h3 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    
    .price {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    
    .book-btn {
        padding: clamp(0.7rem, 2vw, 1rem) clamp(1.2rem, 3vw, 1.8rem);
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        min-width: clamp(90px, 20vw, 120px);
    }
    
    .read-more {
        padding: clamp(0.7rem, 2.5vw, 1rem) clamp(1.2rem, 4vw, 1.8rem);
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }
    
    .detail-item {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.5rem, 1.5vw, 0.8rem);
    }
}

/* ===== HIGH DPI AND TOUCH DEVICE OPTIMIZATIONS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .departure-card,
    .blog-card {
        border-width: 1px;
    }
    
    .departure-card::before,
    .blog-card::before {
        border-width: 1px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .departure-card:hover,
    .blog-card:hover {
        transform: none;
    }
    
    .departure-card:active,
    .blog-card:active {
        transform: scale(0.98);
    }
    
    .book-btn:hover,
    .read-more:hover {
        transform: none;
    }
    
    .book-btn:active,
    .read-more:active {
        transform: scale(0.95);
    }
    
    .detail-item:hover,
    .blog-meta:hover,
    .read-time:hover {
        transform: none;
    }
}

/* Book Flight Section */
.book-flight {
    padding: 5rem 0;
    background: linear-gradient(180deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    position: relative;
    transition: all 0.5s ease;
}

.book-flight::after {
    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 200 200"><defs><pattern id="stars-book-flight" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="100" cy="60" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="170" cy="80" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="60" cy="140" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="140" cy="160" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="200" cy="200" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="80" cy="100" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="160" cy="120" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="120" cy="180" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="50" cy="90" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="190" cy="170" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="110" cy="210" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="210" cy="50" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="70" cy="220" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="220" cy="130" r="0.5" fill="rgba(255,255,255,0.8)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-book-flight)"/></svg>');
    opacity: 0.25;
    pointer-events: none;
    animation: starFloat 50s linear infinite;
}

/* Add subtle top and bottom borders for better blending */
.book-flight-top-border {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 3;
}

.book-flight-bottom-border {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 3;
}

.book-flight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #462c61;
    font-size: 1.2rem;
    width: 20px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #462c61;
    box-shadow: 0 0 0 3px rgba(70, 44, 97, 0.1);
}

.submit-btn {
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 44, 97, 0.3);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form submission feedback */
.contact-form.submitting .submit-btn {
    background: #462c61;
    cursor: wait;
}

/* Notification styles */
.notification {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

/* CAPTCHA Styles */
.captcha-group {
    margin-bottom: 1.5rem;
}

.captcha-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5a6c7d;
    font-weight: 500;
    font-size: 0.9rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.captcha-display {
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(70, 44, 97, 0.3);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.captcha-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.1) 2px,
        rgba(255, 255, 255, 0.1) 4px
    );
    pointer-events: none;
}

.refresh-captcha {
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.refresh-captcha:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(70, 44, 97, 0.4);
}

.refresh-captcha i {
    font-size: 1rem;
}

#captcha-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

#captcha-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

#captcha-input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Success Message Styles */
.success-message {
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(70, 44, 97, 0.3);
}

.success-content i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.success-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.partner-booking {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(70, 44, 97, 0.1);
    backdrop-filter: blur(10px);
}

.partner-booking h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.partner-booking p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.partner-btn {
    display: inline-block;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 44, 97, 0.3);
}

.partner-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(70, 44, 97, 0.15);
    transition: all 0.3s ease;
}

/* About Us */
.about {
    padding: 5rem 0;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    position: relative;
}

.about::after {
    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 200 200"><defs><pattern id="stars-about" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="45" cy="45" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="105" cy="65" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="175" cy="85" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="65" cy="145" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="145" cy="165" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="205" cy="205" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="85" cy="105" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="165" cy="125" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="125" cy="185" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="55" cy="95" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="195" cy="175" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="115" cy="215" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="215" cy="55" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="75" cy="225" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="225" cy="135" r="0.5" fill="rgba(255,255,255,0.8)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-about)"/></svg>');
    opacity: 0.25;
    pointer-events: none;
    animation: starFloat 55s linear infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Ensure desktop always shows 4 columns */
@media (min-width: 769px) {
    .about-stats {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 0; /* Prevents grid items from overflowing */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 479px) {
    .stat-number {
        font-size: 1.5rem;
    }
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 479px) {
    .stat-label {
        font-size: 0.7rem;
    }
}

.team-showcase {
    margin-top: 4rem;
}

.team-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .team-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .team-member.leadership .member-image {
        width: 160px;
        height: 160px;
    }
    
    /* Ensure team members are visible on mobile */
    .team-member {
        min-height: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    /* Fix mobile grid layout */
    .leadership-team {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .remaining-team {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .team-member.leadership .member-image {
        width: 140px;
        height: 140px;
    }
    
    .member-image {
        width: 140px;
        height: 140px;
    }
    
    .leadership-team {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .remaining-team {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
}

/* Tablet responsive rules */
@media (min-width: 481px) and (max-width: 768px) {
    .leadership-team {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .remaining-team {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
}

/* Small tablet responsive rules */
@media (min-width: 769px) and (max-width: 1024px) {
    .leadership-team {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .remaining-team {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
}

/* Ensure team members are always visible when needed */
.team-dropdown-content.show .team-member,
.leadership-team .team-member {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

/* Fix for any potential z-index issues */
.team-showcase {
    position: relative;
    z-index: 1;
}

.team-dropdown-content {
    position: relative;
    z-index: 2;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.team-member.leadership {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border-color: rgba(70, 44, 97, 0.2);
    box-shadow: 0 15px 40px rgba(70, 44, 97, 0.15);
}

.team-member.leadership::before {
    background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(70, 44, 97, 0.2);
    border-color: rgba(70, 44, 97, 0.3);
}

.team-member.leadership:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 60px rgba(70, 44, 97, 0.25);
    border-color: rgba(70, 44, 97, 0.4);
}

.member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #462c61;
    transition: all 0.3s ease;
    position: relative;
}

.team-member.leadership .member-image {
    width: 180px;
    height: 180px;
    border-width: 5px;
    border-color: #462c61;
    box-shadow: 0 8px 25px rgba(70, 44, 97, 0.3);
}

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(70, 44, 97, 0.9);
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.member-image:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    color: #de4185;
    transform: scale(1.2);
}

/* Hide social media for specific team members (except Srijan, Dristi, and Bipan) */
.team-member:not([data-member="srijan"]):not([data-member="dristi"]):not([data-member="bipan"]) .member-social {
    display: none !important;
}

.team-member:hover .member-image {
    transform: scale(1.1);
    border-color: #de4185;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.team-member.leadership h4 {
    font-size: 1.6rem;
    color: #462c61;
}

.member-info {
    margin-top: 1rem;
}

.member-bio {
    color: #7f8c8d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0.5rem;
    font-style: italic;
}

.position {
    color: #462c61;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member.leadership .position {
    color: #de4185;
    font-weight: 700;
}

/* Section Separator */
.section-separator {
    position: relative;
    height: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    overflow: hidden;
    margin: 0;
}

.separator-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #ffffff 20%, #f0f0f0 50%, #ffffff 80%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}



/* Footer */
.footer {
    background: linear-gradient(180deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Enhanced Blending and Transitions */
.hero,
.destinations,
.fixed-departures,
.services,
.blog,
.book-flight,
.about,
.footer {
    position: relative;
    z-index: 1;
}


/* Smooth section transitions */
.hero,
.destinations,
.fixed-departures,
.services,
.blog,
.book-flight,
.about {
    transition: all 0.5s ease-in-out;
}

/* Enhanced visual flow */
.container {
    position: relative;
    z-index: 2;
}

/* Ensure consistent spacing and blending */
section {
    position: relative;
    overflow: hidden;
}

/* Perfect section blending */
.hero + .destinations,
.destinations + .fixed-departures,
.fixed-departures + .services,
.services + .blog,
.blog + .book-flight,
.book-flight + .about,
.about + .footer {
    margin-top: 0;
}

/* Enhanced section headers for better visual flow */
.section-header {
    position: relative;
    z-index: 3;
}

/* Smooth color transitions between sections */
.hero,
.destinations,
.fixed-departures,
.services,
.blog,
.book-flight,
.about {
    background-attachment: fixed;
    background-size: cover;
}

/* Ensure content is always visible and well-blended */
.hero .container,
.destinations .container,
.fixed-departures .container,
.services .container,
.blog .container,
.book-flight .container,
.about .container {
    position: relative;
    z-index: 3;
}





.footer::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 200 200"><defs><pattern id="stars" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.6)"/><circle cx="80" cy="40" r="0.3" fill="rgba(255,255,255,0.4)"/><circle cx="150" cy="60" r="0.4" fill="rgba(255,255,255,0.5)"/><circle cx="40" cy="120" r="0.6" fill="rgba(255,255,255,0.7)"/><circle cx="120" cy="140" r="0.3" fill="rgba(255,255,255,0.4)"/><circle cx="180" cy="180" r="0.5" fill="rgba(255,255,255,0.6)"/><circle cx="60" cy="80" r="0.4" fill="rgba(255,255,255,0.5)"/><circle cx="140" cy="100" r="0.3" fill="rgba(255,255,255,0.4)"/><circle cx="100" cy="160" r="0.5" fill="rgba(255,255,255,0.6)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
    animation: starFloat 20s linear infinite;
}

@keyframes starFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-200px);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Remove blur from footer section containing contact info */
.footer-section:has(.contact-info),
.footer-section.contact-section {
    backdrop-filter: none !important;
}

/* Fallback for browsers that don't support :has() */
.footer-section .contact-info {
    backdrop-filter: none !important;
}

/* Enhanced Bon Travels Brand Section */
.footer-brand {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 107, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.footer-brand:hover::before {
    transform: translateX(100%);
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.brand-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #de4185);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
}

.brand-logo i {
    font-size: 1.8rem;
    color: white;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin: 0;
}

.footer-brand h3::after {
    display: none;
}

/* Ensure no underlines on footer brand social links */
.footer-brand .social-links a,
.footer-brand .social-links a:hover,
.footer-brand .social-links a:focus,
.footer-brand .social-links a:visited {
    text-decoration: none !important;
}

/* Change text color to black for blog read-more description */
.blog-read-more-card p {
    color: #000000 !important;
}


.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #de4185);
    border-radius: 2px;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    color: #e8f4fd;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-size: 0.8rem;
    top: 2px;
}

.footer-section ul li a {
    color: #e8f4fd;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

.footer-section ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b, #de4185);
    color: white;
    text-align: center;
    line-height: 1;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(222, 65, 133, 0.3);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #de4185, #ff6b6b);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(222, 65, 133, 0.5);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: #e8f4fd;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: #e8f4fd;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

.footer-legal a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Contact info styling in footer */
.footer-section .contact-info {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #e8f4fd;
}

.footer-section .contact-info p i {
    color: #ff6b6b;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

/* Ensure no borders on footer contact info */
.footer .contact-info,
.footer-section .contact-info,
.footer .footer-section .contact-info {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Footer section icons */
.footer-section h3 i,
.footer-section h4 i {
    margin-right: 0.5rem;
    color: #ff6b6b;
}

.footer-section ul li a i {
    margin-right: 0.5rem;
    color: #ff6b6b;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1.2rem;
        text-align: center;
    }
    
    .brand-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
    }
    
    .brand-logo i {
        font-size: 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.8rem;
    }
    
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 1rem;
    }
    
    .social-links {
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}



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

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 4rem;
    }
    
    .center-container {
        width: 800px;
        height: 600px;
    }
    
    .side-container {
        width: 320px;
        height: 320px;
    }
    
    /* Enhanced Large Desktop Styles */
    .hero {
        height: 100vh;
        min-height: 900px;
    }
    
    .center-focused-slider {
        padding: 4rem 3rem;
    }
    
    .slider-controls {
        padding: 0 4rem;
    }
    
    .prev-btn, .next-btn {
        width: 65px;
        height: 65px;
        padding: 1.8rem;
        font-size: 1.5rem;
    }
    
    .slider-dots {
        bottom: 4rem;
        margin-bottom: 120px;
    }
    
    /* Large Desktop Cards */
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card {
        margin: 0 15px;
    }
    
    .destination-card {
        padding: 3rem 2.5rem;
    }
    
    .service-card {
        padding: 3rem 2.5rem;
    }
    
    .departure-card {
        padding: 3rem;
    }
    
    .departure-image {
        min-height: clamp(120px, 18vh, 200px);
    }
    
    .blog-card {
        padding: 3rem;
    }
    
    /* Large Desktop Team */
    .team-member {
        margin: 0 15px;
        padding: 3rem;
    }
    
    .member-image {
        width: 180px;
        height: 180px;
    }
    
    .team-member.leadership .member-image {
        width: 200px;
        height: 200px;
    }
    
    /* Large Desktop About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-item {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Large Desktop Form */
    .contact-form {
        padding: 3.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.3rem;
        font-size: 1.15rem;
    }
    
    .submit-btn {
        padding: 1.3rem 3rem;
        font-size: 1.15rem;
    }
    
    /* Large Desktop Grid Improvements */
    .destinations-grid,
    .departures-grid,
    .blog-grid,
    .team-grid {
        gap: 3rem;
    }
    
    .services-grid {
        gap: 3rem;
    }
    
    .about-content {
        gap: 5rem;
    }
    
    .book-flight-content {
        gap: 4rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 3.5rem;
    }
    
    /* Enhanced Desktop Styles */
    .hero {
        height: 100vh;
        min-height: 800px;
    }
    
    .center-focused-slider {
        padding: 3rem 2.5rem;
    }
    
    .slider-controls {
        padding: 0 3rem;
    }
    
    .prev-btn, .next-btn {
        width: 60px;
        height: 60px;
        padding: 1.5rem;
        font-size: 1.4rem;
    }
    
    .slider-dots {
        bottom: 3.5rem;
        margin-bottom: 110px;
    }
    
    /* Desktop Cards */
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card {
        margin: 0 10px;
    }
    
    .destination-card {
        padding: 2.5rem 2.5rem;
    }
    
    .service-card {
        padding: 2.5rem 2.5rem;
    }
    
    .departure-card {
        padding: 2.5rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .departure-image {
        min-height: clamp(110px, 16vh, 180px);
    }
    
    .blog-card {
        padding: 2.5rem;
    }
    
    /* Desktop Team */
    .team-member {
        margin: 0 10px;
        padding: 2.5rem;
    }
    
    .member-image {
        width: 170px;
        height: 170px;
    }
    
    .team-member.leadership .member-image {
        width: 190px;
        height: 190px;
    }
    
    /* Desktop About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .stat-item {
        padding: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    /* Desktop Form */
    .contact-form {
        padding: 3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
    
    .submit-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* Large Tablet (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 3.2rem;
    }
    
    .center-container {
        width: 600px;
        height: 450px;
    }
    
    .side-container {
        width: 240px;
        height: 240px;
    }
    
    .nav-search-container .search-box {
        min-width: 280px;
    }
    
    /* Enhanced Large Tablet Styles */
    .hero {
        height: 100vh;
        min-height: 750px;
    }
    
    .center-focused-slider {
        padding: 2.5rem 2rem;
    }
    
    .slider-controls {
        padding: 0 2.5rem;
    }
    
    .prev-btn, .next-btn {
        width: 58px;
        height: 58px;
        padding: 1.3rem;
        font-size: 1.35rem;
    }
    
    .slider-dots {
        bottom: 3rem;
        margin-bottom: 100px;
    }
    
    /* Large Tablet Cards */
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card {
        margin: 0 8px;
    }
    
    .destination-card {
        padding: 2.5rem 2.2rem;
    }
    
    .service-card {
        padding: 2.5rem 2.2rem;
    }
    
    .departure-card {
        padding: 2.2rem;
        max-width: 850px;
        margin: 0 auto;
    }
    
    .departure-image {
        min-height: clamp(105px, 15vh, 170px);
    }
    
    .blog-card {
        padding: 2.2rem;
    }
    
    /* Large Tablet Team */
    .team-member {
        margin: 0 8px;
        padding: 2.2rem;
    }
    
    .member-image {
        width: 160px;
        height: 160px;
    }
    
    .team-member.leadership .member-image {
        width: 180px;
        height: 180px;
    }
    
    /* Large Tablet About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Large Tablet Form */
    .contact-form {
        padding: 2.8rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.1rem;
        font-size: 1.05rem;
    }
    
    .submit-btn {
        padding: 1.1rem 2.2rem;
        font-size: 1.05rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 25px;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .center-container {
        width: 500px;
        height: 400px;
    }
    
    .side-container {
        width: 200px;
        height: 200px;
    }
    
    .nav-search-container .search-box {
        min-width: 250px;
    }
    
    .destinations-grid,
    .departures-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .book-flight-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Enhanced Tablet Styles */
    .hero {
        height: 100vh;
        min-height: 700px;
    }
    
    .center-focused-slider {
        padding: 2rem 1.5rem;
    }
    
    .slider-controls {
        padding: 0 2rem;
    }
    
    .prev-btn, .next-btn {
        width: 55px;
        height: 55px;
        padding: 1.2rem;
        font-size: 1.3rem;
    }
    
    .slider-dots {
        bottom: 2.5rem;
        margin-bottom: 90px;
    }
    
    /* Tablet Cards */
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card {
        margin: 0 5px;
    }
    
    .destination-card {
        padding: 2.5rem 2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .departure-card {
        padding: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .departure-image {
        min-height: clamp(100px, 14vh, 160px);
    }
    
    .blog-card {
        padding: 2rem;
    }
    
    /* Tablet Team */
    .team-member {
        margin: 0 5px;
        padding: 2rem;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
    
    .team-member.leadership .member-image {
        width: 170px;
        height: 170px;
    }
    
    /* Tablet About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .stat-item {
        padding: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Tablet Form */
    .contact-form {
        padding: 2.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    .nav-search-container {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
        letter-spacing: 0.5px;
        color: white !important;
    }
    
    .destinations .section-title::after,
    .about .section-title::after,
    .fixed-departures .section-title::after,
    .services .section-title::after,
    .blog .section-title::after,
    .book-flight .section-title::after {
        width: 70px;
        height: 3.5px;
        bottom: -12px;
    }
    
    /* Center Focused Slider Responsive */
    .center-focused-slider {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        height: 100vh;
        padding: 2rem 1rem;
        position: relative;
    }
    
    .side-container {
        width: 180px;
        height: 180px;
        position: relative;
        left: auto;
        right: auto;
        transform: none;
    }
    
    .side-container.left-container {
        left: 10%;
        transform: scale(0.8);
    }
    
    .side-container.right-container {
        right: 10%;
        transform: scale(0.8);
    }
    
    .side-container.active {
        left: 50%;
        right: auto;
        transform: translateX(-50%) scale(1);
    }
    
    .center-container {
        width: 100%;
        max-width: 450px;
        height: 350px;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    
    .destinations-grid,
    .departures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .book-flight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-features {
        gap: 0.6rem;
    }
    
    .service-features span {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .prev-btn, .next-btn {
        padding: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Enhanced Mobile Hero Section */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .slider-dots {
        bottom: 2rem;
        margin-bottom: 80px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    /* Mobile Destination Cards */
    .destination-card {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .country-name {
        font-size: 1.2rem;
    }
    
    /* Mobile Cities - Fully Responsive */
    .cities {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
        position: relative;
        z-index: 2;
    }
    
    .cities a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        color: #de4185;
        background: rgba(255, 255, 255, 0.95);
        text-decoration: none;
        padding: 0.6rem 1rem;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.85rem;
        box-shadow: 0 3px 12px rgba(70, 44, 97, 0.15);
        transition: all 0.3s ease;
        border: 2px solid rgba(70, 44, 97, 0.15);
        min-height: 44px;
        min-width: 80px;
        text-align: center;
        backdrop-filter: blur(10px);
    }
    
    .cities a i {
        font-size: 0.9em;
        opacity: 0.8;
        color: #de4185;
    }
    
    .cities a:hover {
        background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        color: white;
        border-color: #0f3460;
        box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
        transform: translateY(-2px) scale(1.05);
    }
    
    .cities a:active {
        transform: translateY(0) scale(1.02);
    }
    
    /* Mobile Cities Touch Optimizations */
    .cities a:focus {
        outline: 2px solid rgba(222, 65, 133, 0.5);
        outline-offset: 2px;
    }
    
    .cities a:focus-visible {
        outline: 2px solid rgba(222, 65, 133, 0.8);
        outline-offset: 3px;
    }
    
    /* Mobile Cities Loading States */
    .cities a.loading {
        opacity: 0.7;
        pointer-events: none;
    }
    
    .cities a.loading::after {
        content: '';
        width: 12px;
        height: 12px;
        border: 2px solid transparent;
        border-top: 2px solid currentColor;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin-left: 0.3rem;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* Destination Hero Centering - For Both PC and Mobile */
    .city-hero,
    .destination-hero {
        height: 70vh;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .city-hero::before,
    .destination-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }
    
    .city-hero .container,
    .destination-hero .container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    .city-hero h1,
    .destination-hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        animation: slideInFromLeft 1s ease-out;
        line-height: 1.2;
        letter-spacing: -0.02em;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .city-hero p,
    .destination-hero p {
        font-size: 1.3rem;
        font-weight: 400;
        color: #f0f0f0;
        line-height: 1.5;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        animation: slideInFromLeft 1s ease-out 0.2s both;
        letter-spacing: 0.01em;
        word-wrap: break-word;
    }
    
    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Mobile Hero Responsive Styles */
    @media (max-width: 767px) {
        .city-hero,
        .destination-hero {
            height: 60vh;
            padding: 2rem 1rem;
        }
        
        .city-hero h1,
        .destination-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
            padding: 0 1rem;
        }
        
        .city-hero p,
        .destination-hero p {
            font-size: 1.1rem;
            max-width: 100%;
            padding: 0 1rem;
        }
    }
    
    @media (max-width: 575px) {
        .city-hero,
        .destination-hero {
            height: 55vh;
            padding: 1.5rem 0.8rem;
        }
        
        .city-hero h1,
        .destination-hero h1 {
            font-size: 2.2rem;
            margin-bottom: 0.6rem;
            padding: 0 0.8rem;
        }
        
        .city-hero p,
        .destination-hero p {
            font-size: 1rem;
            padding: 0 0.8rem;
        }
    }
    
    @media (max-width: 480px) {
        .city-hero,
        .destination-hero {
            height: 50vh;
            padding: 1.2rem 0.5rem;
        }
        
        .city-hero h1,
        .destination-hero h1 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            padding: 0 0.5rem;
        }
        
        .city-hero p,
        .destination-hero p {
            font-size: 0.95rem;
            padding: 0 0.5rem;
        }
    }
    
    @media (max-width: 360px) {
        .city-hero,
        .destination-hero {
            height: 45vh;
            padding: 1rem 0.3rem;
        }
        
        .city-hero h1,
        .destination-hero h1 {
            font-size: 1.8rem;
            margin-bottom: 0.4rem;
            padding: 0 0.3rem;
        }
        
        .city-hero p,
        .destination-hero p {
            font-size: 0.9rem;
            padding: 0 0.3rem;
        }
    }
    
    /* FAQ Section Styles - For Both PC and Mobile */
    .faq-item {
        margin-bottom: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .faq-item:hover {
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .faq-question {
        position: relative;
        padding: 1.2rem 1.5rem;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
        user-select: none;
    }
    
    .faq-question:hover {
        background: rgba(255, 255, 255, 0.12);
        color: #f0f0f0;
    }
    
    .faq-question::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 1.2rem;
        color: #de4185;
        transition: all 0.3s ease;
        transform: rotate(0deg);
    }
    
    .faq-question.active::after {
        transform: rotate(180deg);
        color: #ffffff;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.03);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        padding: 0 1.5rem;
    }
    
    .faq-answer.active {
        max-height: 200px;
        opacity: 1;
        padding: 1.2rem 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .faq-answer p {
        color: #e0e0e0;
        line-height: 1.6;
        margin: 0;
        font-size: 1rem;
    }
    
    /* Mobile FAQ Optimizations */
    @media (max-width: 767px) {
        .faq-item {
            margin-bottom: 0.8rem;
            border-radius: 10px;
        }
        
        .faq-question {
            padding: 1rem 1.2rem;
            font-size: 1rem;
        }
        
        .faq-question::after {
            font-size: 1.1rem;
        }
        
        .faq-answer {
            padding: 0 1.2rem;
        }
        
        .faq-answer.active {
            padding: 1rem 1.2rem;
            max-height: 150px;
        }
        
        .faq-answer p {
            font-size: 0.95rem;
        }
    }
    
    @media (max-width: 480px) {
        .faq-item {
            margin-bottom: 0.6rem;
            border-radius: 8px;
        }
        
        .faq-question {
            padding: 0.9rem 1rem;
            font-size: 0.95rem;
        }
        
        .faq-question::after {
            font-size: 1rem;
        }
        
        .faq-answer {
            padding: 0 1rem;
        }
        
        .faq-answer.active {
            padding: 0.9rem 1rem;
            max-height: 120px;
        }
        
        .faq-answer p {
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 360px) {
        .faq-question {
            padding: 0.8rem 0.9rem;
            font-size: 0.9rem;
        }
        
        .faq-question::after {
            font-size: 0.9rem;
        }
        
        .faq-answer.active {
            padding: 0.8rem 0.9rem;
            max-height: 100px;
        }
        
        .faq-answer p {
            font-size: 0.85rem;
        }
    }
    
    /* Mobile Service Cards */
    .service-card {
        margin: 0 10px;
    }
    
    /* Mobile Blog Cards */
    .blog-card {
        margin: 0 10px;
    }
    
    .blog-content {
        padding: 2rem 1.5rem;
    }
    
    /* Mobile Team Grid */
    .team-member {
        margin: 0 10px;
    }
    
    .member-image {
        width: 140px;
        height: 140px;
    }
    
    .team-member.leadership .member-image {
        width: 160px;
        height: 160px;
    }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) and (min-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .center-container {
        width: 100%;
        height: 300px;
        margin: 0 10px;
    }
    
    .side-container {
        width: 140px;
        height: 140px;
    }
    
    .side-container.left-container {
        left: 5%;
    }
    
    .side-container.right-container {
        right: 5%;
    }
    
    .destinations-grid,
    .departures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .destination-card {
        padding: 2rem 1.5rem;
    }
    
    /* Mobile Medium Cities */
    .cities {
        gap: 0.7rem;
        margin-top: 1.3rem;
        padding: 0 0.4rem;
    }
    
    .cities a {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
        min-width: 75px;
        min-height: 42px;
    }
    
    .cities a i {
        font-size: 0.85em;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .departure-card {
        padding: 1.5rem;
    }
    
    .blog-card {
        padding: 1.5rem;
    }
    
    /* Enhanced Mobile Medium Styles */
    .hero {
        min-height: 500px;
    }
    
    .center-focused-slider {
        padding: 1.5rem 0.5rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        padding: 0.8rem;
        font-size: 1.1rem;
    }
    
    .slider-dots {
        bottom: 1.5rem;
        margin-bottom: 60px;
        gap: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Mobile Medium Cards */
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card {
        margin: 0 5px;
        border-radius: 20px;
    }
    
    .country-name {
        font-size: 1.1rem;
    }
    
    .cities a {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Mobile Medium Team */
    .team-member {
        margin: 0 5px;
        padding: 1.5rem;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
    
    .team-member.leadership .member-image {
        width: 140px;
        height: 140px;
    }
    
    /* Mobile Medium About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.3;
        text-align: center;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .center-container {
        width: 100%;
        height: 250px;
        margin: 0 5px;
    }
    
    .side-container {
        width: 120px;
        height: 120px;
    }
    
    .side-container.left-container {
        left: 2%;
    }
    
    .side-container.right-container {
        right: 2%;
    }
    
    .destinations-grid,
    .departures-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destination-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .departure-card {
        padding: 1rem;
    }
    
    .blog-card {
        padding: 1rem;
    }
    
    /* Mobile Small Cities */
    .cities {
        gap: 0.6rem;
        margin-top: 1.2rem;
        padding: 0 0.3rem;
    }
    
    .cities a {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-width: 70px;
        min-height: 40px;
        border-radius: 20px;
    }
    
    .cities a i {
        font-size: 0.8em;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .book-flight-content {
        gap: 1.5rem;
    }
    
    .nav-logo .logo-image {
        height: clamp(30px, 3.5vw, 40px);
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    /* Enhanced Mobile Small Styles */
    .hero {
        min-height: 450px;
    }
    
    .center-focused-slider {
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        padding: 0.6rem;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 1rem;
        margin-bottom: 40px;
        gap: 0.8rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Mobile Small Cards */
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card {
        margin: 0 2px;
        border-radius: 18px;
    }
    
    .country-name {
        font-size: 1rem;
    }
    
    .cities {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    
    .cities a {
        padding: 0.3rem 0.7rem;
        font-size: 0.8rem;
    }
    
    /* Mobile Small Team */
    .team-member {
        margin: 0 2px;
        padding: 1rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .team-member.leadership .member-image {
        width: 120px;
        height: 120px;
    }
    
    .team-member h4 {
        font-size: 1.2rem;
    }
    
    .position {
        font-size: 0.9rem;
    }
    
    .member-bio {
        font-size: 0.8rem;
    }
    
    /* Mobile Small About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
        min-height: 110px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
        text-align: center;
    }
    
    /* Mobile Small Form Elements */
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile Small Footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section {
        padding: 1rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }
    
    .center-container {
        height: 60vh;
        width: 70vw;
    }
    
    .side-container {
        width: 15vh;
        height: 15vh;
    }
    
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

/* Portrait Mobile Orientation */
@media (max-width: 767px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
    }
    
    .center-focused-slider {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        height: 100vh;
        padding: 2rem 1rem;
    }
    
    .side-container {
        width: 180px;
        height: 180px;
        margin: 0.5rem;
    }
    
    .center-container {
        width: 100%;
        max-width: 450px;
        height: 350px;
        margin: 1rem 0;
    }
    
    .slider-controls {
        position: relative;
        top: auto;
        transform: none;
        padding: 1rem;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .slider-dots {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 1rem 0;
        justify-content: center;
    }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 767px), 
       (min-resolution: 192dpi) and (max-width: 767px) {
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card,
    .team-member {
        box-shadow: 0 8px 25px rgba(70, 44, 97, 0.15);
    }
}

/* Blog Mobile Responsive */
@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .blog-card {
        min-height: 350px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-header h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 767px) {
    .hero::before,
    .hero::after,
    .destinations::after,
    .fixed-departures::after,
    .services::after,
    .blog::after,
    .book-flight::after,
    .about::after,
    .footer::before {
        animation: none;
        opacity: 0.1;
    }
    
    .destination-card:hover,
    .service-card:hover,
    .departure-card:hover,
    .blog-card:hover,
    .team-member:hover {
        transform: none;
        transition: none;
    }
    
    .cities a:hover {
        transform: none;
        transition: none;
    }
}

/* Mobile Accessibility Improvements */
@media (max-width: 767px) {
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-nav-link {
        min-height: 44px;
        padding: 1rem 1.5rem;
    }
    
    .mobile-search-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .mobile-search {
        padding: 0 1rem 1.5rem;
    }
    
    .mobile-search-box {
        border-radius: 20px;
    }
    
    .mobile-search-input {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .mobile-search-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .prev-btn, .next-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .dot {
        min-width: 12px;
        min-height: 12px;
    }
    
    .cities a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .book-btn {
        min-height: 44px;
        padding: 1rem 2rem;
    }
    
    .submit-btn {
        min-height: 44px;
        padding: 1rem 2rem;
    }
    
    /* Mobile About Us Section Enhancements */
    .about-intro {
        padding: 0 1rem;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
    }
    
    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.95);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1rem;
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        text-align: center;
        transition: all 0.3s ease;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        margin-bottom: 0.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
    
    /* Mobile Team Showcase Enhancements */
    .team-showcase {
        margin-top: 3rem;
        padding: 0 1rem;
    }
    
    .team-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .team-member {
        padding: 2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(70, 44, 97, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(70, 44, 97, 0.25);
        border-color: rgba(70, 44, 97, 0.3);
    }
    
    .team-member.leadership {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 255, 0.95) 100%);
        border-color: rgba(70, 44, 97, 0.4);
        box-shadow: 0 20px 50px rgba(70, 44, 97, 0.2);
    }
    
    .team-member.leadership:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(70, 44, 97, 0.3);
        border-color: rgba(70, 44, 97, 0.5);
    }
    
    .member-image {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 1.5rem;
        border: 4px solid #462c61;
        transition: all 0.3s ease;
        position: relative;
        box-shadow: 0 8px 25px rgba(70, 44, 97, 0.3);
    }
    
    .team-member.leadership .member-image {
        width: 160px;
        height: 160px;
        border-width: 5px;
        border-color: #462c61;
        box-shadow: 0 10px 30px rgba(70, 44, 97, 0.4);
    }
    
    .team-member:hover .member-image {
        transform: scale(1.1);
        border-color: #de4185;
        box-shadow: 0 12px 35px rgba(70, 44, 97, 0.4);
    }
    
    .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .team-member:hover .member-image img {
        transform: scale(1.1);
    }
    
    .member-info {
        margin-top: 1rem;
    }
    
    .team-member h4 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.8rem;
        transition: color 0.3s ease;
    }
    
    .team-member.leadership h4 {
        font-size: 1.6rem;
        color: #462c61;
    }
    
    .team-member:hover h4 {
        color: #de4185;
    }
    
    .position {
        color: #462c61;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }
    
    .team-member.leadership .position {
        color: #de4185;
        font-weight: 700;
    }
    
    .team-member:hover .position {
        color: #de4185;
    }
    
    .member-bio {
        color: #7f8c8d;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 0.8rem;
        font-style: italic;
        transition: color 0.3s ease;
    }
    
    .team-member:hover .member-bio {
        color: #5a6c7d;
    }
    
    /* Mobile Social Links Enhancement */
    .member-social {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(70, 44, 97, 0.9);
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        opacity: 0;
        transform: translateY(100%);
        transition: all 0.3s ease;
        border-radius: 0 0 50% 50%;
    }
    
    .member-image:hover .member-social {
        opacity: 1;
        transform: translateY(0);
    }
    
    .member-social a {
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .member-social a:hover {
        color: #de4185;
        transform: scale(1.2);
        background: rgba(255, 255, 255, 0.3);
    }
    
    /* Hide social media for specific team members on mobile (except Srijan, Dristi, and Bipan) */
    .team-member:not([data-member="srijan"]):not([data-member="dristi"]):not([data-member="bipan"]) .member-social {
        display: none !important;
    }
    
    /* Mobile Card Enhancements */
    .destination-card .card-background {
        border-radius: 25px;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 2rem;
        box-shadow: 0 10px 30px rgba(70, 44, 97, 0.2);
    }
    
    .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
        color: #2c3e50;
    }
    
    .service-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        color: #5a6c7d;
    }
    
    .service-features {
        gap: 1rem;
    }
    
    .service-features span {
        font-size: 1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(70, 44, 97, 0.1);
    }
    
    .service-features i {
        background: rgba(39, 174, 96, 0.15);
        padding: 0.4rem;
        border-radius: 50%;
        min-width: 24px;
        text-align: center;
        color: #27ae60;
    }
    
    /* Mobile Blog Enhancements */
    .blog-category {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
        border-radius: 20px;
        font-weight: 700;
        letter-spacing: 0.6px;
    }
    
    .blog-header h3 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        color: #2c3e50;
    }
    
    .blog-meta {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .blog-meta span {
        font-size: 0.95rem;
        color: #7f8c8d;
    }
    
    .blog-excerpt {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
        color: #5a6c7d;
    }
    
    .blog-footer {
        padding-top: 2rem;
        border-top: 2px solid #f8f9fa;
    }
    
    .read-time {
        font-size: 0.9rem;
        color: #7f8c8d;
    }
    
    /* Read-more button styles moved to main responsive section */
    
    /* Mobile Departure Card Enhancements */
    .departure-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }
    
    .flight-number {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
        border-radius: 20px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .departure-details {
        margin-bottom: 2.5rem;
    }
    
    .detail-item {
        margin-bottom: 1rem;
        font-size: 1rem;
        color: #5a6c7d;
    }
    
    .detail-item i {
        color: #462c61;
        width: 18px;
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.6rem;
        font-weight: 700;
        color: #27ae60;
        margin-bottom: 0.5rem;
    }
    
    .price-note {
        font-size: 0.9rem;
        color: #7f8c8d;
        font-weight: 500;
    }
    
    /* Mobile Contact Form Enhancements */
    .contact-info h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 15px;
        border: 1px solid rgba(70, 44, 97, 0.1);
    }
    
    .contact-item i {
        color: #462c61;
        font-size: 1.3rem;
        width: 24px;
    }
    
    .contact-item p {
        color: #5a6c7d;
        font-size: 1rem;
        font-weight: 500;
    }
    
    /* Mobile Map Enhancements */
    .map-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        margin-bottom: 2rem;
    }
    
    /* Mobile Success Message Enhancements */
    .success-message {
        margin: 2rem 1.5rem 0;
        border-radius: 25px;
        padding: 2.5rem;
    }
    
    .success-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: white;
    }
    
    .success-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
    }
    
    /* Mobile Partner Booking Enhancements */
    .partner-booking {
        margin: 0 1.5rem;
        border-radius: 25px;
        padding: 2.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 50px rgba(70, 44, 97, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .partner-booking h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    
    .partner-booking p {
        font-size: 1.05rem;
        color: #5a6c7d;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .partner-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(70, 44, 97, 0.3);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .destinations .section-title,
    .about .section-title,
    .fixed-departures .section-title,
    .services .section-title,
    .blog .section-title,
    .book-flight .section-title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-search-container,
    .slider-controls,
    .slider-dots {
        display: none;
    }
    
    .hero {
        height: auto;
        page-break-after: avoid;
    }
    
    .destinations,
    .fixed-departures,
    .services,
    .blog,
    .book-flight,
    .about {
        page-break-inside: avoid;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card {
        cursor: default;
    }
    
    .destination-card:hover,
    .service-card:hover,
    .departure-card:hover,
    .blog-card:hover {
        transform: none;
    }
    
    .cities a:hover {
        transform: none;
    }
    
    .search-btn:hover {
        transform: none;
    }
    
    .nav-search-container .search-btn:hover {
        transform: none;
    }
    
    /* Touch-friendly button sizes */
    .search-btn,
    .nav-search-container .search-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .cities a {
        min-height: 44px;
        padding: 0.8rem 1.5rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 767px) {
    /* Hide desktop navigation elements on mobile */
    .nav-menu,
    .nav-search-container {
        display: none !important;
    }
    
    /* Improve mobile navigation */
    .navbar {
        padding: 0.8rem 0;
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
    }
    
    /* White navbar on mobile for non-home pages */
    .navbar.white-navbar {
        background: white;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-logo .logo-image {
        height: clamp(35px, 3.8vw, 45px);
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: white;
        border-radius: 16px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-toggle::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        border-radius: 16px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-toggle:hover::before {
        opacity: 1;
    }
    
    .nav-toggle:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        border-color: rgba(70, 44, 97, 0.5);
        background: #f8f8f8;
    }
    
    .nav-toggle:active {
        transform: translateY(0) scale(1.02);
    }
    
    .nav-toggle span {
        background: #462c61;
        width: 24px;
        height: 2.5px;
        border-radius: 2px;
        margin: 2px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .nav-toggle span:nth-child(1) {
        transform: translateY(0) rotate(0deg);
    }
    
    .nav-toggle span:nth-child(2) {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    
    .nav-toggle span:nth-child(3) {
        transform: translateY(0) rotate(0deg);
    }
    
    /* Active state for menu button */
    .nav-toggle.active {
        background: #f0f0f0;
        border-color: rgba(70, 44, 97, 0.3);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Mobile hero improvements - Complete redesign */
    .hero {
        min-height: 100vh;
        padding-top: 160px;
        overflow: hidden;
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
        position: relative;
    }
    
    /* Background decorative elements */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%);
        pointer-events: none;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* Animated floating elements */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 2px),
            radial-gradient(circle at 80% 70%, rgba(233, 69, 96, 0.15) 0%, transparent 3px),
            radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 2px),
            radial-gradient(circle at 90% 20%, rgba(83, 52, 131, 0.12) 0%, transparent 2px),
            radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 2px),
            radial-gradient(circle at 70% 40%, rgba(233, 69, 96, 0.1) 0%, transparent 3px);
        background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px, 220px 220px;
        animation: floatingElements 25s linear infinite;
        pointer-events: none;
        opacity: 0.7;
    }
    
    @keyframes backgroundShift {
        0%, 100% {
            opacity: 0.7;
            transform: scale(1);
        }
        50% {
            opacity: 0.9;
            transform: scale(1.05);
        }
    }
    
    @keyframes floatingElements {
        0% {
            transform: translateY(0px) translateX(0px);
        }
        25% {
            transform: translateY(-10px) translateX(5px);
        }
        50% {
            transform: translateY(-5px) translateX(-8px);
        }
        75% {
            transform: translateY(-15px) translateX(3px);
        }
        100% {
            transform: translateY(0px) translateX(0px);
        }
    }
    
    /* Mobile Page Title */
    .mobile-page-title {
        text-align: center;
        margin-bottom: 2rem;
        z-index: 2;
        position: relative;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        animation: titleContainerFloat 6s ease-in-out infinite;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    

    
    @keyframes titleContainerFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        50% {
            transform: translateY(-10px) rotate(0.5deg);
        }
    }
    
    .main-title {
        font-size: 3.2rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 30%, #e6f3ff 60%, #ffd700 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        letter-spacing: -1px;
        line-height: 1.1;
        position: relative;
        animation: titleGlow 3s ease-in-out infinite alternate;
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    }
    
    .main-title::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -10px;
        right: -10px;
        bottom: -5px;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(222, 65, 133, 0.05));
        border-radius: 15px;
        z-index: -1;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .main-title:hover::before {
        opacity: 1;
        transform: scale(1.02);
    }
    
    .main-title:hover {
        transform: scale(1.02);
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7)) 
                drop-shadow(0 0 50px rgba(255, 215, 0, 0.6));
    }
    
    @keyframes titleGlow {
        0% {
            filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4)) 
                    drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
        }
        100% {
            filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)) 
                    drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
        }
    }
    
    .subtitle {
        font-size: 1.6rem;
        color: #ffffff;
        font-weight: 700;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: 0.5px;
        line-height: 1.4;
        position: relative;
        animation: subtitleFloat 4s ease-in-out infinite;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    }
    
    .subtitle::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #ffffff, #de4185, #ffffff);
        border-radius: 2px;
        animation: underlineExpand 2s ease-in-out infinite;
    }
    
    @keyframes subtitleFloat {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-5px);
        }
    }
    
    @keyframes underlineExpand {
        0%, 100% {
            width: 0;
            opacity: 0;
        }
        50% {
            width: 80%;
            opacity: 1;
        }
    }
    
    /* Mobile Slider - Complete Redesign */
    .center-focused-slider {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        height: calc(100vh - 160px);
        padding: 3rem 1.5rem 2rem;
        position: relative;
        z-index: 2;
    }
    
    /* Hide side containers on mobile - they don't work well */
    .side-container {
        display: none !important;
    }
    
    /* Mobile Main Slider Container */
    .center-container {
        position: relative;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 100%;
        height: 70vh;
        margin: 0;
        border-radius: 30px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        border: 4px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
    }
    
    /* Mobile Slider Images */
    .main-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform: scale(1.05);
    }
    
    .main-slide.active {
        opacity: 1;
        transform: scale(1);
    }
    
    .main-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
        filter: brightness(0.95) contrast(1.05) saturate(1.05);
        transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    /* Mobile Slider Controls - Hidden (Dots Only) */
    .slider-controls {
        display: none;
    }
    
    .prev-btn, .next-btn {
        display: none;
    }
    
    /* Mobile Slider Dots - Clean Design */
    .slider-dots {
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 1rem;
        z-index: 10;
    }
    
    .dot {
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot:hover {
        background: rgba(255, 255, 255, 0.7);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }
    
    .dot.active {
        background: white;
        border-color: rgba(255, 255, 255, 0.9);
        transform: scale(1.4);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
    
    /* Mobile Slider Content Overlay */
    .slider-content-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.9) 100%);
        padding: 4rem 2.5rem 2.5rem;
        color: white;
        text-align: center;
        border-radius: 0 0 30px 30px;
        z-index: 5;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .slider-title {
        font-size: 2rem;
        font-weight: 900;
        margin-bottom: 1rem;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
        letter-spacing: -0.5px;
        line-height: 1.1;
        background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.2rem;
    }
    
    .slider-subtitle {
        font-size: 1.2rem;
        opacity: 0.98;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: 600;
        line-height: 1.3;
        color: #ffffff;
        letter-spacing: 0.2px;
    }
    
    /* Mobile Slider Progress Bar */
    .slider-progress {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        z-index: 10;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
    }
    
    .slider-progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
        width: 0%;
        transition: width 0.1s linear;
        border-radius: 20px 20px 0 0;
    }
    
    /* Mobile Slider Dots - Repositioned below images */
    .slider-dots {
        position: absolute;
        bottom: -3rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 1rem;
        z-index: 15;
    }
    
    /* Mobile Slider Touch Gestures */
    .center-container {
        touch-action: pan-y pinch-zoom;
    }
    
    /* Mobile Page Enhancements */
    .hero {
        position: relative;
        overflow: hidden;
    }
    
    /* Mobile Background - Clean gradient only */
    .hero::after {
        display: none;
    }
    
    /* Hide hero background image on mobile */
    .hero-background-image {
        display: none;
    }
    
    /* Hide hero::before background on mobile */
    .hero::before {
        display: none;
    }
    
    /* Mobile Slider Container Enhancements */
    .center-focused-slider {
        position: relative;
        z-index: 2;
    }
    
    /* Mobile Slider Card Glow Effect */
    .center-container::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        border-radius: 27px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .center-container:hover::before {
        opacity: 1;
    }

    /* Desktop Slider - Hide mobile elements */
    @media (min-width: 768px) {
        .slider-progress,
        .slider-content-overlay {
            display: none !important;
        }
    
    /* Restore desktop slider functionality */
    .center-focused-slider {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 0;
        height: 100vh;
        padding: 0 2rem;
    }
    
    .side-container {
        display: block !important;
        position: absolute;
        width: 500px;
        height: 500px;
    }
    
    .side-container.left-container {
        left: 25%;
        transform: translateX(-50%) scale(1.1);
    }
    
    .side-container.right-container {
        right: 25%;
        transform: translateX(50%) scale(1.1);
    }
    
    .center-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 700px;
        height: 500px;
        margin: 0;
    }
    
    .slider-controls {
        display: none;
    }
    
    .slider-dots {
        position: absolute;
        bottom: -3rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex !important;
        gap: 1rem;
        z-index: 20;
        background: rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 20px;
    }
    
    .prev-btn, .next-btn {
        display: none;
    }
    
    .dot {
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot:hover {
        background: rgba(255, 255, 255, 0.7);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }
    
    .dot.active {
        background: white;
        border-color: rgba(255, 255, 255, 0.9);
        transform: scale(1.4);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
}
    
    /* Mobile Slider Loading State */
    .slider-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 15;
    }
    
    .slider-loading-spinner {
        width: 40px;
        height: 40px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top: 3px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* Mobile Slider Responsive Adjustments */
    @media (max-width: 480px) {
        .center-container {
            height: 60vh;
            border-radius: 25px;
        }
        
        .slider-content-overlay {
            padding: 3rem 2rem 2rem;
        }
        
        .slider-title {
            font-size: 1.7rem;
        }
        
        .slider-subtitle {
            font-size: 1.1rem;
        }
        

        
        .slider-dots {
            bottom: -3rem;
        }
        
        .dot {
            width: 18px;
            height: 18px;
            border: 3px solid rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.6);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .hero {
            padding-top: 140px;
        }
        
        .center-focused-slider {
            padding: 2.5rem 1rem 2rem;
            gap: 2rem;
        }
        
        .main-title {
            font-size: 2.8rem;
        }
        
        .subtitle {
            font-size: 1.4rem;
        }
    }
    
    @media (max-width: 360px) {
        .center-container {
            height: 55vh;
        }
        
        .prev-btn, .next-btn {
            width: 45px;
            height: 45px;
            font-size: 1.1rem;
        }
        
        .slider-controls {
            bottom: 6px;
        }
        
        .slider-dots {
            bottom: -3rem;
        }
        
        .hero {
            padding-top: 120px;
        }
        
        .center-focused-slider {
            padding: 2rem 0.8rem 2rem;
            gap: 1.5rem;
        }
        
        .main-title {
            font-size: 2.5rem;
        }
        
        .subtitle {
            font-size: 1.3rem;
        }
        
        /* Very Small Mobile Cities */
        .cities {
            gap: 0.5rem;
            margin-top: 1rem;
            padding: 0 0.2rem;
        }
        
        .cities a {
            padding: 0.4rem 0.7rem;
            font-size: 0.7rem;
            min-width: 65px;
            min-height: 38px;
            border-radius: 18px;
        }
        
        .cities a i {
            font-size: 0.75em;
        }
    }
    
    /* Mobile Navigation Button Responsive Adjustments */
    @media (max-width: 480px) {
        .nav-toggle {
            width: 45px;
            height: 45px;
            border-radius: 14px;
        }
        
        .nav-toggle span {
            width: 22px;
            height: 2.2px;
            margin: 1.8px 0;
        }
        
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }
        
        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }
    }
    
    @media (max-width: 360px) {
        .nav-toggle {
            width: 42px;
            height: 42px;
            border-radius: 12px;
        }
        
        .nav-toggle span {
            width: 20px;
            height: 2px;
            margin: 1.5px 0;
        }
        
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(5px) rotate(45deg);
        }
        
        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-5px) rotate(-45deg);
        }
    }
    
    /* Mobile section improvements */
    .destinations,
    .fixed-departures,
    .services,
    .blog,
    .book-flight,
    .about {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.8rem !important;
        margin-bottom: 2rem;
        padding: 0 1rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 2rem;
        line-height: 1.6;
    }
    
    /* Mobile grid improvements */
    .destinations-grid,
    .departures-grid,
    .services-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    /* Mobile book-flight improvements */
    .book-flight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        margin-top: 2rem;
        justify-items: center;
        align-items: center;
    }
    
    .book-flight .section-title {
        margin-bottom: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    /* Mobile map section improvements */
    .map-section {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .map-container {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
    }
    
    .map-container iframe {
        width: 100% !important;
        height: 300px !important;
        border: 0;
        display: block;
        margin: 0 auto;
    }
    
    /* Mobile contact info improvements */
    .contact-info {
        width: 100%;
        max-width: 100%;
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .contact-item i {
        color: #462c61;
        font-size: 1.2rem;
        width: 20px;
        flex-shrink: 0;
    }
    
    .contact-item p {
        margin: 0;
        text-align: center;
        flex: 1;
    }
    
    /* Mobile form section improvements */
    .form-section {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
    }
    
    /* Additional mobile book-flight enhancements */
    .book-flight .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 1rem;
    }
    
    .book-flight .section-title {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    .book-flight .section-subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    /* Ensure maps are properly centered and visible */
    .map-container {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin: 0 auto !important;
    }
    
    /* Mobile form improvements */
    .form-group {
        text-align: left;
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }
    
    .submit-btn {
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    /* Mobile card improvements */
    .destination-card,
    .service-card,
    .departure-card,
    .blog-card,
    .team-member {
        margin: 0;
        border-radius: 25px;
        box-shadow: 0 15px 35px rgba(70, 44, 97, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .destination-card:hover,
    .service-card:hover,
    .departure-card:hover,
    .blog-card:hover,
    .team-member:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(70, 44, 97, 0.25);
    }
    
    .destination-card {
        padding: 2.5rem 2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(20px);
    }
    
    .service-card {
        padding: 2.5rem 2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(20px);
    }
    
    .departure-card {
        padding: 2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(20px);
    }
    
    .blog-card {
        padding: 2.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(25px);
        border-radius: 25px;
        box-shadow: 0 15px 40px rgba(70, 44, 97, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .blog-card::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
        border-radius: 27px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .blog-card:hover::before {
        opacity: 1;
    }
    
    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(70, 44, 97, 0.25);
        border-color: rgba(70, 44, 97, 0.2);
    }
    
    /* Mobile Blog Section - Enhanced (Mobile Only) */
    @media (max-width: 767px) {
        .blog {
            padding: 5rem 0;
            background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a8a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
            position: relative;
            overflow: hidden;
        }
        
        .blog::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
                radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%);
            pointer-events: none;
            animation: backgroundShift 20s ease-in-out infinite;
        }
        
        .blog .section-title {
            color: white !important;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
            font-size: 2.8rem !important;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 900;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 2;
        }
        
        .blog .section-subtitle {
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            font-size: 1.3rem;
            margin-bottom: 3.5rem;
            text-align: center;
            font-weight: 600;
            line-height: 1.4;
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 2rem;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
        }
        
        /* Mobile Blog Card - Fully Responsive */
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-height: auto;
            display: flex;
            flex-direction: column;
            margin: 0;
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        /* Mobile Blog Image */
        .blog-card .blog-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        
        .blog-card .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        /* Mobile Blog Category Badge */
        .blog-card .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(70, 44, 97, 0.9);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 3;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(70, 44, 97, 0.3);
        }
        
        /* Mobile Blog Content */
        .blog-card .blog-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card .blog-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.3;
            letter-spacing: -0.2px;
        }
        
        /* Mobile Blog Meta */
        .blog-card .blog-meta {
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            margin-bottom: 1rem;
            padding: 0.8rem;
            background: rgba(70, 44, 97, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(70, 44, 97, 0.1);
        }
        
        .blog-card .blog-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #5a6c7d;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .blog-card .blog-meta .meta-item i {
            color: #de4185;
            font-size: 0.9rem;
            width: 18px;
            text-align: center;
        }
        
        /* Mobile Blog Excerpt */
        .blog-card .blog-excerpt {
            color: #5a6c7d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            font-weight: 400;
            flex: 1;
        }
        
        /* Mobile Blog Footer */
        .blog-card .blog-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        
        .blog-card .read-more-btn {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: linear-gradient(90deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            text-decoration: none;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
            border: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            flex: 1;
        }
        
        .blog-card .read-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
            background: linear-gradient(90deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
        }
        
    }
    
    /* Extra Small Mobile Blog Optimizations */
    @media (max-width: 480px) {
        .blog {
            padding: 3rem 0;
        }
        
        .blog .section-title {
            font-size: 2.2rem !important;
            margin-bottom: 1rem;
            padding: 0 1rem;
        }
        
        .blog .section-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            padding: 0 1rem;
        }
        
        .blog-grid {
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding: 0 0.8rem;
        }
        
        .blog-card .blog-image {
            height: 180px;
        }
        
        .blog-card .blog-content {
            padding: 1.2rem;
        }
        
        .blog-card .blog-header h3 {
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }
        
        .blog-card .blog-meta {
            padding: 0.6rem;
            gap: 0.5rem;
        }
        
        .blog-card .blog-meta .meta-item {
            font-size: 0.8rem;
            gap: 0.5rem;
        }
        
        .blog-card .blog-excerpt {
            font-size: 0.85rem;
            margin-bottom: 1.2rem;
        }
        
        .blog-card .read-more-btn {
            padding: 0.7rem 1.2rem;
            font-size: 0.8rem;
        }
    }
    
    /* Very Small Mobile Blog Optimizations */
    @media (max-width: 360px) {
        .blog {
            padding: 2.5rem 0;
        }
        
        .blog .section-title {
            font-size: 2rem !important;
            padding: 0 0.8rem;
        }
        
        .blog .section-subtitle {
            font-size: 1rem;
            margin-bottom: 2rem;
            padding: 0 0.8rem;
        }
        
        .blog-grid {
            gap: 1.2rem;
            margin-top: 1.2rem;
            padding: 0 0.5rem;
        }
        
        .blog-card .blog-image {
            height: 160px;
        }
        
        .blog-card .blog-content {
            padding: 1rem;
        }
        
        .blog-card .blog-header h3 {
            font-size: 1.1rem;
            margin-bottom: 0.7rem;
        }
        
        .blog-card .blog-meta {
            padding: 0.5rem;
            gap: 0.4rem;
        }
        
        .blog-card .blog-meta .meta-item {
            font-size: 0.75rem;
            gap: 0.4rem;
        }
        
        .blog-card .blog-excerpt {
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }
        
        .blog-card .read-more-btn {
            padding: 0.6rem 1rem;
            font-size: 0.75rem;
        }
    }
}
    
    /* Desktop Blog Section - Enhanced Modern Design with Better Content Distribution */
    @media (min-width: 768px) {
        .blog {
            padding: 6rem 0;
            background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
            position: relative;
            overflow: hidden;
        }
        
        .blog::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .blog .section-title {
            color: white !important;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            font-size: 3.5rem !important;
            margin-bottom: 2rem;
            text-align: center;
            font-weight: 900;
            letter-spacing: -1px;
            position: relative;
            z-index: 2;
        }
        
        .blog .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
            font-size: 1.4rem;
            margin-bottom: 4rem;
            text-align: center;
            font-weight: 500;
            line-height: 1.5;
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3.5rem;
            margin-top: 4rem;
            position: relative;
            z-index: 2;
        }
        
        .blog-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border-radius: 35px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transform: translateY(0);
            min-height: 600px;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: 37px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .blog-card:hover::before {
            opacity: 1;
        }
        
        .blog-card:hover {
            transform: translateY(-25px) scale(1.03);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        .blog-image {
            height: 320px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.15);
        }
        
        .blog-category {
            position: absolute;
            top: 25px;
            left: 25px;
            background: linear-gradient(135deg, #de4185 0%, #533483 100%);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(222, 65, 133, 0.4);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        
        .blog-content {
            padding: 3rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .blog-header {
            margin-bottom: 2rem;
        }
        
        .blog-header h3 {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            color: #1a1a2e;
            transition: color 0.4s ease;
            letter-spacing: -0.5px;
        }
        
        .blog-card:hover .blog-header h3 {
            color: #de4185;
        }
        
        .blog-meta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            color: #5a6c7d;
            font-size: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(26, 26, 46, 0.03);
            border-radius: 20px;
            border: 1px solid rgba(26, 26, 46, 0.08);
        }
        
        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 500;
        }
        
        .blog-meta i {
            color: #de4185;
            width: 18px;
            font-size: 1.1rem;
        }
        
        .blog-excerpt {
            color: #4a5568;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            font-size: 1.1rem;
            font-weight: 400;
            flex: 1;
        }
        
        .blog-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 2px solid rgba(26, 26, 46, 0.1);
            margin-top: auto;
        }
        
        .read-time {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #5a6c7d;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .read-time i {
            color: #de4185;
            font-size: 1.1rem;
        }
        
        /* Read-more button styles moved to main responsive section */
    }
    
/* ===== TEAM DROPDOWN FUNCTIONALITY ===== */
.team-dropdown-toggle {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    z-index: 10;
    display: block !important;
}

/* Force button visibility with high specificity */
#teamDropdownBtn.team-dropdown-btn,
button#teamDropdownBtn,
.team-dropdown-toggle #teamDropdownBtn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.team-dropdown-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%) !important;
    color: white !important;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(70, 44, 97, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    justify-content: center;
    font-family: inherit;
    text-decoration: none;
    outline: none;
    visibility: visible !important;
    opacity: 1 !important;
}

.team-dropdown-btn::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;
}

.team-dropdown-btn:hover::before {
    left: 100%;
}

.team-dropdown-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(70, 44, 97, 0.4);
    background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
}

.team-dropdown-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(70, 44, 97, 0.3);
}

.team-dropdown-btn .btn-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-dropdown-btn .dropdown-icon {
    color: white;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.team-dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.team-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    display: block;
    padding: 0 2rem;
}

.team-dropdown-content.show {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    display: block;
}

.remaining-team {
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out;
    gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop responsive adjustments for remaining team */
@media (min-width: 1025px) {
    .remaining-team {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 3rem;
    }
}

/* Large Desktop - Enhanced spacing */
@media (min-width: 1200px) {
    .remaining-team {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 3.5rem;
    }
}

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

/* Enhanced Team Grid Layout */
.leadership-team {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-team .team-member {
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile-Specific Team Dropdown Enhancements */
@media (max-width: 767px) {
    .team-dropdown-btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .team-dropdown-content {
        padding: 0 1rem;
    }
    
    .remaining-team {
        gap: 2.5rem;
    }
}

/* Desktop - Enhanced styling for team dropdown */
@media (min-width: 768px) {
    .team-dropdown-toggle {
        margin: 4rem 0;
    }
    
    .team-dropdown-btn {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        min-width: 320px;
        box-shadow: 0 10px 30px rgba(70, 44, 97, 0.4);
        border-radius: 35px;
    }
    
    .team-dropdown-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(70, 44, 97, 0.5);
        background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
    }
    
    .team-dropdown-content {
        padding: 0 3rem;
    }
    
    .team-dropdown-content.show {
        margin-top: 3rem;
    }
    
    .leadership-team {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .remaining-team {
        gap: 3rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}
    
    /* Mobile Book Flight Section - Complete Redesign */
    .book-flight {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
        position: relative;
        overflow: hidden;
        padding: 3rem 0;
        min-height: auto;
        display: block;
        transition: all 0.5s ease;
    }
    
    .book-flight::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
        pointer-events: none;
    }
    
    .book-flight::after {
        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 200 200"><defs><pattern id="stars-book-flight-mobile" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="0.6" fill="rgba(255,255,255,0.8)"/><circle cx="100" cy="60" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="170" cy="80" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="60" cy="140" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="140" cy="160" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="200" cy="200" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="80" cy="100" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="160" cy="120" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="120" cy="180" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="50" cy="90" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="190" cy="170" r="0.5" fill="rgba(255,255,255,0.8)"/><circle cx="110" cy="210" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="210" cy="50" r="0.6" fill="rgba(255,255,255,0.9)"/><circle cx="70" cy="220" r="0.4" fill="rgba(255,255,255,0.7)"/><circle cx="220" cy="130" r="0.5" fill="rgba(255,255,255,0.8)"/></pattern></defs><rect width="200" height="200" fill="url(%23stars-book-flight-mobile)"/></svg>'),
            radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
        opacity: 0.3;
        pointer-events: none;
        animation: starFloat 50s linear infinite, float 20s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(1deg); }
    }
    
    .book-flight .section-title {
        color: white !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        font-size: 2.5rem !important;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 800;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .book-flight .section-subtitle {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        text-align: center;
        font-weight: 500;
        line-height: 1.4;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1.5rem;
    }
    
    /* Mobile Book Flight Form - Complete Redesign */
    .book-flight-form {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        padding: 2.5rem 2rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.3);
        margin: 0 1rem;
        position: relative;
        z-index: 2;
        transform: translateY(0);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .book-flight-form::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
        border-radius: 38px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }
    
    .book-flight-form:hover::before {
        opacity: 1;
    }
    
    .book-flight-form:hover {
        transform: translateY(-8px);
        box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.7);
    }
    
    /* Mobile Form Layout */
    .form-row {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .form-group {
        margin-bottom: 2rem;
        position: relative;
    }
    
    .form-group label {
        display: block;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        letter-spacing: 0.2px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1.4rem 1.8rem;
        border: 2px solid rgba(70, 44, 97, 0.15);
        border-radius: 25px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        font-weight: 500;
        position: relative;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #de4185;
        box-shadow: 0 0 0 5px rgba(222, 65, 133, 0.2);
        transform: translateY(-4px);
        background: white;
        border-width: 3px;
    }
    
    .form-group input:hover,
    .form-group select:hover,
    .form-group textarea:hover {
        border-color: rgba(222, 65, 133, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #95a5a6;
        opacity: 0.8;
        font-weight: 400;
    }
    
    /* Mobile Submit Button - Enhanced */
    .submit-btn {
        width: 100%;
        padding: 1.5rem 2.5rem;
        background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
        color: white;
        border: none;
        border-radius: 25px;
        font-size: 1.3rem;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(70, 44, 97, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }
    
    .submit-btn::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;
    }
    
    .submit-btn:hover::before {
        left: 100%;
    }
    
    .submit-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(70, 44, 97, 0.5);
        background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
    }
    
    .submit-btn:active {
        transform: translateY(-2px);
    }
    
    /* Mobile Form Grid */
    .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    /* Mobile Date and Time Inputs */
    .date-time-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    /* Mobile Passenger Selection - Enhanced */
    .passenger-selection {
        background: linear-gradient(135deg, rgba(70, 44, 97, 0.08) 0%, rgba(222, 65, 133, 0.05) 100%);
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2.5rem;
        border: 2px solid rgba(70, 44, 97, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .passenger-selection h4 {
        color: #2c3e50;
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        text-align: center;
    }
    
    .passenger-inputs {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .passenger-input {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        background: white;
        border-radius: 15px;
        border: 2px solid rgba(70, 44, 97, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }
    
    .passenger-input:hover {
        border-color: rgba(222, 65, 133, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .passenger-input label {
        font-weight: 600;
        color: #2c3e50;
        margin: 0;
        font-size: 1rem;
    }
    
    .passenger-input input {
        width: 70px;
        padding: 0.8rem;
        text-align: center;
        border: 2px solid rgba(70, 44, 97, 0.2);
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.9);
    }
    
    .passenger-input input:focus {
        border-color: #de4185;
        box-shadow: 0 0 0 3px rgba(222, 65, 133, 0.15);
        background: white;
    }
    
    /* Mobile Special Requests */
    .special-requests {
        margin-bottom: 2.5rem;
    }
    
    .special-requests textarea {
        min-height: 120px;
        resize: vertical;
        line-height: 1.6;
    }
    
    /* Mobile Form Validation Styles */
    .form-group.error input,
    .form-group.error select,
    .form-group.error textarea {
        border-color: #e74c3c;
        box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
        animation: shake 0.5s ease-in-out;
    }
    
    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
    
    .form-group.error .error-message {
        color: #e74c3c;
        font-size: 0.95rem;
        margin-top: 0.8rem;
        display: block;
        font-weight: 600;
        padding: 0.5rem 1rem;
        background: rgba(231, 76, 60, 0.1);
        border-radius: 10px;
        border-left: 3px solid #e74c3c;
    }
    
    /* Mobile Success Message - Enhanced */
    .success-message {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        color: white;
        padding: 2rem;
        border-radius: 20px;
        text-align: center;
        margin-top: 2.5rem;
        box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .success-message::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }
    
    .success-message h3 {
        margin-bottom: 0.8rem;
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .success-message p {
        opacity: 0.95;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.5;
    }
    
    /* Mobile Contact Form Section - Send Message */
    .contact {
        padding: 4rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }
    
    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(70, 44, 97, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(222, 65, 133, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .contact .section-title {
        color: #2c3e50 !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        font-size: 2.8rem !important;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 900;
        letter-spacing: -0.5px;
        position: relative;
        z-index: 2;
    }
    
    .contact .section-subtitle {
        color: #5a6c7d;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        font-size: 1.3rem;
        margin-bottom: 3rem;
        text-align: center;
        font-weight: 600;
        line-height: 1.4;
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 2rem;
    }
    
    /* Mobile Contact Form */
    .contact-form {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        border-radius: 30px;
        padding: 3rem 2rem;
        box-shadow: 0 20px 50px rgba(70, 44, 97, 0.15);
        border: 3px solid rgba(255, 255, 255, 0.4);
        margin: 0 1.5rem 3rem;
        position: relative;
        z-index: 2;
        transform: translateY(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .contact-form:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 60px rgba(70, 44, 97, 0.2);
        border-color: rgba(70, 44, 97, 0.2);
    }
    
    .contact-form .form-group {
        margin-bottom: 2rem;
    }
    
    .contact-form .form-group label {
        display: block;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        letter-spacing: 0.2px;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group textarea {
        width: 100%;
        padding: 1.3rem 1.6rem;
        border: 2px solid rgba(70, 44, 97, 0.15);
        border-radius: 20px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        font-weight: 500;
    }
    
    .contact-form .form-group input:focus,
    .contact-form .form-group textarea:focus {
        outline: none;
        border-color: #de4185;
        box-shadow: 0 0 0 4px rgba(222, 65, 133, 0.15);
        transform: translateY(-3px);
        background: white;
        border-width: 3px;
    }
    
    .contact-form .submit-btn {
        width: 100%;
        padding: 1.4rem 2.5rem;
        background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
        color: white;
        border: none;
        border-radius: 25px;
        font-size: 1.2rem;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(70, 44, 97, 0.4);
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }
    
    .contact-form .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(70, 44, 97, 0.5);
        background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
    }
    
    /* Mobile Contact Information */
    .contact-info {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        border-radius: 25px;
        padding: 2.5rem 2rem;
        box-shadow: 0 15px 40px rgba(70, 44, 97, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.4);
        margin: 0 1.5rem;
        position: relative;
        z-index: 2;
    }
    
    .contact-info h3 {
        color: #2c3e50;
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 2rem;
        text-align: center;
        background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .contact-info .info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: rgba(70, 44, 97, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(70, 44, 97, 0.1);
        transition: all 0.3s ease;
    }
    
    .contact-info .info-item:hover {
        background: rgba(70, 44, 97, 0.08);
        transform: translateX(5px);
        border-color: rgba(70, 44, 97, 0.2);
    }
    
    .contact-info .info-item i {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        box-shadow: 0 4px 15px rgba(70, 44, 97, 0.3);
    }
    
    .contact-info .info-item .info-text {
        flex: 1;
        color: #2c3e50;
        font-weight: 600;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Mobile Partner Booking Section */
    .partner-booking {
        padding: 4rem 0;
        background: rgba(255, 255, 255, 0.95);
        position: relative;
        overflow: hidden;
        margin-top: 2rem;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(70, 44, 97, 0.1);
    }
    
    .sasto-tickets .section-title {
        color: #2c3e50 !important;
        text-shadow: none;
        font-size: 2.6rem !important;
        margin-bottom: 1rem;
        text-align: center;
        font-weight: 900;
        letter-spacing: -0.5px;
        position: relative;
        z-index: 2;
    }
    
    .sasto-tickets .section-subtitle {
        color: #7f8c8d;
        text-shadow: none;
        font-size: 1.2rem;
        margin-bottom: 3rem;
        text-align: center;
        font-weight: 500;
        line-height: 1.4;
        position: relative;
        z-index: 2;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 2rem;
    }
    
    .partner-btn {
        display: inline-block;
        padding: 1.5rem 3rem;
        background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 1.2rem;
        font-weight: 800;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(70, 44, 97, 0.3);
        border: 3px solid rgba(70, 44, 97, 0.2);
        position: relative;
        z-index: 2;
        margin: 0 1.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .partner-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(70, 44, 97, 0.4);
        background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
        border-color: rgba(70, 44, 97, 0.4);
        color: white;
    }
    
    .partner-btn:active {
        transform: translateY(-2px);
    }
    
    .team-member {
        padding: 2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(20px);
    }
    
    /* Mobile form improvements */
    .contact-form {
        margin: 0 1.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(20px);
        border-radius: 25px;
        box-shadow: 0 20px 50px rgba(70, 44, 97, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 1.2rem;
        border-radius: 15px;
        border: 2px solid rgba(70, 44, 97, 0.1);
        background: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #de4185;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 0 0 4px rgba(222, 65, 133, 0.1);
    }
    
    .submit-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(70, 44, 97, 0.3);
    }
    
    /* Mobile about stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 0 1.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        text-align: center;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .stat-label {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Mobile footer */
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section {
        padding: 1.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(20px);
    }
    
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1.5rem;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .footer-section p,
    .footer-section li a {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        border-radius: 15px;
        box-shadow: 0 6px 20px rgba(222, 65, 133, 0.4);
    }
    
    /* Mobile container improvements */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Mobile button improvements */
    .book-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 25px;
        font-weight: 600;
        box-shadow: 0 8px 25px rgba(70, 44, 97, 0.3);
    }
    
    /* Mobile image improvements */
    .departure-image {
        height: 250px;
        border-radius: 20px 20px 0 0;
    }
    
    .blog-image {
        height: 280px;
        border-radius: 25px 25px 0 0;
    }
    
    /* Mobile text improvements */
    .country-name {
        font-size: 1.4rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1.5rem;
    }
    
    .cities {
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .cities a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.9);
        color: #de4185;
        border: 2px solid rgba(70, 44, 97, 0.1);
        transition: all 0.3s ease;
    }
    
    .cities a:hover {
        background: linear-gradient(90deg, #462c61 0%, #de4185 100%);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(70, 44, 97, 0.3);
    }


/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .center-focused-slider {
        padding: 0.5rem;
    }
    
    .side-container {
        width: 120px;
        height: 120px;
    }
    
    .center-container {
        height: 250px;
    }
    
    .destinations-grid,
    .departures-grid,
    .services-grid,
    .blog-grid,
    .team-grid {
        padding: 0 0.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 1rem 0.5rem;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .contact-form {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .footer {
        padding: 1.5rem 0.5rem 1rem;
    }
}


/* ========================================
   TEAM SECTION - CLEAN REDESIGN
   ======================================== */

.team-showcase {
    margin-top: 4rem;
    padding: 0;
    position: relative;
    z-index: 2;
}

.team-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #462c61, #de4185);
    border-radius: 2px;
}

/* Leadership Team - 3 in a row */
.leadership-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Remaining Team - 4 in a row */
.remaining-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Team Member Cards */
.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #462c61, #de4185);
    border-radius: 20px 20px 0 0;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(70, 44, 97, 0.3);
}

.team-member.leadership {
    padding: 2.5rem;
}

.team-member.leadership:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Member Image */
.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(70, 44, 97, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.team-member.leadership .member-image {
    width: 140px;
    height: 140px;
    border: 4px solid rgba(70, 44, 97, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
    border-color: rgba(70, 44, 97, 0.5);
}

/* Social Links */
.member-social {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #462c61;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member.leadership .member-social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.member-social a:hover {
    background: #462c61;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(70, 44, 97, 0.4);
}

/* Member Info */
.member-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.team-member.leadership .member-info h4 {
    font-size: 1.4rem;
}

.position {
    font-size: 0.85rem;
    font-weight: 600;
    color: #462c61;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member.leadership .position {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Only show bio for leadership team */
.remaining-team .member-bio {
    display: none;
}

/* Team Dropdown Toggle */
.team-dropdown-toggle {
    text-align: center;
    margin: 3rem 0;
    position: relative;
    z-index: 2;
}

.team-dropdown-btn {
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(70, 44, 97, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    justify-content: center;
}

.team-dropdown-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(70, 44, 97, 0.5);
    background: linear-gradient(135deg, #de4185 0%, #462c61 100%);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.team-dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Team Dropdown Content */
.team-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.team-dropdown-content.show {
    max-height: none;
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .remaining-team {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.8rem;
    }
}

@media (max-width: 1200px) {
    .remaining-team {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .remaining-team {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
    }
    
    .leadership-team {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .remaining-team {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .leadership-team,
    .remaining-team {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .team-member.leadership {
        padding: 2rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
    }
    
    .team-member.leadership .member-image {
        width: 120px;
        height: 120px;
    }
    
    .member-info h4 {
        font-size: 1.1rem;
    }
    
    .team-member.leadership .member-info h4 {
        font-size: 1.2rem;
    }
    
    .position {
        font-size: 0.8rem;
    }
    
    .team-member.leadership .position {
        font-size: 0.85rem;
    }
    
    .member-bio {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 2rem;
    }
    
    .team-dropdown-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: 280px;
    }
}

/* Force 4 columns for remaining team on desktop - Final override */
@media (min-width: 769px) {
    .remaining-team {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Slider Image Styling - Optimized for 2200x1100 images */
.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    /* Ensure proper scaling for 2200x1100 aspect ratio */
    min-width: 100%;
    min-height: 100%;
}

.item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item .content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 100%;
}

/* Slider Image Aspect Ratio Optimization for 2200x1100 */
.slider-image {
    /* 2200x1100 = 2:1 aspect ratio - wider than standard 16:9 */
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: center;
}

/* Mobile Slider Image Adjustments */
@media (max-width: 767px) {
    .slider-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        aspect-ratio: 16 / 9; /* Use standard mobile ratio */
    }
    
    .item .content {
        padding: 1rem;
        text-align: center;
    }
    
    .item .content .name {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .item .content .des {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
}

/* Mobile Navigation Enhancements */
@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 0;
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
    }
    
    /* White navbar on smaller mobile for non-home pages */
    .navbar.white-navbar {
        background: white;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-logo .logo-image {
        height: clamp(35px, 3.8vw, 45px);
    }
    
    .nav-toggle {
        padding: 0.5rem;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
        background: #667eea;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Mobile Navigation Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%);
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

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

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile logo styles removed */

.mobile-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.mobile-nav-menu {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-nav-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.mobile-search {
    padding: 0 1.5rem 2rem;
    position: relative;
}

.mobile-search-box {
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-search-box:focus-within {
    border-color: #667eea;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.mobile-search-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.1rem;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.mobile-search-input::placeholder {
    color: #95a5a6;
    font-weight: 300;
}

.mobile-search-btn {
    padding: 1.2rem 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.mobile-search-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.05);
}

.mobile-search-btn:active {
    transform: scale(0.95);
}

.mobile-search-btn.loading {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    pointer-events: none;
}

.mobile-search-btn.loading i {
    animation: spin 1s linear infinite;
}

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

.mobile-search-input:focus {
    color: #2c3e50;
}

.mobile-search-input:focus::placeholder {
    color: #bdc3c7;
}

/* Mobile Search Suggestions */
.mobile-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-height: 350px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(102, 126, 234, 0.1);
    margin-top: 8px;
    display: none;
}

.mobile-search-suggestions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-suggestion-item {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 0;
}

.mobile-suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 18px 18px;
}

.mobile-suggestion-item:first-child {
    border-radius: 18px 18px 0 0;
}

.mobile-suggestion-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(8px);
    border-radius: 12px;
}

.mobile-suggestion-item:active {
    transform: translateX(4px) scale(0.98);
    background: rgba(102, 126, 234, 0.15);
}

.mobile-suggestion-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-suggestion-content {
    flex: 1;
    min-width: 0;
}

.mobile-suggestion-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.3;
}

.mobile-suggestion-meta {
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 400;
    line-height: 1.2;
}

.mobile-suggestion-category {
    background: linear-gradient(135deg, #de4185, #c41e3a);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin: 15px 20px 10px;
    text-align: center;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .side-container {
        transition: none;
    }
    
    .center-container {
        transition: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .search-suggestions {
        background: rgba(30, 30, 30, 0.98);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .suggestion-item {
        color: #ffffff;
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .suggestion-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    /* Center Focused Slider Mobile */
    .center-focused-slider {
        padding: 1rem 0.5rem;
        height: 100vh;
    }
    
    .side-container {
        width: 140px;
        height: 140px;
    }
    
    .side-container.left-container {
        left: 5%;
    }
    
    .side-container.right-container {
        right: 5%;
    }
    
    .center-container {
        height: 300px;
    }
    

    
    .section-title {
        font-size: 2rem;
        color: white;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* General Section Title Styling */
.section-title {
    color: white !important;
}

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

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Search Bar Responsive Styles */
@media (max-width: 768px) {
    .nav-search-container {
        position: fixed;
        top: 80px;
        left: 20px;
        right: 20px;
        margin: 0;
        z-index: 1000;
        animation: mobileSearchSlideIn 0.4s ease-out;
    }

    @keyframes mobileSearchSlideIn {
        0% {
            opacity: 0;
            transform: translateY(-20px) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .nav-search-container .search-box {
        min-width: 100%;
        border-radius: 20px;
        padding: 8px 14px;
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.3);
    }

    .nav-search-container .search-suggestions {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        left: 0;
        right: 0;
        margin-top: 15px;
        border-radius: 20px;
    }

    .nav-search-container .suggestion-item {
        padding: 16px 18px;
        margin: 0 6px;
        margin-bottom: 3px;
    }

    .nav-search-container .search-input {
        font-size: 16px;
        padding: 8px 15px;
    }

    .nav-search-container .search-btn {
        width: 30px;
        height: 30px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .nav-search-container {
        left: 15px;
        right: 15px;
        top: 75px;
    }

    .nav-search-container .search-box {
        padding: 8px 14px;
        border-radius: 20px;
    }

    .nav-search-container .search-suggestions {
        min-width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        margin-top: 12px;
    }

    .nav-search-container .suggestion-item {
        padding: 14px 16px;
        margin: 0 4px;
        margin-bottom: 2px;
    }
}

/* Enhanced Search Bar Animations and Effects */
.search-loading {
    position: relative;
    overflow: hidden;
}

.search-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: searchLoading 1.5s infinite;
}

@keyframes searchLoading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Enhanced placeholder animation */
.nav-search-container .search-input:not(:placeholder-shown)::placeholder {
    opacity: 0;
    transform: translateX(20px);
}

/* Search suggestions entrance animation */
@keyframes suggestionSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.suggestion-item {
    animation: suggestionSlideIn 0.3s ease-out;
    animation-fill-mode: both;
}

.suggestion-item:nth-child(1) { animation-delay: 0.05s; }
.suggestion-item:nth-child(2) { animation-delay: 0.1s; }
.suggestion-item:nth-child(3) { animation-delay: 0.15s; }
.suggestion-item:nth-child(4) { animation-delay: 0.2s; }
.suggestion-item:nth-child(5) { animation-delay: 0.25s; }
.suggestion-item:nth-child(6) { animation-delay: 0.3s; }
.suggestion-item:nth-child(7) { animation-delay: 0.35s; }
.suggestion-item:nth-child(8) { animation-delay: 0.4s; }
.suggestion-item:nth-child(9) { animation-delay: 0.45s; }
.suggestion-item:nth-child(10) { animation-delay: 0.5s; }
.suggestion-item:nth-child(11) { animation-delay: 0.55s; }
.suggestion-item:nth-child(12) { animation-delay: 0.6s; }

/* Search pulse effect on focus */
.nav-search-container .search-box:focus-within {
    animation: searchPulse 2s infinite;
}

@keyframes searchPulse {
    0%, 100% {
        box-shadow: 
            0 15px 45px rgba(0, 0, 0, 0.15),
            0 0 0 4px rgba(102, 126, 234, 0.15),
            0 8px 25px rgba(102, 126, 234, 0.2);
    }
    50% {
        box-shadow: 
            0 15px 45px rgba(0, 0, 0, 0.15),
            0 0 0 4px rgba(102, 126, 234, 0.25),
            0 8px 25px rgba(102, 126, 234, 0.3);
    }
}

.nav-search-container .search-box {
    position: relative;
}

.nav-search-container .search-box::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(102, 126, 234, 0.6);
    font-size: 13px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.nav-search-container .search-box:focus-within::after {
    color: rgba(102, 126, 234, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Typing indicator styles */
.typing-indicator {
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
}

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

.typing-dots span {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }
.typing-dots span:nth-child(3) { animation-delay: 0s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.typing-text {
    font-size: 14px;
    font-weight: 500;
    color: #667eea;
}

/* Search history item styles */
.history-item {
    background: rgba(255, 255, 255, 0.8) !important;
    border-left: 3px solid #f39c12 !important;
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-left-color: #e67e22 !important;
}

.history-item i {
    color: #f39c12 !important;
}

.history-item:hover i {
    color: #e67e22 !important;
    transform: scale(1.1);
}

.history-item .suggestion-meta {
    color: #e67e22 !important;
    font-style: italic;
}

/* ========================================
   ADMIN DASHBOARD STYLES
   ======================================== */



/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.privacy-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-modal-header h3 {
    color: #2c3e50;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7f8c8d;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #e74c3c;
}

.privacy-modal-body {
    padding: 2rem;
}

.privacy-modal-body h4 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.privacy-modal-body h4:first-child {
    margin-top: 0;
}

.privacy-modal-body p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-modal-body ul {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-modal-body li {
    margin-bottom: 0.5rem;
}

.privacy-modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

/* Admin Dashboard Styles */
.admin-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1001;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(70, 44, 97, 0.1);
}

.admin-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-logo-image {
    width: 50px;
    height: 50px;
}

.admin-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.admin-nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.admin-logout-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.admin-logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.admin-container {
    display: flex;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.admin-sidebar {
    width: 280px;
    background: white;
    border-right: 2px solid rgba(70, 44, 97, 0.1);
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.admin-menu {
    padding: 2rem 0;
}

.admin-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.admin-menu li {
    margin: 0;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    color: #7f8c8d;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.admin-menu-link:hover {
    background: rgba(70, 44, 97, 0.05);
    color: #462c61;
    border-left-color: #de4185;
}

.admin-menu li.active .admin-menu-link {
    background: rgba(70, 44, 97, 0.1);
    color: #462c61;
    border-left-color: #de4185;
    font-weight: 600;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    background: #f8f9fa;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.admin-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin: 0;
}

/* Admin Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(70, 44, 97, 0.2);
}

.admin-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.admin-stat-card .stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.admin-stat-card .stat-content h3 {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-card .stat-number {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.admin-stat-card .stat-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-stat-card .stat-change.positive {
    color: #27ae60;
}

.admin-stat-card .stat-change.negative {
    color: #e74c3c;
}

/* Admin Charts */
.admin-charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-chart-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

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

.chart-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.chart-controls select {
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
    color: #2c3e50;
    font-size: 0.9rem;
}

.chart-container {
    height: 300px;
    position: relative;
}

/* Admin Security Grid */
.admin-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.admin-security-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.admin-security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.security-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon i {
    color: white;
    font-size: 1.2rem;
}

.security-info h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.security-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.status-badge.pending {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.status-badge.compliant {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.security-card-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.admin-btn.primary {
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
}

.admin-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 44, 97, 0.3);
}

.admin-btn.secondary {
    background: rgba(70, 44, 97, 0.1);
    color: #462c61;
    border: 2px solid rgba(70, 44, 97, 0.2);
}

.admin-btn.secondary:hover {
    background: rgba(70, 44, 97, 0.2);
    border-color: rgba(70, 44, 97, 0.4);
}

.admin-btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Admin Security Overview */
.admin-security-overview {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

.admin-security-overview h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

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

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Admin Reports Grid */
.admin-reports-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.admin-report-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

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

.report-card-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.report-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-report-generator {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

.admin-report-generator h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group select,
.form-group input {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #de4185;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.5rem;
}

/* Admin Notifications */
.admin-notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #de4185;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
}

.admin-notification.success {
    border-left-color: #27ae60;
}

.admin-notification.error {
    border-left-color: #e74c3c;
}

.admin-notification i {
    font-size: 1.2rem;
}

.admin-notification.success i {
    color: #27ae60;
}

.admin-notification.error i {
    border-left-color: #27ae60;
}

.admin-notification.error i {
    color: #e74c3c;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Field Errors */
.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .admin-charts-row {
        grid-template-columns: 1fr;
    }
    
    .admin-reports-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-security-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .admin-nav-container {
        padding: 0 1rem;
    }
    

}

/* Responsive Navigation Styles */
@media (max-width: 1024px) {
    .nav-container {
        gap: 0.5rem;
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-search-container {
        max-width: 300px;
        min-width: 250px;
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 10px;
    }
    
    .nav-menu {
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .nav-search-container {
        order: 3;
        width: 100%;
        max-width: none;
        min-width: auto;
        margin: 0.5rem 0;
    }
    

    
    /* Navigation logo responsive styles removed */
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    /* Navigation logo responsive styles removed */
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    

}

/* Mobile Services - Force Hide Features */
@media (max-width: 767px) {
    .services .service-card .service-features,
    .services .service-features,
    .service-features {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .services .service-card .service-features *,
    .services .service-features *,
    .service-features * {
        display: none !important;
    }
}

/* Mobile Fixed Departures - Optimized Layout */
@media (max-width: 767px) {
    .fixed-departures {
        padding: 3rem 0;
    }
    
    .fixed-departures .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .departures-grid {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .departure-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: auto;
        padding: 1.5rem;
        text-align: center;
    }
    
    .departure-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .departure-header {
        text-align: center;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .departure-header h3 {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .flight-number {
        text-align: center;
        margin: 0 auto;
    }
    
    .departure-details {
        text-align: center;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .detail-item {
        text-align: center;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .departure-image {
        width: 100%;
        height: 200px;
        margin: 0 0 1rem 0;
        border-radius: 16px;
    }
    
    .departure-image img {
        border-radius: 16px;
    }
    
    .departure-details {
        order: 2;
        text-align: center;
    }
    
    .departure-actions {
        order: 3;
        justify-content: center;
        margin-top: 1rem;
        text-align: center;
    }
    
    .departure-price {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .departure-price-details {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .departure-route {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .departure-time {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .departure-airline {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .departure-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        min-width: 120px;
    }
}

/* Extra Small Mobile Fixed Departures */
@media (max-width: 480px) {
    .fixed-departures {
        padding: 2.5rem 0;
    }
    
    .fixed-departures .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .departures-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .departure-card {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .departure-image {
        height: 160px;
        margin-bottom: 0.8rem;
    }
    
    .departure-price {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .departure-price-details {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .departure-route {
        font-size: 1rem;
    }
    
    .departure-time {
        font-size: 0.85rem;
    }
    
    .departure-airline {
        font-size: 0.85rem;
    }
    
    .departure-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

/* Very Small Mobile Fixed Departures */
@media (max-width: 360px) {
    .fixed-departures {
        padding: 2rem 0;
    }
    
    .fixed-departures .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        padding: 0 0.3rem;
    }
    
    .departures-grid {
        gap: 0.8rem;
        padding: 0 0.3rem;
    }
    
    .departure-card {
        padding: 1rem;
        gap: 0.6rem;
    }
    
    .departure-image {
        height: 140px;
        margin-bottom: 0.6rem;
    }
    
    .departure-price {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .departure-price-details {
        text-align: center;
        margin-bottom: 0.6rem;
    }
    
    .departure-route {
        font-size: 0.9rem;
    }
    
    .departure-time {
        font-size: 0.8rem;
    }
    
    .departure-airline {
        font-size: 0.8rem;
    }
    
    .departure-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        min-width: 90px;
    }
}

/* Mobile Fixed Departures - Additional Centering */
@media (max-width: 767px) {
    .departure-card .departure-footer {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .departure-card .price-info {
        text-align: center !important;
        width: 100% !important;
    }
    
    .departure-card .price {
        text-align: center !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .departure-card .price-note {
        text-align: center !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .departure-card .book-btn {
        margin: 0 auto !important;
        display: block !important;
        width: auto !important;
        min-width: 150px !important;
    }
}

/* ===== COMPREHENSIVE MOBILE BACKGROUND UPDATE ===== */
/* Mobile Background Overrides - Professional Design for All Sections */
@media (max-width: 767px) {
    /* Destinations Section */
    .destinations {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    .destinations::before {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%) !important;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* Hero Section */
    .hero {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    /* Blog Section */
    .blog {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    .blog::before {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%) !important;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* Services Section */
    .services {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    .services::before {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%) !important;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* Fixed Departures Section */
    .fixed-departures {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    .fixed-departures::before {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%) !important;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* About Section */
    .about {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    .about::before {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%) !important;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* Book Flight Section */
    .book-flight {
        background: linear-gradient(90deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    .book-flight::before {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%) !important;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* Footer Section */
    .footer {
        background: linear-gradient(180deg, #462c61 0%, #5a3a7a 20%, #6b4a8a 35%, #8a5a9a 50%, #a86ba8 65%, #de4185 80%, #e85a9a 90%, #f06b9a 100%) !important;
    }
    
    .footer::before {
        background: 
            radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 85% 15%, rgba(233, 69, 96, 0.1) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(83, 52, 131, 0.05) 0%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(22, 33, 62, 0.08) 0%, transparent 60%) !important;
        animation: backgroundShift 20s ease-in-out infinite;
    }
    
    /* Add floating elements to all sections */
    .destinations::after,
    .blog::after,
    .services::after,
    .fixed-departures::after,
    .about::after,
    .book-flight::after,
    .footer::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 2px),
            radial-gradient(circle at 80% 70%, rgba(233, 69, 96, 0.15) 0%, transparent 3px),
            radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 2px),
            radial-gradient(circle at 90% 20%, rgba(83, 52, 131, 0.12) 0%, transparent 2px),
            radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 2px),
            radial-gradient(circle at 70% 40%, rgba(233, 69, 96, 0.1) 0%, transparent 3px);
        background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px, 220px 220px;
        animation: floatingElements 25s linear infinite;
        pointer-events: none;
        opacity: 0.7;
        z-index: 1;
    }
    
    /* Ensure all sections have proper positioning for overlays */
    .destinations,
    .blog,
    .services,
    .fixed-departures,
    .about,
    .book-flight,
    .footer {
        position: relative !important;
        overflow: hidden !important;
    }
}

/* ===== BLOG DETAIL PAGE RESPONSIVE STYLES ===== */

/* Blog Hero Section */
.blog-hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(70, 44, 97, 0.8) 0%, rgba(222, 65, 133, 0.6) 100%);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.blog-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
}

/* Blog Content Layout */
.blog-content {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-main {
    background: white;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: clamp(15px, 3vw, 20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Blog Meta Information */
.blog-meta {
    color: #7f8c8d;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1vw, 1rem);
}

.blog-meta span {
    display: flex;
    align-items: center;
    font-size: clamp(0.85rem, 2vw, 1rem);
    background: rgba(70, 44, 97, 0.05);
    padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 1rem);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blog-meta span:hover {
    background: rgba(70, 44, 97, 0.1);
    transform: translateY(-2px);
}

.blog-meta i {
    margin-right: 0.5rem;
    color: #462c61;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Blog Introduction */
.blog-main > p:first-of-type {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, rgba(70, 44, 97, 0.03) 0%, rgba(222, 65, 133, 0.03) 100%);
    border-radius: 15px;
    border-left: 4px solid #462c61;
}

/* Tip Items */
.tip-item {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: clamp(12px, 2.5vw, 15px);
    border-left: 4px solid #462c61;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(70, 44, 97, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(25px, 6vw, 30px);
    height: clamp(25px, 6vw, 30px);
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    margin-right: clamp(0.8rem, 2vw, 1rem);
    font-size: clamp(0.8rem, 2vw, 1rem);
    box-shadow: 0 4px 10px rgba(70, 44, 97, 0.3);
}

.tip-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.tip-content {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: justify;
}

/* Gem Items (for Hidden Gems blog) */
.gem-item {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: clamp(12px, 2.5vw, 15px);
    border-left: 4px solid #462c61;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(70, 44, 97, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.gem-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    line-height: 1.3;
}

.gem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(30px, 7vw, 40px);
    height: clamp(30px, 7vw, 40px);
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    border-radius: 50%;
    margin-right: clamp(0.8rem, 2vw, 1rem);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    box-shadow: 0 4px 10px rgba(70, 44, 97, 0.3);
    transition: all 0.3s ease;
}

.gem-item:hover .gem-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(70, 44, 97, 0.4);
}

.gem-content {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-align: justify;
}

.gem-location {
    color: #de4185;
    font-weight: 600;
    margin-top: clamp(0.8rem, 2vw, 1rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gem-location::before {
    content: '📍';
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.sidebar-widget {
    background: white;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: clamp(15px, 3vw, 20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sidebar-widget h3 {
    color: #2c3e50;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Related Posts */
.related-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-posts li {
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    padding-bottom: clamp(0.8rem, 2vw, 1rem);
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.related-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-posts li:hover {
    transform: translateX(5px);
}

.related-posts a {
    color: #462c61;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: clamp(0.5rem, 1vw, 0.8rem);
    border-radius: 10px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.4;
}

.related-posts a:hover {
    color: #de4185;
    background: rgba(70, 44, 97, 0.05);
    transform: translateX(5px);
}

/* Tags */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.4rem, 1vw, 0.5rem);
}

.tag {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    color: #7f8c8d;
    padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 1.5vw, 1rem);
    border-radius: 20px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 500;
}

.tag:hover {
    background: linear-gradient(135deg, #462c61 0%, #de4185 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 44, 97, 0.3);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: white;
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vw, 1rem);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 1rem);
    border-radius: 20px;
    background: rgba(70, 44, 97, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a:hover {
    color: #462c61;
    background: rgba(70, 44, 97, 0.1);
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: #462c61;
    font-weight: 600;
    padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 1rem);
    background: rgba(70, 44, 97, 0.1);
    border-radius: 20px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    color: #bdc3c7;
    margin-left: clamp(0.5rem, 1vw, 1rem);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        gap: clamp(1.5rem, 3vw, 2rem);
        margin-top: 1.5rem;
    }
    
    .blog-main {
        padding: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    .sidebar-widget {
        padding: clamp(1.2rem, 2.5vw, 1.8rem);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 40vh;
    }
    
    .blog-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 0.8rem;
    }
    
    .blog-hero p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2rem);
        margin-top: 1.5rem;
        padding: 0 clamp(1rem, 3vw, 1.5rem);
        max-width: 100%;
        justify-items: stretch;
    }
    
    .blog-card {
        min-height: clamp(420px, 60vh, 480px);
        border-radius: clamp(15px, 4vw, 20px);
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .blog-image {
        height: clamp(180px, 35vh, 220px);
    }
    
    .blog-content {
        padding: clamp(1.2rem, 3vw, 1.8rem);
        width: 100%;
    }
    
    .blog-header h3 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.2rem);
        line-height: 1.3;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(0.4rem, 1vw, 0.6rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .blog-meta span {
        width: 100%;
        justify-content: flex-start;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }
    
    .blog-excerpt {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.6;
        margin-bottom: clamp(1.2rem, 3vw, 1.5rem);
    }
    
    .blog-footer {
        padding-top: clamp(1rem, 2.5vw, 1.2rem);
        gap: clamp(0.8rem, 2vw, 1rem);
    }
    
    .read-time {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }
    
    .tip-item {
        padding: clamp(1.2rem, 2.5vw, 1.8rem);
        margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
    }
    
    .tip-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .tip-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .gem-item {
        padding: clamp(1.2rem, 2.5vw, 1.8rem);
        margin-bottom: clamp(1.2rem, 2.5vw, 1.8rem);
    }
    
    .gem-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .gem-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        height: 35vh;
    }
    
    .blog-hero .container {
        padding: 0 1rem;
    }
    
    .blog-hero h1 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 0.6rem;
    }
    
    .blog-hero p {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
    }
    
    .blog-content {
        padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    }
    
    .blog-grid {
        padding: 0 0.8rem;
        gap: clamp(1.2rem, 3vw, 1.8rem);
        justify-items: stretch;
    }
    
    .blog-card {
        min-height: clamp(450px, 70vh, 520px);
        border-radius: clamp(12px, 4vw, 18px);
        width: 100%;
        max-width: 100%;
    }
    
    .blog-image {
        height: clamp(160px, 30vh, 200px);
    }
    
    .blog-content {
        padding: clamp(1rem, 2.5vw, 1.5rem);
        width: 100%;
    }
    
    .blog-header h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: clamp(0.8rem, 2vw, 1rem);
        line-height: 1.3;
    }
    
    .blog-meta {
        gap: clamp(0.4rem, 1.5vw, 0.6rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .blog-meta span {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        padding: clamp(0.25rem, 1vw, 0.4rem) clamp(0.5rem, 1.5vw, 0.8rem);
    }
    
    .blog-excerpt {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.6;
        margin-bottom: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .blog-footer {
        padding-top: clamp(0.8rem, 2vw, 1.2rem);
        gap: clamp(0.6rem, 1.5vw, 1rem);
    }
    
    .read-time {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    }
    
    .tip-item {
        padding: clamp(1rem, 2.5vw, 1.5rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
        border-radius: clamp(10px, 2.5vw, 15px);
    }
    
    .tip-title {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: clamp(0.6rem, 1.5vw, 0.8rem);
    }
    
    .tip-content {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.6;
    }
    
    .gem-item {
        padding: clamp(1rem, 2.5vw, 1.5rem);
        margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
        border-radius: clamp(10px, 2.5vw, 15px);
    }
    
    .gem-title {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: clamp(0.6rem, 1.5vw, 0.8rem);
    }
    
    .gem-content {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.6;
    }
    
    .gem-icon {
        width: clamp(25px, 6vw, 30px);
        height: clamp(25px, 6vw, 30px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .sidebar-widget {
        padding: clamp(1rem, 2.5vw, 1.5rem);
        border-radius: clamp(12px, 3vw, 18px);
    }
    
    .sidebar-widget h3 {
        font-size: clamp(1rem, 3vw, 1.1rem);
        margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .related-posts a {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        padding: clamp(0.4rem, 1vw, 0.6rem);
    }
    
    .tag {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        padding: clamp(0.3rem, 1vw, 0.4rem) clamp(0.6rem, 1.5vw, 0.8rem);
    }
    
    .breadcrumb-nav {
        padding: clamp(0.8rem, 2vw, 1.2rem) 0;
    }
    
    .breadcrumb {
        gap: clamp(0.3rem, 1vw, 0.6rem);
        padding: 0 0.8rem;
    }
    
    .breadcrumb-item a {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        padding: clamp(0.25rem, 1vw, 0.4rem) clamp(0.5rem, 1.5vw, 0.8rem);
    }
}

@media (max-width: 360px) {
    .blog-hero {
        height: 30vh;
    }
    
    .blog-hero h1 {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
        margin-bottom: 0.5rem;
    }
    
    .blog-hero p {
        font-size: clamp(0.75rem, 4vw, 0.9rem);
    }
    
    .blog-grid {
        padding: 0 0.5rem;
        gap: clamp(1rem, 2.5vw, 1.5rem);
        justify-items: stretch;
    }
    
    .blog-card {
        min-height: clamp(480px, 75vh, 550px);
        border-radius: clamp(10px, 3vw, 15px);
        width: 100%;
        max-width: 100%;
    }
    
    .blog-image {
        height: clamp(140px, 25vh, 180px);
    }
    
    .blog-content {
        padding: clamp(0.8rem, 2.5vw, 1.2rem);
        width: 100%;
    }
    
    .blog-header h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: clamp(0.7rem, 2vw, 0.9rem);
        line-height: 1.3;
    }
    
    .blog-meta {
        gap: clamp(0.3rem, 1.5vw, 0.5rem);
        margin-bottom: clamp(0.8rem, 2vw, 1rem);
    }
    
    .blog-meta span {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
        padding: clamp(0.2rem, 1vw, 0.3rem) clamp(0.4rem, 1.5vw, 0.6rem);
    }
    
    .blog-excerpt {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        line-height: 1.5;
        margin-bottom: clamp(0.8rem, 2vw, 1rem);
    }
    
    .blog-footer {
        padding-top: clamp(0.6rem, 1.5vw, 1rem);
        gap: clamp(0.5rem, 1.5vw, 0.8rem);
    }
    
    .read-time {
        font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    }
    
    .tip-item {
        padding: clamp(0.8rem, 2.5vw, 1.2rem);
        margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
    }
    
    .gem-item {
        padding: clamp(0.8rem, 2.5vw, 1.2rem);
        margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
    }
    
    .gem-title {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: clamp(0.5rem, 1.5vw, 0.7rem);
    }
    
    .gem-content {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        line-height: 1.5;
    }
    
    .gem-icon {
        width: clamp(22px, 6.5vw, 28px);
        height: clamp(22px, 6.5vw, 28px);
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }
    
    .sidebar-widget {
        padding: clamp(0.8rem, 2.5vw, 1.2rem);
        border-radius: clamp(10px, 3vw, 15px);
    }
    
    .tag {
        font-size: clamp(0.7rem, 3vw, 0.8rem);
        padding: clamp(0.25rem, 1vw, 0.35rem) clamp(0.5rem, 1.5vw, 0.7rem);
    }
}

/* Additional Mobile Book-Flight Optimizations */
@media (max-width: 767px) {
    .book-flight {
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .book-flight .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .book-flight-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .map-section {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin: 0 auto;
        padding: 0;
    }
    
    .map-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
        transform: none !important;
    }
    
    .map-container iframe {
        width: 100% !important;
        height: 300px !important;
        border: 0 !important;
        display: block !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
        position: relative !important;
        transform: none !important;
    }
    
    .contact-info {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 2rem;
    }
    
    .form-section {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding: 0;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem;
    }
    
    .form-group {
        width: 100%;
        text-align: left;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        text-align: left;
    }
    
    .submit-btn {
        width: 100%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .book-flight {
        padding: 2.5rem 0.5rem;
    }
    
    .book-flight-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .map-container iframe {
        height: 250px !important;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .book-flight {
        padding: 2rem 0.3rem;
    }
    
    .book-flight-content {
        padding: 0 0.3rem;
        gap: 1rem;
    }
    
    .map-container iframe {
        height: 200px !important;
    }
    
    .contact-info,
    .contact-form {
        padding: 1rem;
    }
}

/* Additional Mobile Footer Optimizations */
@media (max-width: 767px) {
    .footer {
        text-align: center !important;
        padding: 3rem 1rem 2rem !important;
    }
    
    .footer .container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        grid-template-columns: 1fr !important;
    }
    
    .footer-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 1.5rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-section h3,
    .footer-section h4 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
    
    .footer-section p {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .footer-section ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-section ul li {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-section ul li::before {
        display: none !important;
    }
    
    .footer-section ul li a {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
        padding: 0.5rem 0 !important;
    }
    
    .social-links {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        flex-wrap: wrap !important;
    }
    
    .social-links a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .footer-bottom {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-bottom-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-legal {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }
    
    .footer-legal a {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .contact-info {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    
    .contact-info p {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .contact-info p i {
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    /* Remove border from footer contact info section */
    .footer-section:has(.contact-info) {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    
    .footer-section .contact-info {
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0.5rem 2rem !important;
    }
    
    .footer-content {
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
    }
    
    .footer-section {
        padding: 1.2rem !important;
    }
    
    .social-links {
        gap: 0.8rem !important;
    }
    
    .social-links a {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .footer-legal {
        gap: 0.8rem !important;
        flex-direction: column !important;
    }
    
    .footer-legal .separator {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 2rem 0.3rem 2rem !important;
    }
    
    .footer-content {
        gap: 1rem !important;
        padding: 0 0.3rem !important;
    }
    
    .footer-section {
        padding: 1rem !important;
    }
    
    .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    
    .footer-legal {
        gap: 0.5rem !important;
    }
}

/* WhatsApp Floating Button Styles */
.whatsapp-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
}

.whatsapp-float-btn.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background-color: #20c55e;
}

.whatsapp-float-btn:active {
    transform: scale(0.95);
}

.whatsapp-float-btn:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    transition: transform 0.2s ease;
}

.whatsapp-float-btn:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* Pulse animation for attention */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    transform: translate(-50%, -50%);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
    opacity: 0.3;
}

@keyframes whatsapp-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 360px) {
    .whatsapp-float-btn {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

/* Ensure button stays above all content */
@media (min-width: 1200px) {
    .whatsapp-float-btn {
        bottom: 25px;
        right: 25px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .whatsapp-float-btn {
        border: 2px solid #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .whatsapp-float-btn:focus {
        outline: 3px solid #ffffff;
        outline-offset: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float-btn {
        transition: none;
    }
    
    .whatsapp-float-btn::before {
        animation: none;
    }
    
    .whatsapp-icon {
        transition: none;
    }
}
