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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-top: 80px;
    max-width: 100%;
    width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

/* Prevent font size changes in header */
.header * {
    font-size-adjust: none;
    font-stretch: normal;
}

/* Ensure header is completely stable */
.header {
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 60px;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00AE98;
    width: 140px;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-brand i {
    font-size: 1.4rem;
    width: 1.4rem;
    text-align: center;
    font-display: swap;
}

.nav-brand span {
    white-space: nowrap;
    opacity: 1;
    transition: none;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #00AE98;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #00AE98 0%, #667eea 100%);
    overflow: hidden;
    width: 95%;
    margin: 0 auto;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 174, 152, 0.8) 0%, rgba(102, 126, 234, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 30vh;
    padding: 4rem 0 2rem;
}

.hero-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-widget-container {
    max-width: 800px;
    width: 100%;
}

/* Widget container styling */
.widget-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

/* Full Width Widget Section */
.full-width-widget-section {
    width: 100%;
    padding: 4rem 1rem;
    background: #f8f9fa;
    position: relative;
}

.full-width-widget-container {
    width: 100%;
    max-width: none;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    overflow: hidden;
}

/* Responsive adjustments for full width widget */
@media (min-width: 1200px) {
    .full-width-widget-section {
        padding: 4rem 0.5rem;
    }
    
    .full-width-widget-container {
        padding: 2.5rem;
    }
}

@media (min-width: 1600px) {
    .full-width-widget-section {
        padding: 4rem 0.25rem;
    }
    
    .full-width-widget-container {
        padding: 3rem;
    }
}

/* Widget sections outside hero */
.widget-section {
    padding: 4rem 0;
    position: relative;
}

.widget-section-1 {
    background: #f8f9fa;
}

.widget-section-2 {
    background: white;
}

.widget-section-3 {
    background: #f8f9fa;
}

/* Widget section titles */
.widget-section .widget-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

/* Hero widget specific styling */
.hero-widget-container .widget-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.kiwi-widget {
    min-height: 500px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

/* Specific rules for everywhere search page */
.full-width-widget-section .kiwi-widget {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.full-width-widget-section .kiwi-widget iframe {
    max-width: 100%;
    width: 100%;
}

.flight-map-button-container {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.main-widget-container .kiwi-widget {
    min-height: 600px;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.destination-info p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00AE98;
}

/* Destinations Widget */
.destinations-widget {
    margin-top: 3rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.destinations-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AE98, #667ee2);
}

.destinations-widget .kiwi-widget {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

/* Responsive design for destinations widget */
@media (max-width: 768px) {
    .destinations-widget {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .destinations-widget {
        padding: 1rem;
        margin-top: 1.5rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00AE98, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

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

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

/* Search by City Section */
.search-by-city {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00AE98;
    font-size: 1.1rem;
    z-index: 2;
}

.city-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.city-search-input:focus {
    outline: none;
    border-color: #00AE98;
    box-shadow: 0 0 0 3px rgba(0, 174, 152, 0.1);
}

.city-search-input::placeholder {
    color: #999;
    font-style: italic;
}

.city-search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #00AE98 0%, #667eea 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.city-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 152, 0.3);
}

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

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

/* Responsive Search */
@media (max-width: 768px) {
    .search-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .city-search-input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .city-search-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .search-container {
        margin: 1.5rem auto 0;
        padding: 0.8rem;
    }
    
    .city-search-input {
        padding: 0.7rem 0.7rem 0.7rem 2.2rem;
        font-size: 0.85rem;
    }
    
    .search-icon {
        font-size: 1rem;
        left: 0.8rem;
    }
    
    .city-search-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Hotels by City Section */
.hotels-by-city {
    padding: 60px 0;
    background: #f8f9fa;
}

.hotels-by-city .section-title {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
}

.hotels-by-city .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 200px);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.city-column {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.city-list li {
    margin-bottom: 8px;
}

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

.city-list a {
    color: #00AE98;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: block;
    padding: 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.city-list a:hover {
    color: #008f7a;
    text-decoration: underline;
}

/* Responsive design for cities grid */
@media (max-width: 1200px) {
    .cities-grid {
        grid-template-columns: repeat(4, 200px);
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(3, 200px);
        gap: 15px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(2, 200px);
        gap: 15px;
        justify-content: center;
    }
    
    .hotels-by-city .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 200px;
        gap: 15px;
        justify-content: center;
    }
    
    .city-column {
        padding: 20px;
    }
    
    .hotels-by-city .section-title {
        font-size: 1.8rem;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00AE98;
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-section p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #00AE98;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #00AE98;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #00AE98;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: block;
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .hero {
        min-height: 25vh;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 3rem 0 1.5rem;
        min-height: 25vh;
    }

    .full-width-widget-section {
        padding: 3rem 0.5rem;
    }

    .full-width-widget-container {
        padding: 1.5rem;
    }

    .widget-section {
        padding: 3rem 0;
    }

    .widget-section .widget-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .kiwi-widget {
        min-height: 400px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .kiwi-widget iframe {
        max-width: 100%;
        width: 100%;
    }
    
    .full-width-widget-container {
        overflow: hidden;
    }
    
    .car-rental-widget-container {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .car-rental-widget {
        min-height: 350px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .car-rental-widget iframe {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero {
        min-height: 20vh;
    }

    .hero-content {
        gap: 1rem;
        padding: 2.5rem 0 1rem;
        min-height: 20vh;
    }

    .full-width-widget-section {
        padding: 2rem 0.25rem;
    }

    .full-width-widget-container {
        padding: 1rem;
        border-radius: 10px;
    }

    .widget-container {
        padding: 1rem;
    }

    .widget-section {
        padding: 2rem 0;
    }

    .widget-section .widget-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .container {
        padding: 0 15px;
    }
    
    .car-rental-widget-container {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .car-rental-widget {
        min-height: 300px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .car-rental-widget iframe {
        max-width: 100%;
        width: 100%;
    }
}

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

.hero-text,
.full-width-widget-section,
.widget-section {
    animation: fadeInUp 0.8s ease-out;
}

.full-width-widget-section {
    animation-delay: 0.2s;
}

/* Widget Spacing Fixes */
.kiwi-widget .sc-jWquRx.bmzPAY {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* General widget spacing improvements */
.kiwi-widget [class*="sc-"] {
    margin-bottom: 0 !important;
}

.kiwi-widget div[class*="sc-"]:empty {
    display: none !important;
}

/* Reduce excessive padding in widget containers */
.kiwi-widget div[class*="sc-"][style*="padding"] {
    padding-bottom: 0 !important;
}

/* Hide "powered by" branding - more targeted approach */
.kiwi-widget a[href*="aviasales.com"],
.kiwi-widget a[href*="kiwi.com"],
.kiwi-widget a[href*="skypicker.com"],
.kiwi-widget div[class*="attribution"],
.kiwi-widget div[class*="branding"],
.kiwi-widget span:contains("powered by"),
.kiwi-widget span:contains("Powered by"),
.kiwi-widget p:contains("powered by"),
.kiwi-widget p:contains("Powered by"),
.kiwi-widget small:contains("powered by"),
.kiwi-widget small:contains("Powered by") {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Hide very small text that might be branding (but preserve normal small text) */
.kiwi-widget [style*="font-size: 10px"],
.kiwi-widget [style*="font-size: 11px"] {
    display: none !important;
}

/* Only hide external links in footer areas */
.kiwi-widget div[class*="footer"] a[target="_blank"],
.kiwi-widget div[class*="bottom"] a[target="_blank"] {
    display: none !important;
}

/* Injected Widget Styling */
.injected-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 15px !important;
    padding: 20px !important;
    margin-top: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.injected-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00AE98, #667ee2);
    border-radius: 15px 15px 0 0;
}

.injected-widget:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

/* Style the injected widget's content */
.injected-widget .kiwi-widget {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

/* Hotel Page Specific Styling */
.widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.widget-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.hotels-hero {
    background: linear-gradient(135deg, rgba(0, 174, 152, 0.9), rgba(102, 126, 234, 0.9)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hotel-categories {
    background: white;
}

.nav-link.active {
    color: #00AE98 !important;
    font-weight: 600;
}

/* Hotel widget specific adjustments */
.full-width-widget-container .widget-header + .kiwi-widget {
    margin-top: 0;
}

/* Responsive adjustments for hotel page */
@media (max-width: 768px) {
    .widget-header {
        margin-bottom: 1.5rem;
    }
    
    .widget-title {
        font-size: 1.7rem;
    }
    
    .widget-subtitle {
        font-size: 1rem;
    }
}

/* Flight Map Button Styling */
.flight-map-button-container {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.flight-map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #00AE98;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 174, 152, 0.3);
}

.flight-map-button:hover {
    background: #008c7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 152, 0.4);
    color: white;
}

.flight-map-button i {
    font-size: 1.2rem;
}

/* Flight Map Page Styling */
.flightmap-hero {
    background: linear-gradient(135deg, rgba(0, 174, 152, 0.9), rgba(102, 126, 234, 0.9)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.flight-map-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.flight-map-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.flight-map-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.flight-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AE98, #667ee2);
}

.flight-map-container .kiwi-widget {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    width: 100%;
    overflow: hidden;
    min-height: 600px;
    max-width: 100%;
}

.flight-map-container .kiwi-widget iframe {
    max-width: 100%;
    width: 100%;
}

/* Ensure map scales properly on different screen sizes */
.flight-map-container {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.popular-routes {
    background: white;
}

/* Origin Selector Styling */
.origin-selector {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.selector-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    min-width: 400px;
    text-align: center;
}

.selector-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.selector-label i {
    color: #00AE98;
    margin-right: 0.5rem;
}

.origin-dropdown {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.origin-dropdown:focus {
    outline: none;
    border-color: #00AE98;
    box-shadow: 0 0 0 3px rgba(0, 174, 152, 0.1);
}

.custom-input-container {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.custom-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-input:focus {
    outline: none;
    border-color: #00AE98;
    box-shadow: 0 0 0 3px rgba(0, 174, 152, 0.1);
}

.apply-button {
    padding: 0.8rem 1.5rem;
    background: #00AE98;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background: #008c7a;
    transform: translateY(-1px);
}

/* Responsive adjustments for flight map */
@media (max-width: 1200px) {
    .flight-map-container {
        max-width: 95%;
        height: 500px; /* Medium size for tablets/small laptops */
    }
    
    #flight-map-widget {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .flight-map-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .flight-map-container {
        padding: 1.5rem;
        height: 400px; /* Smaller height on mobile */
        max-width: 100%;
        overflow: hidden;
    }
    
    #flight-map-widget {
        min-height: 400px; /* Match mobile container height */
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .flight-map-container .kiwi-widget {
        min-height: 400px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .flight-map-container .kiwi-widget iframe {
        max-width: 100%;
        width: 100%;
    }
    
    .flight-map-header {
        margin-bottom: 1rem;
    }
    
    .flight-map-section {
        padding: 2rem 0;
    }
    
    .selector-container {
        min-width: auto;
        width: 100%;
        padding: 1.5rem;
    }
    
    .origin-selector {
        margin-bottom: 1.5rem;
    }
    
    .custom-input-container {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .flight-map-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .flight-map-container {
        padding: 1rem;
        overflow: hidden;
    }
    
    #flight-map-widget {
        min-height: 350px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .flight-map-container .kiwi-widget {
        min-height: 350px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
    }
    
    .flight-map-container .kiwi-widget iframe {
        max-width: 100%;
        width: 100%;
    }
    
    .flight-map-button-container {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .selector-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .selector-label {
        font-size: 1rem;
    }
    
    .origin-dropdown, .custom-input, .apply-button {
        font-size: 0.9rem;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #00AE98;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #008c7a;
}

/* Flight Map Styles */
.flight-map-section {
    padding: 3rem 0;
    text-align: center;
}

.flight-map-container {
    position: relative;
    width: 100%;
    max-width: 2200px;
    height: 850px; /* Fixed height to prevent resizing */
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

#flight-map-widget {
    width: 100%;
    height: 100%;
    min-height: 850px; /* Ensure consistent height */
}

/* Hotel Map Styling */
.hotel-map-container {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
    overflow: hidden;
}

.hotel-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AE98, #667ee2);
}

.hotel-map-container .kiwi-widget {
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 174, 152, 0.15);
    border: 3px solid #00AE98;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    max-width: 100%;
}

.hotel-map-container .kiwi-widget iframe {
    max-width: 100%;
    width: 100%;
}

#hotel-map-widget {
    width: 1400px !important;
    height: 600px !important;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

/* City Selector Styling */
.city-selector {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.city-selector .selector-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.city-selector .selector-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-selector .selector-label i {
    color: #00AE98;
}

.city-dropdown {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-dropdown:focus {
    outline: none;
    border-color: #00AE98;
    box-shadow: 0 0 0 3px rgba(0, 174, 152, 0.1);
}

.city-selector .custom-input-container {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
    margin-top: 0;
}

.city-selector .custom-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.city-selector .custom-input:focus {
    outline: none;
    border-color: #00AE98;
    box-shadow: 0 0 0 3px rgba(0, 174, 152, 0.1);
}

.city-selector .apply-button {
    padding: 0.75rem 1.5rem;
    background: #00AE98;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.city-selector .apply-button:hover {
    background: #008c7a;
    transform: translateY(-1px);
}

/* Autocomplete Styles */
.autocomplete-wrapper {
    position: relative;
    flex: 1;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #00AE98;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none;
}

.autocomplete-results.show {
    display: block;
}

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

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

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

.autocomplete-item.selected {
    background-color: #00AE98;
    color: white;
}

.autocomplete-item .city-name {
    font-weight: 500;
}

.autocomplete-item .city-country {
    font-size: 0.85rem;
    opacity: 0.7;
}

.autocomplete-item .city-flag {
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

/* Responsive adjustments for autocomplete */
@media (max-width: 768px) {
    .autocomplete-results {
        max-height: 150px;
    }
    
    .autocomplete-item {
        padding: 10px 12px;
    }
}

/* Responsive adjustments for hotel map */
@media (max-width: 1500px) {
    .hotel-map-container .kiwi-widget {
        width: 95% !important;
        max-width: 1200px;
    }
    
    #hotel-map-widget {
        width: 95% !important;
        max-width: 1200px !important;
    }
}

@media (max-width: 768px) {
    .hotel-map-container {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .hotel-map-container .kiwi-widget {
        width: 100% !important;
        height: 500px !important;
    }
    
    #hotel-map-widget {
        width: 100% !important;
        height: 500px !important;
        max-width: 100% !important;
    }
    
    .city-selector {
        padding: 1rem;
    }
    
    .city-selector .selector-container {
        gap: 0.75rem;
    }
    
    .city-selector .custom-input-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .city-dropdown,
    .city-selector .custom-input {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hotel-map-container {
        padding: 0 0.5rem;
    }
    
    .hotel-map-container .kiwi-widget {
        height: 400px !important;
    }
    
    #hotel-map-widget {
        width: 100% !important;
        height: 400px !important;
        max-width: 100% !important;
    }
    
    .city-selector .selector-label {
        font-size: 1rem;
    }
}

/* Deals Page Styling */
.deals-hero {
    background: linear-gradient(135deg, rgba(0, 174, 152, 0.9), rgba(102, 126, 234, 0.9)), url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.destinations-hero {
    background: linear-gradient(135deg, rgba(0, 174, 152, 0.9), rgba(102, 126, 234, 0.9)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.deals-widget-container {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.deals-widget-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AE98, #667ee2);
}

.deals-widget-container [data-skyscanner-widget] {
    min-height: 400px;
    width: 100%;
}

/* Fix for hotel search widget date picker being cut off */
.deals-widget-container {
    overflow: visible !important;
    position: relative;
}

.deals-widget-container * {
    overflow: visible !important;
}

/* Ensure date pickers and dropdowns can extend beyond container */
.deals-widget-container [data-skyscanner-widget] * {
    overflow: visible !important;
}

/* Specific fixes for Skyscanner widget date pickers */
.deals-widget-container .skyscanner-widget * {
    overflow: visible !important;
}

.deals-widget-container div[class*="DatePicker"] {
    z-index: 9999 !important;
    position: relative !important;
}

.deals-widget-container div[class*="Calendar"] {
    z-index: 9999 !important;
    position: relative !important;
}

.deals-widget-container div[class*="dropdown"] {
    z-index: 9999 !important;
    position: relative !important;
}

/* Ensure the widget container itself doesn't clip content */
.full-width-widget-container {
    overflow: visible !important;
}

.full-width-widget-container * {
    overflow: visible !important;
}

/* Additional comprehensive fixes for calendar visibility */
.full-width-widget-section {
    overflow: visible !important;
}

.full-width-widget-section * {
    overflow: visible !important;
}

/* Target all possible calendar and date picker elements */
[data-skyscanner-widget] {
    overflow: visible !important;
}

[data-skyscanner-widget] * {
    overflow: visible !important;
}

/* Force calendar elements to be visible */
div[class*="calendar"],
div[class*="Calendar"],
div[class*="datepicker"],
div[class*="DatePicker"],
div[class*="date-picker"],
div[class*="Date-Picker"],
div[class*="picker"],
div[class*="Picker"] {
    z-index: 99999 !important;
    position: absolute !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

/* Ensure calendar popups can extend beyond any container */
div[class*="popup"],
div[class*="Popup"],
div[class*="modal"],
div[class*="Modal"],
div[class*="overlay"],
div[class*="Overlay"] {
    z-index: 99999 !important;
    position: fixed !important;
    overflow: visible !important;
}

/* Fix for any iframe elements that might contain the calendar */
iframe {
    overflow: visible !important;
}

/* Ensure body and html don't clip the calendar */
body, html {
    overflow-x: visible !important;
}

/* Additional specificity for Skyscanner widgets */
.skyscanner-widget,
[data-skyscanner-widget="HotelSearchWidget"] {
    overflow: visible !important;
    position: relative !important;
}

.skyscanner-widget *,
[data-skyscanner-widget="HotelSearchWidget"] * {
    overflow: visible !important;
}

/* New hotel search widget wrapper - allows calendar to break out */
.hotel-search-widget-wrapper {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: visible !important;
    z-index: 1;
}

.hotel-search-widget-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AE98, #667ee2);
    border-radius: 15px 15px 0 0;
}

.hotel-search-widget-wrapper [data-skyscanner-widget] {
    min-height: 400px;
    width: 100%;
    overflow: visible !important;
    position: relative !important;
}

.hotel-search-widget-wrapper [data-skyscanner-widget] * {
    overflow: visible !important;
}

/* Ensure the widget wrapper doesn't clip any content */
.hotel-search-widget-wrapper * {
    overflow: visible !important;
    max-height: none !important;
}

/* Force all calendar and date picker elements to break out */
.hotel-search-widget-wrapper div[class*="calendar"],
.hotel-search-widget-wrapper div[class*="Calendar"],
.hotel-search-widget-wrapper div[class*="datepicker"],
.hotel-search-widget-wrapper div[class*="DatePicker"],
.hotel-search-widget-wrapper div[class*="date-picker"],
.hotel-search-widget-wrapper div[class*="Date-Picker"],
.hotel-search-widget-wrapper div[class*="picker"],
.hotel-search-widget-wrapper div[class*="Picker"] {
    z-index: 999999 !important;
    position: fixed !important;
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

.wink-travel-widget {
    min-height: 400px;
    width: 100%;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.deal-categories {
    background: white;
}

/* Responsive adjustments for deals page */
@media (max-width: 768px) {
    .deals-widget-container {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .wink-travel-widget {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .hotel-search-widget-wrapper [data-skyscanner-widget] {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .deals-widget-container {
        padding: 0.75rem;
    }
    
    .wink-travel-widget {
        min-height: 300px;
    }
    
    .hotel-search-widget-wrapper [data-skyscanner-widget] {
        min-height: 300px;
    }
}

/* Hotel Results List Styles */
.hotel-results-container {
    margin-top: 40px;
    text-align: center;
}

.results-header {
    margin-bottom: 25px;
}

.results-title {
    color: #00AE98;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.results-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
}

.hotel-results-widget {
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 174, 152, 0.15);
    border: 3px solid #00AE98;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Responsive adjustments for hotel results */
@media (max-width: 1500px) {
    .hotel-results-widget {
        width: 95% !important;
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .hotel-results-widget {
        width: 100% !important;
        height: 500px !important;
    }
    
    .results-title {
        font-size: 1.5rem;
    }
    
    .results-subtitle {
        font-size: 1rem;
    }
}

/* Modal Styles */
.modal {
    /* Ensure dropdowns can extend beyond modal boundaries */
    overflow: visible !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure Kiwi widget dropdowns work properly in modals */
.modal .kiwi-widget {
    overflow: visible !important;
}

/* Ensure modal body allows dropdowns to extend beyond boundaries */
.modal .modal-body {
    overflow-x: visible !important;
    max-height: 60vh !important;
}

.modal .kiwi-widget * {
    overflow: visible !important;
}

.modal .kiwi-widget div[class*="dropdown"],
.modal .kiwi-widget div[class*="calendar"],
.modal .kiwi-widget div[class*="DatePicker"],
.modal .kiwi-widget div[class*="Calendar"] {
    overflow: visible !important;
    z-index: 999999 !important;
    position: relative !important;
}

/* Ensure date picker dropdowns have enough space */
.modal .kiwi-widget div[class*="DatePicker"] {
    min-height: 300px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
}

.modal .kiwi-widget div[class*="Calendar"] {
    min-height: 300px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
}

/* Force dropdowns to display above other content */
.modal .kiwi-widget div[class*="dropdown"] {
    position: absolute !important;
    z-index: 9999999 !important;
}

/* Ensure flight widget container has proper spacing */
.modal .flight-widget-container {
    overflow: visible !important;
    min-height: 400px !important;
    padding: 1rem !important;
}

/* Ensure the widget itself has proper overflow handling */
.modal .flight-widget-container .kiwi-widget {
    overflow: visible !important;
    min-height: 350px !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 725px;
    max-height: 90vh;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s ease-out;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    opacity: 0;
    /* Ensure modal doesn't go off-screen */
    max-height: calc(100vh - 20px);
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translate(-50%, 0%);
    opacity: 1;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, 0%) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0%) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #00AE98 0%, #667eea 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    position: relative;
    top: 10px;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 152, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
    border-radius: 12px 12px 0 0;
    z-index: -1;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.close {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

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

.modal-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #00AE98 #f0f0f0;
    /* Enable smooth scrolling */
    scroll-behavior: smooth;
    /* Ensure content is scrollable */
    position: relative;
    /* Ensure proper height calculation - increased to allow more space for content and button */
    max-height: calc(98vh - 80px);
}

.modal-body {
    font-size: 0.9rem;
}

    .modal-body p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
    
    @media (max-width: 768px) {
        .modal-body {
            font-size: 0.85rem;
        }
        
        .modal-body p {
            font-size: 0.8rem;
            margin-bottom: 0.4rem;
        }
    }
    
    @media (max-width: 480px) {
        .modal-body {
            font-size: 0.8rem;
        }
        
        .modal-body p {
            font-size: 0.75rem;
            margin-bottom: 0.3rem;
        }
    }

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #00AE98;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #008f7a;
}

.hotel-info {
    margin: 0px;
    padding: 2px 19px 2px 19px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px 8px 0px 0px;
    border: 1px solid #e9ecef;
    border-bottom: 0px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hotel-details h3 {
    color: #00AE98;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 174, 152, 0.1);
}

.hotel-description {
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.city-highlights {
    margin-top: 8px;
}

.highlight-section {
    margin-bottom: 8px;
}

.highlight-section h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid #00AE98;
    display: inline-block;
}

.highlight-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.highlight-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: #00AE98;
    color: white;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 174, 152, 0.2);
    position: relative;
}

.highlight-btn::after {
    content: '→';
    position: absolute;
    right: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.highlight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 152, 0.3);
    padding-right: 1.5rem;
}

.highlight-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Style for cities without dedicated pages */
.highlight-btn.coming-soon {
    background: #6c757d;
    opacity: 0.8;
}

.highlight-btn.coming-soon:hover {
    background: #5a6268;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.highlight-btn.coming-soon::after {
    content: '⏳';
    right: 0.5rem;
}

.highlight-btn i {
    font-size: 1rem;
    color: white;
}

.highlight-btn span {
    white-space: nowrap;
}

.hotel-widget-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.hotel-widget-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00AE98 0%, #667eea 100%);
    border-radius: 8px 8px 0 0;
}

.hotel-widget-container h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.hotel-widget-container h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00AE98 0%, #667eea 100%);
    border-radius: 1px;
}

#hotelWidget {
    min-height: 300px;
    background: white;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-width: 550px;
        max-height: 95vh;
        top: 0%;
    }

    .modal-header {
        padding: 0.5rem 1.2rem;
    }

    .modal-header h2 {
        font-size: 1rem;
        line-height: 1.1;
    }

    .modal-body {
        padding: 1.2rem;
        max-height: calc(95vh - 80px);
        overflow-y: auto;
    }

    .hotel-info {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }

    .hotel-details h3 {
        font-size: 1.3rem;
    }

    .hotel-description {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
    }

    .highlight-buttons {
        gap: 0.6rem;
    }
    
    .highlight-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .highlight-section h4 {
        font-size: 0.8rem;
    }

    .hotel-widget-container {
        padding: 1rem;
    }

    .hotel-widget-container h3 {
        font-size: 1rem;
    }

    #hotelWidget {
        min-height: 200px;
        padding: 0.8rem;
    }
    
    /* Mobile-specific date picker improvements */
    .modal .kiwi-widget div[class*="DatePicker"],
    .modal .kiwi-widget div[class*="Calendar"] {
        min-height: 250px !important;
        max-height: 350px !important;
        overflow-y: auto !important;
        z-index: 999999 !important;
    }
    
    .modal .flight-widget-container {
        min-height: 300px !important;
    }
    
    .modal .flight-widget-container .kiwi-widget {
        min-height: 250px !important;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        max-width: 380px;
        max-height: 98vh;
        border-radius: 10px;
        top: 0%;
    }

    .modal-header {
        padding: 0.4rem 1rem;
        border-radius: 10px 10px 0 0;
    }

    .modal-header h2 {
        font-size: 0.95rem;
        line-height: 1.1;
    }

    .close {
        width: 28px;
        height: 28px;
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 0.8rem;
        max-height: calc(98vh - 70px);
        overflow-y: auto;
    }

    .hotel-info {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .hotel-details h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .hotel-description {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .highlight-buttons {
        gap: 0.5rem;
    }
    
    .highlight-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .highlight-section h4 {
        font-size: 0.75rem;
    }

    .hotel-widget-container {
        padding: 0.8rem;
    }

    .hotel-widget-container h3 {
        font-size: 0.95rem;
    }

    #hotelWidget {
        min-height: 180px;
        padding: 0.6rem;
    }
    
    /* Small mobile-specific date picker improvements */
    .modal .kiwi-widget div[class*="DatePicker"],
    .modal .kiwi-widget div[class*="Calendar"] {
        min-height: 200px !important;
        max-height: 300px !important;
        overflow-y: auto !important;
        z-index: 999999 !important;
    }
    
    .modal .flight-widget-container {
        min-height: 250px !important;
    }
    
    .modal .flight-widget-container .kiwi-widget {
        min-height: 200px !important;
    }
}

/* Albuquerque City Page Styles */

.hero.city-hero {
    background: linear-gradient(135deg, #00AE98 0%, #667eea 100%);
    min-height: 60vh;
    width: 100%;
    margin: 0;
}

.hero.city-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero.city-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* City Overview Section */
.city-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1rem;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat i {
    font-size: 2rem;
    color: #00AE98;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Car Rental Section */
.car-rental-section {
    padding: 4rem 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.car-rental-widget-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.car-rental-widget {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.car-rental-widget iframe {
    max-width: 100%;
    width: 100%;
}

.widget-placeholder {
    text-align: center;
    padding: 3rem;
}

.widget-placeholder i {
    font-size: 4rem;
    color: #00AE98;
    margin-bottom: 1rem;
}

.widget-placeholder h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.widget-placeholder p {
    color: #666;
    margin-bottom: 2rem;
}

.widget-btn {
    background: #00AE98;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget-btn:hover {
    background: #008f7a;
    transform: translateY(-2px);
}

/* Attractions Section */
.attractions-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.attraction-image {
    height: 250px;
    overflow: hidden;
}

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

.attraction-card:hover .attraction-image img {
    transform: scale(1.05);
}

.attraction-content {
    padding: 1.5rem;
}

.attraction-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attraction-content h3 i {
    color: #00AE98;
}

.attraction-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.attraction-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.attraction-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.attraction-details span i {
    color: #00AE98;
}

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

.ticket-btn, .directions-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-btn {
    background: #00AE98;
    color: white;
    flex: 1;
}

.ticket-btn:hover {
    background: #008f7a;
    transform: translateY(-2px);
}

.directions-btn {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e9ecef;
}

.directions-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.promo-code {
    position: absolute;
    top: -25px;
    left: 0;
    background: #ff6b6b;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

/* Dining Section */
.dining-section {
    padding: 4rem 0;
    background: white;
}

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

.dining-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00AE98;
}

.dining-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dining-card h3 i {
    color: #00AE98;
}

.dining-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dining-recommendations h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.dining-recommendations ul {
    list-style: none;
    padding: 0;
}

.dining-recommendations li {
    color: #666;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1rem;
}

.dining-recommendations li::before {
    content: '•';
    color: #00AE98;
    position: absolute;
    left: 0;
}

/* Hotels Section */
.hotels-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.hotel-widget-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Flight Section */
.flight-section {
    padding: 4rem 0;
    background: white;
}

.flight-widget-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Make the widget in the modal smaller */
.modal .flight-widget-container {
    max-width: 100%;
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.modal .flight-widget-container .kiwi-widget {
    max-height: 450px;
    overflow: visible;
}

.modal .flight-widget-container h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero.city-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero.city-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .dining-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-actions {
        flex-direction: column;
    }
    
    .ticket-btn, .directions-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero.city-hero .hero-title {
        font-size: 2rem;
    }
    
    .overview-text h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .attraction-content {
        padding: 1rem;
    }
    
    .attraction-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dining-card {
        padding: 1.5rem;
    }
}

/* Hotels by City Section */
.hotels-by-city {
    padding: 4rem 0;
    background: #f8f9fa;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.city-column {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.city-list li {
    margin-bottom: 0.5rem;
}

.city-list a {
    color: #00AE98;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

.city-list a:hover {
    color: #00AE98;
    transform: translateX(5px);
}

.hotel-link {
    cursor: pointer;
}

@media (max-width: 1200px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .city-list a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .city-list a {
        font-size: 0.8rem;
    }
}

/* Destinations page specific modal positioning */
.destinations-modal .modal-content {
    top: 0% !important;
    transform: translate(-50%, 0%) !important;
}

.destinations-modal.show .modal-content {
    transform: translate(-50%, 0%) !important;
}

@keyframes destinationsModalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, 0%) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0%) translateY(0);
    }
}

.destinations-modal .modal-content {
    animation: destinationsModalSlideIn 0.4s ease-out;
}

/* Index page specific modal positioning */
.index-modal .modal-content {
    top: 0% !important;
    transform: translate(-50%, 0%) !important;
}
.index-modal.show .modal-content {
    transform: translate(-50%, 0%) !important;
}
@keyframes indexModalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, 0%) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0%) translateY(0);
    }
}
.index-modal .modal-content {
    animation: indexModalSlideIn 0.4s ease-out;
}

/* Attractions modal positioning */
.attractions-modal {
    top: 0 !important;
    height: 100vh !important;
}

.attractions-modal .modal-content {
    top: 0% !important;
    transform: translate(-50%, 0%) !important;
}

/* City Navigation Section */
.city-navigation {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.city-nav-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.city-nav-header h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.city-nav-header p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.city-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.city-nav-column {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.city-nav-column a {
    color: #495057;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 0.2rem 0;
    transition: all 0.2s ease;
    border-radius: 3px;
    white-space: nowrap;
}

.city-nav-column a:hover {
    color: #00AE98;
    background-color: rgba(0, 174, 152, 0.05);
    padding-left: 0.3rem;
}

.city-nav-column a:active {
    transform: translateX(2px);
}

/* Responsive design for city navigation */
@media (max-width: 1200px) {
    .city-nav-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .city-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .city-navigation {
        padding: 1.5rem 0;
    }
    
    .city-nav-header h3 {
        font-size: 1.1rem;
    }
    
    .city-nav-header p {
        font-size: 0.85rem;
    }
    
    .city-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .city-nav-column a {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .city-navigation {
        padding: 1rem 0;
    }
    
    .city-nav-header {
        margin-bottom: 1rem;
    }
    
    .city-nav-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .city-nav-column {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .city-nav-column a {
        font-size: 0.65rem;
        padding: 0.15rem 0.3rem;
        border: 1px solid #e9ecef;
        border-radius: 15px;
    }
    
    .city-nav-column a:hover {
        background-color: #00AE98;
        color: white;
        border-color: #00AE98;
    }
}

/* Travel Statistics Section */
.travel-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.travel-stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.travel-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00AE98 0%, #667eea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.travel-stat-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.travel-stat-card .stat-content {
    color: #666;
    line-height: 1.6;
}

/* Season Info Styles */
.season-info .season {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.season-info .season:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.season-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.season-desc {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Temperature Grid Styles */
.temp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.temp-month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.temp-month .month {
    font-weight: 600;
    color: #333;
}

.temp-month .temp {
    color: #00AE98;
    font-weight: 500;
}

.temp-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Airport Info Styles */
.airport-info .airport {
    margin-bottom: 1.5rem;
}

.airport-info .airport:last-child {
    margin-bottom: 0;
}

.airport-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.airport-info p {
    margin-bottom: 0.75rem;
    color: #666;
}

.airport-info ul {
    list-style: none;
    padding-left: 0;
}

.airport-info li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.airport-info li:before {
    content: "✓";
    color: #00AE98;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Stats List Styles */
.stats-list .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.stats-list .stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 500;
    color: #333;
}

.stat-value {
    font-weight: 600;
    color: #00AE98;
}

/* Responsive Design for Travel Stats */
@media (max-width: 768px) {
    .travel-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .travel-stat-card {
        padding: 1.5rem;
    }
    
    .temp-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-list .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}