/* 预约确认页面样式 - confirmation/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样式 - 与home.html保持一致 */
.hero-text-wrap {
    position: relative;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(39, 174, 96, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    overflow: hidden;
    z-index: 10;
}

.hero-text-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(149, 165, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.hero-text-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.05), transparent);
    transition: left 0.6s;
}

.hero-text-wrap:hover::after {
    left: 100%;
}

.hero-text-wrap > * {
    position: relative;
    z-index: 2;
}

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

.hero-particles::before,
.hero-particles::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0.6;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.hero-key-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: rotate 4s linear infinite;
    display: inline-block;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3498db, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-desc {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-contact {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.hero-contact span {
    color: #3498db;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

/* 确认预约内容样式 */
.confirmation-content {
    position: relative;
    z-index: 10;
}

.content-header {
    margin-bottom: 3rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3498db, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* 搜索功能样式 */
.search-section {
    margin-bottom: 3rem;
}

.search-form-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.search-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.search-form-wrap:hover::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.15) 0%, transparent 50%);
}

.search-form {
    position: relative;
    z-index: 2;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-align: center;
}

.form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(52, 152, 219, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #2c3e50;
    text-align: center;
}

.form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
    transform: scale(1.02);
}

.form-control::placeholder {
    color: #7f8c8d;
    opacity: 0.7;
    text-align: center;
}

.search-actions {
    margin-top: 2rem;
}

.btn-search, .btn-reset {
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-search {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-search:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-reset {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

.btn-reset:hover {
    background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(149, 165, 166, 0.4);
}

/* 预约表格样式 */
.reservation-table-section {
    margin-top: 3rem;
}

.table-wrap {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.table-hint {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(39, 174, 96, 0.1));
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.table-hint:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.15), rgba(39, 174, 96, 0.15));
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
}

.table-hint i {
    color: #3498db;
    font-size: 1rem;
}

.table-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.reservation-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 2;
}

.reservation-table th {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    position: relative;
}

.reservation-table th:first-child {
    border-top-left-radius: 12px;
}

.reservation-table th:last-child {
    border-top-right-radius: 12px;
}

.reservation-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.reservation-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
}

.reservation-table tr {
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservation-table tr:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reservation-table tr:hover td {
    background: rgba(52, 152, 219, 0.1);
    transform: scale(1.02);
}

.reservation-table tr:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.reservation-table tr:last-child td {
    border-bottom: none;
}

.no-data {
    color: #7f8c8d;
    font-style: italic;
}

.no-data td {
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.05);
}

/* 加载状态样式 */
.loading td {
    padding: 2rem !important;
    text-align: center;
}

.loading .spinner-border {
    width: 2rem;
    height: 2rem;
}

.loading .mt-2 {
    margin-top: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

/* 状态徽章样式 */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.status-badge:hover::before {
    left: 100%;
}

.status-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* 예약확정 - 绿色渐变 */
.status-confirmed {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.status-confirmed:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00b894, #00a085);
}

/* 예약대기 - 橙色渐变 */
.status-pending {
    background: linear-gradient(135deg, #ff9f43, #f39c12);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
    border: 1px solid rgba(255, 159, 67, 0.2);
}

.status-pending:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* 예약취소 - 红色渐变 */
.status-cancelled {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.status-cancelled:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ee5a52, #d63031);
}

/* 서비스완료 - 紫色渐变 */
.status-completed {
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    color: white;
    box-shadow: 0 4px 15px rgba(162, 155, 254, 0.3);
    border: 1px solid rgba(162, 155, 254, 0.2);
}

.status-completed:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(162, 155, 254, 0.4);
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4);
}

/* 서비스중 - 蓝色渐变 */
.status-service {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
    border: 1px solid rgba(116, 185, 255, 0.2);
}

.status-service:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(116, 185, 255, 0.4);
    background: linear-gradient(135deg, #0984e3, #0652dd);
}

/* 隐私处理样式 */
.masked-text {
    color: #6c757d;
}

