/* Modern CSS Reset and Variables */
:root {
    /* Color Palette */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Performance Optimizations */
* {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

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

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

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.7;
    color: var(--gray-700);
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(245, 158, 11, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
    box-sizing: border-box;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

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

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

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-bounce {
    animation: bounce 1s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* New Navbar Animation Keyframes */
@keyframes slideDownBounce {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(10px) scale(1.05);
    }
    80% {
        transform: translateY(-5px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoEntry {
    0% {
        opacity: 0;
        transform: translateX(-50px) rotateY(-90deg) scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateX(10px) rotateY(20deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }
}

@keyframes navSlideIn {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.8);
    }
    70% {
        opacity: 1;
        transform: translateX(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes navItemFloat {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px) rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes logoGlow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Stagger Animation Delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Utility Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.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 var(--transition-slow);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.4);
    outline-offset: 2px;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-secondary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.4);
    outline-offset: 2px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: rgb(0, 0, 0);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.hidden {
    display: none;
}

/* Header Styles */
.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    transition: all var(--transition-normal);

}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    transform: translateY(0);
}

.header.scrolled .search-container {
    background: transparent !important;
    border: none !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

/* Expanded Search on Click in scrolled state */
.header.scrolled .search-container.expanded {
    width: 220px !important;
    background: rgba(255,255,255,0.2) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 0.3rem !important;
}

.header.scrolled .search-container.expanded .search-input {
    width: 160px !important;
    opacity: 1 !important;
    color: white !important;
}

.header.scrolled .search-input::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

.header.scrolled .search-btn {
    color: white !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3) !important;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 50px;
    transition: all 0.3s ease;
}

.logo:hover h1 {
    transform: scale(1.05);
}

/* Navigation Styles */
.navigation {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    animation: slideInRight 0.8s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

/* Navigation items styling handled by .nav-link */

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
    font-size: 20px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s ease;
    transform: translateX(-50%);
}

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

.nav-link.active::after {
    width: 90%;
}

/* ========================================
   NAVBAR COMPONENT STYLES
   ======================================== */

/* Navbar Base */
.navbar {
    
    backdrop-filter: blur(25px);
    padding: 0.875rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
}

.navbar.scrolled {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.5) 0%, 
        rgba(6, 182, 212, 0.45) 25%,
        rgba(16, 185, 129, 0.4) 50%,
        rgba(245, 158, 11, 0.45) 75%,
        rgba(168, 85, 247, 0.4) 100%);
    backdrop-filter: blur(35px);
    padding: 0.75rem 0;
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.35),
        0 4px 20px rgba(6, 182, 212, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.navbar-brand {
    justify-self: start;
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.navbar-search {
    justify-self: end;
    width: 100%;
}

.navbar-brand .logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin: -0.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    min-height: 44px;
    position: relative;
}

/* Ensure emoji stays visible and accessible */
.navbar-brand .logo::before {
    content: '🌍';
    -webkit-text-fill-color: initial;
    margin-right: 0.5rem;
    display: inline-block;
    font-size: 1.5rem;
}

.navbar-brand .logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.3));
    background-position: 100% 50%;
}

.navbar-brand .logo:active {
    transform: translateY(0);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 107, 0.4));
}

/* Navbar Search */
.navbar-search {
    flex-shrink: 0;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.875rem;
    transition: all var(--transition-normal);

}

.search-input-wrapper:hover {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.25) 0%, 
        rgba(6, 182, 212, 0.2) 50%,
        rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.2),
        0 4px 15px rgba(6, 182, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.search-input-wrapper:focus-within {
    background: linear-gradient(135deg, 
        rgba(245, 158, 11, 0.25) 0%, 
        rgba(37, 99, 235, 0.2) 50%,
        rgba(6, 182, 212, 0.18) 100%);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 
        0 8px 30px rgba(245, 158, 11, 0.3),
        0 4px 15px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.search-icon {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.search-input-wrapper:focus-within .search-icon {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.3);
}

.navbar-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
    padding: 0.5rem 0;
    width: 100%;
    min-width: 0;
    line-height: 1.4;
    height: 38px;
}

.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
    font-size: 0.875rem;
}

.navbar-search-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-search-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: var(--radius-full);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.625rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--white);
    flex-shrink: 0;
    font-size: 0.9375rem;
}

.navbar-search-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.navbar-search-btn:active {
    transform: translateY(0);
}

.navbar-search-btn i {
    font-size: 0.875rem;
    line-height: 1;
}

.nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: var(--font-weight-medium);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.35) 0%, 
        rgba(6, 182, 212, 0.3) 50%,
        rgba(16, 185, 129, 0.25) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(37, 99, 235, 0.25),
        0 3px 12px rgba(6, 182, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-nav .nav-link.active {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.4) 0%, 
        rgba(6, 182, 212, 0.35) 100%);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.navbar-nav .nav-link.active:hover {
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all var(--transition-normal);
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
    transform: translateY(-1px);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-toggle:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.menu-toggle span {
    height: 2px;
    width: 22px;
    background: var(--white);
    margin: 3px 0;
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 var(--space-lg);
        gap: 1.5rem;
        grid-template-columns: 240px 1fr 240px;
    }
    
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .navbar-container {
        gap: 1rem;
        grid-template-columns: 200px 1fr 220px;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .search-input-wrapper {
        padding: 0.4rem 0.75rem;
    }
    
    .navbar-search-input {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        display: flex;
        justify-content: space-between;
    }
    
    .navbar-search {
        display: none;
    }
    
    .navbar-nav {
        display: none;
        flex-direction: column;
      
        backdrop-filter: blur(30px);
        position: absolute;
        top: 100%;
        right: 0;
        width: 280px;
        padding: 1.5rem;
        /* border-radius: 0 0 var(--radius-2xl) var(--radius-2xl); */
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-top: none;
        gap: 0.5rem;
        /* box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2); */
        justify-self: auto;
    }

    .navbar-nav.active {
        display: flex;
        animation: slideDownFadeGlass 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Mobile search in menu */
    .navbar-nav.active .mobile-search-item {
        display: block !important;
        margin-bottom: 1rem;
    }
    
    .mobile-search {
        width: 100%;
        padding: 0.75rem 1rem;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.15) 0%, 
            rgba(255, 255, 255, 0.1) 100%);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        color: var(--white);
        font-size: 0.95rem;
        outline: none;
        transition: all var(--transition-normal);
    }

    .mobile-search::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .mobile-search:focus {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.22) 0%, 
            rgba(255, 255, 255, 0.15) 100%);
        border-color: rgba(6, 182, 212, 0.5);
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
    }

    .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: var(--radius-lg);
        justify-content: flex-start;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.08);
        margin-bottom: 0.25rem;
    }

    .navbar-nav .nav-link i {
        width: 20px;
        text-align: center;
        margin-right: 0.75rem !important;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(8px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link.active {
        /* background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(6, 182, 212, 0.25)); */
        box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
    }

    .menu-toggle {
        display: flex;
    }

    .navbar-container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 480px) {
    .navbar-nav {
        width: calc(100vw - 2rem);
        right: 1rem;
        left: 1rem;
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }
    
    .navbar-container {
        padding: 0 var(--space-md);
    }
    
    .navbar-brand .logo {
        font-size: 1.3rem;
    }
}

/* Enhanced Animation for mobile menu */
@keyframes slideDownFadeGlass {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        backdrop-filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        backdrop-filter: blur(25px);
    }
}

/* Gradient animation for logo */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (max-width: 480px) {
    .navbar-nav {
        width: 100vw;
        right: 0;
        left: 0;
        border-radius: 0;
    }
    
    .navbar-container {
        padding: 0 var(--space-sm);
    }
    
    .navbar-brand .logo {
        font-size: 1.25rem;
    }
}

/* Animation for mobile menu */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Body padding to account for fixed navbar */
body {
    padding-top: 80px;
}

/* Additional mobile responsive adjustments */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.4rem 0;
    }
}

/* Trending Destinations Dropdown */
.trending-dropdown {
    position: relative;
}

.trending-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.trending-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.trending-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    z-index: 1001;
    margin-top: 8px;
}

.trending-dropdown:hover .trending-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.trending-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px 16px 0 0;
}

.trending-title {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.trending-subtitle {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 400;
}

.trending-destinations {
    padding: 8px 0;
    max-height: 300px;
    overflow-y: auto;
}

.trending-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.trending-item:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-left-color: var(--primary-color);
    transform: translateX(2px);
}

.destination-flag {
    font-size: 1.5rem;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gray-50);
}

.destination-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.destination-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.destination-country {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 400;
}

.trending-badge {
    font-size: 1rem;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.trending-item:hover .trending-badge {
    transform: scale(1.2);
    opacity: 1;
}

.trending-footer {
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
    border-radius: 0 0 16px 16px;
}

.view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-all-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.view-all-btn i {
    font-size: 0.85rem;
}

/* Trending Dropdown Mobile Responsive */
@media (max-width: 768px) {
    .trending-dropdown {
        position: static;
    }
    
    .trending-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        transform: none;
        min-width: auto;
        margin: 8px 16px 0;
        max-width: calc(100vw - 32px);
    }
    
    .trending-dropdown:hover .trending-menu {
        transform: none;
    }
    
    .trending-destinations {
        max-height: 250px;
    }
    
    .destination-flag {
        font-size: 1.25rem;
        width: 28px;
        height: 28px;
    }
    
    .destination-name {
        font-size: 0.9rem;
    }
    
    .destination-country {
        font-size: 0.75rem;
    }
}

/* Search Container - Updated to match header.html design */
.search-container {
    display: flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 30px !important;
    padding: 0.3rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-width: 320px !important;
    width: 100% !important;
    backdrop-filter: blur(12px) !important;
    position: relative !important;
    overflow: visible !important;
}

.search-container:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

.search-container:focus-within {
    border-color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 8px 30px rgba(0, 0, 0, 0.25) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
}

.search-input {
    border: none !important;
    outline: none !important;
    padding: 0.7rem 1.2rem !important;
    border-radius: 30px !important;
    flex: 1 !important;
    font-size: 1rem !important;
    color: white !important;
    background: transparent !important;
    font-weight: 400 !important;
    z-index: 1 !important;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 300 !important;
    font-size: 0.95rem !important;
}

.search-btn {
    background: linear-gradient(135deg, #2563eb, #06b6d4) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 100px !important;
    height: 55px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 1 !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3) !important;
}

.search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4) !important;
}

.search-btn:active {
    transform: scale(0.95) !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3) !important;
}

.search-btn i {
    font-size: 1.1rem !important;
}

/* Expanded state for default (non-scrolled) header */
.search-container.expanded .search-input {
    width: 200px !important;
    opacity: 1 !important;
}
.search-container.expanded {
    padding-right: 15px !important;
    max-width: 350px !important;
}

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

/* Expandable Search Icon */
.navbar-search-icon {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: var(--space-lg);
}

.search-icon-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: white;
    font-size: 1.1rem;
}

.search-icon-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

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

.search-input-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 0.3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    overflow: hidden;
    width: 0;
    pointer-events: none;
}

.navbar-search-icon.expanded .search-input-container {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    width: 280px;
    pointer-events: auto;
}

.navbar-search-input {
    border: none;
    outline: none;
    padding: 0.7rem 1rem;
    border-radius: 30px;
    flex: 1;
    font-size: 1rem;
    color: white;
    background: transparent;
    font-weight: 400;
    width: 200px;
}

.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    font-size: 0.95rem;
}

.navbar-search-btn {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    margin-left: 0.5rem;
}

.navbar-search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
}

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

.navbar-search-btn i {
    font-size: 0.9rem;
}

/* Mobile Responsive for Search Icon */
@media (max-width: 768px) {
    .navbar-search-icon {
        margin-left: var(--space-md);
    }
    
    .search-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .navbar-search-icon.expanded .search-input-container {
        width: 250px;
    }
    
    .navbar-search-input {
        width: 160px;
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .navbar-search-btn {
        width: 32px;
        height: 32px;
        margin-left: 0.3rem;
    }
    
    .navbar-search-btn i {
        font-size: 0.8rem;
    }
}

/* Desktop hover expansion for search icon */
@media (min-width: 769px) {
    .navbar-search-icon:hover .search-input-container {
        transform: translateY(-50%) scaleX(1);
        opacity: 1;
        width: 280px;
        pointer-events: auto;
    }
}

.hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.2), transparent);
    transition: left 0.6s ease;
}

.hamburger:hover::before {
    left: 100%;
}

