/* 预约页面样式 - yuyue/style.css */

/* 强制样式重置和背景设置 */
* {
    box-sizing: border-box;
}

html {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 100vh !important;
    height: 100% !important;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* 全局样式优化 */
body {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #455a64 50%, #546e7a 75%, #607d8b 100%) !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    scroll-behavior: smooth;
    color: #2d3748;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    padding: 0 !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(149, 165, 166, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="parking-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><rect width="40" height="40" fill="none"/><rect x="5" y="5" width="30" height="15" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5" rx="2"/><text x="20" y="15" text-anchor="middle" font-family="Arial" font-size="8" fill="rgba(255,255,255,0.03)">P</text><circle cx="10" cy="30" r="2" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3"/><circle cx="30" cy="30" r="2" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3"/></pattern></defs><rect width="200" height="200" fill="url(%23parking-pattern)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

/* 预约页面主样式 */

/* 背景装饰元素 */
.floating-car {
    position: fixed;
    top: 15%;
    right: 15%;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* 添加更多停车图标 */
.parking-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.parking-icons::before {
    content: '🅿️';
    position: absolute;
    top: 25%;
    left: 5%;
    font-size: 1.5rem;
    opacity: 0.08;
    animation: float 12s ease-in-out infinite;
}

.parking-icons::after {
    content: '🚙';
    position: absolute;
    bottom: 30%;
    right: 8%;
    font-size: 1.8rem;
    opacity: 0.08;
    animation: float 10s ease-in-out infinite reverse;
}

/* 添加道路线条背景 */
.road-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.02) 49%, rgba(255,255,255,0.02) 51%, transparent 52%),
        linear-gradient(0deg, transparent 48%, rgba(255,255,255,0.015) 49%, rgba(255,255,255,0.015) 51%, transparent 52%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -2;
    opacity: 0.3;
}

/* 添加更多停车相关装饰 */
.parking-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.parking-decorations::before {
    content: '🚕';
    position: absolute;
    top: 60%;
    left: 12%;
    font-size: 1.2rem;
    opacity: 0.06;
    animation: float 15s ease-in-out infinite;
}

.parking-decorations::after {
    content: '🚐';
    position: absolute;
    top: 40%;
    right: 25%;
    font-size: 1.4rem;
    opacity: 0.07;
    animation: float 9s ease-in-out infinite reverse;
}

/* 添加移动车辆动画 */
.moving-cars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.moving-cars::before {
    content: '🚗';
    position: absolute;
    top: 70%;
    font-size: 1.5rem;
    animation: drive 25s linear infinite;
    animation-delay: 0s;
}

.moving-cars::after {
    content: '🚙';
    position: absolute;
    top: 35%;
    font-size: 1.3rem;
    animation: driveReverse 30s linear infinite;
    animation-delay: 10s;
}

/* 导航栏样式 - 继承自公共样式 */

/* 英雄区域样式 */
.hero-text-wrap {
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(247,250,252,0.95) 50%, rgba(237,242,247,0.95) 100%),
        radial-gradient(circle at 20% 20%, rgba(52,152,219,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46,125,50,0.1) 0%, transparent 50%);
    text-align: center;
    padding: 80px 10px 60px 10px;
    margin: 20px auto;
    max-width: 1050px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(52,152,219,0.15),
        0 8px 32px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border-radius: 24px;
    border: 1px solid rgba(52,152,219,0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    cursor: default;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 25px 80px rgba(52,152,219,0.2),
        0 12px 40px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.9);
    border-color: rgba(52,152,219,0.3);
}