/* 隐私提示样式 */
.privacy-hint {
    font-size: 0.75rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 4px;
    opacity: 0.8;
}

/* 分页样式 */
.pagination-section {
    margin-top: 2rem;
}

.pagination {
    gap: 0.5rem;
}

.page-link {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
    border: 1px solid rgba(52, 152, 219, 0.2);
    color: #3498db;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-color: #3498db;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-color: #3498db;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.page-item.disabled .page-link {
    background: rgba(149, 165, 166, 0.1);
    border-color: rgba(149, 165, 166, 0.2);
    color: #7f8c8d;
    cursor: not-allowed;
}

/* 动画效果 */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes drive {
    0% { left: -50px; }
    100% { left: calc(100% + 50px); }
}

@keyframes driveReverse {
    0% { right: -50px; }
    100% { right: calc(100% + 50px); }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-title {
        font-size: 2rem;
    }
    
    .content-subtitle {
        font-size: 1.5rem;
    }
    
    .search-form-wrap {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .table-hint {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .table-wrap {
        padding: 1rem;
        margin: 0 1rem;
        overflow-x: auto;
    }
    
    .reservation-table {
        min-width: 600px;
    }
    
    .reservation-table th,
    .reservation-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .btn-search, .btn-reset {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }
    
    .status-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-subtitle {
        font-size: 1.3rem;
    }
    
    .search-form-wrap {
        padding: 1rem;
    }
    
    .table-wrap {
        padding: 0.5rem;
    }
    
    .reservation-table th,
    .reservation-table td {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }
    
    .btn-search, .btn-reset {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 0.25rem;
    }
    
    .status-badge {
        padding: 0.35rem 0.8rem;
        font-size: 0.75rem;
        border-radius: 18px;
    }
}

/* hero-text-wrap响应式设计 */
@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; }
}

/* 美化页尾样式 - 与home.html保持一致 */
.footer-beautiful {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: #ffffff;
    padding: 2.5rem 0 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-beautiful::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(102,126,234,0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(118,75,162,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(159,122,234,0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><defs><pattern id="footer-parking" width="40" height="30" patternUnits="userSpaceOnUse"><rect x="3" y="8" width="12" height="6" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3" rx="1"/><text x="9" y="12.5" text-anchor="middle" font-family="Arial" font-size="3" fill="rgba(255,255,255,0.03)">P</text><circle cx="6" cy="18" r="0.8" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.2"/><circle cx="12" cy="18" r="0.8" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.2"/><path d="M20 10 L35 10" stroke="rgba(255,255,255,0.015)" stroke-width="0.5" stroke-dasharray="2,2"/></pattern></defs><rect width="200" height="100" fill="url(%23footer-parking)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

.footer-beautiful > * {
    position: relative;
    z-index: 10;
}

.footer-beautiful::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #9f7aea, #764ba2, #667eea);
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.info-item strong {
    color: #ffffff;
    font-weight: 600;
}

.info-item:hover {
    color: #ffffff;
}

.separator {
    color: #667eea;
    font-weight: 600;
    margin: 0 0.3rem;
    opacity: 0.8;
}

.contact-phone {
    color: #9f7aea !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(159, 122, 234, 0.3);
    transition: all 0.3s ease;
}

.contact-phone:hover {
    color: #b794f4 !important;
    text-shadow: 0 0 15px rgba(159, 122, 234, 0.5);
    transform: scale(1.05);
}

.footer-divider {
    width: 80%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin: 1.5rem auto;
    opacity: 0.6;
}

.footer-copyright {
    margin-top: 1rem;
}

.footer-copyright p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .footer-beautiful {
        padding: 2rem 0 1rem 0;
    }
    
    .info-row {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.9rem;
    }
    
    .separator {
        display: none;
    }
    
    .info-item {
        margin-bottom: 0.2rem;
    }
}

@media (max-width: 480px) {
    .footer-beautiful {
        padding: 1.5rem 0 1rem 0;
    }
    
    .info-row {
        font-size: 0.85rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
} 