/* 主页样式 - zhuye.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::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;
}

/* 添加钥匙装饰 */
.hero-key-icon {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 1.5rem;
    opacity: 0.12;
    animation: float 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 1;
}

/* 添加装饰粒子 */
.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: 15%;
    right: 10%;
    font-size: 1.2rem;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}

.hero-particles::after {
    content: '🌟';
    position: absolute;
    bottom: 25%;
    left: 8%;
    font-size: 1rem;
    opacity: 0.1;
    animation: float 10s ease-in-out infinite reverse;
}

.price-table-wrap::after {
    content: '🚘';
    position: absolute;
    bottom: 10%;
    right: 10%;
    font-size: 1.8rem;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

/* 添加页面加载动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

@keyframes drive {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateX(calc(100vw + 100px));
        opacity: 0;
    }
}

@keyframes driveReverse {
    0% {
        transform: translateX(calc(100vw + 100px));
        opacity: 0;
    }
    10% {
        opacity: 0.08;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateX(-100px);
        opacity: 0;
    }
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0) translateY(0);
    }
    25% {
        opacity: 0.8;
        transform: translateX(2px) translateY(-1px);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-1px) translateY(2px);
    }
    75% {
        opacity: 0.9;
        transform: translateX(1px) translateY(-2px);
    }
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.002);
    }
}

.hero-text-wrap {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: float 6s ease-in-out infinite;
}

.hero-subtitle {
    animation: pulse 4s ease-in-out infinite;
}

.price-table-wrap {
    animation: fadeInScale 0.6s ease-out 0.2s both;
}

/* Hero 区域样式 */
.hero-img-wrap {
    width: 100%;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.hero-img {
    width: 100%;
    max-width: 1920px;
    height: 850px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px 0 rgba(33,150,243,0.13);
    object-fit: cover;
    display: block;
    margin: 0;
}

@media (max-width: 991.98px) {
    .hero-img {
        border-radius: 0 0 14px 14px;
    }
}

.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;
}

.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;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.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;
}

@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; }
    .price-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
}

/* 价格表格样式 */
.price-table-wrap {
    width: 100%;
    max-width: 1050px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto 40px auto;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(247,250,252,0.95) 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(52,152,219,0.15);
    border: 0;
    position: relative;
    overflow: hidden;
}

.price-table-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52,152,219,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46,125,50,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(149,165,166,0.03) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.price-table-wrap > * {
    position: relative;
    z-index: 1;
}

.price-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
    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;
    position: relative;
    z-index: 10;
    text-shadow: none;
}

.price-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(52,152,219,0.12);
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto 18px auto;
    font-size: 1rem;
    border: 1px solid rgba(52,152,219,0.1);
    position: relative;
    z-index: 10;
}

.price-table th, .price-table td {
    border: 1px solid #e3eaf2;
    padding: 8px 4px;
    transition: all 0.2s ease;
    font-weight: 600;
}

.price-table tr:hover {
    background: rgba(102,126,234,0.03);
    transform: scale(1.001);
}

.price-table th {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.price-table .center {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.price-table .left {
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

.price-table input[type="radio"] {
    margin-right: 3px;
}

.price-table label {
    white-space: nowrap;
    margin-right: 8px;
    font-weight: 600;
}

.price-table input[type="date"],
.price-table input[type="time"],
.price-table input[type="number"],
.price-table select {
    margin-right: 4px;
    padding: 4px 6px;
    border: 1px solid #bcdffb;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    background: #fafbfc;
}

.price-table input[type="date"]:focus,
.price-table input[type="time"]:focus,
.price-table input[type="number"]:focus,
.price-table select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.15);
    background: #fff;
}

.price-table .price-desc {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    white-space: pre-line;
    font-weight: 600;
}

.expect-price {
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 800;
    text-align: center;
}

.price-btns {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    position: relative;
    z-index: 10;
}

.btn-main, .btn-sub {
    padding: 0.7em 2.2em;
    font-size: 1.13rem;
    border-radius: 2rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.btn-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.btn-main:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

.btn-sub {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-sub:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.btn-sub:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

@media (max-width: 900px) {
    .price-table { font-size: 0.95rem; }
    .price-table th, .price-table td { padding: 6px 3px; }
}

@media (max-width: 600px) {
    .price-table { font-size: 0.88rem; }
    .price-table th, .price-table td { padding: 4px 2px; }
    .price-btns { flex-direction: column; gap: 12px; }
}

/* 美化页尾样式 */
.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;
    }
} 