.hero-text-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(52,152,219,0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(46,125,50,0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(149,165,166,0.08) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%233498db" opacity="0.03"/><circle cx="12.5" cy="12.5" r="0.5" fill="%232c3e50" opacity="0.03"/><circle cx="37.5" cy="37.5" r="0.5" fill="%2327ae60" opacity="0.03"/><path d="M0 25 Q25 0 50 25 Q25 50 0 25" fill="none" stroke="%233498db" stroke-width="0.2" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.6;
    animation: heroShimmer 8s ease-in-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #27ae60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    text-shadow: none;
    animation: float 6s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    animation: pulse 4s ease-in-out infinite;
}

.hero-desc {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 10;
}

.hero-contact {
    font-size: 1.08rem;
    color: #3498db;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

.hero-contact span {
    font-size: 1.18rem;
    font-weight: 700;
    color: #2c3e50;
}

/* 英雄区域装饰元素 */
.hero-key-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-particles::before {
    content: '✨';
    position: absolute;
    top: 20%;
    left: 10%;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.hero-particles::after {
    content: '⭐';
    position: absolute;
    top: 60%;
    right: 15%;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: float 5s ease-in-out infinite reverse;
}

/* 添加边框发光效果 */
.hero-text-wrap::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(52,152,219,0.3) 0%, 
        rgba(46,125,50,0.3) 25%, 
        rgba(149,165,166,0.3) 50%, 
        rgba(52,152,219,0.3) 75%, 
        rgba(46,125,50,0.3) 100%);
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
    pointer-events: none;
}

/* 预约表单区域样式 */
.reservation-section {
    background: #f8f9fa;
    min-height: 60vh;
}

.reservation-form {
    padding: 20px 0;
}

.price-display {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.price-amount {
    color: #1976d2;
    font-weight: 700;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .hero-title { 
        font-size: 1.35rem; 
    }
    
    .hero-subtitle { 
        font-size: 1.08rem; 
    }
    
    .hero-desc { 
        font-size: 0.98rem; 
    }
    
    .hero-contact { 
        font-size: 0.98rem; 
    }
    
    .hero-contact span { 
        font-size: 1.08rem; 
    }
    
    .hero-text-wrap { 
        padding: 32px 4px 18px 4px; 
    }
    
    .reservation-form {
        padding: 10px 0;
    }
    
    .price-display {
        padding: 10px;
    }
}

/* 预约页面特定样式 */
.btn-primary {
    background-color: #1976d2;
    border-color: #1976d2;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1565c0;
    border-color: #1565c0;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
}

.btn-primary:disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    transform: none;
    box-shadow: none;
}

/* 加载动画 */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* 错误状态样式 */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes drive {
    0% {
        left: -10%;
    }
    100% {
        left: 110%;
    }
}

@keyframes driveReverse {
    0% {
        right: -10%;
    }
    100% {
        right: 110%;
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* 预约页面容器 */
.reservation-section {
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(247,250,252,0.95) 50%, rgba(237,242,247,0.95) 100%),
        radial-gradient(circle at 20% 20%, rgba(52,152,219,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(46,125,50,0.1) 0%, transparent 50%);
    min-height: 100vh;
    padding: 2rem 0;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(52,152,219,0.15),
        0 8px 32px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border-radius: 24px;
    border: 1px solid rgba(52,152,219,0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

/* 预约区域装饰效果 */
.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(52,152,219,0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(46,125,50,0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(149,165,166,0.08) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reservation-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%233498db" opacity="0.03"/><circle cx="12.5" cy="12.5" r="0.5" fill="%232c3e50" opacity="0.03"/><circle cx="37.5" cy="37.5" r="0.5" fill="%2327ae60" opacity="0.03"/><path d="M0 25 Q25 0 50 25 Q25 50 0 25" fill="none" stroke="%233498db" stroke-width="0.2" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23reservation-pattern)"/></svg>');
    opacity: 0.6;
    animation: heroShimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.reservation-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(52,152,219,0.3) 0%, 
        rgba(46,125,50,0.3) 25%, 
        rgba(149,165,166,0.3) 50%, 
        rgba(52,152,219,0.3) 75%, 
        rgba(46,125,50,0.3) 100%);
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 4s ease-in-out infinite;
    pointer-events: none;
}

/* 预约表单卡片 */
.reservation-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.reservation-card .card-header {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.reservation-card .card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.reservation-card .card-body {
    padding: 2rem;
}

/* 表单样式 */
.reservation-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.reservation-form .form-control,
.reservation-form .form-select {
    border: 2px solid #6c757d !important;
    border-radius: 8px !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
}

/* 提交按钮 */
.btn-submit {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1256a3, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .reservation-card .card-body {
        padding: 1rem;
    }
    
    .reservation-form .form-control,
    .reservation-form .form-select {
        font-size: 16px; /* 防止iOS缩放 */
    }
}

/* 预约页面样式 */

/* 头部文字样式 */
.reservation-header {
    margin-bottom: 2rem;
}

.reservation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.reservation-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* 价格表单样式 */
.price-table-wrap {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.price-table th,
.price-table td {
    padding: 1rem;
    border: 1px solid #e9ecef;
    vertical-align: middle;
}

.price-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    text-align: center;
}

.price-table td.center {
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    background: #f8f9fa;
    width: 25%;
}

.price-table td.left {
    text-align: left;
    width: 75%;
}

/* 表单控件样式 */
.price-table .form-control {
    border: 2px solid #6c757d !important;
    border-radius: 8px !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

.price-table .form-control:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    outline: none !important;
}

/* Placeholder样式 */
.price-table .form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
    font-size: 0.9rem;
}

.price-table .form-control:focus::placeholder {
    color: #6c757d;
    font-style: normal;
}

/* 电话输入框样式 */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-input {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* 电话输入框宽度调整 */
.phone-input[name="phone1"] {
    width: 80px;
    flex: none;
}

.phone-input[name="phone2"] {
    width: 100px;
    flex: none;
}

.phone-input[name="phone3"] {
    width: 100px;
    flex: none;
}

.phone-separator {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6c757d;
    user-select: none;
}

/* 日期时间选择器样式 */
.datetime-input-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.datetime-input-group input[type="date"] {
    width: 180px;
    flex: none;
    min-width: 180px;
}

.hour-select,
.minute-select {
    width: 100px;
    flex: none;
    text-align: center;
    border: 2px solid #6c757d !important;
    border-radius: 8px !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

.hour-select:focus,
.minute-select:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    outline: none !important;
}

.hour-select option:first-child,
.minute-select option:first-child {
    color: #adb5bd;
    font-style: italic;
}

.time-separator {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    user-select: none;
}

/* 单选按钮样式 */
.price-table label {
    display: inline-flex;
    align-items: center;
    margin-right: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
    padding: 0.5rem 1rem;
    border: 2px solid #6c757d;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: white;
    min-width: 120px;
    justify-content: center;
}

.price-table label:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.price-table input[type="radio"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
    accent-color: #667eea;
}

.price-table input[type="radio"]:checked + span {
    color: #667eea;
    font-weight: 600;
}

.price-table input[type="radio"]:checked ~ label {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* 价格显示样式 */
.expect-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* 按钮样式 */
.reservation-buttons {
    margin-top: 2rem;
}

.btn-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .reservation-title {
        font-size: 2rem;
    }
    
    .price-table-wrap {
        padding: 1rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .price-table td.center {
        width: 30%;
        font-size: 0.9rem;
    }
    
    .price-table td.left {
        width: 70%;
    }
    
    .phone-input-group {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .phone-separator {
        display: none;
    }
    
    /* 移动端电话输入框宽度调整 */
    .phone-input[name="phone1"],
    .phone-input[name="phone2"],
    .phone-input[name="phone3"] {
        width: 100%;
        flex: none;
    }
    
    .datetime-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .datetime-input-group input[type="date"],
    .hour-select,
    .minute-select {
        flex: none;
        width: 100%;
        min-width: auto;
    }
    
    .time-separator {
        display: none;
    }
    
    .btn-main {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    /* 移动端单选按钮样式 */
    .price-table label {
        min-width: auto;
        margin-bottom: 0.5rem;
        margin-right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* 表单验证样式 */
.form-control:invalid {
    border-color: #e74c3c;
}

.form-control:valid {
    border-color: #27ae60;
}

/* 加载状态 */
.btn-main:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 动画效果 */
.price-table-wrap {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 悬停效果 */
.price-table tr:hover {
    background: rgba(102, 126, 234, 0.05);
}

.price-table tr:hover td.center {
    background: rgba(102, 126, 234, 0.1);
} 

/* 个人隐私政策样式 */
.privacy-policy-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.privacy-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.privacy-subtitle {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin: 0;
    text-align: right;
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.privacy-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 20px;
}

.privacy-content::-webkit-scrollbar {
    width: 8px;
}

.privacy-content::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 4px;
}

.privacy-content::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

.privacy-content h4 {
    color: #2c3e50;
    font-size: 0.99rem;
    font-weight: 600;
    margin: 20px 0 10px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.privacy-content h4:first-child {
    margin-top: 0;
}

.privacy-content p {
    color: #34495e;
    font-size: 0.81rem;
    line-height: 1.6;
    margin: 8px 0;
    text-align: justify;
}

.privacy-agreement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.agreement-text {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
    flex: 1;
}

.agreement-checkbox {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.agreement-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #667eea;
}

.agreement-checkbox label {
    margin-left: 8px;
    font-size: 0.9rem;
    color: #7f8c8d;
    cursor: pointer;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .privacy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .privacy-title {
        font-size: 1.2rem;
    }
    
    .privacy-subtitle {
        font-size: 0.7rem;
        text-align: left;
        max-width: none;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .privacy-content {
        max-height: 150px;
        padding: 15px;
    }
    
    .privacy-content h4 {
        font-size: 0.9rem;
    }
    
    .privacy-content p {
        font-size: 0.765rem;
    }
    
    .privacy-agreement {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .agreement-text {
        font-size: 0.9rem;
    }
    
    .agreement-checkbox {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* 服务条款样式 */
.terms-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.terms-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.terms-subtitle {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin: 0;
    text-align: right;
    max-width: 350px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.terms-content {
    max-height: 200px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 20px;
}

.terms-content::-webkit-scrollbar {
    width: 8px;
}

.terms-content::-webkit-scrollbar-track {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 4px;
}

.terms-content::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 4px;
}

.terms-content::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

.terms-content h4 {
    color: #2c3e50;
    font-size: 1.08rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    text-align: center;
}

.terms-content h5 {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 15px 0 8px 0;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.terms-content h5:first-of-type {
    margin-top: 0;
}

.terms-content p {
    color: #34495e;
    font-size: 0.81rem;
    line-height: 1.6;
    margin: 6px 0;
    text-align: justify;
}

.terms-content p strong {
    color: #e74c3c;
    font-weight: 600;
}

.terms-agreement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* 服务条款响应式设计 */
@media (max-width: 768px) {
    .terms-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .terms-title {
        font-size: 1.2rem;
    }
    
    .terms-subtitle {
        font-size: 0.7rem;
        text-align: left;
        max-width: none;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
    
    .terms-content {
        max-height: 150px;
        padding: 15px;
    }
    
    .terms-content h4 {
        font-size: 0.99rem;
    }
    
    .terms-content h5 {
        font-size: 0.855rem;
    }
    
    .terms-content p {
        font-size: 0.765rem;
    }
    
    .terms-agreement {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .terms-agreement .agreement-text {
        font-size: 0.9rem;
    }
    
    .terms-agreement .agreement-checkbox {
        margin-left: 0;
        align-self: flex-end;
    }
}