﻿/* =====================================================
   🚌 BUS TOUR - THE EDITORIAL COLLECTION
   A high-end, curated discovery experience.
   ===================================================== */

html {
    scroll-behavior: smooth;
}

:root {
    --km-blue: #095f70;
    --km-gold: #ffc11c;
    --km-gold-dark: #e5ad19;
    --km-text: #2d3436;
    --km-gray: #636e72;
    --km-bg: #ffffff;
    --km-border: #edf2f4;

}

body {
    background-color: var(--km-bg);
    color: var(--km-text);
    line-height: 1.6;
}



/* 🌟 Hero - The Gateway */
.bus-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    background: url('/img/bus/bus_banner.jpg') center top 80% / cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.bus-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Left-to-right deep blue gradient overlay matching design spec (#03205A) */
    background: linear-gradient(90deg, #03205A 0%, rgba(3, 32, 90, 0.92) 20%, rgba(3, 32, 90, 0.55) 42%, rgba(3, 32, 90, 0) 68%),
                linear-gradient(180deg, rgba(3, 32, 90, 0.55) 0%, rgba(3, 32, 90, 0) 22%);
    z-index: 1;
    pointer-events: none;
}

.hero-info {
    position: relative;
    z-index: 10;
    text-align: left;
    color: white;
    padding: 0 24px;
    max-width: 1200px;
    width: 100%;
    margin-top: 145px;
    margin-bottom: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-info h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 3px;
}

.hero-subtitle {
    display: block !important;
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
}

/* 🏷️ Feature Tags (Like Fig 2 Pills Style) */
.hero-features-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.h-icon {
    flex-shrink: 0;
    margin-top: 0;
    color: #ffffff;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
        margin-top: 20px;
}

/* 🖱️ Orange Action Button */
.btn-wow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 38px;
    background: #F06703;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(240, 103, 3, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-wow svg {
    margin-top: 0;
}

.btn-wow:hover {
    background: #D95A00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 103, 3, 0.5);
}

/* 🏗️ Tour Collection Section - Reference Design */
.bus-collection-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.container-inner {
    max-width: 1200px;
    /* Adjusted for 3-column layout */
    margin: 0 auto;
    padding: 0 20px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 34px;
    color: #0f294d;
    /* Site Heading Blue */
    margin-bottom: 20px;
    font-weight: 800;
}

.section-intro p {
    font-size: 16px;
    color: #444;
    /* Darker gray for readability */
    line-height: 1.8;
}

/* --- Tours Grid --- */
.tours-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* --- Tour Card Design --- */
.tour-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit !important;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card Image Part */
.card-image-part {
    position: relative;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
}