.hamburger:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.hamburger.active {
    transform: scale(1.1) rotate(180deg);
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.hamburger.active span {
    background: linear-gradient(90deg, var(--accent-color), var(--error-color));
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles with Integrated Search */
@media (max-width: 768px) {
    .header .container {
        position: relative;
    }
    
    .navigation {
        position: relative;
    }
    
    /* Hide header search bar on mobile */
    .search-container {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(37, 99, 235, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    }

    .nav-link {
        width: 100%;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--gray-700);
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(37, 99, 235, 0.05);
        color: var(--primary-color);
        padding-left: 1rem;
        transform: translateX(5px);
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    /* Mobile Search Form Inside Navigation */
    .mobile-search-container {
        width: 100%;
        margin: 1.5rem 0;
        padding-top: 1rem;
        border-top: 1px solid rgba(37, 99, 235, 0.1);
    }
    
    .mobile-search-form {
        display: flex;
        width: 100%;
        background: rgba(37, 99, 235, 0.1);
        border: 1px solid rgba(37, 99, 235, 0.2);
        border-radius: var(--radius-full);
        padding: 0.25rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-search-input {
        flex: 1;
        border: none;
        outline: none;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-full) 0 0 var(--radius-full);
        font-size: 1rem;
        color: var(--gray-700);
        background: transparent;
    }
    
    .mobile-search-input::placeholder {
        color: var(--gray-500);
    }
    
    .mobile-search-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .mobile-search-btn:hover {
        background: var(--primary-dark);
        transform: scale(1.05);
    }
    
    .mobile-search-btn:active {
        transform: scale(0.95);
    }
    
    /* Trending dropdown adjustments for mobile */
    .trending-dropdown .trending-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        min-width: auto;
        border-radius: 0;
        margin-top: 0;
    }

    .trending-header {
        background: rgba(37, 99, 235, 0.05);
        border-radius: 8px;
        margin-bottom: 0.5rem;
        padding: 1rem;
    }

    .trending-destinations {
        max-height: none;
        padding: 0;
    }

    .trending-item {
        padding: 0.8rem 0;
        margin: 0;
        border-left: none;
        border-bottom: 1px solid rgba(37, 99, 235, 0.05);
    }

    .trending-footer {
        padding: 1rem 0 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        padding: 4rem 1.5rem 1.5rem;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1rem;
    }

    /* Search Demo Mobile Styles */
    .search-demo-section {
        padding: 3rem 0;
    }

    .search-demo-container {
        padding: 0 1rem;
    }

    .search-demo-input {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .search-input-wrapper {
        position: relative;
        margin-bottom: 0;
    }

    #demo-search {
        padding: 1.2rem 4rem 1.2rem 1.2rem;
        font-size: 1rem;
    }

    .search-btn {
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        margin: 0;
        justify-content: center;
        align-items: center;
    }

    .demo-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .demo-feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.9) 0%, 
        rgba(6, 182, 212, 0.8) 50%,
        rgba(245, 158, 11, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="%23667eea"/><rect width="1200" height="800" fill="url(%23grid)"/><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="300" r="200" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="600" r="180" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: center;
    top: -84px;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1.2s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: slideInLeft 1s ease-out;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content p {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-light);
    opacity: 0.95;
    margin-bottom: var(--space-2xl);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInRight 1s ease-out;
    animation-delay: 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content .btn {
    animation: bounceIn 1s ease-out;
    animation-delay: 1.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-content .btn:nth-child(2) {
    animation-delay: 1.4s;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Enhanced Styles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    animation: particleFloat 20s ease-in-out infinite;
}

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

.hero-announcement {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

.announcement-badge {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    margin-left: 0.5rem;
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: white;
    text-align: center;
    letter-spacing: -0.02em;
}

.gradient-text-animated {
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.65;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
}

.pulse-animation {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.hero-social-proof {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid white;
    font-size: 1.2rem;
}

.avatar-count {
    background: #FF6B6B;
    color: white;
    padding: 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

.proof-text {
    color: white;
    font-size: 0.9rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: 0 auto 0.5rem;
}

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

/* Search Demo Section */
.search-demo-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.search-demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.search-demo-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.search-demo-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-demo-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.05);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.search-input-wrapper:focus-within {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.search-input-wrapper:hover {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

#demo-search {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 30px;
    color: #1F2937;
    background: transparent;
    font-weight: 400;
}

#demo-search::placeholder {
    color: #9CA3AF;
    font-weight: 300;
}

.search-btn {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-right: 0.5rem;
}

.search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.search-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

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

.demo-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: #374151;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.demo-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.demo-feature i {
    color: #3B82F6;
    font-size: 1.1rem;
}

/* Floating Animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

/* Main Content */
.main-content {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    min-height: 100vh;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    animation: slideInLeft 1.2s ease-out;
}

.welcome-section h3 {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    animation: fadeInDown 1s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.problem-statement {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto var(--space-3xl) auto;
    line-height: 1.8;
    font-weight: var(--font-weight-normal);
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.feature-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-card:nth-child(1) { animation-delay: 0.9s; opacity: 0; animation-fill-mode: forwards; }
.feature-card:nth-child(2) { animation-delay: 1.1s; opacity: 0; animation-fill-mode: forwards; }
.feature-card:nth-child(3) { animation-delay: 1.3s; opacity: 0; animation-fill-mode: forwards; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.feature-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
    display: block;
    animation: bounce 1s ease-out;
    animation-delay: inherit;
}

.feature-card h4 {
    font-size: var(--text-xl);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-semibold);
}

.feature-card p {
    color: var(--gray-600);
    flex-grow: 1;
    font-size: var(--text-base);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

/* Ensure destinations section header is centered */
.destinations-section .section-header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Destination Section */
.destination-section {
    margin-bottom: var(--space-3xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1s ease-out;
}

.destination-section h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-2xl);
    text-align: center;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.8s ease-out;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    align-items: start;
}

.photo-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    animation: scaleIn 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.photo-card:nth-child(1) { animation-delay: 0.4s; }
.photo-card:nth-child(2) { animation-delay: 0.6s; }
.photo-card:nth-child(3) { animation-delay: 0.8s; }
.photo-card:nth-child(4) { animation-delay: 1.0s; }
.photo-card:nth-child(5) { animation-delay: 1.2s; }

.photo-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

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

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

.photo-card .photo-info {
    padding: var(--space-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.photo-card .photo-info h4 {
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
}

.photo-card .photo-info p {
    color: var(--gray-600);
    font-size: var(--text-sm);
    line-height: 1.5;
}

/* Weather Section */
.weather-section {
    margin-bottom: 40px;
}

.weather-section h3 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 2rem;
    text-align: center;
}

.weather-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.weather-icon {
    font-size: 4rem;
    color: #0077b6;
}

.weather-info {
    flex: 1;
}

.temperature {
    font-size: 3rem;
    font-weight: 700;
    color: #0077b6;
    margin-bottom: 5px;
}

.condition {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.location {
    font-size: 1rem;
    color: #666;
}

/* Recent Searches Section */
.recent-searches-section {
    margin-bottom: 40px;
}

.recent-searches-section h3 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 2rem;
    text-align: center;
}

.recent-searches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.search-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: #0077b6;
    color: white;
}

.search-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: inherit;
}

.search-card p {
    font-size: 0.9rem;
    color: #666;
}

.search-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.no-searches {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px;
}

/* Footer Enhanced */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 8rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #4ECDC4;
    padding-left: 0.5rem;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #4ECDC4;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom a  {
    text-decoration: none;
}

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

.footer-credits p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.footer-badge i {
    color: #4ECDC4;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-credits {
        text-align: center;
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
}

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

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: footerFloat 10s ease-in-out infinite;
    pointer-events: none;
}

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

.footer p {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Section Refinements */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-trust {
    margin-top: 2rem;
    text-align: center;
}

.hero-trust span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Section Headers Enhancement */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-badge.premium {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.15));
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
    animation: premiumGlow 2s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    from { box-shadow: 0 0 10px rgba(255, 107, 107, 0.3); }
    to { box-shadow: 0 0 20px rgba(255, 107, 107, 0.5), 0 0 30px rgba(78, 205, 196, 0.3); }
}

@keyframes glow {
    from { box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
    to { box-shadow: 0 0 25px rgba(255, 255, 255, 0.4); }
}

/* Welcome Section Refinements */
.welcome-header {
    text-align: center;
    margin-bottom: 4rem;
}

.welcome-header h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.welcome-header .problem-statement {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

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

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Popular Destinations Section Refinements */
.popular-destinations-section {
    margin: 0;
    padding: 7rem 0;
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 50%, #f8f9ff 100%);
    width: 100%;
    position: relative;
}

.popular-destinations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.2) 50%, transparent 100%);
}

.popular-destinations-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.2) 50%, transparent 100%);
}

.destination-highlight.featured {
    position: relative;
    overflow: hidden;
}

.destination-highlight.featured::after {
    content: '🔥 Popular';
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--error-color), var(--accent-color));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    z-index: 3;
}

