/* =====================================================
   City Landing Page Styles - Modern & Premium Design
   ===================================================== */

:root {
    --primary-color: #1962EB;
    --secondary-color: #ffc11c;
    --text-dark: #0f294d;
    --text-gray: #666;
    --text-light: #888;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== Breadcrumb Navigation ===== */
.breadcrumb {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 14px;
    color: var(--text-gray);
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== Hero Section with Search ===== */
.hero-section {
    position: relative;
    min-height: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(25, 98, 235, 0.4) 0%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-title-en {
    font-size: 36px;
    font-weight: 400;
    opacity: 0.9;
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

@keyframes pulseBorder {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }

    50% {
        border-color: rgba(255, 193, 28, 0.6);
        transform: scale(1.02);
    }
}

.price-banner-content {
    text-align: center;
}

.price-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 12px;
    font-weight: 500;
}

.price-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.price-value {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 8px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 36px;
}

.price-amount {
    letter-spacing: -1px;
}

.price-suffix {
    font-size: 28px;
    margin-left: 4px;
}

.price-note {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

/* ===== Search Section ===== */
.search-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    padding: 60px 24px;
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
}

.search-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-icon {
    width: 36px;
    height: 36px;
    color: var(--primary-color);
}

.section-icon.small {
    width: 28px;
    height: 28px;
}

/* ===== City Info Section ===== */
.city-info-section {
    background: #ffffff;
    padding: 80px 24px;
}

.city-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.info-block {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.info-block.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.info-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 16px;
    text-align: justify;
}

.city-intro-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.city-intro-image {
    flex: 0 0 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #e1e8f5;
}

.city-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.city-intro-image:hover img {
    transform: scale(1.05);
}

.city-intro-text {
    flex: 1;
}

@media (max-width: 850px) {
    .city-intro-flex {
        flex-direction: column;
        gap: 20px;
    }

    .city-intro-image {
        flex: 0 0 auto;
        width: 100%;
        max-height: 250px;
    }
}

.city-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.feature-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: #f0f7ff;
    border-radius: 10px;
    border: 1px solid #e1e8f5;
    transition: var(--transition);
}

.feature-tag:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.feature-tag i {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.feature-tag span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== Attraction Cards (Horizontal Compact) ===== */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.attraction-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e8f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    height: 180px;
    transition: var(--transition);
}

.attraction-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.attraction-img-wrapper {
    flex: 0 0 160px;
    height: 100%;
}

.attraction-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.attraction-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.attraction-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #eef4ff;
    color: var(--primary-color);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    align-self: flex-start;
}

.attraction-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.attraction-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-gray);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

@media (max-width: 992px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .attraction-card {
        height: auto;
        flex-direction: column;
    }

    .attraction-img-wrapper {
        flex: 0 0 160px;
        width: 100%;
    }
}

/* ===== City Stats Grid ===== */
.city-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    background: #f8faff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e1e8f5;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #e1e8f5;
}

.stat-item:last-child {
    border-right: none;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-sub-value {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .city-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        padding: 10px;
        padding-left: 0px;
        padding-right: 10px;
    }

    .stat-item:nth-child(2n) {
        border-left: 1px solid #e1e8f5;
        padding-left: 20px;
        padding-right: 0;
    }
}

/* ===== Info Highlights ===== */
.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.highlight-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.highlight-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-text strong {
    font-size: 18px;
    color: var(--text-dark);
}

.highlight-text span {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== Airport Details V2 (Clean Bubble Style) ===== */
.airport-details-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.detail-group {
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-group.transport {
    background-color: #f0f7ff;
    /* Blue bubble restored */
}

.detail-group.time {
    background-color: #f0fff4;
    /* Green bubble restored */
}

.group-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-header .icon {
    font-size: 18px;
}

/* Colors strictly for icons */
.transport .group-header .icon {
    color: #1962EB;
}

.time .group-header .icon {
    color: #28a745;
}

.group-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    /* Neutral title */
}

.group-content {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    padding-left: 28px;
}

/* ===== Airport Cards ===== */
.airport-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.airport-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.airport-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.airport-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.airport-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.airport-header h4 {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
}

.airport-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.airport-badge.primary {
    background: linear-gradient(135deg, #1962EB 0%, #0d47a1 100%);
    color: white;
}

.airport-badge.secondary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
}

.airport-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.airport-details {
    background: white;
    border-radius: 4px;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
}

.detail-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 14px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 100px;
    flex-shrink: 0;
}

