/* Flights to Pakistan Page - Additional Styles */

/* Hero Section */
.pakistan-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(253, 143, 80, 0.2);
    color: #FD8F50;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(253, 143, 80, 0.3);
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .primary {
    color: #5170FF;
}

.hero-content .secondary {
    color: #FD8F50;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FD8F50;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 30px rgba(27, 27, 27, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 40px rgba(27, 27, 27, 0.45);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Routes Section */
.pakistan-routes-section {
    padding: 80px 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(27, 27, 27, 0.1);
    transition: all 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(27, 27, 27, 0.25);
}

.route-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.route-content {
    padding: 20px;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.route-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    text-align: left;
}

.route-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FD8F50;
}

.route-airline {
    font-size: 0.9rem;
    color: #5a6a7e;
    margin-bottom: 10px;
    text-align: left;
}

.route-airline i {
    color: #5170FF;
    margin-right: 5px;
}

.route-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #5a6a7e;
    text-align: left;
}

.route-details i {
    color: #5170FF;
    margin-right: 5px;
}

.route-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    padding: 8px 20px;
    width: 100%;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.route-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(27, 27, 27, 0.3);
}

/* Best Time to Book Section - Professional Boxed Design */
.booking-guide-section {
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #5170FF;
    background: rgba(81, 112, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .primary {
    color: #5170FF;
    position: relative;
    display: inline-block;
}

.section-title .primary::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(81, 112, 255, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.section-description {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Guide Cards */
.guide-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    box-shadow: 0 15px 30px rgba(27, 27, 27, 0.15);
    border: 1px solid #e7e7e7;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(27, 27, 27, 0.3);
    border-color: rgba(81, 112, 255, 0.2);
}

/* .guide-card.low-season {
    border-top: 4px solid #27ae60;
}

.guide-card.peak-season {
    border-top: 4px solid #FD8F50;
} */

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.peak-season .card-badge {
    background: rgba(253, 143, 80, 0.1);
    color: #FD8F50;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5170FF10, #5170FF20);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: #5170FF;
}

.low-season .card-icon {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
}

.peak-season .card-icon {
    color: #FD8F50;
    background: rgba(253, 143, 80, 0.1);
}

.window-box .card-icon,
.days-box .card-icon {
    color: #5170FF;
    background: rgba(81, 112, 255, 0.1);
}

.guide-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.season-months {
    font-size: 0.95rem;
    color: #5a6a7e;
    margin-bottom: 15px;
    line-height: 1.5;
    min-height: 45px;
}

.saving-badge {
    margin-bottom: 20px;
}

.saving-percent {
    display: inline-block;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(27, 27, 27, 0.3);
}

.season-features {
    list-style: none;
    margin-top: 15px;
}

.season-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #33485d;
    padding: 6px 0;
}

.season-features i {
    color: #27ae60;
    font-size: 16px;
}

/* Booking Timeline */
.booking-timeline {
    margin: 25px 0 15px;
    position: relative;
}

.timeline-bar {
    height: 8px;
    background: #eef2f8;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 8px;
}

.timeline-fill {
    height: 100%;
    background: linear-gradient(90deg, #5170FF, #FD8F50);
    border-radius: 20px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    top: -15px;
    width: 4px;
    height: 25px;
    background: #FD8F50;
    border-radius: 4px;
    transform: translateX(-50%);
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #5a6a7e;
}

.window-text {
    font-size: 0.95rem;
    color: #1e293b;
    text-align: center;
    margin-top: 15px;
}

.window-text strong {
    color: #5170FF;
    font-weight: 700;
}

/* Days Grid */
.days-grid {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 20px 0 15px;
}

.day-badge {
    background: #f0f4ff;
    color: #5170FF;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(81, 112, 255, 0.2);
}

.days-note {
    font-size: 0.85rem;
    color: #5a6a7e;
    font-style: italic;
    line-height: 1.5;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
    padding: 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(27, 27, 27, 0.3);
    border: 1px solid #eef2f8;
}

.quick-stats .stat-item {
    text-align: center;
    padding: 10px;
}

.quick-stats .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 5px;
}

.quick-stats .stat-label {
    font-size: 0.9rem;
    color: #5a6a7e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .season-months {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .quick-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .guide-card {
        padding: 25px 20px;
    }
}

/* Flight Deals Section */
.flight-deals-section {
    padding: 80px 0;
    background: #f5f8ff;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.deal-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(27, 27, 27, 0.3);
    transition: all 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(27, 27, 27, 0.3);
}

.deal-logo {
    height: 60px;
    margin-bottom: 20px;
}

.deal-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.deal-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.deal-airline {
    font-size: 0.85rem;
    color: #5a6a7e;
    margin-bottom: 10px;
}

.deal-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FD8F50;
    margin-bottom: 15px;
}

