/* ============================================================
   家家好生活 - 响应式企业官网样式
   主色：#FF8C00  辅色：#FF6B35 / #4A90D9
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF8C00;
    --primary-light: #FFA940;
    --primary-dark: #E07800;
    --secondary: #FF6B35;
    --accent: #4A90D9;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg: #FFFFFF;
    --bg-light: #FFF8F0;
    --bg-gray: #F5F5F5;
    --border: #E8E8E8;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 6px 24px rgba(255,140,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,140,0,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-block {
    width: 100%;
}

.btn-miniapp {
    background: linear-gradient(135deg, #07C160, #06AD56);
    color: #fff;
    font-size: 14px;
    padding: 10px 20px;
}
.btn-miniapp:hover {
    background: linear-gradient(135deg, #06AD56, #059648);
    transform: translateY(-1px);
}

/* --- Section Common --- */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 12px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 48px;
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}
.logo-img {
    height: 36px;
    width: auto;
}
.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-miniapp-btn { display: flex; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, #FFF8F0 0%, #FFF3E6 30%, #FFFFFF 70%);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 64px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(255,248,240,0.85) 0%, rgba(255,243,230,0.80) 30%, rgba(255,255,255,0.75) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 20px;
}
.hero-title br {
    display: none;
}
.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}
.hero-subtitle span {
    white-space: nowrap;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-booking {
    background: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s;
}

.btn-booking:hover {
    background: #e85d2a;
    border-color: #e85d2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,.4);
}

/* ============================================================
   Booking Modal
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.55);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 40px 0;
}
.modal-overlay.open {
    display: flex;
}
.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    padding: 32px;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
    animation: modalIn .3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.modal-header h3 {
    font-size: 20px;
    color: #333;
}
.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.modal-close:hover {
    color: #333;
}

.booking-form .form-group {
    margin-bottom: 18px;
}
.booking-form label {
    display: block;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    font-weight: 500;
}
.booking-form .required {
    color: #e74c3c;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 2px rgba(255,140,0,.15);
}
.booking-form textarea {
    resize: vertical;
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.booking-form .btn-block {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    margin-top: 8px;
}
.form-success {
    text-align: center;
    padding: 40px 0;
    color: #2e7d32;
    font-size: 16px;
}
.form-success p:first-child {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 0 16px;
        padding: 24px;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Service Cards
   ============================================================ */
.services {
    background: var(--bg);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: default;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-light), #FFF3E6);
    position: relative;
}
/* CSS-drawn icons */
.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-repair::after {
    background: var(--primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-housekeeping::after {
    background: var(--primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 9v11H4V9h3V7c0-2.8 2.2-5 5-5s5 2.2 5 5v2h3zm-9-5c-1.7 0-3 1.3-3 3v2h6V7c0-1.7-1.3-3-3-3zm-4 7v7h10v-7H7z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 9v11H4V9h3V7c0-2.8 2.2-5 5-5s5 2.2 5 5v2h3zm-9-5c-1.7 0-3 1.3-3 3v2h6V7c0-1.7-1.3-3-3-3zm-4 7v7h10v-7H7z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-elderly::after {
    background: var(--primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm1-12h-2v3H8v2h3v3h2v-3h3v-2h-3V8z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm1-12h-2v3H8v2h3v3h2v-3h3v-2h-3V8z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-nanny::after {
    background: var(--primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4zm0 2c-2.7 0-8 1.3-8 4v2h16v-2c0-2.7-5.3-4-8-4z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4zm0 2c-2.7 0-8 1.3-8 4v2h16v-2c0-2.7-5.3-4-8-4z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.icon-escort::after {
    background: var(--primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.6 6.3c-.4-.4-1-.4-1.4 0l-5.7 5.7-2.6-2.6c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l3.3 3.3c.4.4 1 .4 1.4 0L17.6 7.7c.4-.4.4-1 0-1.4zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.6 6.3c-.4-.4-1-.4-1.4 0l-5.7 5.7-2.6-2.6c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4l3.3 3.3c.4.4 1 .4 1.4 0L17.6 7.7c.4-.4.4-1 0-1.4zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.service-tag {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus,
.stat-unit {
    font-size: 22px;
    font-weight: 600;
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ============================================================
   Culture
   ============================================================ */
.culture {
    background: var(--bg-light);
}

.culture-content {
    max-width: 900px;
    margin: 0 auto;
}

.culture-block {
    text-align: center;
    padding: 36px 24px;
    margin-bottom: 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.culture-block h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.culture-block p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
}

.vision p,
.mission p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-light);
}

.culture-values h3 {
    text-align: center;
    font-size: 20px;
    color: var(--text);
    margin-bottom: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.value-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.value-card h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================================
   About
   ============================================================ */
.about {
    background: var(--bg);
}

.about-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    line-height: 2;
}

.about-img {
    width: 100%;
    max-width: 700px;
    border-radius: var(--radius);
    margin: 0 auto 32px;
    display: block;
}

/* ============================================================
   Culture Team Image
   ============================================================ */
.culture-team-img {
    display: block;
    max-width: 100%;
    width: 600px;
    margin: 32px auto 0;
    border-radius: var(--radius);
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.35s ease;
}
.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-light), #FFF3E6);
    position: relative;
}

.icon-phone::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background-color: var(--primary);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.contact-phone {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 14px;
    color: var(--text-light);
}

.contact-btn {
    font-size: 14px;
    padding: 10px 24px;
}

.qrcode-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
    border-radius: var(--radius-sm);
}

/* ============================================================
   Mini Program Jump
   ============================================================ */
.miniapp-jump {
    background: linear-gradient(160deg, #FFF8F0 0%, #FFF3E6 100%);
    text-align: center;
}

.miniapp-desktop {
    display: block;
}

.miniapp-mobile {
    display: none;
}

.qrcode-placeholder {
    display: inline-block;
    padding: 16px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.miniapp-tip {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.miniapp-tip-mobile {
    font-size: 13px;
    color: var(--text-lighter);
    margin-top: 12px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
    background: #2D2D2D;
    color: rgba(255,255,255,0.7);
    padding-top: 56px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 8px;
}
.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}
.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}
.footer-bottom a:hover {
    color: var(--primary);
}

/* ============================================================
   Responsive - Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 26px;
    }

    /* --- Header --- */
    .nav-container {
        height: 56px;
    }

    .nav {
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        border-bottom: 1px solid var(--border);
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .nav-link {
        font-size: 16px;
    }

    .nav-miniapp-btn {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    /* --- Hero --- */
    .hero-title {
        font-size: 28px;
    }
    .hero-title br {
        display: inline;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
    }

    /* --- Service Cards --- */
    .service-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Stats --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-number {
        font-size: 32px;
    }

    /* --- Culture Values --- */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* --- Mini Program --- */
    .miniapp-desktop {
        display: none;
    }
    .miniapp-mobile {
        display: block;
    }

    /* --- Footer --- */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    /* --- Contact --- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* --- Culture Team --- */
    .culture-team-img {
        width: 100%;
    }

    /* --- About Image --- */
    .about-img {
        max-width: 100%;
    }

    /* --- Booking Form --- */
    .form-row {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   合作加盟页（cooperation.html）
   ============================================================ */
.coop-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFF9F2 60%, #FFFFFF 100%);
    text-align: center;
}

.coop-hero-title {
    font-size: 40px;
    color: #333;
    margin-bottom: 12px;
}

.coop-hero-subtitle {
    font-size: 18px;
    color: #FF6B2B;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.coop-hero-desc {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

.coop-mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.coop-mode-card {
    background: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.coop-mode-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(255, 107, 43, 0.14);
}

.coop-mode-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.coop-mode-tag {
    display: inline-block;
    font-size: 13px;
    color: #FF6B2B;
    background: #FFF3E0;
    border-radius: 20px;
    padding: 2px 12px;
    margin-bottom: 12px;
}

.coop-mode-card p:last-child {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.coop-support-section {
    background: #FFFBF7;
}

.coop-form-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.coop-form-wrap .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.coop-form-wrap .form-group label .required {
    color: #FF4D4F;
    margin-left: 2px;
}

.coop-form-wrap .form-tip {
    font-size: 13px;
    color: #999;
    margin-top: 10px;
    text-align: center;
}

.coop-form-wrap .form-actions {
    margin-top: 8px;
}

.coop-category-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.coop-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #e6e0da;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.coop-check:hover {
    border-color: #FF8C00;
    color: #FF6B2B;
}

.coop-check input {
    accent-color: #FF6B2B;
}

.coop-query {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px dashed #f0e0d2;
}

.coop-query h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.coop-query-result {
    margin-top: 20px;
    background: #FFF8F2;
    border: 1px solid #ffe3cd;
    border-radius: 10px;
    padding: 18px 22px;
    font-size: 15px;
    line-height: 2;
    color: #555;
}

.coop-query-result strong {
    color: #FF6B2B;
}

@media (max-width: 768px) {
    .coop-hero {
        padding: 120px 0 40px;
    }

    .coop-hero-title {
        font-size: 28px;
    }

    .coop-mode-grid {
        grid-template-columns: 1fr;
    }

    .coop-form-wrap .form-row {
        grid-template-columns: 1fr;
    }

    .coop-form-wrap .form-group input,
    .coop-form-wrap .form-group select,
    .coop-form-wrap .form-group textarea {
        width: 100%;
    }
}


/* --- 首页合作加盟简介区 --- */
.coop-brief {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF6ED 100%);
    text-align: center;
}

.coop-brief-text {
    max-width: 800px;
    margin: 0 auto 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

.coop-brief-actions {
    display: flex;
    justify-content: center;
}


/* ============================================================
   以下为线上官网原有补充样式（品牌招商 founder 等历史页面独立使用，
   本地仓库未收录），随本次合作加盟功能上线一并保留，避免历史页面样式丢失。
   ============================================================ */

.hero-highlight { color: #f48c06; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.positioning { background: #fafafa; }
.positioning-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.positioning-card {
    background: #fff; border-radius: 16px; padding: 36px 24px; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;
}
.positioning-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.pos-icon { font-size: 2.5rem; margin-bottom: 12px; }
.positioning-card h3 { font-size: 1.15rem; color: #1a1a1a; margin-bottom: 8px; }
.positioning-card p { font-size: 0.9rem; color: #777; line-height: 1.6; }
@media (max-width: 768px) {
  .positioning-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card-body { padding: 20px; }
.service-card-body h3 { font-size: 1.2rem; color: #1a1a1a; margin-bottom: 6px; }
.service-sub-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 40px; }
.service-sub-item { text-align: center; }
.service-sub-item img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; margin: 0 auto 8px; }
.service-sub-item span { font-size: 0.8rem; color: #555; }
.booking-cta { text-align: center; margin-top: 20px; }
@media (max-width: 768px) {
  .service-sub-grid { grid-template-columns: repeat(3, 1fr); }
}
.mall { background: #fafafa; }
.mall-intro { text-align: center; color: #666; margin-bottom: 40px; font-size: 0.95rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.mall-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.mall-card {
    background: #fff; border-radius: 12px; overflow: hidden; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: transform 0.3s; cursor: pointer;
}
.mall-card:hover { transform: translateY(-4px); }
.mall-card img { width: 100%; height: 180px; object-fit: cover; }
.mall-card span { display: block; padding: 12px; font-size: 0.9rem; color: #333; font-weight: 500; }
.mall-tagline { text-align: center; color: #e85d04; font-weight: 600; margin-bottom: 16px; }
.mall-cta { text-align: center; }
@media (max-width: 992px) {
  .mall-cards { grid-template-columns: repeat(2, 1fr); }
}
.souzj { background: #fff; }
.souzj-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.souzj-text p { margin-bottom: 20px; color: #555; line-height: 1.8; }
.souzj-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.souzj-cat { background: #fff7ed; border-radius: 12px; padding: 20px; border: 1px solid #fed7aa; }
.souzj-cat h4 { font-size: 1rem; color: #e85d04; margin-bottom: 6px; }
.souzj-cat p { font-size: 0.85rem; color: #777; margin: 0; }
.souzj-badge { background: #e85d04; color: #fff; padding: 10px 16px; border-radius: 8px; font-size: 0.9rem; display: inline-block; }
.souzj-image img { border-radius: 16px; }
@media (max-width: 768px) {
  .souzj-content { grid-template-columns: 1fr; }
  .souzj-cats { grid-template-columns: 1fr; }
}
.partner { background: #fafafa; }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.partner-advantage h3 { font-size: 1.3rem; margin-bottom: 20px; color: #1a1a1a; }
.partner-advantage ul { display: flex; flex-direction: column; gap: 14px; }
.partner-advantage li { padding-left: 24px; position: relative; color: #555; font-size: 0.95rem; line-height: 1.7; }
.partner-advantage li::before { content: '✓'; position: absolute; left: 0; color: #e85d04; font-weight: 700; }
.partner-form-box { background: #fff; border-radius: 16px; padding: 36px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.partner-form-box h3 { font-size: 1.2rem; margin-bottom: 16px; color: #1a1a1a; }
.category-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.category-tags span { background: #fff7ed; color: #e85d04; padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; border: 1px solid #fed7aa; }
.coop-modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.coop-mode { background: #f9fafb; border-radius: 10px; padding: 16px; text-align: center; }
.coop-mode h4 { font-size: 0.95rem; color: #1a1a1a; margin-bottom: 4px; }
.coop-mode p { font-size: 0.8rem; color: #888; }
.partner-contact { margin: 20px 0; padding: 16px; background: #fff7ed; border-radius: 10px; }
.partner-contact p { font-size: 0.9rem; color: #555; margin-bottom: 6px; }
@media (max-width: 768px) {
  .partner-grid { grid-template-columns: 1fr; }
  .coop-modes { grid-template-columns: 1fr; }
}
.culture-hero { text-align: center; margin-bottom: 48px; }
.culture-mission, .culture-vision { font-size: 1.15rem; color: #555; margin-bottom: 10px; }
.culture-mission strong, .culture-vision strong { color: #e85d04; }
.team-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.team-img { border-radius: 16px; }
.team-text h3 { font-size: 1.4rem; color: #1a1a1a; margin-bottom: 16px; }
.team-text p { color: #666; line-height: 1.8; }
@media (max-width: 768px) {
  .team-showcase { grid-template-columns: 1fr; }
}
.roadmap { background: #fafafa; }
.roadmap-timeline { max-width: 800px; margin: 0 auto; position: relative; }
.roadmap-timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, #e85d04, #f48c06); border-radius: 2px; }
.roadmap-item { display: flex; gap: 32px; margin-bottom: 40px; position: relative; }
.roadmap-dot { width: 28px; height: 28px; border-radius: 50%; background: #e85d04; flex-shrink: 0; position: relative; z-index: 1; border: 4px solid #fed7aa; }
.roadmap-dot.current { background: #f48c06; box-shadow: 0 0 0 6px rgba(232,93,4,0.2); }
.roadmap-content { background: #fff; border-radius: 12px; padding: 20px 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); flex: 1; }
.roadmap-content h4 { font-size: 1.05rem; color: #1a1a1a; margin-bottom: 6px; }
.roadmap-content p { font-size: 0.9rem; color: #777; }
.contact-info p { font-size: 1rem; color: #555; margin-bottom: 10px; }
.contact-qrcodes { display: flex; gap: 32px; justify-content: center; }
.qrcode-item { text-align: center; }
.qrcode-item img { width: 120px; height: 120px; border-radius: 12px; margin-bottom: 8px; }
.qrcode-item span { font-size: 0.85rem; color: #888; }
@media (max-width: 768px) {
  .contact-qrcodes { flex-wrap: wrap; }
}
.footer-brand .footer-logo { height: 36px; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; transition: 0.3s; }
.footer-col a:hover { color: #f48c06; }