.detail-value {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== Flight Grid ===== */
/* ===== Flight Grid & Cards ===== */
.flight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.flight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e1e8f5;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.flight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    padding: 6px 15px;
    border-radius: 0 16px 0 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    letter-spacing: 0.5px;
}

.flight-info-top {
    margin-bottom: 20px;
}

.flight-airline-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.airline-icon {
    width: 36px;
    height: 36px;
    background: #e9f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.flight-airline {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.flight-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.detail-line i {
    color: var(--primary-color);
    opacity: 0.7;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.flight-divider {
    height: 1px;
    background: #f0f3f8;
    margin-bottom: 20px;
}

.flight-info-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}

.flight-price-container {
    display: flex;
    flex-direction: column;
}

.flight-original-price {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.flight-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.flight-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.flight-btn:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 1024px) {
    .flight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .flight-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Best Season Section Layout ===== */
.climate-section {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-top: 30px;
}

/* ===== Season Grid (Now a Column) ===== */
.season-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 992px) {
    .climate-section {
        grid-template-columns: 1fr;
    }
}

.season-card {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid #e1e8f5;
    transition: var(--transition);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.season-card.best {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #f1f8f4 0%, #ffffff 100%);
}

.season-card.good {
    border-color: #2196F3;
    background: linear-gradient(135deg, #e8f4fd 0%, #ffffff 100%);
}

.season-card.normal {
    border-color: #9E9E9E;
}

.season-card.avoid {
    border-color: #FF5722;
    background: linear-gradient(135deg, #fff3f0 0%, #ffffff 100%);
}

.season-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 8px;
}

.season-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.season-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.season-badge.recommend {
    background: #4CAF50;
    color: white;
}

.season-badge.good {
    background: #2196F3;
    color: white;
}

.season-badge.hot {
    background: #FF5722;
    color: white;
}

.season-temp {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 500;
}

.season-desc {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-gray);
}

/* ===== Climate Chart ===== */
.climate-chart-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e1e8f5;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.chart-header {
    margin-bottom: 20px;
}

.chart-canvas-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.chart-footer {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

/* ===== Transport List ===== */
.transport-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.transport-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #e0e0e0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.transport-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.transport-icon {
    font-size: 48px;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

.transport-content {
    flex: 1;
}

.transport-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.transport-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.transport-tip {
    display: inline-block;
    background: #fff3cd;
    color: #856404;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    border-left: 3px solid #ffc107;
    margin-top: 8px;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 80px 24px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.faq-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-item[open] {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

.faq-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    border-top: 1px solid #f0f0f0;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 12px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--text-dark);
}

.faq-note {
    background: #e8f4fd;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #2196F3;
    margin-top: 12px;
    font-size: 14px;
    color: #0d47a1;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #1962EB 0%, #0d47a1 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(255, 193, 28, 0.4);
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    background: #d6a10f;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 193, 28, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .flight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .season-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title-en {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .city-info-section,
    .faq-section,
    .cta-section {
        padding: 48px 16px;
    }

    .info-title,
    .faq-title,
    .cta-title {
        font-size: 28px;
    }

    .info-subtitle {
        font-size: 22px;
    }

    .info-highlights {
        grid-template-columns: 1fr;
    }

    .airport-cards {
        grid-template-columns: 1fr;
    }

    .flight-grid {
        grid-template-columns: 1fr;
    }

    .season-grid {
        grid-template-columns: 1fr;
    }

    .climate-chart-container {
        padding: 20px 5px;
    }

    .transport-item {
        flex-direction: column;
        text-align: center;
    }

    .transport-icon {
        width: 100%;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-title-en {
        font-size: 20px;
    }

    .breadcrumb {
        font-size: 12px;
        padding: 12px 16px;
    }
}

/* ===== Print Styles ===== */
@media print {

    .header,
    .breadcrumb,
    .search-section,
    .cta-section,
    .footer {
        display: none;
    }

    .hero-section {
        height: auto;
        page-break-after: always;
    }

    .info-block,
    .faq-item {
        page-break-inside: avoid;
    }
}