.deal-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: #5a6a7e;
}

.deal-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.deal-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(27, 27, 27, 0.3);
}

/* Flight Deals Section - Expanded */
.flight-deals-section {
    padding: 80px 0;
    background: #f5f8ff;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #5170FF;
    background: rgba(81, 112, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-title .primary {
    color: #5170FF;
    position: relative;
    display: inline-block;
}

.section-title .primary::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(81, 112, 255, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.section-title .secondary {
    color: #FD8F50;
}

.section-description {
    font-size: 16px;
    color: #5a6a7e;
    margin: 0 auto;
    line-height: 1.6;
}

/* Deals Grid - 4 columns, 2 rows */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

/* Deal Card */
.deal-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5170FF, #FD8F50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(81, 112, 255, 0.15);
    border-color: transparent;
}

.deal-card:hover::before {
    transform: scaleX(1);
}

.deal-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 5px;
}

.deal-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.deal-card:hover .deal-logo img {
    filter: grayscale(0%);
}

.deal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
}

.deal-airline {
    font-size: 0.8rem;
    color: #5a6a7e;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eef2f8;
}

.deal-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FD8F50;
    margin-bottom: 15px;
    line-height: 1;
}

.deal-price span {
    font-size: 0.7rem;
    font-weight: 400;
    color: #5a6a7e;
    display: block;
    margin-top: 3px;
}

.deal-btn {
    display: inline-block;
    background: linear-gradient(135deg, #5170FF, #3a5ae0);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(81, 112, 255, 0.3);
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5170FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 40px;
    background: white;
    border: 1px solid #eef2f8;
    transition: all 0.3s ease;
}

.view-all-link i {
    transition: transform 0.3s ease;
}

.view-all-link:hover {
    border-color: #5170FF;
    box-shadow: 0 10px 20px rgba(81, 112, 255, 0.1);
}

.view-all-link:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .deal-card {
        padding: 20px 15px;
    }

    .deal-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .deals-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .deal-card {
        width: 100%;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
    transition: all 0.3s ease;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
    margin-bottom: 5px;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FD8F50;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p,
.gallery-item:hover .gallery-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f5f8ff;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(27, 27, 27, 0.3);
    border: 1px solid rgba(81, 112, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 1.2rem;
    color: #5170FF;
    transition: transform 0.3s ease;
}

.faq-question.active {
    background: #f8faff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8faff;
    padding: 0 20px;
}

.faq-answer p {
    padding: 20px 0;
    color: #5a6a7e;
    line-height: 1.6;
    text-align: left;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b1220, #111827);
    color: white;
}

.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.choose-content .primary {
    color: #5170FF;
}

.choose-list {
    list-style: none;
    margin-bottom: 30px;
}

.choose-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #e2e8f0;
}

.choose-list i {
    color: #27ae60;
    font-size: 1.2rem;
}

.choose-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(27, 27, 27, 0.3);
}

.choose-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-circle {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #5170FF, #FD8F50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .routes-grid,
    .deals-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .season-grid,
    .choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .season-stats {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .routes-grid,
    .deals-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stat-bubble {
        width: 150px;
        height: 150px;
        padding: 20px;
    }

    .bubble-number {
        font-size: 2rem;
    }

    .choose-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .season-stats {
        flex-direction: column;
        align-items: center;
    }

    .choose-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* Success Message Styles */
.submission-success-message {
    margin-top: 40px;
    padding: 0;
    animation: slideDown 0.5s ease-out;
}

.success-message-content {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 12px;
    padding: 2px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-icon {
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.success-text {
    color: white;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add a subtle fade-out animation when removing */
.submission-success-message {
    transition: opacity 0.5s ease-out;
}

/* Responsive styles for success message */
@media (max-width: 768px) {
    .success-message-content {
        padding: 14px 20px;
    }

    .success-icon {
        font-size: 24px;
    }

    .success-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .success-message-content {
        padding: 12px 16px;
    }

    .success-icon {
        font-size: 20px;
    }

    .success-text {
        font-size: 13px;
    }
}