/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for specific elements */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Text blur effect for enhanced readability */
.text-blur-effect {
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(0.5px);
}

:root {
    --bg-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 15%, #f1f5f9 35%, #ffffff 60%, #f8fafc 85%, #e8f4f8 100%);
    --bg-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    --text-light: #1e293b;
    --text-dark: #f1f5f9;
    --glass-light: rgba(255, 255, 255, 0.75);
    --glass-dark: rgba(15, 23, 42, 0.85);
    --glass-light-strong: rgba(255, 255, 255, 0.85);
    --glass-dark-strong: rgba(15, 23, 42, 0.95);
    --border-light: rgba(255, 255, 255, 0.3);
    --border-dark: rgba(255, 255, 255, 0.1);
    --water-light: rgba(135, 206, 235, 0.1);
    --water-dark: rgba(30, 58, 138, 0.15);
    --accent-blue: #3b82f6;
    --accent-light-blue: #60a5fa;
    --premium-gold: #f59e0b;
    --premium-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
    --premium-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
    --premium-glow: 0 0 30px rgba(59, 130, 246, 0.2);
    --liquid-shadow-light: 0 8px 32px rgba(135, 206, 235, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    --liquid-shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow-x: hidden;
    background: var(--bg-light);
    background-attachment: fixed;
    min-height: 100vh;
    transition: all 0.3s ease;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.dark-mode {
    background: var(--bg-dark);
    color: var(--text-dark);
}

/* Enhanced Liquid Glass Effect */
.glass {
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 50%, var(--glass-light) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 25px;
    box-shadow: var(--liquid-shadow-light);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--water-light) 0%, transparent 50%, var(--water-light) 100%);
    opacity: 0.6;
    pointer-events: none;
    border-radius: inherit;
}

.glass::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%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glass:hover::after {
    opacity: 1;
}

body.dark-mode .glass {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 50%, var(--glass-dark) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

body.dark-mode .glass::before {
    background: linear-gradient(135deg, var(--water-dark) 0%, transparent 50%, var(--water-dark) 100%);
    opacity: 0.4;
}

body.dark-mode .glass::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--liquid-shadow-light);
}

body.dark-mode .navbar {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.dark-mode .nav-logo h2 {
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-mode .nav-link {
    color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, var(--glass-light-strong) 0%, var(--glass-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--liquid-shadow-light);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    background: linear-gradient(135deg, var(--glass-dark-strong) 0%, var(--glass-dark) 100%);
    box-shadow: var(--liquid-shadow-dark);
    border: 1px solid var(--border-dark);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2001;
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 100%);
    border-radius: 16px;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    box-shadow: var(--liquid-shadow-light);
}

body.dark-mode .hamburger {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

body.dark-mode .bar {
    background: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 300px;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--glass-light), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, var(--glass-dark), rgba(255, 255, 255, 0.02));
    border-bottom: 1px solid var(--border-dark);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-title {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: fadeInUp 1s ease;
    margin-top: 90px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    background: var(--glass-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 25px;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease;
    max-width: 90%;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .hero-content {
    color: var(--text-dark);
    background: var(--glass-dark);
    border: 1px solid var(--border-dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body.dark-mode .hero-content h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(238, 90, 36, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(238, 90, 36, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Advertisement in Feed */
.news-ad {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease;
    margin-bottom: 0;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--liquid-shadow-light);
    border-left: 4px solid rgba(59, 130, 246, 0.6);
}

body.dark-mode .news-ad {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.9) 0%, 
        rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(71, 85, 105, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-left: 4px solid rgba(96, 165, 250, 0.6);
}

.news-ad:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-left-color: rgba(59, 130, 246, 0.8);
}

body.dark-mode .news-ad:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-left-color: rgba(96, 165, 250, 0.8);
}

.news-ad .ad-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(59, 130, 246, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

body.dark-mode .news-ad .ad-label {
    color: rgba(96, 165, 250, 0.8);
}

.news-ad .ad-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4));
}

.news-ad .ad-label::after {
    content: '';
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.4), transparent);
}

body.dark-mode .news-ad .ad-label::before,
body.dark-mode .news-ad .ad-label::after {
    background: linear-gradient(90deg, rgba(96, 165, 250, 0.4), transparent);
}

.news-ad .ad-content {
    min-height: 120px;
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    position: relative;
}

.news-ad .adsbygoogle {
    width: 100% !important;
    min-width: 300px !important;
    min-height: 100px !important;
    display: block !important;
}

.news-ad .ad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

body.dark-mode .news-ad .ad-placeholder {
    color: var(--text-dark);
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.05);
}

.news-ad .ad-placeholder:hover {
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

body.dark-mode .news-ad .ad-placeholder:hover {
    border-color: rgba(96, 165, 250, 0.6);
    background: rgba(96, 165, 250, 0.1);
}

.news-ad .ad-placeholder i {
    font-size: 2.5rem;
    opacity: 0.7;
    color: rgba(59, 130, 246, 0.8);
}

body.dark-mode .news-ad .ad-placeholder i {
    color: rgba(96, 165, 250, 0.8);
}

.news-ad .ad-placeholder p {
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-light);
}

body.dark-mode .news-ad .ad-placeholder p {
    color: var(--text-dark);
}

