:root {
    --primary: #8a5cf6;
    --primary-light: #a78bfa;
    --primary-dark: #7c3aed;
    --primary-rgb: 138, 92, 246;
}

/* 顶部横幅 */
.banner {
    width: 100%;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)), url("../img/airport-banner.7dcc9f0024ee.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    position: relative;
    overflow: hidden;
    filter: contrast(1.08) brightness(1.05) saturate(1.15);
    animation: slowZoom 30s ease-in-out infinite alternate;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.3);
    transition: all 0.5s ease-in-out;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
}

/* 缓慢放大动画效果 */
@keyframes slowZoom {
    0% {
        background-size: 100% auto;
    }
    100% {
        background-size: 110% auto;
    }
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 25px;
    margin-left: 5%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--primary);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp 0.6s ease-out forwards;
}

.banner-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.airport-code {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.banner-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.banner-content:hover .banner-title::after {
    width: 150px;
}

.banner-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 450px;
}

.banner-description p {
    margin-bottom: 0;
}

.banner-cta {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.banner-cta .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(138, 92, 246, 0.2);
    transform: scale(1);
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.banner-cta .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(138, 92, 246, 0.3);
}

.main-content {
    min-height: calc(100vh - 120px);
    padding-top: 12px;
    position: relative;
    z-index: 1;
}
/* 机场信息
.airport-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.airport-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.booking-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.booking-card p {
    color: #666;
    margin-bottom: 2rem;
} */

/* 服务内容 */
.service-section {
    margin: 0;
    padding: 0;
}

.section-title {
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    position: relative;
}

.service-content-item {
    padding: 4rem 0;
}

.service-content-item:nth-child(even) {
    background-color: #f8f9fa;
}

.service-image, .main-image, .gallery-image {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image img, .main-image img, .gallery-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}

.service-image:hover img, .main-image:hover img, .gallery-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(0);
    border-top: 2px solid rgba(var(--primary-rgb), 0.7);
}

.main-image:hover .image-caption {
    background: rgba(0, 0, 0, 0.85);
    padding: 1.2rem;
}

/* 为地图添加额外的标题样式 */
.airport-map-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.airport-map-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.service-text {
    padding: 2rem;
}

.service-text h3, .gallery-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.service-text .content, .gallery-title + .content {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.gallery-title {
    position: relative;
    display: inline-block;
}

.gallery-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto;
}

/* 图片展示横排 */
.gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.main-image {
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.main-image img {
    max-height: 700px;
    object-fit: contain;
    margin: 0 auto;
    width: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.main-image:hover img {
    transform: scale(1.02);
}

/* 车型展示 */
.vehicle-section {
    position: relative;
    background-color: #fdfdfd;
    overflow: hidden;
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 2rem;
}

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

/* 轮播图新增样式 */
.vehicle-carousel-container {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

#vehicleCarousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px 0;
}

#vehicleCarousel .carousel-inner {
    display: flex;
    overflow: visible;
    min-height: 480px;
    align-items: center;
    padding: 20px 40px;
}

#vehicleCarousel .carousel-item {
    position: relative;
    width: 30%;
    transition: all 0.4s ease;
    margin: 0 15px;
    visibility: visible !important;
    display: block !important;
    flex: 0 0 auto;
    transform-origin: center center;
    opacity: 0.5;
    transform: scale(0.9);
}

/* 当轮播项少于等于3个时的特殊样式 */
#vehicleCarousel.few-items .carousel-item {
    width: 35%;
    margin: 0 10px;
}

#vehicleCarousel .carousel-item.active {
    opacity: 1;
    z-index: 10;
    transform: scale(1);
}

/* 处理只有单个项目的情况 */
#vehicleCarousel.single-item .carousel-item {
    width: 60%;
    margin: 0 auto;
    transform: scale(1);
    opacity: 1;
}

