/* 尊享专车服务页面 PC端样式 */

/* 核心样式 */
.car-service-page {
    /* font-family: 'Noto Sans SC', sans-serif; */
    color: #333;
    line-height: 1.6;
}

/* 横幅区域 */
.banner-section {
    position: relative;
    height: 55vh; /* 必须要有高度 */
    min-height: 400px;
    background-position: left !important;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("/static/img/toyota_alphard_white-4.28828a0f7699.png") no-repeat center;
    background-size: contain;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 150px;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.5s ease;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    /* margin-bottom: 20px; */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.rounded-button {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-decoration: none;
}

.rounded-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #f8f9fa;
    color: var(--primary-dark);
    text-decoration: none;
}

/* 服务特点部分 */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 20px auto 0;
}

.feature-card {
    padding: 40px 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 15px;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
}

/* 车型展示部分 */
.car-type-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.car-type-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.e25778de64f1.png");
    opacity: 0.05;
    z-index: 0;
}

.car-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.car-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.car-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

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

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

.car-details {
    padding: 25px;
}

.car-name {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #333;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.car-spec {
    background: #f0f7ff;
    color: var(--primary);
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 50px;
    margin: 0 8px 8px 0;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.car-spec:hover {
    background: var(--primary);
    color: #fff;
}

.car-spec i {
    margin-right: 5px;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(142, 67, 231, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 67, 231, 0.3);
    text-decoration: none;
}

/* 价格部分 */
.price-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.price-table {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

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

.price-header {
    background: var(--gradient-primary);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 80%);
    transform: rotate(30deg);
}

.price-name {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.price-value {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.9;
}

.price-body {
    padding: 30px 25px;
}

.price-feature {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.price-feature:last-child {
    border-bottom: none;
}

.price-feature i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.1rem;
}

.price-feature.not-included i {
    color: #dc3545;
}

/* 客户评价部分 */
.testimonial-section {
    background-color: #fff;
    position: relative;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(248,249,250,0.8) 0%, rgba(248,249,250,0) 100%);
    pointer-events: none;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.testimonial-quote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 50px;
    color: var(--primary);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1.1rem;
}

.testimonial-stars {
    color: #ffc107;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* CTA部分 */
.cta-section {
    background: var(--gradient-primary);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/logo.e25778de64f1.png");
    opacity: 0.05;
    z-index: 0;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    color: var(--primary-dark);
    text-decoration: none;
}

/* 动画 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
} 

.modal-backdrop{
    z-index: auto;
}