/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fcfcfc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 4rem 0;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0a0a0a;
    color: #fff;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #b71c1c;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b71c1c;
}

.btn-call {
    background: #b71c1c;
    color: #fff;
    padding: 8px 18px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-call:hover {
    background: #d32f2f;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1553621042-f6e147245754?auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 70px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-buttons a {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-primary { background: #b71c1c; color: #fff; border: 2px solid #b71c1c; }
.btn-primary:hover { background: #d32f2f; border-color: #d32f2f; }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background: #fff; color: #111; }

/* AYCE Banner */
.ayce-section { background: #b71c1c; color: white; padding: 1rem 0; }
.ayce-banner { text-align: center; border: 2px dashed #fff; padding: 30px; border-radius: 10px; background: rgba(0,0,0,0.2); }
.ayce-banner h2 { font-size: 2rem; margin-bottom: 10px; }
.ayce-banner .price { font-size: 3rem; font-weight: bold; color: #ffd700; margin-bottom: 5px; }

/* Location Section */
.location-section { background: #1a1a1a; color: #fff; }
.info-wrapper { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 40px; text-align: center; }
.info-block h2 { color: #b71c1c; margin-bottom: 20px; font-size: 1.8rem; }
.hours-grid p { margin-bottom: 15px; line-height: 1.4; }
.phone-large { font-size: 1.5rem !important; font-weight: bold; color: #ffd700; margin-top: 15px; }

/* Footer */
footer { background: #000; color: #777; text-align: center; padding: 20px 0; font-size: 0.8rem; }

/* --- 弹窗样式 --- */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex; justify-content: center; align-items: center;
    z-index: 99999;
}
.popup-content {
    background: white; padding: 40px; border-radius: 15px;
    max-width: 500px; width: 90%; text-align: center;
    border-top: 8px solid #b71c1c; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
}
.popup-badge {
    background: #b71c1c; color: white; padding: 4px 12px;
    border-radius: 20px; font-size: 0.8rem; font-weight: bold;
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
}
.popup-info { background: #f4f4f4; padding: 15px; margin: 20px 0; border-radius: 8px; font-weight: bold; color: #b71c1c; }
.btn-close {
    background: #b71c1c; color: white; border: none; padding: 12px;
    width: 100%; font-weight: bold; border-radius: 5px; cursor: pointer; transition: 0.3s;
}
.btn-close:hover { background: #000; }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; width: 100%; position: absolute; top: 60px; left: 0; background: #0a0a0a; flex-direction: column; }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 15px; border-bottom: 1px solid #222; }
    .menu-toggle { display: flex; flex-direction: column; cursor: pointer; padding: 5px; }
    .menu-toggle .bar { height: 3px; width: 25px; background: white; margin: 3px 0; }
    .contact-top { display: none; }
}