/* 自定义轮播图指示器 (小圆点) */
.carousel-indicators-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.carousel-indicators-custom button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* 轮播图控制按钮样式优化 */
.carousel-control-prev, .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* 轮播图拖拽样式 */
.carousel-inner.carousel-grab {
    cursor: grab;
}

.carousel-inner.carousel-grabbing {
    cursor: grabbing;
}

/* 轮播项目样式 */
.carousel-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
    padding: 20px 10px;
}

/* 单个项目时的居中样式 */
.carousel-inner.single-item .carousel-item {
    display: flex;
    justify-content: center;
}

/* 少量项目时的样式调整 */
.carousel-inner.few-items .carousel-item {
    transform-origin: center center;
    transition: all 0.5s ease;
}

/* 车辆卡片样式优化 */
.vehicle-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    max-width: 850px;
    margin: 0 auto;
}

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

.vehicle-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.vehicle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vehicle-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.vehicle-info {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 180px);
}

.vehicle-name {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.vehicle-features {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.feature {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.feature i {
    margin-right: 5px;
    color: var(--primary);
}

.vehicle-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
    flex-grow: 1;
    max-height: 60px;
    overflow: auto;
    line-height: 1.4;
}

.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 0.8rem;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: #999;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

/* 预订按钮样式优化，参考图片的按钮样式 */
.vehicle-booking-options {
    display: flex;
    gap: 5px;
}

.btn-book-vehicle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-arrival-small {
    background-color: #3498db;
}

.btn-departure-small {
    background-color: #e74c3c;
}

.btn-book-vehicle i {
    margin-right: 2px;
    font-size: 0.75rem;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .vehicle-card img {
        height: 200px;
    }
    
    .vehicle-name {
    font-size: 1.2rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }

    /* 机场信息卡片样式 */
    .airport-info-section {
        padding: 20px 0;
    }
    
    .airport-info-title {
        font-size: 1.2rem;
    }
    
    .airport-info-code {
        font-size: 1.5rem;
    }
    
    .airport-image {
        max-height: 180px;
    }
    
    .airport-image img {
        height: 180px;
    }
    
    .airport-description {
        max-height: 200px;
    }

    /* 机场地图图片响应式调整 */
    .main-image img {
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .vehicle-card {
        margin-bottom: 1.5rem;
    }
    
    .vehicle-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* 机场信息卡片样式 */
    .airport-info-card {
        margin-bottom: 20px;
    }
    
    /* 机场地图图片响应式调整 */
    .main-image img {
        max-height: 500px;
    }
}

@media (max-width: 576px) {
    .vehicle-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .btn-book-vehicle {
        width: 100%;
    }
    
    .vehicle-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    /* 机场信息卡片样式 */
    .airport-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .airport-info-code {
        align-self: flex-start;
    }
    
    .airport-info-body {
        padding: 15px;
    }
    
    .airport-description {
        font-size: 0.9rem;
    }
    
    .service-recommendation-card {
        padding: 15px;
    }
    
    .service-title {
        margin: 20px 0 15px;
    }
    
    .btn-book-now {
        padding: 10px 20px;
        width: 100%;
    }

    /* 机场地图图片响应式调整 */
    .main-image {
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }
    
    .main-image img {
        max-height: 450px;
        border-radius: 8px;
    }
}

/* 响应式调整车型卡片中的预订按钮 */
@media (max-width: 768px) {
    .vehicle-booking-options {
        flex-direction: row;
        width: 100%;
    }
    
    .btn-book-vehicle {
        padding: 8px 14px;
    }
}

@media (max-width: 576px) {
    .vehicle-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .vehicle-booking-options {
        width: 100%;
    }
    
    .btn-book-vehicle {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .btn-book-vehicle i {
        font-size: 0.8rem;
    }
}

/* 支付方式 */
.payment-section {
    background-color: #f8f9fa;
}

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.payment-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.payment-card p {
    color: #666;
    font-size: 0.9rem;
}

.payment-section {
    margin-top: 60px;
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 25px;
    position: relative;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 30px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
}

.payment-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cancellation-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cancellation-table th,
.cancellation-table td {
    padding: 15px 20px;
    border: 1px solid #eee;
}

.cancellation-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    text-align: left;
}

.cancellation-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #eee;
}

.contact-info p {
    margin-bottom: 12px;
    color: #444;
    font-size: 1.05rem;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info .email {
    color: var(--primary);
    font-weight: 500;
}

/* 政策和联系信息 */
.policy-section {
    background-color: #fff;
}

.policy-card, .contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.policy-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.cancellation-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cancellation-table th,
.cancellation-table td {
    padding: 1rem;
    border: 1px solid #eee;
}

.cancellation-table th {
    background-color: var(--primary);
    color: white;
    font-weight: 500;
    text-align: left;
}

.cancellation-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.contact-info h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    color: #333;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .banner {
        height: 300px;
    }
    
    .banner-content {
        max-width: 90%;
        margin-left: 2rem;
    }
    
    .airport-code {
        font-size: 2.5rem;
    }
    
    .banner-description {
        max-width: 80%;
    }
    
    .banner-cta {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 300px;
    }
    
    .banner-content {
        padding: 1rem 0.8rem;
        margin-left: 1rem;
        margin-top: 0.8rem;
    }
    
    .airport-code {
        font-size: 2.5rem;
    }
    
    .banner-title {
        font-size: 1.6rem;
    }
    
    .banner-description {
        max-width: 100%;
        margin-top: 0.6rem;
        font-size: 0.9rem;
    }

    .range-title {
        font-size: 1.4rem;
    }

    .range-icons {
        padding: 0;
    }
    
    .range-from i, .range-to i {
        font-size: 2.8rem;
    }

    .range-from:hover, .range-to:hover {
        transform: translateY(-5px);
    }
    
    .connector-line {
        width: 40px;
    }
    
    /* 移动设备上按钮样式 */
    .banner-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .banner-cta .btn {
        width: 100%;
        justify-content: center;
        margin-right: 0 !important;
    }
    
    .booking-buttons {
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .banner {
        height: 320px;
    }
    
    .banner-content {
        max-width: 95%;
        margin-left: 0.5rem;
        padding: 1rem 0.8rem;
    }
    
    .airport-code {
        font-size: 2rem;
    }
    
    .banner-title {
        font-size: 1.4rem;
    }
    
    .banner-description {
        font-size: 0.85rem;
    }
    
    .banner-cta {
        margin-top: 0.8rem;
    }
    
    .range-display {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .range-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .range-from i, .range-to i {
        font-size: 2.5rem;
    }
    
    .icon-label {
        font-size: 0.85rem;
        max-width: 100px;
    }
    
    .connector-line {
        width: 30px;
    }
    
    .connector-arrow {
        font-size: 1.2rem;
    }
    
    /* 移动设备上服务卡片按钮样式 */
    .btn-book-now {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .btn-book-now i {
        font-size: 0.9rem;
    }
}

/* 服务范围展示区域 */
.service-range-section {
    padding: 50px 0;
    margin: 25px 0;
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    position: relative;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-range-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-range-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.3);
}

.range-display {
    padding: 20px;
    border-radius: 14px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    margin: 0 auto;
}

.range-display:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.range-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.range-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    transform: translateX(-50%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.range-display:hover .range-title:after {
    width: 120px;
}

.range-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    position: relative;
}

.range-from, .range-to {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    width: 150px;
}

.range-from:hover, .range-to:hover {
    transform: translateY(-8px);
    background-color: white;
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.15);
}

.range-from::before, .range-to::before {
    content: attr(data-label);
    position: absolute;
    top: -25px;
    font-size: 0.85rem;
    color: #666;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3px 10px;
    border-radius: 30px;
    transition: all 0.3s ease;
    opacity: 0.8;
    white-space: nowrap;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.range-from:hover::before, .range-to:hover::before {
    top: -30px;
    opacity: 1;
    background-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.range-from i, .range-to i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #555;
    transition: all 0.3s ease;
}

.range-from:hover i, .range-to:hover i {
    color: var(--primary);
    transform: scale(1.15);
}

.range-connector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.connector-line {
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.5));
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.range-display:hover .connector-line {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.2);
}

.connector-arrow {
    margin: 0 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.connector-arrow i {
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.range-display:hover .connector-arrow {
    background-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.range-display:hover .connector-arrow i {
    color: white;
    animation: pulse 1.5s infinite;
}

.icon-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    margin-top: 5px;
    text-align: center;
}

.range-from:hover .icon-label, .range-to:hover .icon-label {
    color: var(--primary);
    font-weight: 600;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .service-range-section {
        padding: 40px 0;
    }
    
    .range-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .range-from, .range-to {
        width: 130px;
    }
}

@media (max-width: 768px) {
    .service-range-section {
        padding: 30px 0;
        margin: 15px 0;
    }
    
    .range-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .range-icons {
        flex-direction: column;
        gap: 30px;
    }
    
    .range-from, .range-to {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .range-connector {
        width: 100%;
        flex-direction: column;
        height: 60px;
        padding: 10px 0;
    }
    
    .connector-line {
        width: 3px;
        height: 100%;
        flex: 1;
    }
    
    .range-display:hover .connector-line {
        width: 4px;
    }
    
    .connector-arrow {
        margin: 5px 0;
        transform: rotate(90deg);
    }
    
    .range-display:hover .connector-arrow {
        transform: rotate(90deg) scale(1.1);
    }
}

@media (max-width: 576px) {
    .range-title {
        font-size: 1.4rem;
    }
    
    .range-from i, .range-to i {
        font-size: 2rem;
    }
    
    .icon-label {
        font-size: 1rem;
    }
    
    .connector-line {
        height: 40px;
    }
}

/* 动画效果 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* 添加PDF指南区域的样式 */
.pdf-guide-section {
        padding: 2rem 0;
    background-color: #f8f9fa;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.pdf-guide-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0.5rem;
}

.pdf-guide-content {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.08);
    transition: all 0.3s ease;
}

.pdf-guide-content:hover {
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-5px);
}

.guide-icon {
    flex: 0 0 70px;
    height: 70px;
    background-color: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    position: relative;
    overflow: hidden;
}

.guide-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, rgba(var(--primary-rgb), 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    animation: pulse-ring 2s infinite;
}

.guide-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.guide-info {
    flex: 1;
}

.guide-title {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: #333;
    font-weight: 600;
}

.guide-desc {
    margin: 0;
    color: #666;
}

.btn-view-guide {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
}

.btn-view-guide:hover {
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-view-guide:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(var(--primary-rgb), 0.2);
}

.btn-view-guide span {
    margin-right: 0.5rem;
}

.btn-view-guide i {
    margin-left: 0.3rem;
}

.btn-view-guide:hover i {
    transform: translateY(-2px) translateX(2px);
}

/* 添加响应式样式 */
@media (max-width: 992px) {
    .pdf-guide-content {
        padding: 1.2rem 1.5rem;
    }
    
    .guide-icon {
        flex: 0 0 60px;
        height: 60px;
    }
    
    .guide-icon i {
        font-size: 1.8rem;
    }
    
    .guide-title {
        font-size: 1.3rem;
    }
    
    .btn-view-guide {
        padding: 0.7rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .pdf-guide-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .guide-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .guide-info {
        margin-bottom: 1.2rem;
    }
    
    .guide-title {
        font-size: 1.3rem;
    }
    
    .guide-desc {
        font-size: 0.95rem;
    }
    
    .btn-view-guide {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .pdf-guide-section {
        padding: 1.5rem 0;
    }
    
    .pdf-guide-wrapper {
        padding: 0 1rem;
    }
    
    .pdf-guide-content {
        padding: 1.2rem;
    }
    
    .guide-icon {
        flex: 0 0 50px;
        height: 50px;
    }
    
    .guide-icon i {
        font-size: 1.5rem;
    }
    
    .guide-title {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .guide-desc {
        font-size: 0.9rem;
    }
    
    .btn-view-guide {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .btn-view-guide i {
        font-size: 0.9rem;
    }
    
    .btn-view-guide span {
        font-weight: 600;
    }
}

@keyframes pulse-ring {
    0% {
        opacity: 0.7;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

/* 为机场流程相关信息与咨询区域添加样式 */
.process-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.process-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.process-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.process-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.process-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.process-features li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

.btn-guide-download {
    display: inline-flex;
    align-items: center;
    background-color: #e74c3c;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-guide-download i:first-child {
    font-size: 20px;
    margin-right: 10px;
}

.btn-guide-download:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.btn-guide-download:active {
    transform: translateY(0);
}

.process-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

.pdf-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.pdf-badge i {
    margin-right: 5px;
}

/* 添加响应式样式 */
@media (max-width: 992px) {
    .process-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .process-card {
        padding: 25px;
    }
    
    .process-image {
        margin-top: 30px;
    }
    
    .btn-guide-download {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 22px;
    }
    
    .process-desc {
        font-size: 15px;
    }
    
    .process-card {
        padding: 20px;
    }
}

/* 机场信息卡片区域 */
.airport-info-section {
    padding: 30px 0;
    margin: 20px 0;
    background: linear-gradient(165deg, rgba(248, 249, 250, 0.5) 0%, rgba(240, 244, 248, 0.8) 100%);
}

.airport-info-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.airport-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.airport-info-header {
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.airport-info-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.airport-info-title i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.airport-info-code {
    font-size: 1.8rem;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 8px;
    letter-spacing: 1px;
}

.airport-info-body {
    padding: 20px;
}

.airport-image {
    position: relative;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    }
    
    .airport-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.airport-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 25px 15px 10px;
    color: white;
}

.airport-name {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.airport-description {
    color: #444;
    line-height: 1.5;
    font-size: 0.95rem;
    max-height: 240px;
    overflow-y: auto;
}

/* 添加滚动条样式 */
.airport-description::-webkit-scrollbar {
    width: 5px;
}

.airport-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.airport-description::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 5px;
}

.airport-description::-webkit-scrollbar-thumb:hover {
    background: #c1c1c1;
    }
    
    .booking-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, transparent 50%, rgba(var(--primary-rgb), 0.1) 50%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.booking-card-label {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.3);
}

.booking-card h3 {
    color: #333;
        font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.booking-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.booking-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05rem;
}

.booking-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
}

.booking-price {
    display: inline-block;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.booking-price i {
    margin-right: 5px;
}

.btn-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-booking i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-booking:hover {
    background-color: var(--primary-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

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

/* 响应式调整 */
@media (max-width: 992px) {
    .airport-info-section {
        padding: 40px 0;
    }
    
    .airport-info-header {
        padding: 15px 20px;
    }
    
    .airport-info-title {
        font-size: 1.4rem;
    }
    
    .airport-info-code {
        font-size: 1.8rem;
    }
    
    .booking-card {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .airport-info-section {
        padding: 30px 0;
    }
    
    .airport-info-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .airport-info-code {
        margin-top: 10px;
        align-self: flex-end;
    }
    
    .airport-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .airport-info-title {
        font-size: 1.2rem;
    }
    
    .airport-info-code {
        font-size: 1.5rem;
    }
    
    .booking-card h3 {
        font-size: 1.5rem;
    }
    
    .booking-features li {
        font-size: 0.95rem;
    }
    
    .btn-booking {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* 机场流程相关信息与咨询区域样式 */
.airport-info-flow-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
}


.info-flow-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-flow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-flow-content {
    padding: 30px;
    text-align: left;
}

.info-flow-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.2);
    padding-bottom: 15px;
}

.info-flow-title i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 28px;
}

.info-flow-item {
    margin-bottom: 20px;
}

.info-flow-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-flow-item h4 i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 20px;
}

.info-flow-list {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 0;
}

.info-flow-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.info-flow-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-light);
    border-radius: 50%;
}

/* 机场接送服务完整指南样式 */
.guide-download-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.guide-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.guide-download-card .row {
    padding: 30px;
}

.guide-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.guide-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.guide-download-card:hover .guide-title::after {
    width: 100px;
}

.guide-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.guide-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.guide-features li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #e74c3c;
}

.guide-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guide-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

/* 响应式调整 */
@media (max-width: 992px) {
    .airport-info-flow-section {
        padding: 40px 0;
    }
    
    .info-flow-content, .guide-download-card .row {
        padding: 25px;
    }
    
    .info-flow-title {
        font-size: 22px;
    }
    
    .info-flow-item h4 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .airport-info-flow-section {
        padding: 30px 0;
    }
    
    .info-flow-content, .guide-download-card .row {
        padding: 20px;
    }
    
    .info-flow-title {
        font-size: 20px;
    }
    
    .info-flow-item {
        margin-bottom: 25px;
    }
    
    .guide-image {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .info-flow-content {
        padding: 15px;
    }
    
    .info-flow-title {
        font-size: 18px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .info-flow-item h4 {
        font-size: 16px;
    }
    
    .info-flow-list li {
        font-size: 14px;
    }
    
    .guide-title {
        font-size: 20px;
    }
    
    .guide-desc {
        font-size: 15px;
    }
}

/* 添加section-subtitle样式 */
.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(var(--primary-rgb), 0.5);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 1.3rem;
    }
}

/* 链接按钮和徽章样式 */
.btn-guide-link {
    background-color: #3498db;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.btn-guide-link:hover {
    background-color: #2980b9;
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

.link-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #3498db;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.link-badge i {
    margin-right: 5px;
}

/* 机场分页导航 */
.airport-pagination {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.pagination-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagination-title {
        font-size: 1.1rem;
    color: #495057;
    font-weight: 500;
}

.pagination-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-buttons .btn {
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 30px;
}

.pagination-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

@media (max-width: 576px) {
    .pagination-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .pagination-buttons .btn {
        margin-bottom: 10px;
        width: 100%;
    }
}

/* 新的推荐服务卡片样式 */
.service-recommendation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.service-recommendation-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.3);
    z-index: 10;
}

.service-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 25px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-item {
    flex: 1 0 45%;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background-color: rgba(var(--primary-rgb), 0.05);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-right: 8px;
}

.feature-item span {
    color: #555;
        font-size: 0.9rem;
    }

.service-price-tag {
    display: inline-block;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    margin: 5px 0 15px;
}

.service-price-tag i {
    margin-right: 5px;
}

.btn-book-now {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-book-now:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
    color: white;
}

.btn-book-now i {
    margin-right: 8px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .service-features {
        flex-direction: column;
    }
    
    .feature-item {
        flex: 1 0 100%;
    }
    
    .service-title {
        font-size: 1.4rem;
        margin: 20px 0 15px;
    }
}

@media (max-width: 576px) {
    .service-recommendation-ribbon {
        font-size: 0.75rem;
        padding: 4px 30px;
        right: -30px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-features {
        gap: 8px;
    }
    
    .feature-item {
        padding: 8px 12px;
    }
}

/* 添加预订按钮组样式 */
.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.btn-arrival {
    background-color: #3498db;
    color: white;
}

.btn-departure {
    background-color: #e74c3c;
    color: white;
}

.btn-arrival:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.btn-departure:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
} 