.news-ad .ad-placeholder span {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
    color: rgba(107, 114, 128, 0.8);
}

body.dark-mode .news-ad .ad-placeholder span {
    color: rgba(156, 163, 175, 0.8);
}

/* Responsive ads - Enhanced for iOS and Android */
@media (max-width: 768px) {
    .news-ad {
        padding: 1.2rem;
        border-radius: 16px;
        margin: 1rem 0.5rem;
        max-width: calc(100vw - 1rem);
        width: calc(100vw - 1rem);
        /* iOS Safari specific fixes */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        /* Android Chrome specific fixes */
        will-change: transform;
        /* Ensure proper touch handling */
        touch-action: manipulation;
        /* Better backdrop filter support */
        -webkit-backdrop-filter: blur(20px) saturate(150%);
        backdrop-filter: blur(20px) saturate(150%);
    }
    
    .news-ad .adsbygoogle {
        min-width: 280px !important;
        width: 100% !important;
    }
    
    .news-ad .ad-placeholder {
        padding: 1.2rem;
        min-height: 80px;
        /* Better text rendering on mobile */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    .news-ad .ad-placeholder i {
        font-size: 1.8rem;
        /* Prevent icon scaling issues on mobile */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .news-ad .ad-placeholder p {
        font-size: 0.9rem;
        line-height: 1.4;
        /* Better text wrapping on small screens */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .news-ad .ad-content {
        min-height: 80px;
        /* Ensure proper rendering on mobile browsers */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .news-ad .ad-label {
        font-size: 0.65rem;
        margin-bottom: 0.8rem;
        /* Better visibility on mobile */
        font-weight: 700;
    }
    
    /* iOS specific optimizations */
    @supports (-webkit-touch-callout: none) {
        .news-ad {
            /* Fix for iOS Safari backdrop-filter */
            -webkit-backdrop-filter: blur(15px);
            /* Prevent iOS zoom on double tap */
            touch-action: manipulation;
        }
    }
    
    /* Android specific optimizations */
    @media screen and (-webkit-min-device-pixel-ratio: 1) {
        .news-ad {
            /* Better performance on Android */
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .news-ad {
        padding: 1rem;
        margin: 0.8rem 0.3rem;
        border-radius: 12px;
        /* Ensure full width utilization on very small screens */
        max-width: calc(100vw - 0.6rem);
    }
    
    .news-ad .ad-placeholder {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .news-ad .ad-placeholder i {
        font-size: 1.5rem;
    }
    
    .news-ad .ad-placeholder p {
        font-size: 0.85rem;
    }
    
    .news-ad .ad-label {
        font-size: 0.6rem;
        margin-bottom: 0.6rem;
    }
}

/* High DPI displays (Retina, high-res Android) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .news-ad {
        /* Sharper borders on high DPI displays */
        border-width: 0.5px;
    }
    
    .news-ad .ad-placeholder {
        /* Sharper dashed border on high DPI */
        border-width: 1px;
    }
}

/* Mobile landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .news-ad {
        margin: 0.8rem 1rem;
        max-width: calc(100vw - 2rem);
    }
}

/* Mobile-specific hover states (touch devices) */
@media (hover: none) and (pointer: coarse) {
    .news-ad:hover {
        /* Disable hover effects on touch devices */
        transform: none;
        box-shadow: var(--liquid-shadow-light);
        border-left-color: rgba(59, 130, 246, 0.6);
    }
    
    body.dark-mode .news-ad:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        border-left-color: rgba(96, 165, 250, 0.6);
    }
    
    /* Add active state for better touch feedback */
    .news-ad:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Ensure proper rendering on older Android browsers */
@media screen and (max-width: 768px) {
    .news-ad {
        /* Force hardware acceleration */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        /* Prevent text size adjustment on mobile */
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .news-ad .ad-placeholder {
        /* Ensure proper text rendering */
        -webkit-font-feature-settings: "kern" 1;
        font-feature-settings: "kern" 1;
        -webkit-font-kerning: normal;
        font-kerning: normal;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-appearance: none) {
    @media (max-width: 768px) {
        .news-ad {
            /* Fix for iOS Safari rendering issues */
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            /* Prevent iOS Safari from adding unwanted styles */
            -webkit-appearance: none;
            appearance: none;
        }
    }
}

/* Samsung Internet and other WebKit-based mobile browsers */
@media screen and (max-width: 768px) {
    .news-ad {
        /* Ensure consistent rendering across WebKit browsers */
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        /* Prevent content overflow on small screens */
        overflow: hidden;
        /* Ensure proper stacking context */
        isolation: isolate;
    }
    
    .news-ad .ad-content {
        /* Prevent content from breaking layout */
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

/* News Feed */
.news-feed {
    padding: 2rem 0;
    background: transparent;
    min-height: 75vh;
}

.news-feed h2 {
    text-align: center;
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.news-feed h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border-radius: 2px;
}

body.dark-mode .news-feed h2 {
    background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.feed-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
}

.news-post {
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 50%, var(--glass-light) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2rem;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease;
    margin-bottom: 0;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--liquid-shadow-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

body.dark-mode .news-post {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.news-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--premium-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.dark-mode .news-post {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 50%, var(--glass-dark) 100%);
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.news-post:hover {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: var(--premium-glow), var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.news-post:hover::before {
    opacity: 1;
}

body.dark-mode .news-post:hover {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.news-post::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.6s;
}

.news-post:hover::before {
    left: 100%;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.post-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.post-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.post-time {
    font-size: 0.9rem;
    opacity: 0.7;
}

.view-count-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.2rem;
}

.view-count-wrapper i {
    font-size: 0.9rem;
}

.view-count {
    font-weight: 500;
}

.post-content {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

body.dark-mode .post-content {
    color: var(--text-dark);
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.dark-mode .post-content h3 {
    color: var(--text-dark);
}

.post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin: 1rem 0;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.dark-mode .action-btn {
    color: var(--text-dark);
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--glass-light-strong) 0%, var(--glass-light) 100%);
    transform: scale(1.1);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: var(--liquid-shadow-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

body.dark-mode .action-btn:hover {
    background: linear-gradient(135deg, var(--glass-dark-strong) 0%, var(--glass-dark) 100%);
    box-shadow: var(--liquid-shadow-dark);
    border: 1px solid var(--border-dark);
}

.action-btn.liked {
    color: #ff6b6b;
}

.action-btn.saved {
    color: #ffd93d;
}

.load-more {
    display: block;
    margin: 0 auto;
    background: var(--premium-gradient);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: var(--liquid-shadow-light), var(--premium-shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    letter-spacing: 0.02em;
    font-size: 1rem;
}

.load-more:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--premium-glow), var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.load-more:active {
    transform: translateY(-2px) scale(0.98);
}

.load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.load-more:hover::before {
    left: 100%;
}

/* Travel Agencies */
.agencies {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 50%, var(--glass-light) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agencies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.dark-mode .agencies {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 50%, var(--glass-dark) 100%);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.agencies h2 {
    text-align: center;
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.dark-mode .agencies h2 {
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.agency-card {
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.8s ease;
    position: relative;
    box-shadow: var(--liquid-shadow-light);
}

.dark-mode .agency-card {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.agency-card:hover {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: var(--premium-glow), var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dark-mode .agency-card:hover {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.agency-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.agency-info {
    padding: 1.5rem;
}

.agency-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.dark-mode .agency-card h3 {
    color: var(--text-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.agency-card .description {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
}

.dark-mode .agency-card .description {
    color: var(--text-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.agency-card .email, .agency-card .phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-blue);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.agency-card .email i, .agency-card .phone i {
    font-size: 1rem;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #25D366; /* WhatsApp brand green */
    font-size: 1.2rem;
}

.contact-item .whatsapp-icon {
    margin-right: 10px;
    vertical-align: middle;
    color: #25D366; /* WhatsApp brand green */
}

.agency-modal-content .whatsapp-icon {
    margin-right: 10px;
    vertical-align: middle;
    color: #25D366; /* WhatsApp brand green */
}

/* PR Pathways Section - Premium Design */
.pr-pathways {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95) 0%, 
        rgba(241, 245, 249, 0.98) 25%,
        rgba(226, 232, 240, 0.95) 50%,
        rgba(241, 245, 249, 0.98) 75%,
        rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pr-pathways::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.dark-mode .pr-pathways {
    background: linear-gradient(135deg, 
        rgba(3, 7, 18, 0.98) 0%, 
        rgba(15, 23, 42, 0.95) 25%,
        rgba(30, 41, 59, 0.98) 50%,
        rgba(15, 23, 42, 0.95) 75%,
        rgba(3, 7, 18, 0.98) 100%);
    border-top: 1px solid rgba(71, 85, 105, 0.3);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.pr-pathways h2 {
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.4)); }
}

.dark-mode .pr-pathways h2 {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pathways-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.pathways-intro {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.pathways-intro::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #9333ea, transparent);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { box-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }
    100% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.8); }
}

.pathways-intro p {
    font-size: 1.4rem;
    color: rgba(15, 23, 42, 0.9);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.dark-mode .pathways-intro p {
    color: rgba(248, 250, 252, 0.9);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    perspective: 1000px;
}

.country-dropdown {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(241, 245, 249, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 32px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    animation: cardSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
}

@keyframes cardSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.country-dropdown:nth-child(1) { animation-delay: 0.1s; }
.country-dropdown:nth-child(2) { animation-delay: 0.2s; }
.country-dropdown:nth-child(3) { animation-delay: 0.3s; }
.country-dropdown:nth-child(4) { animation-delay: 0.4s; }
.country-dropdown:nth-child(5) { animation-delay: 0.5s; }
.country-dropdown:nth-child(6) { animation-delay: 0.6s; }

.dark-mode .country-dropdown {
    background: linear-gradient(145deg, 
        rgba(30, 41, 59, 0.8) 0%,
        rgba(15, 23, 42, 0.9) 50%,
        rgba(3, 7, 18, 0.95) 100%);
    border: 1px solid rgba(71, 85, 105, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.country-dropdown:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, 
        rgba(59, 130, 246, 0.15) 0%,
        rgba(147, 51, 234, 0.1) 50%,
        rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.3),
        0 15px 40px rgba(147, 51, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.dark-mode .country-dropdown:hover {
    background: linear-gradient(145deg, 
        rgba(59, 130, 246, 0.2) 0%,
        rgba(147, 51, 234, 0.15) 50%,
        rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.4),
        0 15px 40px rgba(147, 51, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dropdown-header::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.6s ease;
}

.dropdown-header:hover::before {
    left: 100%;
}

.dropdown-header:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(59, 130, 246, 0.05) 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.dark-mode .dropdown-header {
    border-bottom: 1px solid rgba(71, 85, 105, 0.2);
}

.dark-mode .dropdown-header:hover {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.6) 0%,
        rgba(59, 130, 246, 0.1) 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.country-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.country-flag {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.dropdown-header:hover .country-flag {
    transform: scale(1.1) rotate(5deg);
}

.country-details h3 {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.dark-mode .country-details h3 {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.country-summary {
    color: rgba(248, 250, 252, 0.8);
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
}

.dark-mode .country-summary {
    color: rgba(248, 250, 252, 0.9);
}

.dropdown-header:hover .country-summary {
    color: rgba(59, 130, 246, 0.9);
}

.dropdown-arrow {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
    position: relative;
    z-index: 1;
}

.dropdown-arrow.active {
    transform: rotate(180deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(147, 51, 234, 0.4));
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1), 
                padding 0.4s ease,
                opacity 0.3s ease;
    padding: 0 2.5rem;
    opacity: 0;
}

.dropdown-content.active {
    max-height: 3000px;
    padding: 0 2.5rem 2.5rem 2.5rem;
    opacity: 1;
}

.pathway-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: contentFadeIn 0.6s ease forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pathway-category {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.pathway-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #9333ea, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pathway-category:hover::before {
    opacity: 1;
}

.pathway-category:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, 
        rgba(59, 130, 246, 0.1) 0%,
        rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dark-mode .pathway-category {
    background: linear-gradient(145deg, 
        rgba(30, 41, 59, 0.6) 0%,
        rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-mode .pathway-category:hover {
    background: linear-gradient(145deg, 
        rgba(59, 130, 246, 0.15) 0%,
        rgba(147, 51, 234, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.category-header {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(147, 51, 234, 0.1) 50%,
        rgba(16, 185, 129, 0.05) 100%);
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.category-header::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.8s ease;
}

.pathway-category:hover .category-header::before {
    left: 100%;
}

.dark-mode .category-header {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(147, 51, 234, 0.15) 50%,
        rgba(16, 185, 129, 0.1) 100%);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.category-header h4 {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.dark-mode .category-header h4 {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header h4 i {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.category-description {
    color: rgba(248, 250, 252, 0.85);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.dark-mode .category-description {
    color: rgba(248, 250, 252, 0.9);
}

.pathway-programs {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-item {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-item:hover::before {
    opacity: 1;
}

.dark-mode .program-item {
    background: linear-gradient(145deg, 
        rgba(30, 41, 59, 0.4) 0%,
        rgba(15, 23, 42, 0.6) 100%);
    border: 1px solid rgba(71, 85, 105, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.program-item:hover {
    background: linear-gradient(145deg, 
        rgba(59, 130, 246, 0.08) 0%,
        rgba(147, 51, 234, 0.04) 100%);
    border: 1px solid rgba(59, 130, 246, 0.25);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

.dark-mode .program-item:hover {
    background: linear-gradient(145deg, 
        rgba(59, 130, 246, 0.12) 0%,
        rgba(147, 51, 234, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.2);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.program-name {
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
    flex: 1;
}

.dark-mode .program-name {
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-time {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.processing-time:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.program-details {
    color: rgba(248, 250, 252, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.2rem 0;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.dark-mode .program-details {
    color: rgba(248, 250, 252, 0.85);
}

.program-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.program-requirements li {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%,
        rgba(147, 51, 234, 0.1) 100%);
    color: rgba(248, 250, 252, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-requirements li::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;
}

.program-requirements li:hover::before {
    left: 100%;
}

.program-requirements li:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.25) 0%,
        rgba(147, 51, 234, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.dark-mode .program-requirements li {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%,
        rgba(147, 51, 234, 0.15) 100%);
    color: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.dark-mode .program-requirements li:hover {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3) 0%,
        rgba(147, 51, 234, 0.25) 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}



.pathways-footer {
    margin-top: 3rem;
}

.important-note {
    background: linear-gradient(145deg, 
        rgba(239, 68, 68, 0.12) 0%,
        rgba(220, 38, 127, 0.08) 50%,
        rgba(147, 51, 234, 0.12) 100%);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin: 3rem auto;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(239, 68, 68, 0.15),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

.important-note::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.08) 50%, 
        transparent 70%);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.dark-mode .important-note {
    background: linear-gradient(145deg, 
        rgba(239, 68, 68, 0.18) 0%,
        rgba(220, 38, 127, 0.12) 50%,
        rgba(147, 51, 234, 0.18) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 
        0 8px 32px rgba(239, 68, 68, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

.important-note h3 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.dark-mode .important-note h3 {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.important-note h3 i {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.important-note p {
    color: rgba(15, 23, 42, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 0 1.8rem 0;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

.dark-mode .important-note p {
    color: rgba(248, 250, 252, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.consultation-cta {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.consultation-cta .cta-button {
    background: linear-gradient(135deg, #3b82f6, #9333ea);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: inherit;
}

.consultation-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.consultation-cta .cta-button:hover::before {
    left: 100%;
}

.consultation-cta .cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(59, 130, 246, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.consultation-cta .cta-button:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 50%, var(--glass-light) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.dark-mode .about {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 50%, var(--glass-dark) 100%);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.about h2 {
    text-align: center;
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.dark-mode .about h2 {
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.dark-mode .about-content p {
    color: var(--text-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--liquid-shadow-light);
}

.dark-mode .stat {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: var(--premium-glow), var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dark-mode .stat:hover {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dark-mode .stat h3 {
    color: var(--text-dark);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.dark-mode .stat p {
    color: var(--text-dark);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.dark-mode .contact {
    background: var(--bg-dark);
}

.contact h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.dark-mode .contact h2 {
    color: var(--text-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #667eea;
    transition: color 0.3s ease;
}

.dark-mode .contact-item i {
    color: #8fa4f3;
}

.contact-item span {
    color: #333;
    transition: color 0.3s ease;
}

.dark-mode .contact-item span {
    color: var(--text-dark);
}

.contact-form {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Agency Modal */
.agency-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease;
}

.agency-modal-content {
    background: var(--glass-light);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

.dark-mode .agency-modal-content {
    background: var(--glass-dark);
    color: var(--text-light);
}

.close-agency-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-agency-modal:hover {
    color: #333;
}

.dark-mode .close-agency-modal {
    color: #ccc;
}

.dark-mode .close-agency-modal:hover {
    color: #fff;
}

.agency-modal-content h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.dark-mode .agency-modal-content h2 {
    color: var(--text-light);
}

.agency-modal-content h3 {
    color: #555;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.dark-mode .agency-modal-content h3 {
    color: #ddd;
}

.agency-modal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.agency-modal-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #666;
}

.dark-mode .agency-modal-content li {
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agency-contact {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
}

.dark-mode .agency-contact {
    background: rgba(255, 255, 255, 0.1);
}

.agency-contact p {
    margin: 0.5rem 0;
    color: #555;
}

.dark-mode .agency-contact p {
    color: #ddd;
}

.book-now-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Styles */
.contact-form {
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: #333;
}

.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.dark-mode .contact-form input::placeholder,
.dark-mode .contact-form textarea::placeholder {
    color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.2);
}

.contact-form button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.dark-mode .modal {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Enhanced modal styles */
.modal-content {
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 50%, var(--glass-light) 100%);
    backdrop-filter: blur(50px) saturate(200%);
    -webkit-backdrop-filter: blur(50px) saturate(200%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    margin: 2% auto;
    padding: 0;
    width: 95%;
    max-width: 900px;
    color: var(--text-light);
    position: relative;
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--liquid-shadow-light), 0 32px 80px rgba(135, 206, 235, 0.2);
    transition: all 0.4s ease;
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--water-light) 0%, transparent 50%, var(--water-light) 100%);
    opacity: 0.3;
    pointer-events: none;
    border-radius: inherit;
    z-index: -1;
}

body.dark-mode .modal-content {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 50%, var(--glass-dark) 100%);
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
    box-shadow: var(--liquid-shadow-dark), 0 32px 80px rgba(0, 0, 0, 0.4);
}

body.dark-mode .modal-content::before {
    background: linear-gradient(135deg, var(--water-dark) 0%, transparent 50%, var(--water-dark) 100%);
    opacity: 0.2;
}

/* Premium modal header */
.modal-header {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

body.dark-mode .modal-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-bottom: 1px solid var(--border-dark);
}

.modal-author {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 1.2rem;
    border: 3px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modal-author-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.modal-timestamp {
    opacity: 0.7;
    font-size: 0.95rem;
    margin: 0.3rem 0;
}

.premium-badge {
    background: var(--premium-gradient);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.8rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.modal-category {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.category-tag {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-light-blue);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.modal-title {
    font-size: 2.2rem;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modal image container */
.modal-image-container {
    position: relative;
    margin: 0;
}

.modal-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.reading-time {
    color: rgba(255, 255, 255, 0.9);
}

/* Modal body content */
.article-content {
    padding: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.75;
    flex: 1;
    overflow-y: auto;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-divider {
    width: 60px;
    height: 4px;
    background: var(--premium-gradient);
    border-radius: 2px;
    margin: 2rem 0;
}

/* Modal footer */
.modal-footer {
    padding: 2rem 2.5rem;
    background: rgba(59, 130, 246, 0.03);
    border-top: 1px solid var(--border-light);
}

body.dark-mode .modal-footer {
    background: rgba(59, 130, 246, 0.05);
    border-top: 1px solid var(--border-dark);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.action-btn.premium {
    padding: 0.8rem 1.5rem;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid;
    font-size: 0.95rem;
}

.action-btn.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.like-btn.premium {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.25);
    color: #FCA5A5;
}

.share-btn.premium {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--accent-light-blue);
}

.save-btn.premium {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
    color: #FCD34D;
}

.comment-btn.premium {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
    color: #C4B5FD;
}

.modal-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 16px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.modal-content h2 {
    margin-top: 0;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

body.dark-mode .modal-content h2 {
    color: var(--text-dark);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s ease;
}

body.dark-mode .close {
    color: var(--text-dark);
}

.close:hover {
    transform: scale(1.2);
    color: #ff6b6b;
}

/* Floating Action Button */
.fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: var(--liquid-shadow-light), 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

body.dark-mode .fab {
    background: linear-gradient(45deg, #667eea, #764ba2);
    box-shadow: var(--liquid-shadow-dark), 0 10px 25px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--premium-glow), var(--liquid-shadow-light), 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* Contact FAB positioning */
.contact-fab {
    bottom: 2rem;
    right: 15rem;
    background: linear-gradient(45deg, #10b981, #059669);
}

body.dark-mode .contact-fab {
    background: linear-gradient(45deg, #10b981, #059669);
    box-shadow: var(--liquid-shadow-dark), 0 10px 25px rgba(16, 185, 129, 0.4);
}

.contact-fab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3), var(--liquid-shadow-light), 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Contact Form Modal Styles */
.agency-contact-form {
    padding: 2rem;
}

.agency-contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.agency-contact-form input,
.agency-contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

body.dark-mode .agency-contact-form input,
body.dark-mode .agency-contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
}

.agency-contact-form input:focus,
.agency-contact-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.agency-contact-form .submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
}

.agency-contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.agency-contact-form .submit-btn:active {
    transform: translateY(0);
}

/* Contact form modal specific styles */
#contact-form-modal .modal-content {
    max-width: 600px;
    margin: 5% auto;
    max-height: 90vh;
    overflow-y: auto;
}

#contact-form-modal h2 {
    text-align: center;
    margin-bottom: 0;
    padding: 2rem 2rem 0 2rem;
    font-size: 1.8rem;
    background: var(--premium-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark mode styles for contact form modal */
body.dark-mode #contact-form-modal .modal-content {
    background: rgba(30, 30, 30, 0.95);
    border: 1px solid var(--border-dark);
    color: var(--text-dark);
}

body.dark-mode #contact-form-modal h2 {
    color: var(--text-dark);
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .agency-contact-form input::placeholder,
body.dark-mode .agency-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* FAQ Modal Styles */
#faq-modal .modal-content {
    max-width: 800px;
    margin: 5% auto;
    max-height: 90vh;
    overflow-y: auto;
}

.faq-container {
    padding: 0 2rem 2rem 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

body.dark-mode .faq-item {
    border-bottom: 1px solid var(--border-dark);
}

body.dark-mode .faq-item h3 {
    color: var(--text-dark);
}

body.dark-mode .faq-item p {
    color: var(--text-dark);
}

body.dark-mode .agency-contact-form .submit-btn {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

body.dark-mode .agency-contact-form .submit-btn:hover {
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

@media (max-width: 768px) {
    .agency-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-fab {
        right: 2rem;
        bottom: 7rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
    to {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(3px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    50% {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Modal Button Hover Effects */
.close-detail:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1);
}

.detail-like-btn:hover {
    background: rgba(255, 107, 107, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.detail-share-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.detail-save-btn:hover {
    background: rgba(255, 211, 61, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 211, 61, 0.3);
}

/* Read Full Article Button */
.read-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.dark-mode .read-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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.3), transparent);
    transition: left 0.6s;
}

.read-more-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:active {
    transform: translateY(0) scale(1.02);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    top: 1rem;
    right: 5rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 100%);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2002;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: var(--liquid-shadow-light);
}

body.dark-mode .dark-mode-toggle {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.dark-mode-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--premium-glow), var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dark-mode-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(74, 144, 226, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

body.dark-mode .dark-mode-toggle:hover {
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dark-mode-toggle::before {
    content: '☀️';
    position: absolute;
    left: 10px;
    font-size: 1rem;
    transition: all 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

body.dark-mode .dark-mode-toggle::before {
    opacity: 0.3;
    transform: scale(0.8);
}

.dark-mode-toggle::after {
    content: '🌙';
    position: absolute;
    right: 10px;
    font-size: 1rem;
    transition: all 0.4s ease;
    opacity: 0.3;
    transform: scale(0.8);
}

body.dark-mode .dark-mode-toggle::after {
    opacity: 1;
    transform: scale(1);
}

.toggle-slider {
    width: 20px;
    height: 20px;
    background: var(--premium-gradient);
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 3px;
    transition: all 0.4s ease;
}

body.dark-mode .toggle-slider {
    transform: translate(22px, -50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

body.dark-mode .toggle-slider::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
}

/* Mobile menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.dark-mode .menu-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -300px;
        top: 0;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 100%);
        backdrop-filter: blur(60px) saturate(220%);
        -webkit-backdrop-filter: blur(60px) saturate(220%);
        text-align: left;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-light);
        z-index: 2000;
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: var(--liquid-shadow-light), -10px 0 30px rgba(135, 206, 235, 0.4);
    }

    body.dark-mode .nav-menu {
        background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
        border-left: 1px solid var(--border-dark);
        box-shadow: var(--liquid-shadow-dark), -10px 0 30px rgba(0, 0, 0, 0.7);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.8rem 1rem;
        border-radius: 12px;
        display: block;
        transition: all 0.3s ease;
        margin-bottom: 0.5rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        height: 80px;
        min-height: 80px;
    }
    
    .dark-mode-toggle {
        top: 1rem;
        right: 5rem;
        width: 48px;
        height: 48px;
    }
    
    .dark-mode-toggle::before {
        left: 8px;
        font-size: 0.9rem;
    }
    
    .dark-mode-toggle::after {
        right: 8px;
        font-size: 0.9rem;
    }
    
    .toggle-slider {
        width: 22px;
        height: 22px;
    }
    
    .toggle-slider::before {
        width: 18px;
        height: 18px;
    }
    
    body.dark-mode .toggle-slider {
        transform: translateX(30px);
    }

    .hero-content {
        padding: 1.5rem;
        max-width: 95%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .news-post {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }

    .news-feed {
        padding: 1rem 0;
    }

    .news-feed h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    
    .news-feed h2::after {
        width: 60px;
        height: 3px;
    }
    
    .hero {
        height: 200px;
        min-height: 200px;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-top: 40px;
    }

    .hero-title::after {
        width: 80px;
        height: 3px;
        bottom: -20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .agencies-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Modal responsive adjustments */
    .news-detail-modal {
        padding: 1rem !important;
    }

    .news-detail-modal > div {
        padding: 1.5rem !important;
        max-width: 95% !important;
        border-radius: 20px !important;
    }

    .detail-actions {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .detail-actions > div {
        width: 100% !important;
        justify-content: center !important;
    }

    .detail-save-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .news-feed h2 {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .news-feed h2::after {
        width: 50px;
        height: 2px;
    }
    
    .agencies h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .hero {
        height: 150px;
        min-height: 150px;
    }

    .hero-title {
        font-size: 1.8rem;
        font-weight: 600;
        margin-top: 25px;
    }

    .hero-title::after {
        width: 60px;
        height: 2px;
        bottom: -15px;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Tablet Styles (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 2rem;
    }

    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero {
        height: 250px;
        min-height: 250px;
    }
    
    .news-feed h2 {
        font-size: 2.8rem;
        font-weight: 800;
    }
    
    .news-feed h2::after {
        width: 80px;
        height: 3px;
    }

    .hero-content {
        max-width: 80%;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .feed-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 100%;
    }

    .news-post {
        max-width: 100%;
        margin: 0;
    }

    .agencies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .dark-mode-toggle {
        top: 1rem;
        right: 8rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }
}

/* Desktop Styles (1025px+) */
@media (min-width: 1025px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }

    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .hero {
        height: 150px;
        min-height: 150px;
    }

    .hero-content {
        max-width: 70%;
        padding: 3rem;
    }

    .hero-content h1 {
        font-size: 4rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        max-width: 600px;
    }

    .feed-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 100%;
    }

    .news-post {
        max-width: 100%;
        margin: 0;
        padding: 2rem;
    }

    .post-image {
        height: 200px;
    }

    .agencies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .dark-mode-toggle {
        top: 1rem;
        right: 8rem;
    }

    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    /* Enhanced spacing for desktop */
    .news-feed {
        padding: 4rem 0;
    }

    .news-feed h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .agencies,
    .about,
    .contact {
        padding: 4rem 0;
    }

    .agencies h2,
    .about h2,
    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    /* Modal improvements for desktop */
    .news-detail-modal > div {
        max-width: 800px !important;
        padding: 3rem !important;
    }

    .detail-actions {
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    .detail-actions > div {
        width: auto !important;
    }

    .detail-save-btn {
        width: auto !important;
    }
}

/* Large Desktop Styles (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero-content h1 {
        font-size: 4.5rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .feed-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .agencies-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Smooth scrolling and enhanced performance */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
* {
    will-change: auto;
}

.news-post, .modal-content, .fab {
    will-change: transform, opacity;
}

/* Enhanced focus states for accessibility */
button:focus, .nav-link:focus, input:focus, textarea:focus {
    outline: 2px solid var(--accent-light-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
}

body.dark-mode button:focus, 
body.dark-mode .nav-link:focus, 
body.dark-mode input:focus, 
body.dark-mode textarea:focus {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, var(--glass-light) 0%, var(--glass-light-strong) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    box-shadow: var(--liquid-shadow-light);
    position: relative;
    overflow: hidden;
}

body.dark-mode .site-footer {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border-top: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

body.dark-mode .footer-logo h2 {
    color: var(--text-dark);
}

.footer-logo p {
    color: var(--text-light);
    opacity: 0.8;
    max-width: 300px;
    line-height: 1.6;
}

body.dark-mode .footer-logo p {
    color: var(--text-dark);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 2px;
}

body.dark-mode .footer-column h3 {
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent-blue);
}

body.dark-mode .footer-column ul li a {
    color: var(--text-dark);
}

.social-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links li a i {
    width: 20px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 0.9rem;
}

body.dark-mode .footer-bottom p {
    color: var(--text-dark);
}

/* Mobile Back Button for Article View */
.mobile-back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3100;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

body.dark-mode .mobile-back-btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
}

.mobile-back-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

body.dark-mode .mobile-back-btn:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        width: 100%;
    }
}

/* Booking Section Styles */
.booking {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    transition: all 0.3s ease;
}

body.dark-mode .booking {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 50%, var(--glass-dark) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 2rem;
}

.booking-title-section {
    flex: 1;
    text-align: left;
}

.booking-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

body.dark-mode .booking-header h2 {
    color: var(--text-dark);
}

.booking-header h2 i {
    color: #3498db;
    margin-right: 15px;
    transition: color 0.3s ease;
}

body.dark-mode .booking-header h2 i {
    color: white;
}

.booking-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    line-height: 1.6;
}

body.dark-mode .booking-subtitle {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Theme Toggle Button */
.theme-toggle-section {
    display: flex;
    align-items: center;
}

.theme-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.theme-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

body.dark-mode .theme-toggle-btn {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

body.dark-mode .theme-toggle-btn:hover {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.theme-toggle-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.theme-toggle-btn:hover i {
    transform: rotate(15deg);
}

/* Airlines Section */
.airlines-section {
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

body.dark-mode .airlines-section {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
}

.airlines-section h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    transition: color 0.3s ease;
}

body.dark-mode .airlines-section h3 {
    color: var(--text-dark);
}

.airlines-section h3 i {
    color: #e74c3c;
    margin-right: 10px;
    transition: color 0.3s ease;
}

body.dark-mode .airlines-section h3 i {
    color: white;
}

.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.airline-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

body.dark-mode .airline-card {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 2px solid var(--border-dark);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.airline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.airline-logo {
    font-size: 3rem;
    margin-bottom: 15px;
}

.airline-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

body.dark-mode .airline-card h4 {
    color: var(--text-dark);
}

.airline-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

body.dark-mode .airline-card p {
    color: rgba(248, 250, 252, 0.7);
}

/* Booking Form Section */
.booking-form-section {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

body.dark-mode .booking-form-section {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 1px solid var(--border-dark);
    box-shadow: var(--liquid-shadow-dark);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

body.dark-mode .booking-tabs {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.tab-btn {
    flex: 1;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

body.dark-mode .tab-btn {
    color: rgba(248, 250, 252, 0.7);
}

.tab-btn:hover {
    background: #e9ecef;
    color: #495057;
}

body.dark-mode .tab-btn:hover {
    background: linear-gradient(135deg, var(--glass-dark-strong) 0%, var(--glass-dark) 100%);
    color: var(--text-dark);
}

.tab-btn.active {
    background: white;
    color: #3498db;
    border-bottom: 3px solid #3498db;
}

body.dark-mode .tab-btn.active {
    background: linear-gradient(135deg, var(--glass-dark-strong) 0%, var(--glass-dark) 100%);
    color: var(--accent-light-blue);
    border-bottom: 3px solid var(--accent-light-blue);
}

.tab-btn i {
    margin-right: 8px;
}

/* Booking Forms */
.booking-form {
    display: none;
    padding: 40px;
    transition: all 0.3s ease;
}

body.dark-mode .booking-form {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.booking-form.active {
    display: block;
}

.booking-form h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    transition: color 0.3s ease;
}

body.dark-mode .booking-form h3 {
    color: var(--text-dark);
}

.booking-form h3 i {
    color: #3498db;
    margin-right: 10px;
    transition: color 0.3s ease;
}

body.dark-mode .booking-form h3 i {
    color: white;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

body.dark-mode .form-group label {
    color: var(--text-dark);
}

.form-group label i {
    color: #3498db;
    margin-right: 8px;
    width: 16px;
}

body.dark-mode .form-group label i {
    color: var(--accent-light-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background: linear-gradient(135deg, var(--glass-dark) 0%, var(--glass-dark-strong) 100%);
    border: 2px solid var(--border-dark);
    color: var(--text-dark);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
}

/* Dark mode dropdown options */
body.dark-mode .form-group select option {
    background: var(--glass-dark-strong);
    color: var(--text-dark);
    border: none;
}

body.dark-mode .form-group select option:hover,
body.dark-mode .form-group select option:checked {
    background: var(--accent-light-blue);
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--accent-light-blue);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

/* Date picker calendar icon styling for dark mode */
body.dark-mode input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.2);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

body.dark-mode input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: invert(1) brightness(1.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.submit-btn i {
    margin-right: 10px;
}

/* Package Benefits */
.package-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

body.dark-mode .package-benefits {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%);
}

.benefit-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
}

body.dark-mode .benefit-item {
    color: var(--text-dark);
}

.benefit-item i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

body.dark-mode .benefit-item i {
    color: #68d391;
}

/* Responsive Design for Booking */
@media (max-width: 768px) {
    .booking {
        padding: 40px 0;
    }
    
    .booking-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .booking-title-section {
        text-align: center;
    }
    
    .booking-header h2 {
        font-size: 2rem;
    }
    
    .theme-toggle-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .airlines-section,
    .booking-form {
        padding: 25px;
    }
    
    .airlines-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .package-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .booking-header h2 {
        font-size: 1.8rem;
    }
    
    .airlines-section,
    .booking-form {
        padding: 20px;
    }
    
    .airlines-grid {
        grid-template-columns: 1fr;
    }
    
    .airline-card {
        padding: 20px;
    }
}