.card-image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges on Image */
.badge-top-right {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-discount {
    background: #F06703;
}

.badge-limited {
    background: #F06703;
}

/* Language-aware sold-out image badge */
.badge-full {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: grayscale(0.15) brightness(1.03);
    box-shadow: inset 0 0 0 1px rgba(3, 32, 90, 0.08);
    z-index: 10;
    pointer-events: none;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.badge-full img {
    display: block;
    width: 190px !important;
    max-width: 70%;
    height: auto !important;
    object-fit: contain !important;
}

/* 🌑 Artistic Filter for Sold Out Image */
.tour-card.is-full .card-image-part > img {
    filter: brightness(1) contrast(1.2) grayscale(0.2);
    transform: scale(1.03);
    transition: all 0.7s ease;
}

.tour-card.is-full:hover .card-image-part > img {
    filter: brightness(0.7) contrast(1.3) grayscale(0);
}

.tour-card.is-full .tour-title,
.tour-card.is-full .price-final {
    opacity: 0.5;
}

.tour-card.is-full:hover .tour-title,
.tour-card.is-full:hover .price-final {
    opacity: 0.9;
}

.image-overlay-badges {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.badge-text-tag {
    background: #2C61FE; /* 品牌主蓝 */
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.badge-text-tag.duration {
    background: #ffffff;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Card Content Part (Figure 1 design) */
.card-content-part {
    padding: 16px 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Info list (date + location rows) */
.tour-info-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #667085;
    line-height: 1.3;
}

.info-row svg {
    flex-shrink: 0;
    color: #667085;
}

/* Price line (Figure 1 style: orange large number, left aligned) */
.card-price-line {
    margin-top: auto;
    font-size: 22px;
    font-weight: 800;
    text-align: right;
    color: #F06703;
    line-height: 1;
}

.card-price-line .price-tilde {
    font-size: 18px;
    font-weight: 600;
    margin-left: 2px;
    color: #F06703;
}

.included-items {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    /* 微调行高 */
    max-height: 2.8em;
    /* 1.4 * 2 */
    min-height: 2.8em;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(44, 97, 254, 0.08);
}

.included-items span {
    display: inline;
    font-size: 11px;
    color: #636e72;
    font-weight: 600;
    margin-right: 8px;
    white-space: normal;
    /* 允许换行，特别是为了长英文 */
    word-break: break-word;
    /* 强制长单词换行 */
}

/* 针对英文版的特殊微调 */
.lang-en .included-items span {
    font-size: 10.5px;
    /* 英文稍细一点点，腾出空间 */
    line-height: 1.3;
}

.lang-en .included-items {
    max-height: 2.6em;
    min-height: 2.6em;
}

.included-items span::first-letter {
    color: #2C61FE;
    font-weight: 800;
}

.price-display-part {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-original {
    font-size: 13px;
    color: #a4b0be;
    text-decoration: line-through;
    font-weight: 500;
}

.price-main-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-label {
    font-size: 12px;
    color: #636e72;
    font-weight: 500;
}

.promotion-badge {
    background: #F06703;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1;
    margin-bottom: 2px;
    box-shadow: 0 2px 4px rgba(240, 103, 3, 0.2);
}

.price-final {
    font-size: 24px;
    font-weight: 800;
    color: #F06703;
    line-height: 1;
}

.price-final span {
    font-size: 12px;
    color: #636e72;
    font-weight: 400;
}

.promotion-deadline {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF4757;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    z-index: 10;
}

.promotion-deadline svg {
    flex-shrink: 0;
}

.badge-execution {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 30px;
    padding: 0 16px;
    border-radius: 6px;
    background: #ffffff;
    color: #F06703;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    overflow: hidden;
    pointer-events: none;
}

.badge-execution::before {
    content: "";
    position: absolute;
    top: -9px;
    left: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 18px);
    background: #fff;
    border-radius: 6px;
    z-index: -2;
}

.badge-execution::after {
    content: "";
    position: absolute;
    top: -9px;
    left: -12px;
    width: 10px;
    height: calc(100% + 18px);
    background: #F06703;
    z-index: -1;
}

/* Action Button - REMOVED */
.btn-detail-book {
    display: none;
}

/* 📍 Meeting Points Guidance Section */
.bus-meeting-points {
    background: #f8f9fa;
    padding: 100px 0;
}

.meeting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.meeting-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    min-height: 280px;
    height: auto;
}

.meeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.m-card-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.m-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.m-card-header i {
    color: #2C61FE;
    font-size: 20px;
}

.m-card-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: #03205A;
    margin: 0;
}

.m-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.m-tag {
    background: #E8F0FE;
    color: #2C61FE;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

.m-card-desc {
    flex-grow: 1;
}

.m-card-desc p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 6px;
    font-weight: 600;
}

.m-card-link {
    font-size: 13px;
    font-weight: 700;
    color: #2C61FE;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.m-card-link i {
    font-size: 12px;
}

.m-card-map {
    width: 280px; /* Increased width */
    position: relative;
    border-left: 1px solid #edf2f7;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.m-card-map:hover .map-overlay-text {
    background: #2C61FE;
    color: #ffffff;
}

.m-card-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.map-overlay-box {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Push it down 24px so it sits below the Google Maps default red marker */
    transform: translate(-50%, 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.map-overlay-text {
    background: white;
    color: #2C61FE;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

/* New M-Note Banner */
.m-note-banner {
    background: #F0F4FA;
    border-radius: 8px;
    padding: 16px 24px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #2C61FE;
}

.m-note-banner i {
    font-size: 20px;
}

.m-note-banner span {
    font-size: 15px;
    font-weight: 700;
}

.btn-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #2C61FE;
    color: #2C61FE;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: #2C61FE;
    color: #fff;
    box-shadow: 0 5px 15px rgba(44, 97, 254, 0.2);
}

/* 📣 High-Impact Promotional Split Section - Light Premium Theme */
.bus-promo-split {
    position: relative;
    padding: 80px 0;
    background-image: url('../img/bus/fg_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #03205A; /* 深蓝文字 */
    overflow: hidden;
    text-align: center;
}

.bus-promo-split::before {
    content: '';
    position: absolute;
    inset: 0;
    /* 纯净浅色遮罩，透出极浅背景图质感 */
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.promo-badge {
    display: inline-block;
    background: #F06703;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.promo-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.bus-promo-split .promo-title span {
    color: #03205A;
}

.bus-promo-split .promo-title span:last-child {
    font-size: 24px;
    color: #2C61FE; /* 主蓝突出优惠信息 */
    display: inline-block;
    margin-top: 10px;
}

.promo-text {
    font-size: 16px;
    line-height: 1.8;
    color: #667085; /* 次要文字颜色 */
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* 🎯 Nested Features Grid */
.promo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    border-top: 1px solid rgba(3, 32, 90, 0.08); /* 极浅深蓝分割线 */
    padding-top: 40px;
}

.bus-promo-split .p-feature-item .f-icon-box {
    width: 64px;
    height: 64px;
    background: #F7F8FA; /* 浅灰背景 */
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #2C61FE; /* 主蓝图标 */
    transition: all 0.3s ease;
}

.bus-promo-split .p-feature-item:hover .f-icon-box {
    transform: translateY(-5px);
    background: #2C61FE;
    color: #ffffff;
    border-color: #2C61FE;
    box-shadow: 0 10px 20px rgba(44, 97, 254, 0.2);
}

.bus-promo-split .p-feature-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #03205A; /* 深蓝标题 */
}

.bus-promo-split .p-feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #667085; /* 次要描述 */
}

/* 🛡️ Safety & Security Section */
.bus-safety-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
    margin-top: 50px;
}

.safety-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #EAECF0;
    transition: transform 0.3s;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.safety-img-box {
    height: 320px;
    position: relative;
}

.safety-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-badge {
    position: absolute;
    bottom: -32px;
    left: 30px;
    width: 64px;
    height: 64px;
    background: #2C61FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
    font-size: 24px; /* FontAwesome icon size */
}

.safety-content {
    padding: 50px 30px 30px; /* Top padding space for badge */
}

.safety-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #03205A;
    margin-bottom: 20px;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4B5563;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.safety-list li svg {
    color: #2C61FE;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Customer Request Box (Bottom Banner) */
.safety-customer-box {
    grid-column: 1 / -1;
    background: #F0F4FA;
    border-radius: 8px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.customer-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.customer-left .icon-circle {
    width: 48px;
    height: 48px;
    background: #2C61FE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px; /* FontAwesome icon size */
}

.customer-left h3 {
    font-size: 18px;
    font-weight: 700;
    color: #03205A;
    margin: 0;
}

.customer-safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.customer-safety-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: #4B5563;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.customer-safety-list li .bullet {
    color: #03205A;
    font-weight: bold;
}

@media (max-width: 992px) {
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .safety-customer-box {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }

    .customer-items {
        grid-template-columns: 1fr;
    }

    .meeting-grid {
        grid-template-columns: 1fr;
    }
}

/* 📱 Responsive Adjustments for Mobile (<768px) */
@media (max-width: 768px) {
    /* 🌟 Hero Mobile Fixes - Prevent overflow */
    .bus-hero {
        height: auto;
        min-height: 0;
        padding-bottom: 50px;
        background-position: center top;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Keep only the inner nav as a horizontal scroller for iOS Safari. */
    body.has-transparent-header .bus-hero > #service_nav-placeholder {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        position: relative;
        z-index: 3;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    body.has-transparent-header .bus-hero > #service_nav-placeholder .service-nav-wrapper {
        position: relative;
        z-index: 4;
    }

    body.has-transparent-header .bus-hero > #service_nav-placeholder .service-nav,
    body.has-transparent-header .bus-hero > #service_nav-placeholder .service-nav-container {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    body.has-transparent-header .bus-hero > #service_nav-placeholder .service-nav-container {
        margin-left: 0;
        margin-right: 0;
        padding-left: calc(10px + env(safe-area-inset-left));
        padding-right: calc(10px + env(safe-area-inset-right));
        scroll-padding-inline-start: calc(10px + env(safe-area-inset-left));
    }

    .hero-info {
        margin-top: 15px;
        margin-bottom: 0;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
        align-items: flex-start;
    }

    .hero-info h1 {
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 12px;
        min-height: 0;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .hero-features-box {
        gap: 8px;
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-feature-item {
        padding: 6px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .hero-actions {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .btn-wow {
        width: 100%;
        max-width: 320px;
        padding: 13px 24px;
        font-size: 16px;
        border-radius: 8px;
        box-sizing: border-box;
        justify-content: center;
    }

    /* Section Paddings */
    .bus-collection-section,
    .bus-promo-split,
    .bus-safety-section,
    .bus-meeting-points {
        padding: 40px 0;
    }

    .section-intro h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .section-intro p {
        font-size: 14px;
    }

    .promo-features-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tours-grid-container {
        grid-template-columns: 1fr;
    }

    .region-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .meeting-card {
        flex-direction: column;
        height: auto;
    }

    .m-card-map {
        width: 100%;
        height: 200px;
        border-left: none;
        border-top: 1px solid #edf2f7;
    }

    .safety-img-box {
        height: 200px;
    }

    .safety-badge {
        width: 52px;
        height: 52px;
        bottom: -26px;
        left: 20px;
        font-size: 20px;
    }

    .safety-content {
        padding: 40px 20px 20px;
    }
}

/* 📱 Small Mobile Devices (<480px) */
@media (max-width: 480px) {
    .hero-info h1 {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-feature-item {
        padding: 5px 12px;
        font-size: 12px;
    }

    .btn-wow {
        max-width: 100%;
        font-size: 15px;
        padding: 12px 20px;
    }
}