.destination-rating {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.destination-rating i {
    color: var(--accent-color);
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.search-count {
    font-size: 0.85rem;
    color: var(--success-color);
    font-weight: 600;
}

.destinations-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Benefits Section Refinements */
.benefit-metric {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Section Refinements */
.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.cta-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.cta-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cta-trust {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: rgba(255, 255, 255, 0.9);
}

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

.destination-highlight {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.destination-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.destination-highlight:hover::before {
    left: 100%;
}

.destination-highlight:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

/* Hide destination details by default, show on hover */
.destination-highlight .destination-details {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.97), rgba(6, 182, 212, 0.97));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    overflow: hidden;
    border-radius: var(--radius-xl);
    gap: 1.5rem;
}

.destination-highlight:hover .destination-details {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

/* Hide unnecessary elements in hover state */
.destination-highlight .destination-details .destination-price,
.destination-highlight .destination-details .destination-highlights,
.destination-highlight .destination-details .destination-meta {
    display: none;
}

/* Custom scrollbar for destination details */
.destination-details::-webkit-scrollbar {
    width: 6px;
}

.destination-details::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.destination-details::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.destination-details::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.destination-image {
    height: 200px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-emoji {
    font-size: 4rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
}

.destination-details h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.destination-details p {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.destination-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
    margin: 6rem 0;
}

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

.benefit-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Travel Tips Section */
.travel-tips-section {
    margin: 6rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    border-radius: var(--radius-2xl);
}

.tips-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tip-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
}

.tip-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.tip-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.8rem;
}

.tip-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    margin: 6rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Call to Action Section */
.cta-section {
    margin: 6rem 0;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    border-radius: var(--radius-2xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

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

.cta-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mobile Responsive Styles */

/* Mobile Typography Improvements */
@media (max-width: 768px) {
    /* Hero Section Mobile Typography */
    .hero-content h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: clamp(1rem, 4vw, 1.3rem);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    /* General Typography Improvements */
    h1, h2, h3 {
        line-height: 1.3;
    }

    h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
    h3 { font-size: clamp(1.3rem, 4vw, 1.8rem); }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    /* Welcome Section */
    .welcome-section h3 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .problem-statement {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* Feature Cards */
    .feature-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Destination Cards */
    .destination-details h4 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .destination-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Statistics */
    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .stat-description {
        font-size: 0.9rem;
    }
}

/* Touch-Friendly Elements */
@media (max-width: 768px) {
    /* Buttons - Minimum 44px touch target */
    .btn, .btn-hero, .btn-large, .btn-outline {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    /* Search Elements */
    .search-container, .search-input-container {
        min-height: 48px;
    }

    .search-input, .navbar-search-input, .mobile-search-input {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        min-height: 48px;
    }

    .search-btn, .navbar-search-btn, .mobile-search-btn {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    /* Navigation Elements */
    .hamburger {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* Form Elements */
    input, select, textarea {
        min-height: 48px;
        font-size: 1rem;
    }

    /* Interactive Elements */
    .destination-card, .feature-card, .benefit-item, .tip-card {
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .destination-card:active, .feature-card:active, .benefit-item:active, .tip-card:active {
        transform: scale(0.98);
    }
}

/* Layout Fixes and Spacing */
@media (max-width: 768px) {
    /* Container and Spacing */
    .container {
        padding: 0 1rem;
    }

    /* Hero Section Layout */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .hero-stats .stat-item {
        flex: 1;
        min-width: 0;
    }

    .hero-actions {
        gap: 1rem;
        margin: 2rem 0;
    }

    /* Section Spacing */
    .content-section {
        margin-bottom: 60px;
        padding: 40px 0;
    }

    .content-section:nth-child(even) {
        margin: 40px 0;
        padding: 40px 1rem;
    }

    /* Grid Layouts */
    .features-grid, .benefits-grid, .destinations-showcase {
        gap: 1.5rem;
    }

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

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

    .destinations-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Card Spacing */
    .feature-card, .benefit-item, .destination-highlight {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .destination-highlight {
        min-width: auto;
        max-width: 100%;
    }
    
    .destination-highlight .destination-details {
        padding: 2rem 1.5rem;
        gap: 1.25rem;
    }
    
    .destination-header h4 {
        font-size: 1.4rem;
    }
    
    .destination-details > p {
        font-size: 0.9rem;
    }
    
    .destination-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .destination-cta .btn-sm {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        min-width: auto;
    }

    /* Text Content */
    .text-content {
        padding: 1.5rem;
    }

    .section-content {
        gap: 2rem;
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        gap: 2rem;
    }

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

/* Image and Media Responsiveness */
@media (max-width: 768px) {
    /* Destination Images */
    .destination-image {
        height: 180px;
        margin-bottom: 1rem;
    }

    .destination-emoji {
        font-size: 3rem;
    }

    /* Photo Gallery */
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .photo-card img {
        height: 200px;
    }

    /* Background Images */
    .destination-card[data-destination] .destination-image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Quick Access Images */
    .quick-dest-image {
        height: 100px;
    }

    .dest-emoji {
        font-size: 2rem;
    }

    /* Modal Images */
    .modal-main-image {
        height: 250px;
    }

    .modal-image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    }

    .modal-gallery-thumb {
        height: 70px;
    }
}

/* Navigation Improvements */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 0.75rem 0;
    }

    /* Mobile Navigation */
    .nav-menu {
        padding: 4rem 1.5rem 2rem;
        width: 100%;
        max-width: 320px;
    }

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

    /* Mobile Search */
    .mobile-search-container {
        margin: 1rem 0;
        padding-top: 0.5rem;
    }

    .mobile-search-form {
        padding: 0.5rem;
    }

    .mobile-search-input {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .mobile-search-btn {
        width: 44px;
        height: 44px;
    }

    /* Expandable Search */
    .navbar-search-icon.expanded .search-input-container {
        width: 240px;
    }

    .navbar-search-input {
        width: 180px;
        padding: 0.75rem 0.875rem;
    }

    .navbar-search-btn {
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Typography */
    .hero-content h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-content p {
        font-size: clamp(0.95rem, 4vw, 1.2rem);
    }

    /* Spacing */
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 0 0.75rem;
    }

    /* Stats */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .hero-stats .stat-number {
        font-size: 1.8rem;
    }

    /* Buttons */
    .hero-actions {
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .btn-hero, .btn-large {
        width: 100%;
        max-width: none;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    /* Cards */
    .feature-card, .benefit-item, .destination-highlight {
        padding: 1.25rem;
    }

    .destination-image {
        height: 150px;
    }

    .destination-emoji {
        font-size: 2.5rem;
    }

    /* Navigation */
    .nav-menu {
        padding: 3rem 1rem 1.5rem;
    }

    .nav-link {
        padding: 0.875rem 0;
        font-size: 1rem;
    }

    /* Stats Container */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 2rem 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    /* Modal */
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
    }

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

    .modal-main-image {
        height: 200px;
    }
}

/* Prevent Horizontal Scrolling */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    body {
        overflow-x: hidden;
    }

    .container, .hero-content, .section-content {
        overflow: hidden;
    }

    /* Grid Items */
    .feature-card, .benefit-item, .destination-highlight, .photo-card {
        width: 100%;
        min-width: 0;
    }

    /* Text Wrapping */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile Accessibility and Touch Features */
@media (max-width: 768px) {
    /* Skip Link */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--primary-color);
        color: white;
        padding: 8px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 1000;
        font-weight: 600;
    }

    .skip-link:focus {
        top: 6px;
    }

    /* Screen Reader Only Content */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Enhanced Focus States */
    .btn:focus,
    .search-input:focus,
    .nav-link:focus,
    .hamburger:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
        box-shadow: 0 0 0 3px rgba(67, 156, 255, 0.3);
    }

    /* Touch Active States */
    .nav-link.touch-active,
    .btn.touch-active {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(0.98);
    }

    /* Mobile Context Menu */
    .mobile-context-menu {
        position: fixed;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 2000;
        min-width: 160px;
        overflow: hidden;
        border: 1px solid #e0e0e0;
    }

    .context-menu-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        border-bottom: 1px solid #f0f0f0;
        cursor: pointer;
        transition: background-color 0.2s ease;
        font-size: 14px;
    }

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

    .context-menu-item:hover {
        background-color: #f8f9fa;
    }

    .context-menu-item i {
        color: var(--primary-color);
        width: 16px;
    }

    /* Voice Search Button */
    .voice-search-btn {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 18px;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.2s ease;
    }

    .voice-search-btn:hover {
        background-color: rgba(67, 156, 255, 0.1);
    }

    .voice-search-btn:active {
        transform: translateY(-50%) scale(0.9);
    }

    /* Voice Search Active State */
    .voice-searching {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(67, 156, 255, 0.3);
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }

    /* Low Battery Mode */
    .low-battery * {
        animation-duration: 0.3s !important;
        animation-delay: 0s !important;
        transition-duration: 0.2s !important;
    }

    .low-battery .floating-element {
        animation: none !important;
    }

    /* Slow Connection Optimizations */
    .slow-connection img {
        filter: blur(1px);
        transition: filter 0.3s ease;
    }

    .slow-connection img.loaded {
        filter: none;
    }

    .slow-connection .photo-card,
    .slow-connection .destination-highlight {
        background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
                    linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
                    linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
                    linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
        background-size: 20px 20px;
        background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
        animation: loading-pattern 1s linear infinite;
    }

    @keyframes loading-pattern {
        0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
        100% { background-position: 20px 0, 20px 10px, 30px -10px, 10px 0px; }
    }

    /* Viewport Height Fix */
    .hero, .modal-content {
        height: calc(var(--vh, 1vh) * 100);
        max-height: calc(var(--vh, 1vh) * 100);
    }

    /* Mobile Modal Improvements */
    .destination-modal.active {
        padding: 0;
    }

    .modal-content {
        margin: 1rem;
        max-height: calc(var(--vh, 1vh) * 90);
        overflow-y: auto;
    }

    .modal-body {
        padding: 1rem;
    }

    /* Improved Button States */
    .btn:active,
    .btn.touch-active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Better Input Handling */
    input[type="text"],
    input[type="search"],
    select,
    textarea {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Prevent text selection on interactive elements */
    .btn,
    .nav-link,
    .hamburger,
    .destination-card,
    .feature-card {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    /* Improved Scroll Behavior */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* Better Modal Scrolling */
    .modal-content {
        -webkit-overflow-scrolling: touch;
    }
}

/* Smooth Scaling for Grids and Flexbox */
@media (max-width: 768px) {
    .features-grid, .benefits-grid, .destinations-showcase, .photo-gallery {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .features-grid > *, .benefits-grid > *, .destinations-showcase > *, .photo-gallery > * {
        flex: 1 1 auto;
        min-width: 0;
    }

    /* Flexbox improvements */
    .hero-stats, .hero-actions, .cta-buttons, .footer-badges {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Grid fallbacks */
    @supports not (display: flex) {
        .features-grid, .benefits-grid, .destinations-showcase, .photo-gallery {
            display: block;
        }

        .features-grid > *, .benefits-grid > *, .destinations-showcase > *, .photo-gallery > * {
            display: block;
            margin-bottom: 1.5rem;
        }
    }
}

/* Page-specific Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.9) 0%, 
        rgba(29, 78, 216, 0.8) 50%,
        rgba(6, 182, 212, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="800" fill="%23667eea"/><rect width="1200" height="800" fill="url(%23grid)"/><circle cx="200" cy="200" r="150" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="300" r="200" fill="rgba(255,255,255,0.05)"/><circle cx="1000" cy="600" r="180" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 140px 0 80px 0;
    top: -88px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out;
}

.page-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 1000 100" fill="white" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>') bottom center/cover no-repeat;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

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

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1.2s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
    margin-bottom: 100px;
    padding: 60px 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: linear-gradient(135deg, var(--gray-50) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-radius: var(--radius-2xl);
    margin: 80px 0;
    padding: 80px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-section.alternate .section-content {
    direction: rtl;
}

.content-section.alternate .text-content {
    direction: ltr;
}

.text-content {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-content .lead {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.text-content h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.solution-list i {
    color: #0077b6;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

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

.problem-illustration,
.solution-illustration {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: var(--radius-2xl);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-illustration:hover,
.solution-illustration:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.problem-illustration::before,
.solution-illustration::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.problem-illustration i,
.solution-illustration i {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.problem-illustration h3,
.solution-illustration h3 {
    font-size: 1.5rem;
    color: #0077b6;
    margin: 0;
}

/* Technology Grid */
.tech-section {
    text-align: center;
}

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

.tech-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.tech-card i {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.tech-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f3ff 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 2rem;
}

.mission-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #333;
    margin: 2rem 0;
    line-height: 1.8;
    position: relative;
}

.mission-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #0077b6;
    position: absolute;
    top: -1rem;
    left: -2rem;
}

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

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Features Detailed */
.features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-500-rgb), 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--primary-500-rgb), 0.4);
}

.feature-info {
    flex: 1;
}

.feature-info h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin: 0 0 0.75rem 0;
    font-weight: var(--font-weight-semibold);
}

.feature-info p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Destinations Page Styles */
.filter-section {
    text-align: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.filter-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Filter Tabs for Destinations Page */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.filter-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: left 0.4s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
    border-color: transparent;
}

.destinations-grid {
    display: grid !important;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2rem 1rem;
    margin-bottom: var(--space-3xl);
    min-height: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .destination-card {
        height: 480px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .destination-image {
        height: 240px;
    }
    
    .destination-content {
        padding: 1.5rem;
    }
}

@media (max-width: 900px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .destination-card {
        height: 460px;
    }
    
    .destination-image {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .destination-card {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .destination-image {
        height: 260px;
    }
}

@media (max-width: 320px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem 0.5rem;
    }
    
    .destination-card {
        height: 480px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .destination-image {
        height: 220px;
    }
    
    .destination-content {
        padding: 1rem;
    }
    
    .destination-header h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        padding: 1.5rem 1rem;
    }
    
    .destination-card {
        height: 480px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .destination-image {
        height: 220px;
    }
    
    .destination-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1rem;
    }
    
    .destination-card {
        height: auto;
        min-height: 460px;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .destination-image {
        height: 240px;
    }
    
    .destination-content {
        padding: 1.25rem;
    }
}

.destination-card {
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 520px;
}

.destination-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.destination-image {
    background-color: #f3f4f6;
    position: relative;
    overflow: hidden;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    flex-shrink: 0;
    z-index: 1;
}

.destination-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Destination-specific backgrounds */
.destination-card[data-destination="paris"] .destination-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="tokyo"] .destination-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="new york"] .destination-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="sydney"] .destination-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="london"] .destination-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="dubai"] .destination-image {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="bali"] .destination-image {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1537953773345-d172ccf13cf1?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="rome"] .destination-image {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

.destination-card[data-destination="santorini"] .destination-image {
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), 
                      url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?w=800&h=600&fit=crop&crop=entropy&auto=format');
}

/* Trending destinations with blue color themes */
.destination-highlight[data-city="new york"] .destination-image {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    background-image: linear-gradient(rgba(37, 99, 235, 0.3), rgba(30, 64, 175, 0.5)), 
                      url('https://images.unsplash.com/photo-1496442226666-8d4d0e62e6e9?w=800&h=600&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.destination-highlight[data-city="sydney"] .destination-image {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    background-image: linear-gradient(rgba(14, 165, 233, 0.3), rgba(2, 132, 199, 0.5)), 
                      url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&h=600&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.destination-highlight[data-city="london"] .destination-image {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    background-image: linear-gradient(rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.5)), 
                      url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=800&h=600&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.destination-highlight[data-city="dubai"] .destination-image {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    background-image: linear-gradient(rgba(30, 64, 175, 0.3), rgba(30, 58, 138, 0.5)), 
                      url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=800&h=600&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.destination-highlight[data-city="singapore"] .destination-image {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    background-image: linear-gradient(rgba(6, 182, 212, 0.3), rgba(8, 145, 178, 0.5)), 
                      url('https://images.unsplash.com/photo-1525625293386-3f8f99389edd?w=800&h=600&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.destination-highlight[data-city="barcelona"] .destination-image {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    background-image: linear-gradient(rgba(29, 78, 216, 0.3), rgba(30, 58, 138, 0.5)), 
                      url('https://images.unsplash.com/photo-1539037116277-4db20889f2d4?w=800&h=600&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

/* Hover effects for trending destination images */
.destination-highlight:hover .destination-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.destination-highlight .destination-image {
    transition: transform 0.3s ease;
}

/* Recent Searches / Quick Access Styling */
.popular-quick-access {
    margin-top: 2rem;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quick-destination-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.quick-destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.quick-destination-card:active {
    transform: translateY(-4px) scale(0.98);
    transition: all 0.15s ease;
}

.quick-dest-image {
    height: 120px;
    position: relative;
    overflow: hidden;
}

.quick-destination-card[data-destination="paris"] .quick-dest-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.5)), 
                      url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="tokyo"] .quick-dest-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: linear-gradient(rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.5)), 
                      url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="bali"] .quick-dest-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    background-image: linear-gradient(rgba(67, 233, 123, 0.3), rgba(56, 249, 215, 0.5)), 
                      url('https://images.unsplash.com/photo-1537953773345-d172ccf13cf1?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="rome"] .quick-dest-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    background-image: linear-gradient(rgba(250, 112, 154, 0.3), rgba(254, 225, 64, 0.5)), 
                      url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="iceland"] .quick-dest-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.5)), 
                      url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="santorini"] .quick-dest-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-image: linear-gradient(rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.5)), 
                      url('https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="dubai"] .quick-dest-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: linear-gradient(rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.5)), 
                      url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="maldives"] .quick-dest-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    background-image: linear-gradient(rgba(67, 233, 123, 0.3), rgba(56, 249, 215, 0.5)), 
                      url('https://images.unsplash.com/photo-1573843981267-be1999ff37cd?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="switzerland"] .quick-dest-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.5)), 
                      url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="thailand"] .quick-dest-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: linear-gradient(rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.5)), 
                      url('https://images.unsplash.com/photo-1552642986-ccb41e7059e7?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="morocco"] .quick-dest-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: linear-gradient(rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.5)), 
                      url('https://images.unsplash.com/photo-1539650116574-75c0c6d73aeb?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="newzealand"] .quick-dest-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    background-image: linear-gradient(rgba(67, 233, 123, 0.3), rgba(56, 249, 215, 0.5)), 
                      url('https://images.unsplash.com/photo-1507699622108-4be3abd695ad?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="peru"] .quick-dest-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    background-image: linear-gradient(rgba(250, 112, 154, 0.3), rgba(254, 225, 64, 0.5)), 
                      url('https://images.unsplash.com/photo-1526392060635-9d6019884377?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="norway"] .quick-dest-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    background-image: linear-gradient(rgba(79, 172, 254, 0.3), rgba(0, 242, 254, 0.5)), 
                      url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.quick-destination-card[data-destination="australia"] .quick-dest-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    background-image: linear-gradient(rgba(240, 147, 251, 0.3), rgba(245, 87, 108, 0.5)), 
                      url('https://images.unsplash.com/photo-1523482580672-f109ba8cb9be?w=600&h=400&fit=crop&crop=entropy&auto=format');
    background-size: cover;
    background-position: center;
}

.image-overlay-quick {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-emoji {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.quick-dest-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.quick-dest-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.quick-dest-info p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quick-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quick-stats .temp {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
}

.quick-stats .rating {
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 500;
}

.quick-action {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quick-destination-card:hover .quick-action {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.6);
    }
}

/* Hover Info Panel */
.hover-info-panel {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(6, 182, 212, 0.95));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.quick-destination-card:hover .hover-info-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hover-info-content {
    color: white;
    text-align: center;
    width: 100%;
}

.hover-info-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.hover-info-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hover-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.hover-tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hover-info-panel .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    background: white;
    color: var(--primary-color);
    border: none;
}

.hover-info-panel .btn-sm:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Destination Modal Styling */
.destination-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
}

.destination-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: backdropFadeIn 0.3s ease-out;
}

@keyframes backdropFadeIn {
    from {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
    }
    to {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
}

.modal-content {
    background: white;
    border-radius: var(--radius-2xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.85) translateY(60px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

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

@keyframes backdropFadeOut {
    from {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
    to {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInDown 0.4s ease-out 0.1s both;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-500);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-image-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

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

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

.modal-main-image {
    height: 300px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.modal-main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-main-image:hover::before {
    opacity: 1;
}

.modal-main-image:hover {
    transform: scale(1.02);
}

.modal-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.modal-gallery-thumb {
    height: 80px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-gallery-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.3), rgba(6, 182, 212, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-gallery-thumb:hover::before {
    opacity: 1;
}

.modal-gallery-thumb:hover,
.modal-gallery-thumb.active {
    border-color: var(--primary-color);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.modal-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.modal-quick-info > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.modal-quick-info i {
    color: var(--primary-color);
}

.modal-description p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
}

.modal-highlights h4,
.modal-travel-tips h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

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

.modal-highlight-item {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.modal-highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modal-highlight-item:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

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

.modal-highlight-item .highlight-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.modal-highlight-item:hover .highlight-icon {
    transform: scale(1.15);
}

.modal-highlight-item .highlight-text {
    font-weight: 500;
    color: var(--gray-700);
}

.travel-tips-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.travel-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.travel-tip-item .tip-icon {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.travel-tip-item .tip-text {
    color: var(--gray-600);
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.modal-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.modal-actions .btn:active {
    transform: translateY(0);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .destination-modal.active {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-main-image {
        height: 200px;
    }
    
    .modal-quick-info {
        grid-template-columns: 1fr;
    }
    
    .modal-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    /* Hover Panel Mobile Adjustments */
    .hover-info-panel {
        padding: 1rem;
    }
    
    .hover-info-content h5 {
        font-size: 0.85rem;
    }
    
    .hover-info-content p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .hover-tags {
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }
    
    .hover-tags span {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .hover-info-panel .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.destination-card:hover .image-overlay {
    opacity: 1;
}

/* More Info Button on Image Overlay */
.btn-more-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-600);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    opacity: 0;
    z-index: 10;
}

.destination-card:hover .btn-more-info {
    transform: translateY(0);
    opacity: 1;
}

.btn-more-info:hover {
    background: var(--primary-600);
    color: white;
    border-color: var(--primary-600);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

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

.destination-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.destination-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: white;
    opacity: 1;
    visibility: visible;
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.destination-header h3 {
    color: var(--gray-900);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-header h3 i {
    color: #667eea;
    font-size: 1.1rem;
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 193, 7, 0.15);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.destination-rating i {
    color: #ffc107;
    font-size: 0.75rem;
}

.destination-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.925rem;
    flex-grow: 1;
    opacity: 1;
    visibility: visible;
}

/* Force all destination cards to be visible */
.destinations-section {
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: auto;
}

.destinations-section .destination-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

.destinations-section .destinations-grid {
    display: grid !important;
    width: 100%;
    grid-auto-rows: auto;
}

/* Ensure images always have a background */
.destination-card .destination-image {
    background-color: #f3f4f6;
    opacity: 1;
    visibility: visible;
}

/* Smooth fade-in animation for cards */
@keyframes smoothFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card.fade-in-ready {
    animation: smoothFadeIn 0.5s ease-out forwards;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f8fafc;
    color: #475569;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.feature-tag i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.destination-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.explore-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.explore-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;
}

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

.explore-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.3s ease;
}

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

.search-count {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray-500);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

.search-count i {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.destination-info h3 {
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.destination-info p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.destination-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.destination-info-btn {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.destination-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.destination-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%);
    background-size: 100% 100%, 100% 100%, 60px 60px;
    opacity: 0.7;
}

.destination-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    z-index: 2;
}

.destination-card:hover .destination-emoji {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

.destination-badges {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    display: flex;
    gap: var(--space-sm);
    z-index: 3;
}

.destination-region-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-700);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.destination-favorite {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-md);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.destination-favorite:hover {
    background: var(--white);
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.destination-favorite i {
    color: var(--gray-400);
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.destination-favorite.active i {
    color: #ff4757;
    transform: scale(1.1);
}

.destination-favorite:hover i {
    color: #ff4757;
}

.destination-highlights {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.destination-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.highlights-header {
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlights-header i {
    color: var(--accent-color);
    font-size: 1rem;
}

.highlights-list {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
}

.meta-time {
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: var(--font-weight-semibold);
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 100px;
    border: 1px solid #e2e8f0;
}

.meta-time i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.destination-explore-btn {
    padding: var(--space-md) var(--space-xl);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    border: none;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.destination-explore-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 100%);
}

.destination-explore-btn i {
    font-size: 0.9rem;
}

/* Enhanced destination card animations */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(0.5deg); }
}

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

.destination-card {
    animation: cardFloat 6s ease-in-out infinite;
}

/* Simple hover transition for destination cards */

/* Add shimmer effect to explore button */
.destination-explore-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;
}

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

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-top: auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Tips Section */
.tips-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #0077b6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tip-card h3 {
    color: #0077b6;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    margin-bottom: 6rem;
    padding: 4rem 0;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    padding: 4rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.centered-form {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-info p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #0077b6;
    width: 40px;
    text-align: center;
}

.contact-method h3 {
    margin: 0 0 0.25rem 0;
    color: #333;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.social-links h3 {
    color: #0077b6;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #0077b6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #005a8a;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #0077b6;
    margin-bottom: 2rem;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e6f3ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    background: #0077b6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: #005a8a;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background: #e6f3ff;
}

.faq-question h3 {
    margin: 0;
    color: #0077b6;
    font-size: 1.1rem;
}

.faq-question i {
    color: #0077b6;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Developer Section */
.developer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f3ff 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.developer-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.developer-info h2 {
    color: #0077b6;
    margin-bottom: 0.5rem;
    text-align: left;
}

.developer-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.developer-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.developer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #0077b6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.developer-avatar {
    text-align: center;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0077b6, #005a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .header .container {
        flex-direction: column;
        text-align: center;
        position: relative;
        padding: var(--space-md);
    }
    
    .navigation {
        order: 3;
        width: 100%;
        animation: fadeInUp 0.6s ease-out;
        animation-delay: 0.4s;
        opacity: 0;
        animation-fill-mode: forwards;
    }
    
        .nav-menu {
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;  /* ← Added this line */
}
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideInDown 0.3s ease-out;
    }
    
    .nav-link {
        color: var(--gray-700);
        padding: var(--space-md) var(--space-lg);
        margin: 0 var(--space-md);
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);
    }
    
    .hamburger {
        display: flex;
        position: absolute;
        top: 50%;
        right: var(--space-md);
        transform: translateY(-50%);
        animation: scaleIn 0.6s ease-out;
        animation-delay: 0.6s;
        opacity: 0;
        animation-fill-mode: forwards;
    }
    
    .search-container {
        order: 3;
        max-width: 100%;
        margin-top: 1rem;
        width: calc(100% - 2rem);
    }
    
    .logo {
        animation: slideInLeft 0.6s ease-out;
        animation-delay: 0.2s;
        opacity: 0;
        animation-fill-mode: forwards;
    }
    
    .logo h1 {
        font-size: var(--text-lg);
        margin-bottom: var(--space-sm);
    }
    
    .search-container {
        max-width: 100%;
        order: 2;
        margin-top: var(--space-sm);
        height: 36px;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: 80vh;
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .hero-content h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-content p {
        font-size: var(--text-base);
        margin-bottom: var(--space-xl);
    }
    
    .welcome-section {
        padding: var(--space-2xl) var(--space-md);
        margin: var(--space-xl) var(--space-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .destination-section,
    .weather-section,
    .recent-searches-section {
        padding: 0 var(--space-md);
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .weather-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
        margin: 0 var(--space-md);
    }
    
    .weather-icon {
        font-size: 3rem;
    }
    
    .temperature {
        font-size: 2.5rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .recent-searches {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .welcome-section {
        padding: 40px 20px;
    }
    
    .welcome-section h3 {
        font-size: 2rem;
    }
    
    .destination-section h3,
    .weather-section h3,
    .recent-searches-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .recent-searches {
        grid-template-columns: 1fr;
    }
    
    .weather-card {
        padding: 20px;
    }
    
    .search-card {
        padding: 15px;
    }
    
    /* Page-specific mobile styles */
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-section.alternate .section-content {
        direction: ltr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .features-detailed {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 2rem;
    }
    
    .developer-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .tips-container {
        grid-template-columns: 1fr;
    }
    
    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Premium Section Headers */
.section-header-premium {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header-premium .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.section-header-premium .section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.section-header-premium .section-badge:hover::before {
    left: 100%;
}

.section-header-premium h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header-premium p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Enhanced Problem/Solution Sections */
.content-section .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-section.alternate .section-content {
    grid-template-columns: 1fr 1fr;
}

.problem-illustration.premium,
.solution-illustration.premium {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.problem-illustration.premium::before,
.solution-illustration.premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.problem-illustration i,
.solution-illustration i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.illustration-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.illustration-stats .stat {
    text-align: center;
}

.illustration-stats .stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.illustration-stats .stat small {
    color: #6b7280;
    font-size: 0.875rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.tech-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.3);
}

@media (max-width: 768px) {
    .content-section .section-content,
    .content-section.alternate .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header-premium {
        margin-bottom: 2rem;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    z-index: 2;
    border: 4px solid white;
}

.timeline-item.future .timeline-marker {
    background: linear-gradient(135deg, #9ca3af, #6b7280);
    box-shadow: 0 4px 20px rgba(107, 114, 128, 0.3);
}

.timeline-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: calc(50% - 60px);
    margin: 0 60px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -24px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -24px;
    border-right-color: white;
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

.timeline-item.future .timeline-content {
    border: 2px dashed #d1d5db;
    background: linear-gradient(135deg, #f9fafb, white);
}

.timeline-item.future .timeline-date {
    color: #6b7280;
}

.timeline-item.future .timeline-content h3 {
    color: #4b5563;
}

/* Timeline Mobile Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-content::before {
        left: -24px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
}

/* Weather Section Modern Styles */
.weather-section {
    margin-bottom: var(--space-3xl);
}

.weather-section h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-2xl);
    text-align: center;
    letter-spacing: -0.02em;
}

.weather-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.weather-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.weather-icon {
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: var(--gray-100);
    border-radius: var(--radius-full);
    position: relative;
}

.weather-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0.1;
}

.weather-info {
    flex: 1;
}

.temperature {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-black);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.condition {
    font-size: var(--text-xl);
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-medium);
}

.location {
    font-size: var(--text-base);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.location::before {
    content: '📍';
    font-size: var(--text-sm);
}

/* Recent Searches Modern Styles */
.recent-searches-section {
    margin-bottom: var(--space-3xl);
}

.recent-searches-section h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-2xl);
    text-align: center;
    letter-spacing: -0.02em;
}

.recent-searches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.search-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left var(--transition-slow);
}

.search-card:hover::before {
    left: 100%;
}

.search-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.search-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: inherit;
    font-weight: var(--font-weight-semibold);
}

.search-card p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    transition: color var(--transition-normal);
}

.search-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.no-searches {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gray-400);
    font-style: italic;
    padding: var(--space-3xl);
    font-size: var(--text-lg);
}

/* Loading Spinner Modern */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-normal);
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
    box-shadow: var(--shadow-lg);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page-specific Styles Enhanced */
.content-section {
    margin-bottom: var(--space-3xl);
    position: relative;
}

.content-section h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-2xl);
    text-align: center;
    letter-spacing: -0.02em;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.text-content {
    padding: var(--space-xl);
}

.text-content .lead {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.text-content p {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

/* Enhanced About Page Styles */
.problem-illustration,
.solution-illustration {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.problem-illustration:hover,
.solution-illustration:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.problem-illustration i,
.solution-illustration i {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.problem-illustration h3,
.solution-illustration h3 {
    font-size: var(--text-xl);
    color: var(--gray-800);
    margin: 0;
    font-weight: var(--font-weight-semibold);
}

/* Enhanced Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.tech-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.tech-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-lg);
}

.tech-card h3 {
    font-size: var(--text-xl);
    color: var(--gray-800);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-semibold);
}

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

/* Enhanced Destinations Page Styles */
.filter-section {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.filter-section h2 {
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--gray-800);
    margin-bottom: var(--space-lg);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.filter-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: var(--font-weight-medium);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left var(--transition-slow);
}

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

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Contact Page Styles */
.contact-container {
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-info h2 {
    color: var(--gray-800);
    margin-bottom: var(--space-lg);
    text-align: left;
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
}

.contact-info p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    font-size: var(--text-lg);
}

.contact-support {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    margin-top: var(--space-3xl);
    text-align: center;
}

.contact-support h2 {
    font-size: var(--text-3xl);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    font-weight: var(--font-weight-bold);
}

.contact-support > p {
    color: var(--gray-600);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2xl);
}

.contact-methods {
    margin-bottom: var(--space-2xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-method i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: auto;
    text-align: center;
}

.contact-method h3,
.contact-method h4 {
    margin: 0 0 var(--space-xs) 0;
    color: var(--gray-800);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
}

.contact-method p {
    margin: 0.25rem 0;
    color: var(--gray-600);
    font-size: var(--text-base);
    word-break: break-all;
    width: 100%;
}

.contact-method p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-method p a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.contact-form h2 {
    color: var(--gray-800);
    margin-bottom: var(--space-2xl);
    text-align: left;
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-bold);
}

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

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    font-size: var(--text-base);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-lg);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    transition: all var(--transition-normal);
    font-family: var(--font-family);
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: var(--white);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    justify-content: center;
    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 var(--transition-slow);
}

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* FAQ Enhancement */
.faq-section {
    margin: var(--space-3xl) 0;
    background: var(--gray-50);
    padding: var(--space-3xl);
    border-radius: var(--radius-2xl);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-question {
    padding: var(--space-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all var(--transition-normal);
}

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

.faq-question h3 {
    margin: 0;
    color: var(--gray-800);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform var(--transition-normal);
    font-size: var(--text-lg);
}

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

.faq-answer {
    padding: 0 var(--space-xl);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: var(--gray-50);
}

.faq-item.active .faq-answer {
    padding: var(--space-xl);
    max-height: 300px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: var(--text-base);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .weather-card {
        flex-direction: column;
        text-align: center;
        gap: var(--space-lg);
        padding: var(--space-xl);
    }
    
    .weather-icon {
        width: 80px;
        height: 80px;
        font-size: 3.5rem;
    }
    
    .temperature {
        font-size: var(--text-4xl);
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .recent-searches {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .filter-buttons {
        gap: var(--space-sm);
    }
    
    .filter-btn {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-sm);
    }
}

/* Footer Premium Styles */
.footer-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    margin-top: 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: footerFloat 10s ease-in-out infinite;
    pointer-events: none;
}

.footer-premium .footer-content {
    position: relative;
    z-index: 2;
}

.footer-premium .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section.brand {
    padding-right: 2rem;
}

.footer-section .footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: nowrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: black;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-title {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #4ECDC4;
    padding-left: 0.5rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #4ECDC4;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 0.25rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.legal-link:hover {
    color: #4ECDC4;
    transform: translateY(-1px);
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4ECDC4, #FF6B6B);
    transition: width 0.3s ease;
}

.legal-link:hover::after {
    width: 100%;
}

/* Add subtle glow effect */
.footer-premium {
    box-shadow: 
        0 -10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes footerFloat {
    0%, 100% { transform: rotate(0deg) translateX(0px); }
    50% { transform: rotate(180deg) translateX(10px); }
}

@media (max-width: 768px) {
    .footer-premium .container {
        padding: 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section.brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .legal-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .copyright {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}


/* ===================================
   BLOG STYLES
   =================================== */

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, 
        rgba(79, 172, 254, 0.1) 0%, 
        rgba(0, 242, 254, 0.05) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.blog-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero .page-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.blog-hero .page-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Search in Hero */
.blog-search-container {
    margin-top: var(--space-lg);
    width: 100%;
    max-width: 600px;
}

.blog-search {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--space-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-search .search-icon {
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    z-index: 2;
}

.blog-search input {
    flex: 1;
    padding: var(--space-md) var(--space-lg) var(--space-md) 3rem;
    border: none;
    font-size: 1rem;
    background: transparent;
    color: var(--gray-900);
    border-radius: var(--radius-lg);
}

.blog-search input::placeholder {
    color: var(--gray-500);
}

.blog-search input:focus {
    outline: none;
}

.blog-search .search-btn {
    padding: var(--space-md) var(--space-lg);
    background: var(--primary-500);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.blog-search .search-btn:hover {
    background: var(--primary-600);
    transform: translateY(-1px);
}

/* Blog Filters Update */
.blog-filters .section-header-premium {
    margin-bottom: var(--space-xl);
}

/* Blog Section */
.blog-section {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(79, 172, 254, 0.02) 0%, 
        transparent 50%, 
        rgba(79, 172, 254, 0.01) 100%);
    pointer-events: none;
}

/* Blog Stats */
.blog-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.blog-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-600);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

/* Blog Filters */
.blog-filters {
    margin-bottom: var(--space-xl);
}

.blog-filters h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.category-filters {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn:hover {
    border-color: var(--primary-300);
    background: var(--primary-50);
    color: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.25);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-color: var(--primary-500);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

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

/* Featured Articles */
.featured-articles {
    margin-bottom: var(--space-xl);
}

.featured-articles h3 {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.featured-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    z-index: 1;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.featured-article .article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.featured-article .article-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--primary-500);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
}

.featured-article .article-content {
    padding: var(--space-xl);
}

.featured-article .article-content h4 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.featured-article .article-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.featured-article .article-meta {
    display: flex;
    gap: var(--space-lg);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.featured-article .article-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Blog Articles */
.blog-articles {
    margin-bottom: var(--space-xl);
}

.blog-articles .section-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-xl);
}

.blog-articles .section-header-premium h2 {
    margin-bottom: 0;
}

.articles-count {
    color: var(--gray-600);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
    margin-bottom: var(--space-xl);
}

.article-card,
.blog-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.article-card::before,
.blog-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
    z-index: 1;
}

.article-card.animated,
.blog-article.animated {
    opacity: 1;
    transform: translateY(0);
}

.article-card:hover,
.blog-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.article-card .article-image,
.blog-article .article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.article-card:hover .article-image img,
.blog-article:hover .article-image img {
    transform: scale(1.05);
}

.article-card .article-category,
.blog-article .article-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: rgba(79, 172, 254, 0.9);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    backdrop-filter: blur(10px);
}

.blog-article .reading-time {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.article-card .article-content,
.blog-article .article-content {
    padding: var(--space-lg);
}

.blog-article .article-content h3 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-article .author-info {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.blog-article .author-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.blog-article .author-name {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

.blog-article .publish-date {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.article-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-article .article-content > p,
.article-excerpt {
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
}

.article-meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
    align-items: center;
}

.blog-article .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

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

.read-more-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: black;
    border: none;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.read-more-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); */
    background-color: #005a8a;
    color:  white;
    transition: left 00.9s ease;
}

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

.read-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

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

/* No Articles */
.no-articles {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xl);
    color: var(--gray-500);
}

.no-articles i {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    color: var(--gray-400);
}

.no-articles h3 {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: var(--space-md);
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: var(--space-xl);
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.load-more-btn:hover {
    background: var(--primary-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

/* Popular Destinations Blog */
.popular-destinations-blog {
    margin-bottom: var(--space-xl);
}

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

.destination-tag {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1.5rem;
    /* background: blue; */
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.destination-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
}

.destination-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.destination-emoji {
    font-size: 2rem;
}

.destination-name {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    font-size: 1.1rem;
}

.article-count {
    margin-left: auto;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

/* Travel Resources */
.travel-resources {
    margin-bottom: var(--space-xl);
}

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

.resource-category {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.resource-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
}

.resource-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.resource-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.resource-category:hover .resource-icon {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: scale(1.1);
}

.resource-icon i {
    font-size: 1.5rem;
    color: var(--primary-600);
    transition: all 0.3s ease;
}

.resource-category:hover .resource-icon i {
    color: var(--white);
}

.resource-category h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resource-list li {
    margin-bottom: var(--space-sm);
}

.resource-list a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: var(--space-xs) 0;
}

.resource-list a:hover {
    color: var(--primary-600);
    padding-left: var(--space-sm);
}

/* Newsletter Section */
.load-more-btn {
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--primary-500);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.newsletter-section .section-header-premium {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-lg);
}

.newsletter-section .section-header-premium .section-badge {
    background: #2563eb;
    color: var(--white);
}

.newsletter-section .section-header-premium h2 {
    color: var(--white);
}

.newsletter-section .section-header-premium p {
    color: black;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    color: #2563eb;
}

.newsletter-form .form-group {
    display: flex;
    max-width: 400px;
    margin: 0 auto var(--space-md);
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: none;
    font-size: 1rem;
    background: transparent;
    color: var(--gray-900);
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    /* background: black; */
    color: black;
    border: none;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.newsletter-form button:hover {
    background: #2563eb;
    color: white;
}

.newsletter-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    color: black;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    justify-content: center;
    font-weight: var(--font-weight-medium);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-search {
        flex-direction: row;
        padding: var(--space-xs);
    }
    
    .blog-search .search-icon {
        left: var(--space-md);
    }
    
    .blog-search input {
        padding: var(--space-sm) var(--space-md) var(--space-sm) 2.5rem;
        font-size: 0.95rem;
    }
    
    .blog-search .search-btn {
        padding: var(--space-sm) var(--space-md);
    }
    
    .blog-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: var(--space-lg);
    }
    
    .category-filters {
        justify-content: center;
        gap: var(--space-sm);
    }
    
    .filter-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .featured-article {
        min-width: auto;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .blog-articles .section-header-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .blog-search-container {
        margin-top: var(--space-md);
    }
    
    .blog-search {
        padding: var(--space-xs);
    }
    
    .blog-search .search-icon {
        left: var(--space-sm);
    }
    
    .blog-search input {
        padding: var(--space-sm) var(--space-sm) var(--space-sm) 2rem;
        font-size: 0.9rem;
    }
    
    .blog-stats {
        grid-template-columns: 1fr;
        padding: var(--space-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .category-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .featured-article .article-content,
    .article-card .article-content {
        padding: var(--space-md);
    }
    
    .newsletter-section {
        padding: var(--space-lg);
    }
    
    .newsletter-section .section-header-premium h2 {
        font-size: 1.5rem;
    }
}

/* Enhanced Popular Destinations Section Styles */
.header-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.section-badge.secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--success-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    box-shadow: var(--shadow-md);
}

.section-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

.destination-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.destination-highlight:hover .destination-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.action-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.action-btn.favorite:hover {
    color: var(--error-color);
}

.action-btn.share:hover {
    color: var(--primary-color);
}

.destination-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    text-align: center;
}

.destination-header h4 {
    margin: 0;
    color: inherit;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.destination-details > p {
    color: inherit;
    opacity: 0.95;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.destination-price {
    font-size: 0.875rem;
    color: white;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.highlight-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.highlight-tag:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.destination-tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-count {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.destination-season {
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.destination-details .btn-sm {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.destination-details .btn-sm:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.destination-details .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
}

.destination-details .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
}

.destinations-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.cta-content {
    margin-bottom: 2rem;
}

.cta-content h4 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.stat-icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .destinations-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-highlight {
        min-width: auto;
        padding: 1.5rem;
    }
    
    .section-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .destination-cta {
        flex-direction: column;
    }
    
    .header-badges {
        justify-content: center;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-200);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

/* ===== VALUES SECTION ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-300);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-600);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    color: var(--white);
}

.value-item h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.value-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

/* ===== TECH STACK SECTION ===== */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tech-category h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.tech-item i {
    font-size: 1.25rem;
    color: var(--primary-600);
    width: 24px;
    text-align: center;
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

.tech-item:hover span {
    color: var(--primary-700);
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--white);
    font-size: 2.5rem;
}

.team-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
}

.team-role {
    color: var(--primary-600);
    font-weight: var(--font-weight-medium);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--primary-500);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .testimonials-grid,
    .values-grid,
    .tech-stack,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial,
    .value-item,
    .tech-category,
    .team-member {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .team-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* ===== DESTINATION DETAIL VIEW ===== */
.destination-detail-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 2rem 0;
    animation: fadeInUp 0.6s ease;
}

.detail-hero {
    position: relative;
    padding: 4rem 2rem;
    color: white;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.detail-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.detail-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.detail-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-content {
    padding: 3rem 2rem;
}

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

.detail-section h3 {
    font-size: 1.75rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-section h3 i {
    color: var(--primary-500);
}

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

.highlight-item {
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    transform: translateY(-2px);
}

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

.highlight-item span {
    font-weight: 500;
    color: var(--gray-700);
}

.detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.detail-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-100);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .detail-hero {
        padding: 3rem 1.5rem;
        min-height: 250px;
    }
    
    .detail-hero h1 {
        font-size: 2rem;
    }
    
    .detail-subtitle {
        font-size: 1rem;
    }
    
    .detail-content {
        padding: 2rem 1.5rem;
    }
    
    .detail-section h3 {
        font-size: 1.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
}

/* ============= ADVANCED DESTINATIONS PAGE STYLES ============= */

/* Search and Filter Section */
.search-filter-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.search-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Search Bar */
.search-bar-wrapper {
    margin-bottom: 2rem;
    width: 100%;
}

.search-input-group {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.2rem;
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #e2e8f0;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-search:hover {
    background: #cbd5e0;
    transform: translateY(-50%) scale(1.1);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    width: 100%;
    touch-action: pan-x;
}

.filter-tab {
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4a5568;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.filter-tab:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

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

/* Advanced Filters */
.advanced-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: end;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label i {
    color: #667eea;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

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

.reset-filters {
    padding: 10px 20px;
    white-space: nowrap;
}

/* Results Summary */
.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    gap: 15px;
    flex-wrap: wrap;
}

.results-summary span {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.view-favorites {
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-favorites.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

#favCount {
    background: rgba(255, 255, 255, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
}

/* Favorite Button on Cards */
.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

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

.favorite-btn i {
    font-size: 1.2rem;
    color: #667eea;
    transition: all 0.3s ease;
}

.favorite-btn.active i {
    color: #e53e3e;
}

.favorite-btn:hover i {
    transform: scale(1.1);
}

/* Update destination-actions to fit both buttons */
.destination-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.destination-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.destination-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.destination-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.destination-actions .btn-outline {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.destination-actions .btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.destination-actions .btn i {
    font-size: 1rem;
}

/* No Results Message */
.no-results-message {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 3rem;
}

.no-results-content {
    text-align: center;
    max-width: 400px;
}

.no-results-content i {
    font-size: 4rem;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.no-results-content h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.no-results-content p {
    color: #718096;
    margin-bottom: 1.5rem;
}

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

/* Extra Large Desktop (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.35rem;
    }
}

/* Large Desktop (1366px - 1919px) */
@media (min-width: 1366px) and (max-width: 1919px) {
    .container {
        max-width: 1300px;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Standard Desktop (1024px - 1365px) */
@media (min-width: 1024px) and (max-width: 1365px) {
    .container {
        max-width: 1000px;
        padding: 0 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    /* Search Demo Section */
    .search-demo-container {
        padding: 2rem;
    }
    
    .demo-features {
        flex-direction: row;
        gap: 1rem;
    }
    
    /* Popular Destinations */
    .destinations-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .page-hero {
        padding: 3rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 1rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
    }
    
    .search-filter-section {
        padding: 1.75rem 0;
        margin-bottom: 2.5rem;
        border-radius: 16px;
    }
    
    .search-filter-container {
        padding: 1.5rem;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-tab {
        padding: 9px 16px;
        font-size: 0.9rem;
    }
    
    .advanced-filters {
        gap: 12px;
    }
    
    .destination-card {
        max-width: 100%;
    }
}

/* Mobile Landscape & Small Tablet (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Main Hero Section (index.html) */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-announcement {
        font-size: 0.85rem;
        padding: 8px 14px;
        gap: 6px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.25;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 400px;
        margin: 1.5rem auto;
    }
    
    .btn-hero {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
    
    .hero-social-proof {
        margin-top: 2rem;
    }
    
    .proof-avatars {
        justify-content: center;
    }
    
    /* Search Demo Section */
    .search-demo-container {
        padding: 1.5rem;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    #demo-search {
        width: 100%;
        font-size: 16px;
    }
    
    .search-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Popular Destinations Showcase */
    .destinations-showcase {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .destination-highlight {
        max-width: 100%;
    }
    
    .destination-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .destination-cta .btn {
        width: 100%;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Page Hero (destinations.html) */
    .page-hero {
        padding: 2.5rem 0 3.5rem;
    }
    
    .search-filter-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        border-radius: 15px;
        width: calc(100% - 1rem);
    }
    
    .search-filter-container {
        padding: 1.25rem 1rem;
    }
    
    .search-input {
        padding: 0.875rem 3rem 0.875rem 2.75rem;
        font-size: 16px;
    }
    
    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 0.75rem;
        scrollbar-width: thin;
    }
    
    .filter-tab {
        padding: 9px 15px;
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .advanced-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .filter-select {
        width: 100%;
        padding: 10px 14px;
    }
    
    .destination-actions {
        flex-direction: row;
        gap: 10px;
    }
    
    .destination-actions .btn {
        flex: 1;
        padding: 11px 16px;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    /* Main Hero Section (index.html) */
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .hero-announcement {
        font-size: 0.8rem;
        padding: 6px 12px;
        gap: 5px;
    }
    
    .announcement-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 4vw, 1.05rem);
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .hero-feature {
        font-size: 0.8rem;
        padding: 8px 16px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hero-feature i {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem auto;
        max-width: 100%;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-hero i {
        font-size: 1rem;
    }
    
    .hero-social-proof {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .proof-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .proof-avatars {
        justify-content: center;
    }
    
    .proof-text {
        font-size: 0.85rem;
    }
    
    .hero-scroll-indicator {
        margin-top: 2rem;
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
    }
    
    /* Search Demo Section */
    .search-demo-section {
        padding: 2rem 0;
    }
    
    .search-demo-header h2 {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .search-demo-container {
        padding: 1.25rem 0.75rem;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    #demo-search {
        width: 100%;
        padding: 0.9rem 1rem;
        font-size: 16px;
    }
    
    .search-btn {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .demo-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .demo-feature {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Welcome Section */
    .welcome-section {
        padding: 2rem 0;
    }
    
    .welcome-header h3 {
        font-size: 1.75rem;
    }
    
    .problem-statement {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    /* Popular Destinations */
    .destinations-showcase {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .destination-highlight {
        max-width: 100%;
    }
    
    .destination-details {
        padding: 1.5rem 1.25rem;
    }
    
    .destination-header h4 {
        font-size: 1.3rem;
    }
    
    .destination-price {
        font-size: 0.85rem;
    }
    
    .destination-details > p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .destination-highlights {
        gap: 0.5rem;
    }
    
    .highlight-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .destination-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .destination-cta .btn {
        width: 100%;
        padding: 0.85rem 1rem;
        min-height: 44px;
    }
    
    /* Search Filter Section (destinations.html) */
    .search-filter-section {
        padding: 1.25rem 0;
        margin-bottom: 1.75rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        border-radius: 12px;
        width: calc(100% - 1rem);
    }
    
    .search-filter-container {
        padding: 1rem 0.75rem;
        max-width: 100%;
    }
    
    /* Search Bar */
    .search-input {
        padding: 0.875rem 2.75rem 0.875rem 2.5rem;
        font-size: 16px;
    }
    
    .search-icon {
        left: 14px;
        font-size: 1rem;
    }
    
    /* Page Hero (destinations.html) */
    .page-hero {
        padding: 2rem 0 3rem;
        min-height: auto;
    }
    
    /* Filter Tabs */
    .filter-tabs {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
        padding-bottom: 0.75rem;
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        flex-wrap: nowrap;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
    }
    
    .filter-tabs::-webkit-scrollbar {
        height: 3px;
    }
    
    .filter-tabs::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 2px;
    }
    
    .filter-tabs::-webkit-scrollbar-thumb {
        background: rgba(102, 126, 234, 0.4);
        border-radius: 2px;
    }
    
    .filter-tabs::-webkit-scrollbar-thumb:hover {
        background: rgba(102, 126, 234, 0.6);
    }
    
    .filter-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 36px;
    }
    
    .filter-tab i {
        font-size: 0.9rem;
    }
    
    /* Advanced Filters */
    .advanced-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
    
    .filter-select {
        width: 100%;
        min-width: unset;
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .reset-filters {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    /* Results Summary */
    .results-summary {
        flex-direction: column;
        gap: 10px;
        padding-top: 1rem;
    }
    
    .results-summary span {
        font-size: 0.9rem;
    }
    
    .view-favorites {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    /* Destination Cards */
    .destinations-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0;
    }
    
    .destination-card {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .destination-card .destination-image {
        border-radius: 15px 15px 0 0;
    }
    
    .destination-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .destination-actions .btn {
        width: 100%;
        min-width: unset;
        padding: 10px 16px;
        font-size: 0.875rem;
    }
    
    /* Favorite Button */
    .favorite-btn {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }
    
    .favorite-btn i {
        font-size: 1rem;
    }
    
    /* No Results */
    .no-results-message {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .no-results-content i {
        font-size: 3rem;
    }
    
    .no-results-content h3 {
        font-size: 1.4rem;
    }
    
    .no-results-content p {
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .search-filter-section {
        padding: 1rem 0;
        border-radius: 12px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .search-filter-container {
        padding: 0.875rem 0.625rem;
    }
    
    .search-input {
        padding: 0.875rem 2.75rem 0.875rem 2.75rem;
        font-size: 0.875rem;
        border-width: 1.5px;
    }
    
    .search-icon {
        left: 12px;
    }
    
    .clear-search {
        right: 12px;
        width: 28px;
        height: 28px;
    }
    
    .filter-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 5px;
        min-height: 36px;
    }
    
    .filter-tab i {
        font-size: 0.85rem;
    }
    
    .section-header {
        padding: 1rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.875rem;
        padding: 0.5rem 0.5rem 0;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .destinations-section {
        padding: 1.5rem 0;
    }
    
    /* Better button spacing */
    .destination-actions .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    /* Results summary */
    .results-summary {
        padding-top: 1rem;
        gap: 12px;
    }
    
    .results-summary span {
        font-size: 0.875rem;
    }
}

/* Tablet Landscape and Below */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) and (min-width: 481px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
}

/* Medium Mobile Devices (375px - 414px common) */
@media (max-width: 414px) {
    .search-filter-section {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        width: calc(100% - 0.5rem);
    }
    
    .filter-tab {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
    
    .search-input {
        font-size: 0.875rem;
        padding: 0.75rem 2.75rem 0.75rem 2.5rem;
    }
    
    .destination-card {
        margin: 0 auto;
        max-width: 100%;
    }
}

/* iPhone SE, small Android phones */
@media (max-width: 375px) {
    .search-filter-section {
        padding: 1rem 0;
        margin-left: 0.25rem;
        margin-right: 0.25rem;
        width: calc(100% - 0.5rem);
    }
    
    .search-filter-container {
        padding: 0.875rem 0.5rem;
    }
    
    .filter-tab {
        padding: 7px 11px;
        font-size: 0.72rem;
        min-height: 34px;
    }
    
    .filter-tab i {
        font-size: 0.82rem;
    }
    
    .search-input {
        font-size: 16px; /* Prevents iOS zoom on input focus */
        padding: 0.875rem 2.5rem;
    }
    
    .destination-actions .btn {
        font-size: 0.875rem;
        padding: 11px 14px;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .search-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .filter-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .filter-tabs {
        -webkit-overflow-scrolling: touch;
    }
}

/* Android Chrome specific optimizations */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on Android */
    }
    
    .filter-tabs {
        overscroll-behavior-x: contain;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .search-filter-section {
        padding: 1rem 0;
    }
    
    .search-filter-container {
        padding: 1rem 1.5rem;
    }
    
    .filter-tabs {
        margin-bottom: 1rem;
    }
    
    .advanced-filters {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .filter-group {
        flex: 1;
        min-width: 150px;
    }
}

/* Very large phones (iPhone Pro Max, etc) */
@media (min-width: 415px) and (max-width: 480px) {
    .filter-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .search-input {
        font-size: 16px;
    }
}


/* ===================================
   VIEW DETAILS BUTTON STYLING
   =================================== */

.btn-view-details {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.btn-view-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.btn-view-details:active {
    transform: translateY(-1px);
}

.btn-view-details i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-view-details:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-view-details {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}


/* ===================================
   POPULAR DESTINATIONS REDESIGN
   =================================== */

/* Header Section */
.destinations-header {
    max-width: 1280px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.header-content {
    flex: 1;
    min-width: 320px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 107, 0.25);
}

.header-badge i {
    font-size: 1.125rem;
    animation: gentle-pulse 2s ease-in-out infinite;
}

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

.destinations-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destinations-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.header-stat-item {
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 2.25rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.view-all-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-all-btn:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.view-all-btn span,
.view-all-btn i {
    position: relative;
    z-index: 1;
}

.view-all-btn i {
    transition: transform 0.3s ease;
    font-size: 1.125rem;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Container */
.destinations-container {
    max-width: 1280px;
    margin: 0 auto 4rem auto;
    padding: 0 2rem;
}

/* Category Filter Tabs */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.category-btn i {
    font-size: 1.125rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.3);
}

.category-btn:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.category-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.category-btn.active i {
    opacity: 1;
    animation: icon-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes icon-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Featured Large Card */
.featured-destination {
    margin-bottom: 3rem;
}

.featured-card {
    position: relative;
    display: block;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.35);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    transition: background 0.4s ease;
}

.featured-card:hover .featured-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-badge {
    transform: translateY(-4px);
}

.featured-badge i {
    color: #667eea;
    font-size: 1.125rem;
}

.featured-location {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.featured-location i {
    font-size: 1rem;
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
}

.featured-emoji {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    animation: float-emoji 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes float-emoji {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-3deg);
    }
    75% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.featured-info h3 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.featured-info p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    max-width: 95%;
}

.featured-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.9375rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.featured-card:hover .stat-item {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-item i {
    font-size: 1.25rem;
}

.stat-item span {
    white-space: nowrap;
}

.featured-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.highlight-item i {
    color: #10b981;
    font-size: 1rem;
}

.featured-action {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.375rem;
    font-weight: 900;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.featured-card:hover .featured-action {
    background: white;
    color: var(--primary-color);
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-action i {
    transition: transform 0.3s ease;
    font-size: 1.5rem;
}

.featured-card:hover .featured-action i {
    transform: translateX(10px);
}

/* Grid of Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.destination-item {
    position: relative;
    display: block;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.destination-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.dest-item-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.dest-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.dest-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.9), 
        rgba(118, 75, 162, 0.9)
    );
    transition: all 0.4s ease;
    z-index: 2;
}

.destination-item:hover .dest-gradient {
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.7), 
        rgba(118, 75, 162, 0.7)
    );
}

/* Animated gradient background */
.dest-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.destination-item:hover .dest-gradient::after {
    transform: translateX(100%);
}

.dest-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    z-index: 5;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.25));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-item:hover .dest-icon {
    transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
}

.dest-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-badge 2s ease-in-out infinite;
}

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

.dest-item-content {
    padding: 1.75rem;
    background: white;
}

.dest-item-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.destination-item:hover .dest-item-content h4 {
    color: var(--primary-color);
}

.dest-country {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.dest-country::before {
    content: '📍';
    font-size: 0.875rem;
}

.dest-meta {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
}

.meta-rating,
.meta-temp {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--gray-50);
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.destination-item:hover .meta-rating,
.destination-item:hover .meta-temp {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.dest-tags {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1.5px solid rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
}

.destination-item:hover .tag {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.dest-hover-arrow {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.destination-item:hover .dest-hover-arrow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.dest-hover-arrow i {
    transition: transform 0.3s ease;
}

.destination-item:hover .dest-hover-arrow i {
    transform: translateX(3px);
}

/* Bottom CTA */
.destinations-cta {
    max-width: 1280px;
    margin: 0 auto 3rem auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9ff, #eff3ff);
    border-radius: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.destinations-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cta-content h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 2.25rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark), #1e3a8a);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.5);
}

.cta-button i {
    font-size: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button:hover i {
    transform: rotate(360deg) scale(1.1);
}

/* Why Choose Us Section */
.why-choose-section {
    max-width: 1280px;
    margin: 5rem auto 0 auto;
    padding: 0 2rem;
    background: transparent;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    line-height: 1.2;
}

.title-icon {
    font-size: 2.5rem;
    animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

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

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.benefit-stat {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* Bottom CTA Section */
.destinations-bottom-cta {
    max-width: 1280px;
    margin: 5rem auto 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.view-all-destinations-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.view-all-destinations-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.view-all-destinations-btn:hover::before {
    width: 400px;
    height: 400px;
}

.view-all-destinations-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(102, 126, 234, 0.4);
}

.view-all-destinations-btn span {
    position: relative;
    z-index: 1;
}

.view-all-destinations-btn i {
    transition: transform 0.3s ease;
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.view-all-destinations-btn:hover i {
    transform: translateX(6px);
}

.cta-subtitle {
    margin-top: 1.25rem;
    color: var(--gray-500);
    font-size: 1rem;
    font-weight: 400;
}

/* Travel Tips Banner */
.travel-tips-banner {
    max-width: 1280px;
    width: calc(100% - 2rem);
    margin: 3rem auto 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 20px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    position: relative;
    animation: slide-in-up 0.6s ease-out;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.15);
    overflow: hidden;
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-out-down {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

.tips-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
    }
}

.tips-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.tips-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tips-content p {
    font-size: 1rem;
    color: #78350f;
    line-height: 1.6;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tips-close {
    width: 36px;
    height: 36px;
    background: rgba(120, 53, 15, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #78350f;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tips-close:hover {
    background: rgba(120, 53, 15, 0.2);
    transform: rotate(90deg);
}

/* ==================== TESTIMONIALS SECTION ==================== */

.testimonials-section {
    max-width: 1280px;
    margin: 5rem auto;
    padding: 0 2rem;
    background: transparent;
    position: relative;
    overflow: visible;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-badge i {
    font-size: 1rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.6;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.333rem);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-width: calc(33.333% - 1.333rem);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.125rem;
    animation: star-pop 0.5s ease backwards;
}

.testimonial-rating i:nth-child(1) { animation-delay: 0.1s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.3s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.5s; }

@keyframes star-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot,
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active,
.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* ==================== SPECIAL OFFERS BANNER ==================== */

.special-offers-banner {
    max-width: 1280px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.special-offers-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.special-offers-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    animation-delay: 1s;
}

.offers-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

.offers-badge i {
    animation: sparkle-rotate 3s linear infinite;
}

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

.offers-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.limited-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    animation: pulse-badge 2s ease-in-out infinite;
}

.limited-time-badge i {
    animation: sparkle-rotate 3s linear infinite;
}

.offers-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.offer-highlight {
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.offers-countdown {
    display: flex;
    gap: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    min-width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.offers-action {
    text-align: center;
}

.btn-claim-offer {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    font-size: 1.125rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-claim-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #fbbf24;
    color: #667eea;
}

.offers-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #667eea;
    font-size: 1.125rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offers-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #fbbf24;
    color: #667eea;
}

.offers-cta i {
    transition: transform 0.3s ease;
}

.offers-cta:hover i {
    transform: translateX(5px);
}

.countdown-separator {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

/* ==================== NEWSLETTER SECTION ==================== */

.newsletter-section {
    max-width: 1280px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background: transparent;
    text-align: center;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.newsletter-text {
    flex: 1;
}

.newsletter-section h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.newsletter-section h3 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.newsletter-section p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 1rem;
    position: relative;
}

.form-group {
    position: relative;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 140px;
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.newsletter-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.newsletter-submit {
    position: absolute;
    right: 4px;
    top: 4px;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #764ba2);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-submit:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.newsletter-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-privacy {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.newsletter-privacy i {
    color: #10b981;
    margin-right: 0.25rem;
}

.newsletter-success {
    display: none;
    padding: 1rem;
    background: #d1fae5;
    color: #065f46;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 1rem;
}

.newsletter-success.show {
    display: block;
    animation: slide-in-up 0.5s ease;
}

.newsletter-success i {
    margin-right: 0.5rem;
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .destinations-container {
        grid-template-columns: 1fr;
    }
    
    .featured-destination {
        grid-column: span 1;
    }
    
    .destinations-grid {
        grid-column: span 1;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .destinations-title {
        font-size: 2.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .destinations-header,
    .destinations-container,
    .why-choose-section,
    .testimonials-section,
    .special-offers-banner,
    .newsletter-section,
    .travel-tips-banner,
    .destinations-bottom-cta {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .destinations-title {
        font-size: 2.5rem;
    }
    
    .destinations-subtitle {
        font-size: 1.125rem;
    }
    
    .header-stats {
        gap: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .featured-card {
        min-height: 550px;
    }
    
    .featured-emoji {
        font-size: 5rem;
    }
    
    .featured-info h3 {
        font-size: 2.5rem;
    }
    
    .featured-info p {
        font-size: 1.0625rem;
    }
    
    .dest-item-image {
        height: 180px;
    }
    
    .dest-icon {
        font-size: 4rem;
    }
    
    /* Testimonials responsive */
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .carousel-btn.prev {
        left: -15px;
    }
    
    .carousel-btn.next {
        right: -15px;
    }
    
    /* Special Offers responsive */
    .offers-content {
        flex-direction: column;
        text-align: center;
    }
    
    .offers-countdown {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .destinations-header,
    .destinations-container,
    .why-choose-section,
    .testimonials-section,
    .special-offers-banner,
    .newsletter-section,
    .travel-tips-banner,
    .destinations-bottom-cta {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .popular-destinations-section {
        padding: 3rem 0;
    }
    
    .destinations-header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .destinations-title {
        font-size: 2rem;
    }
    
    .destinations-subtitle {
        font-size: 1rem;
    }
    
    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
    
    .header-stats {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    .category-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .category-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Testimonials responsive */
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 0;
    }
    
    .carousel-btn.next {
        right: 0;
    }
    
    /* Special Offers responsive */
    .special-offers-banner {
        padding: 2rem 1.5rem;
    }
    
    .offers-text h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .offer-highlight {
        font-size: 2rem;
    }
    
    .offers-countdown {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    /* Newsletter responsive */
    .newsletter-section h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-section p {
        font-size: 1rem;
    }
    
    .newsletter-input {
        padding-right: 120px;
    }
    
    .newsletter-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .why-choose-section {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .why-choose-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .travel-tips-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        margin: 2rem 1rem 0 1rem;
        width: calc(100% - 2rem);
        gap: 1rem;
    }
    
    .tips-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tips-content {
        width: 100%;
    }
    
    .tips-content h4 {
        font-size: 1.125rem;
    }
    
    .tips-content p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .tips-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
    }
    
    .featured-card {
        min-height: 500px;
    }
    
    .featured-content {
        padding: 2rem;
    }
    
    .featured-emoji {
        font-size: 4.5rem;
        margin-bottom: 1rem;
    }
    
    .featured-info h3 {
        font-size: 2.25rem;
    }
    
    .featured-info p {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .featured-stats {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-item {
        font-size: 0.8125rem;
        padding: 0.75rem 1.25rem;
    }
    
    .stat-item i {
        font-size: 1rem;
    }
    
    .featured-highlights {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-item {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .featured-action {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    .featured-location {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .featured-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.75rem 1.25rem;
    }
    
    .destinations-title {
        font-size: 1.875rem;
    }
    
    .destinations-subtitle {
        font-size: 1rem;
    }
    
    .destinations-cta {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.625rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
    
    .dest-item-content {
        padding: 1.5rem;
    }
    
    .dest-item-content h4 {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    .destinations-header {
        margin-bottom: 2rem;
    }
    
    .header-content {
        min-width: auto;
    }
    
    .destinations-title {
        font-size: 1.625rem;
    }
    
    .destinations-subtitle {
        font-size: 0.9375rem;
    }
    
    .featured-card {
        min-height: 480px;
        border-radius: 24px;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .featured-emoji {
        font-size: 3.5rem;
        margin-bottom: 0.875rem;
    }
    
    .featured-info h3 {
        font-size: 1.875rem;
    }
    
    .featured-info p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .featured-stats {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .stat-item {
        font-size: 0.75rem;
        padding: 0.625rem 1rem;
        gap: 0.5rem;
    }
    
    .stat-item i {
        font-size: 0.875rem;
    }
    
    .featured-highlights {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .highlight-item {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .highlight-item i {
        font-size: 0.875rem;
    }
    
    .featured-action {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
    
    .featured-action i {
        font-size: 1.25rem;
    }
    
    .featured-location {
        top: 1.25rem;
        left: 1.25rem;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .featured-badge {
        top: 1.25rem;
        right: 1.25rem;
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .featured-badge i {
        font-size: 0.875rem;
    }
    
    .dest-item-image {
        height: 160px;
    }
    
    .dest-icon {
        font-size: 3.5rem;
    }
    
    .dest-item-content {
        padding: 1.25rem;
    }
    
    .dest-item-content h4 {
        font-size: 1.25rem;
    }
    
    .dest-meta {
        gap: 0.875rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .meta-rating,
    .meta-temp {
        font-size: 0.8125rem;
        padding: 0.4375rem 0.75rem;
    }
    
    .tag {
        font-size: 0.6875rem;
        padding: 0.4375rem 0.875rem;
    }
    
    .destination-item {
        border-radius: 20px;
    }
    
    .destinations-cta {
        padding: 2rem;
        border-radius: 24px;
    }
    
    .cta-content h3 {
        font-size: 1.375rem;
    }
    
    .cta-content p {
        font-size: 0.9375rem;
    }
    
    .cta-button {
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
    }
    
    .cta-button i {
        font-size: 1.25rem;
    }
}

/* ============================================================================
   COMPREHENSIVE RESPONSIVE ENHANCEMENTS
   Tech Stack: HTML + CSS + JavaScript
   Last Updated: October 27, 2025
   ============================================================================ */

/* ============================================================================
   1. MOBILE-FIRST FOUNDATION (320px+)
   ============================================================================ */

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
}

/* Base container improvements */
.container {
    width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
   2. HERO SECTION RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Hero height and padding for mobile */
    .hero {
        min-height: auto;
        padding: 120px 1rem 80px; /* Adjusted top padding to account for fixed navbar */
        background-attachment: scroll; /* Fixed parallax causing performance issues on mobile */
    }

    /* Fixed: Hero title scaling and readability */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-break: break-word; /* Prevent text overflow */
    }

    /* Fixed: Hero description sizing */
    .hero-description {
        font-size: clamp(1rem, 4vw, 1.2rem) !important;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    /* Fixed: Hero announcement badge layout */
    .hero-announcement {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .announcement-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.4rem;
    }

    /* Fixed: Hero features stacking on mobile */
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        padding: 0 1rem;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }

    /* Fixed: Hero action buttons layout */
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        min-height: 52px; /* Touch-friendly target size */
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Fixed: Hero social proof layout */
    .hero-social-proof {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .proof-item {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .proof-avatars {
        justify-content: center;
    }

    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -8px;
    }

    .avatar:first-child {
        margin-left: 0;
    }

    .proof-text {
        font-size: 0.875rem;
    }

    /* Fixed: Hero scroll indicator */
    .hero-scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
    }
}

/* ============================================================================
   3. SEARCH DEMO SECTION RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Search demo container spacing */
    .search-demo-section {
        padding: 3rem 1rem;
    }

    .search-demo-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    /* Fixed: Search input width and layout */
    .search-demo-input {
        width: 100%;
        max-width: 100%;
    }

    .search-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    #demo-search {
        width: 100%;
        font-size: 1rem;
        padding: 0.875rem 1rem;
        border-radius: 12px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        border-radius: 12px;
    }

    /* Fixed: Search results grid */
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-card {
        padding: 1rem;
    }
}

/* ============================================================================
   4. POPULAR DESTINATIONS SECTION RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 1024px) {
    /* Fixed: Destinations grid for tablet */
    .destinations-grid,
    .popular-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Fixed: Destinations section spacing */
    #popular-destinations,
    .popular-destinations-section {
        padding: 3rem 1rem;
    }

    /* Fixed: Section header */
    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .section-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }

    /* Fixed: Category filters scrolling */
    .category-filters {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.5rem 0;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar on Firefox */
    }

    .category-filters::-webkit-scrollbar {
        display: none; /* Hide scrollbar on Chrome/Safari */
    }

    .filter-btn {
        white-space: nowrap;
        min-width: fit-content;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Fixed: Destinations grid to single column */
    .destinations-grid,
    .popular-destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Fixed: Destination card layout */
    .destination-card {
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        overflow: hidden;
    }

    .destination-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .destination-content {
        padding: 1.25rem;
    }

    .destination-header {
        margin-bottom: 0.75rem;
    }

    .destination-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .destination-location {
        font-size: 0.875rem;
    }

    .destination-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Fixed: Destination tags wrapping */
    .destination-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        white-space: nowrap;
    }

    /* Fixed: Destination stats layout */
    .destination-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .stat-item {
        text-align: center;
        padding: 0.75rem 0.5rem;
    }

    .stat-value {
        font-size: 1.125rem;
    }

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

/* ============================================================================
   5. NAVIGATION (NAVBAR) RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Navbar padding and height */
    .navbar {
        padding: 0.75rem 1rem;
        height: auto;
        min-height: 70px;
    }

    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    /* Fixed: Logo sizing */
    .navbar-logo {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* Fixed: Mobile menu toggle button */
    .menu-toggle {
        width: 48px;
        height: 48px;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger {
        width: 24px;
        height: 20px;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        position: absolute;
        left: 0;
        transition: all 0.3s ease;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

    /* Fixed: Hamburger animation when active */
    .menu-toggle.active .hamburger span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-toggle.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburger span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    /* Fixed: Mobile navigation menu */
    .navbar-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        max-width: 90vw;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, 
            rgba(37, 99, 235, 0.95) 0%, 
            rgba(6, 182, 212, 0.9) 100%);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    }

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

    /* Fixed: Nav items stacking */
    .nav-item {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 1.0625rem;
        font-weight: 500;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        min-height: 52px; /* Touch-friendly */
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(8px);
    }

    .nav-link i {
        margin-right: 0.75rem;
        width: 20px;
        text-align: center;
    }

    /* Fixed: Mobile search in navbar */
    .mobile-search-item {
        display: block !important;
        margin-bottom: 1rem;
    }

    .mobile-search {
        width: 100%;
        padding: 0.875rem 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: white;
        font-size: 1rem;
    }

    .mobile-search::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
}

/* ============================================================================
   6. FOOTER RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Footer padding and spacing */
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

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

    /* Fixed: Footer sections */
    .footer-section {
        width: 100%;
    }

    .footer-logo {
        margin-bottom: 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .footer-logo p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    /* Fixed: Footer social links */
    .footer-social {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    /* Fixed: Footer links */
    .footer-section h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

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

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        font-size: 0.9375rem;
        padding: 0.5rem;
        display: inline-block;
        min-height: 44px; /* Touch-friendly */
        line-height: 1.5;
    }

    /* Fixed: Footer bottom */
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .footer-credits p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

/* ============================================================================
   7. CARDS & GRIDS RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 1024px) {
    /* Fixed: 2-column layout for tablet */
    .features-grid,
    .benefits-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Fixed: Single column layout for mobile */
    .features-grid,
    .benefits-grid,
    .services-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Fixed: Card padding and spacing */
    .feature-card,
    .benefit-card,
    .service-card,
    .blog-card,
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    /* Fixed: Card images */
    .card-image,
    .blog-card-image,
    .article-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
    }

    /* Fixed: Card content */
    .card-content,
    .blog-card-content,
    .article-content {
        padding: 1rem 0;
    }

    .card-title,
    .blog-card-title,
    .article-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .card-description,
    .blog-card-description,
    .article-excerpt {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

/* ============================================================================
   8. BUTTONS & INTERACTIVE ELEMENTS
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Button sizing for touch targets (min 44x44px) */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-glass {
        min-height: 52px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        border-radius: 12px;
        width: auto;
    }

    /* Fixed: Button groups */
    .btn-group {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-group .btn {
        width: 100%;
    }

    /* Fixed: Icon buttons */
    .btn-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* Fixed: Link buttons */
    .link-btn,
    .text-link {
        min-height: 44px;
        padding: 0.75rem 0.5rem;
        display: inline-flex;
        align-items: center;
    }
}

/* ============================================================================
   9. FORMS & INPUTS RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Form layout */
    .form-container,
    .contact-form,
    .newsletter-form {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    /* Fixed: Form groups */
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-label {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    /* Fixed: Input fields */
    .form-input,
    .form-select,
    .form-textarea,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    select,
    textarea {
        width: 100%;
        min-height: 52px;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
        border: 2px solid rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

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

    /* Fixed: Input focus states */
    .form-input:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }

    /* Fixed: Form button */
    .form-submit,
    .form-button {
        width: 100%;
        min-height: 52px;
        margin-top: 1rem;
    }

    /* Fixed: Inline forms */
    .inline-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .inline-form input {
        width: 100%;
    }

    .inline-form button {
        width: 100%;
    }
}

/* ============================================================================
   10. MODALS & OVERLAYS RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Modal container */
    .modal {
        padding: 1rem;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        border-radius: 20px;
        overflow-y: auto;
    }

    .modal-header {
        padding: 1.25rem 1rem;
        flex-wrap: wrap;
    }

    .modal-title {
        font-size: 1.375rem;
    }

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

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

    .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-footer .btn {
        width: 100%;
    }
}

/* ============================================================================
   11. IMAGES & MEDIA RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Fixed: Background images */
    .bg-image {
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better performance on mobile */
    }

    /* Fixed: Image galleries */
    .image-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-item {
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 12px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Fixed: Video containers */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }

    .video-container iframe,
    .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* ============================================================================
   12. TYPOGRAPHY RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Heading sizes */
    h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: clamp(1.75rem, 5vw, 2rem);
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }

    h3 {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    h4 {
        font-size: clamp(1.25rem, 3.5vw, 1.5rem);
        line-height: 1.4;
        margin-bottom: 0.625rem;
    }

    h5 {
        font-size: clamp(1.125rem, 3vw, 1.25rem);
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    h6 {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }

    /* Fixed: Paragraph spacing */
    p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    /* Fixed: Lead text */
    .lead,
    .intro-text {
        font-size: 1.125rem;
        line-height: 1.8;
    }

    /* Fixed: Small text */
    small,
    .small-text {
        font-size: 0.875rem;
    }

    /* Fixed: Text alignment on mobile */
    .text-center-mobile {
        text-align: center;
    }

    .text-left-mobile {
        text-align: left;
    }
}

/* ============================================================================
   13. SPACING & LAYOUT UTILITIES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Section padding */
    section {
        padding: 3rem 1rem;
    }

    .section-padding {
        padding: 3rem 1rem;
    }

    .section-padding-lg {
        padding: 4rem 1rem;
    }

    .section-padding-sm {
        padding: 2rem 1rem;
    }

    /* Fixed: Container max-width */
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container-sm {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Fixed: Margin utilities */
    .mt-mobile-0 { margin-top: 0 !important; }
    .mt-mobile-1 { margin-top: 0.5rem !important; }
    .mt-mobile-2 { margin-top: 1rem !important; }
    .mt-mobile-3 { margin-top: 1.5rem !important; }
    .mt-mobile-4 { margin-top: 2rem !important; }

    .mb-mobile-0 { margin-bottom: 0 !important; }
    .mb-mobile-1 { margin-bottom: 0.5rem !important; }
    .mb-mobile-2 { margin-bottom: 1rem !important; }
    .mb-mobile-3 { margin-bottom: 1.5rem !important; }
    .mb-mobile-4 { margin-bottom: 2rem !important; }

    /* Fixed: Padding utilities */
    .p-mobile-0 { padding: 0 !important; }
    .p-mobile-1 { padding: 0.5rem !important; }
    .p-mobile-2 { padding: 1rem !important; }
    .p-mobile-3 { padding: 1.5rem !important; }
    .p-mobile-4 { padding: 2rem !important; }

    /* Fixed: Gap utilities */
    .gap-mobile-1 { gap: 0.5rem !important; }
    .gap-mobile-2 { gap: 1rem !important; }
    .gap-mobile-3 { gap: 1.5rem !important; }
}

/* ============================================================================
   14. SMALL MOBILE DEVICES (480px and below)
   ============================================================================ */

@media (max-width: 480px) {
    /* Fixed: Extra small screens - typography */
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
    }

    .hero-description {
        font-size: 0.9375rem !important;
    }

    h1 { font-size: clamp(1.75rem, 8vw, 2rem); }
    h2 { font-size: clamp(1.5rem, 7vw, 1.75rem); }
    h3 { font-size: clamp(1.375rem, 6vw, 1.5rem); }

    /* Fixed: Button sizing */
    .btn,
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* Fixed: Card padding */
    .destination-card,
    .feature-card,
    .blog-card {
        padding: 1rem;
    }

    /* Fixed: Navbar */
    .navbar-nav {
        width: 90vw;
        max-width: 300px;
    }

    /* Fixed: Footer */
    .footer {
        padding: 2.5rem 1rem 1.25rem;
    }

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

    /* Fixed: Form elements */
    input,
    select,
    textarea,
    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
    }

    /* Fixed: Modal */
    .modal {
        padding: 0.5rem;
    }

    .modal-content {
        border-radius: 16px;
    }

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

/* ============================================================================
   15. LARGE SCREENS (1440px+) - PREVENT EXCESSIVE STRETCHING
   ============================================================================ */

@media (min-width: 1440px) {
    /* Fixed: Container max-width for large screens */
    .container {
        max-width: 1400px;
    }

    /* Fixed: Content max-width */
    .content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Fixed: Grids max columns */
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* ============================================================================
   16. PERFORMANCE OPTIMIZATIONS
   ============================================================================ */

/* Fixed: Smooth scrolling performance */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Fixed: Optimize animations for mobile */
@media (max-width: 768px) {
    * {
        animation-duration: 0.3s; /* Faster animations on mobile */
    }

    .hero-particles {
        display: none; /* Remove complex animations on mobile for performance */
    }
}

/* Fixed: Prevent layout shift */
img[loading="lazy"] {
    aspect-ratio: attr(width) / attr(height);
}

/* Fixed: Font smoothing */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ============================================================================
   17. ACCESSIBILITY IMPROVEMENTS
   ============================================================================ */

/* Fixed: Focus visible states for keyboard navigation */
@media (max-width: 768px) {
    *:focus-visible {
        outline: 3px solid var(--primary-color);
        outline-offset: 2px;
    }

    /* Fixed: Skip to content link */
    .skip-to-content {
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
        color: white;
        padding: 1rem 2rem;
        border-radius: 8px;
        z-index: 9999;
        transition: top 0.3s ease;
    }

    .skip-to-content:focus {
        top: 1rem;
    }
}

/* ============================================================================
   END OF RESPONSIVE ENHANCEMENTS
   ============================================================================ */

/* ============================================================================
   18. BLOG PAGE SPECIFIC RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Blog hero section */
    .page-hero {
        padding: 120px 1rem 80px;
        min-height: auto;
    }

    .page-hero .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* Fixed: Blog search container */
    .blog-search-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .blog-search {
        width: 100%;
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.75rem;
        border-radius: 16px;
    }

    .blog-search input {
        width: 100%;
        font-size: 1rem;
        padding: 0.875rem 1rem 0.875rem 3rem;
    }

    .blog-search .search-icon {
        left: 1rem;
        top: 1.75rem;
    }

    .blog-search .search-btn {
        width: 100%;
        height: 52px;
        border-radius: 12px;
        position: relative;
        right: auto;
        top: auto;
    }

    /* Fixed: Blog filters horizontal scroll */
    .blog-filters {
        margin-bottom: 2rem;
    }

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

    .section-header-premium h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .section-header-premium p {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }

    .category-filters {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0.5rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 2rem;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    /* Fixed: Blog articles grid */
    .blog-articles,
    .blog-grid,
    .articles-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Fixed: Blog article card */
    .blog-article,
    .article-card {
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        overflow: hidden;
        background: white;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .article-image {
        width: 100%;
        height: 220px;
        position: relative;
        overflow: hidden;
    }

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

    /* Fixed: Article category badge */
    .category-badge,
    .article-category {
        position: absolute;
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1;
    }

    /* Fixed: Article reading time */
    .reading-time {
        position: absolute;
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 0.875rem;
        border-radius: 20px;
        font-size: 0.75rem;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    /* Fixed: Article content */
    .article-content {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .article-content > p,
    .article-excerpt {
        font-size: 0.9375rem;
        line-height: 1.6;
        color: #64748b;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Fixed: Article tags */
    .article-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .tag {
        padding: 0.375rem 0.75rem;
        border-radius: 15px;
        font-size: 0.75rem;
        font-weight: 500;
        background: #f1f5f9;
        color: #475569;
        white-space: nowrap;
    }

    /* Fixed: Article meta (author, date) */
    .article-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid #e2e8f0;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

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

    .author-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        overflow: hidden;
    }

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

    .author-details {
        display: flex;
        flex-direction: column;
    }

    .author-name {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1e293b;
    }

    .publish-date {
        font-size: 0.75rem;
        color: #94a3b8;
    }

    /* Fixed: Featured articles */
    .featured-articles {
        margin-bottom: 3rem;
    }

    .featured-article {
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 1.5rem;
    }

    .featured-article .article-image {
        height: 250px;
    }

    .featured-article .article-content {
        padding: 1.5rem;
    }

    .featured-article h3 {
        font-size: 1.5rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    /* Fixed: Blog sidebar on mobile */
    .blog-sidebar {
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 2px solid #e2e8f0;
    }

    .sidebar-widget {
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .sidebar-widget h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Fixed: Popular posts in sidebar */
    .popular-post {
        display: flex;
        gap: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .popular-post:last-child {
        border-bottom: none;
    }

    .popular-post-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        border-radius: 12px;
        overflow: hidden;
    }

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

    .popular-post-content h4 {
        font-size: 0.9375rem;
        line-height: 1.4;
        margin-bottom: 0.375rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .popular-post-date {
        font-size: 0.75rem;
        color: #94a3b8;
    }

    /* Fixed: Newsletter signup in blog */
    .blog-newsletter {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        padding: 2rem 1.5rem;
        border-radius: 20px;
        color: white;
        text-align: center;
    }

    .blog-newsletter h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: white;
    }

    .blog-newsletter p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input {
        width: 100%;
        padding: 0.875rem 1rem;
        border-radius: 12px;
        border: none;
        font-size: 1rem;
    }

    .newsletter-form button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        background: white;
        color: var(--primary-color);
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
    }

    /* Fixed: Load more button */
    .load-more-container {
        text-align: center;
        margin-top: 3rem;
    }

    .load-more-btn {
        width: 100%;
        max-width: 300px;
        min-height: 52px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================================================
   19. SERVICE PAGES RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Privacy policy page */
    .privacy-policy-container,
    .terms-container,
    .docs-container,
    .support-container,
    .status-container {
        padding: 5rem 1rem 3rem;
    }

    /* Fixed: Service page headers */
    .privacy-header,
    .terms-header,
    .docs-header,
    .support-header,
    .status-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .privacy-header h1,
    .terms-header h1,
    .docs-header h1,
    .support-header h1,
    .status-header h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }

    .last-updated {
        font-size: 0.875rem;
    }

    /* Fixed: Service page content */
    .privacy-content,
    .terms-content,
    .docs-main,
    .faq-section,
    .services-section {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .privacy-content h2,
    .terms-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .privacy-content h3,
    .terms-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .privacy-content p,
    .terms-content p {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .privacy-content ul,
    .terms-content ul,
    .privacy-content ol,
    .terms-content ol {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-left: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Fixed: Developer docs sidebar */
    .docs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .docs-sidebar {
        position: relative;
        top: 0;
        height: auto;
        background: white;
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    .docs-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .docs-nav a {
        padding: 0.75rem 1rem;
        font-size: 0.9375rem;
    }

    /* Fixed: Code blocks */
    .code-block {
        padding: 1rem;
        border-radius: 12px;
        font-size: 0.8125rem;
        overflow-x: auto;
        margin: 1rem 0;
    }

    .inline-code {
        font-size: 0.875rem;
        padding: 0.2rem 0.4rem;
    }

    /* Fixed: API endpoint cards */
    .api-endpoint {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 1.25rem 0;
    }

    .api-endpoint h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .method-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }

    /* Fixed: Parameter table */
    .parameter-table {
        font-size: 0.875rem;
        overflow-x: auto;
        display: block;
    }

    .parameter-table th,
    .parameter-table td {
        padding: 0.625rem 0.5rem;
        font-size: 0.8125rem;
    }

    /* Fixed: Support center search */
    .search-box {
        max-width: 100%;
        margin: 0 0 3rem;
    }

    .search-box input {
        padding: 1rem 3rem 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 30px;
    }

    .search-box i {
        right: 1.25rem;
    }

    /* Fixed: Support categories grid */
    .support-categories {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .category-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .category-icon i {
        font-size: 1.5rem;
    }

    .category-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .category-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .article-count {
        font-size: 0.875rem;
    }

    /* Fixed: FAQ accordion */
    .faq-item {
        padding: 1.25rem 0;
    }

    .faq-question {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 2rem;
    }

    .faq-answer {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-top: 0.875rem;
    }

    /* Fixed: Contact support section */
    .contact-support {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin-top: 2rem;
    }

    .contact-support h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .contact-support > p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-method i {
        font-size: 2rem;
    }

    .contact-method h4 {
        font-size: 1.125rem;
    }

    .contact-method p {
        font-size: 0.875rem;
        word-break: break-word;
    }
    
    .contact-method p a {
        word-break: break-word;
    }

    /* Fixed: Status page */
    .overall-status {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    .overall-status i {
        font-size: 2.5rem;
    }

    .overall-status h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .overall-status p {
        font-size: 1rem;
    }

    /* Fixed: Service status items */
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
        gap: 0.75rem;
    }

    .service-info {
        width: 100%;
    }

    .status-badge {
        align-self: flex-start;
    }

    /* Fixed: Uptime stats */
    .uptime-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .uptime-stat {
        padding: 1.25rem;
        background: #f8fafc;
        border-radius: 12px;
    }

    .uptime-stat .percentage {
        font-size: 2rem;
    }

    /* Fixed: Incidents */
    .incident-item {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .incident-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .incident-title {
        font-size: 1rem;
    }

    .incident-date {
        font-size: 0.8125rem;
    }

    .incident-description {
        font-size: 0.9375rem;
    }

    /* Fixed: Important notices */
    .important-notice,
    .contact-box {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 1.5rem 0;
    }

    .important-notice h3,
    .contact-box h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .important-notice p,
    .contact-box p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

/* ============================================================================
   20. DESTINATION DETAIL PAGE RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Destination hero */
    .destination-hero {
        height: 60vh;
        min-height: 400px;
    }

    .destination-hero-content {
        padding: 1.5rem;
        bottom: 1rem;
    }

    .destination-hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.5rem;
    }

    /* Fixed: Destination info tabs */
    .info-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem 0;
    }

    .info-tabs::-webkit-scrollbar {
        display: none;
    }

    .info-tab {
        white-space: nowrap;
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* Fixed: Photo gallery grid */
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .photo-item {
        height: 180px;
        border-radius: 12px;
    }

    /* Fixed: Weather widget */
    .weather-widget {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .weather-current {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .weather-temp {
        font-size: 3rem;
    }

    .weather-forecast {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .forecast-day {
        padding: 0.875rem 0.5rem;
    }
}

/* ============================================================================
   21. CONTACT PAGE RESPONSIVE FIXES
   ============================================================================ */

@media (max-width: 768px) {
    /* Fixed: Contact form layout */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }

    /* Fixed: Contact info cards */
    .contact-card {
        padding: 1.5rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    .contact-card i {
        font-size: 1.5rem;
        width: 48px;
        height: 48px;
    }

    .contact-card h3 {
        font-size: 1.125rem;
        margin: 1rem 0 0.5rem;
    }

    .contact-card p,
    .contact-card a {
        font-size: 0.9375rem;
    }

    /* Fixed: Contact form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .form-label {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    .form-control {
        width: 100%;
        min-height: 52px;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    textarea.form-control {
        min-height: 140px;
    }

    .submit-btn {
        width: 100%;
        min-height: 52px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================================================
   END OF ALL RESPONSIVE FIXES
   Production-ready code with comments for all major fixes
   ============================================================================ */

/* ============================================================================
   PIXEL-PERFECT ALIGNMENT & SPACING FIXES
   Goal: Amazon/Flipkart level precision across all viewports
   Last Updated: October 27, 2025
   ============================================================================ */

/* ============================================================================
   1. SCROLL INDICATOR - PERFECT CENTERING
   ============================================================================ */

/* Fixed: Scroll indicator centering and visibility across all devices */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
    animation: bounceIndicator 2s infinite ease-in-out;
}

/* Fixed: Scroll arrow perfect centering */
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    margin: 0 auto 0.5rem;
    display: block;
}

/* Fixed: Bounce animation with proper transform origin */
@keyframes bounceIndicator {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-12px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-6px); 
    }
}

/* Fixed: Mobile scroll indicator positioning */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        bottom: 1.5rem;
        font-size: 0.8125rem;
    }
    
    .scroll-arrow {
        width: 18px;
        height: 18px;
        margin-bottom: 0.375rem;
    }
}

@media (max-width: 480px) {
    .hero-scroll-indicator {
        bottom: 1rem;
        font-size: 0.75rem;
    }
    
    .scroll-arrow {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }
}

/* ============================================================================
   2. HERO ACTION BUTTONS - CONSISTENT SIZING & SPACING
   ============================================================================ */

/* Fixed: Hero actions perfect centering and spacing */
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin: 2.5rem auto;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 1rem;
}

/* Fixed: Hero buttons consistent sizing across viewports */
.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    min-height: 52px;
    border-radius: 12px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fixed: Primary button perfect styling */
.btn-primary.btn-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-primary.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-primary.btn-hero:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Fixed: Glass button perfect styling */
.btn-glass.btn-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-glass.btn-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-glass.btn-hero:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.2);
}

/* Fixed: Button icons perfect alignment */
.btn-hero i {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Fixed: Tablet button sizing */
@media (max-width: 1024px) {
    .btn-hero {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .btn-hero i {
        font-size: 0.9375rem;
    }
}

/* Fixed: Mobile button sizing and stacking */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 2rem auto;
        padding: 0;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
        border-radius: 12px;
    }
}

/* Fixed: Small mobile button sizing */
@media (max-width: 480px) {
    .hero-actions {
        max-width: 280px;
        gap: 0.875rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
}

/* ============================================================================
   3. SEARCH INPUT & BUTTON - PERFECT ALIGNMENT
   ============================================================================ */

/* Fixed: Search demo section spacing */
.search-demo-section {
    padding: 4rem 1rem;
}

/* Fixed: Search demo header perfect centering */
.search-demo-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.search-demo-header h2 {
    margin: 1rem 0;
    line-height: 1.3;
}

.search-demo-header .section-description {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fixed: Search container perfect centering */
.search-demo-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Fixed: Search input wrapper alignment */
.search-demo-input {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    align-items: stretch;
    width: 100%;
}

/* Fixed: Search input wrapper perfect styling */
.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;

    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-input-wrapper:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Fixed: Search input perfect sizing */
#demo-search,
.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    color: #1e293b;
    line-height: 1.5;
    min-height: 44px;
}

#demo-search::placeholder,
.search-input::placeholder {
    color: #94a3b8;
}

/* Fixed: Search button perfect alignment with input */
.search-btn {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.search-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.search-btn i {
    font-size: 0.9375rem;
    line-height: 1;
}

/* Fixed: Tablet search layout */
@media (max-width: 1024px) {
    .search-demo-section {
        padding: 3.5rem 1rem;
    }
    
    .search-input-wrapper {
        padding: 0.375rem 0.625rem;
    }
    
    #demo-search {
        font-size: 0.9375rem;
        padding: 0.625rem 0.875rem;
    }
    
    .search-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Fixed: Mobile search - vertical stacking for perfect alignment */
@media (max-width: 768px) {
    .search-demo-section {
        padding: 3rem 1rem;
    }
    
    .search-demo-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .search-demo-input {
        flex-direction: column;
        gap: 0;
    }
    
    .search-input-wrapper {
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 0.75rem 1rem;
        border-bottom: none;
    }
    
    #demo-search {
        width: 100%;
        font-size: 1rem;
        padding: 0.75rem 0.5rem;
        min-height: 52px;
    }
    
    .search-btn {
        width: 100%;
        margin-left: 0;
        border-radius: 0 0 16px 16px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 52px;
        justify-content: center;
        box-shadow: none;
        border-top: 2px solid rgba(37, 99, 235, 0.2);
    }
    
    .search-btn:hover {
        transform: none;
    }
}

/* Fixed: Small mobile search */
@media (max-width: 480px) {
    .search-demo-section {
        padding: 2.5rem 0.75rem;
    }
    
    .search-input-wrapper {
        padding: 0.625rem 0.875rem;
    }
    
    #demo-search {
        font-size: 0.9375rem;
        padding: 0.625rem 0.375rem;
    }
    
    .search-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
}

/* ============================================================================
   4. HERO FEATURES - PERFECT ALIGNMENT
   ============================================================================ */

/* Fixed: Hero features perfect centering and spacing */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin: 2rem auto;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 1rem;
}

/* Fixed: Individual feature items perfect alignment */
.hero-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.5;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.hero-feature i {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed: Tablet hero features */
@media (max-width: 1024px) {
    .hero-features {
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .hero-feature i {
        font-size: 0.9375rem;
    }
}

/* Fixed: Mobile hero features - single column for perfect centering */
@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
        margin: 1.5rem auto;
        padding: 0;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
}

/* Fixed: Small mobile hero features */
@media (max-width: 480px) {
    .hero-features {
        max-width: 280px;
        gap: 0.625rem;
    }
    
    .hero-feature {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
}

/* ============================================================================
   5. HERO ANNOUNCEMENT BADGE - PERFECT CENTERING
   ============================================================================ */

/* Fixed: Hero announcement perfect centering */
.hero-announcement {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin: 0 auto 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: white;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-announcement:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.02);
}

.hero-announcement i {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Fixed: Mobile announcement */
@media (max-width: 768px) {
    .hero-announcement {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
        max-width: 90%;
    }
    
    .hero-announcement i {
        font-size: 0.9375rem;
    }
    
    .announcement-badge {
        font-size: 0.625rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-announcement {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        flex-wrap: wrap;
    }
    
    .announcement-badge {
        font-size: 0.5625rem;
    }
}

/* ============================================================================
   6. HERO SOCIAL PROOF - PERFECT CENTERING
   ============================================================================ */

/* Fixed: Social proof perfect centering */
.hero-social-proof {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 1.25rem 1.75rem;
    margin: 0 auto 2rem;
    max-width: fit-content;
}

.proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.proof-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    line-height: 1;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-count {
    background: linear-gradient(135deg, #ff6b6b 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-left: 0.5rem;
    line-height: 1;
}

.proof-text {
    color: white;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-weight: 400;
}

.proof-text strong {
    font-weight: 600;
}

/* Fixed: Mobile social proof */
@media (max-width: 768px) {
    .hero-social-proof {
        padding: 1rem 1.25rem;
        max-width: 95%;
        margin: 0 auto 1.5rem;
    }
    
    .proof-item {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .avatar {
        width: 36px;
        height: 36px;
        margin-left: -10px;
        font-size: 1.125rem;
    }
    
    .proof-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-social-proof {
        padding: 0.875rem 1rem;
    }
    
    .avatar {
        width: 32px;
        height: 32px;
        margin-left: -8px;
        font-size: 1rem;
        border-width: 2px;
    }
    
    .avatar-count {
        font-size: 0.75rem;
        padding: 0.375rem 0.625rem;
    }
    
    .proof-text {
        font-size: 0.8125rem;
    }
}

/* ============================================================================
   7. DEMO FEATURES - PERFECT ALIGNMENT
   ============================================================================ */

/* Fixed: Demo features perfect spacing */
.demo-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.demo-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.demo-feature i {
    color: var(--primary-color);
    font-size: 1.125rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-feature strong {
    color: #1e293b;
    font-weight: 600;
}

/* Fixed: Mobile demo features */
@media (max-width: 768px) {
    .demo-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .demo-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.75rem 1rem;
        background: #f8fafc;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .demo-features {
        gap: 0.75rem;
    }
    
    .demo-feature {
        max-width: 280px;
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
    }
    
    .demo-feature i {
        font-size: 1rem;
    }
}

/* ============================================================================
   8. SECTION BADGES - PERFECT CENTERING
   ============================================================================ */

/* Fixed: Section badge perfect styling */
.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-badge:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
    border-color: rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.section-badge.premium {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(78, 205, 196, 0.15));
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

/* Fixed: Mobile section badge */
@media (max-width: 768px) {
    .section-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .section-badge {
        padding: 0.4375rem 0.875rem;
        font-size: 0.75rem;
    }
}

/* ============================================================================
   9. GENERAL BUTTON CONSISTENCY
   ============================================================================ */

/* Fixed: All buttons perfect sizing and alignment */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: 12px;
    min-height: 48px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn i {
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed: Primary button with improved contrast */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Fixed: Glass button */
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: currentColor;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Fixed: Outline button */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Fixed: Mobile buttons */
@media (max-width: 768px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-height: 52px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        min-height: 48px;
    }
}

/* ============================================================================
   10. FOCUS STATES - ACCESSIBILITY
   ============================================================================ */

/* Fixed: Perfect focus states for keyboard navigation */
.btn:focus-visible,
.search-btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Fixed: Remove default focus outline */
.btn:focus,
.search-btn:focus,
button:focus,
a:focus {
    outline: none;
}

/* ============================================================================
   END OF PIXEL-PERFECT ALIGNMENT FIXES
   All elements now centered and aligned like Amazon/Flipkart standards
   ============================================================================ */

/* ============================================================================
   SCROLL TO TOP BUTTON
   Modern floating button with smooth animations
   ============================================================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.35),
        0 4px 12px rgba(37, 99, 235, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    backdrop-filter: blur(10px);
}

/* Show button when visible */
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Hover effects */
.scroll-to-top:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.45),
        0 6px 16px rgba(37, 99, 235, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 20px rgba(37, 99, 235, 0.3);
}

/* Active/Click effect */
.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 
        0 6px 16px rgba(37, 99, 235, 0.4),
        0 3px 8px rgba(37, 99, 235, 0.3);
}

/* Icon animation on hover */
.scroll-to-top:hover i {
    animation: bounce-up 0.6s ease-in-out infinite;
}

/* Focus state for accessibility */
.scroll-to-top:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.5);
    outline-offset: 4px;
}

.scroll-to-top:focus {
    outline: none;
}

/* Bounce animation for arrow */
@keyframes bounce-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .scroll-to-top {
        width: 52px;
        height: 52px;
        bottom: 25px;
        right: 25px;
        font-size: 1.125rem;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    .scroll-to-top:hover {
        transform: translateY(-3px) scale(1.05);
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 16px;
        font-size: 0.9375rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-to-top {
        transition: opacity 0.3s ease, visibility 0.3s ease;
        transform: none !important;
    }
    
    .scroll-to-top:hover i {
        animation: none;
    }
}

/* ============================================================================
   END OF SCROLL TO TOP BUTTON
   ============================================================================ */

/* ============================================================================
   SKELETON LOADER ANIMATIONS
   ============================================================================ */

.skeleton-loader {
    pointer-events: none;
    user-select: none;
}

.skeleton-box {
    background: linear-gradient(
        90deg,
        var(--gray-200) 0%,
        var(--gray-300) 50%,
        var(--gray-200) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

.skeleton-shimmer {
    position: relative;
    overflow: hidden;
}

.skeleton-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%
    );
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.skeleton-loader .dest-item-content {
    padding: 1.5rem;
}

.skeleton-loader .dest-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ============================================================================
   TOAST NOTIFICATION SYSTEM
   ============================================================================ */

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.hide {
    transform: translateX(400px);
    opacity: 0;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.toast.success .toast-icon {
    background: var(--success-color);
    color: white;
}

.toast.error .toast-icon {
    background: var(--error-color);
    color: white;
}

.toast.warning .toast-icon {
    background: var(--warning-color);
    color: white;
}

.toast.info .toast-icon {
    background: var(--primary-color);
    color: white;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.toast-message {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.toast-close:hover {
    background: var(--gray-100);
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .toast-container {
        right: 10px;
        left: 10px;
        top: 80px;
    }
    
    .toast {
        min-width: unset;
        max-width: unset;
        width: 100%;
    }
}






