        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #C41230;
            --primary-dark: #9A0D26;
            --primary-light: #FF2E4D;
            --gold: #D4A574;
            --gold-light: #E8C9A0;
            --dark: #1A1A1A;
            --light: #F8F5F0;
            --white: #FFFFFF;
            --gray: #666666;
            --light-gray: #E5E5E5;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* 滚动条美化 */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* 导航栏 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: url('images/logo.jpg') center/cover no-repeat;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(196, 18, 48, 0.3);
        }

        .logo-text {
            font-family: 'Noto Serif SC', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
        }

        .logo-sub {
            font-size: 12px;
            color: var(--gold);
            letter-spacing: 4px;
            margin-top: -5px;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(196, 18, 48, 0.3);
        }

        .nav-phone:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 18, 48, 0.4);
        }

        /* 首页Banner */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(196, 18, 48, 0.7) 100%),
                        url('images/首页背景.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(212, 165, 116, 0.2);
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 14px;
            letter-spacing: 4px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(212, 165, 116, 0.4); }
            50% { box-shadow: 0 0 0 15px rgba(212, 165, 116, 0); }
        }

        .hero-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 80px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(196, 18, 48, 0.3) 100%),
                        url('images/首页背景.jpg') center/cover no-repeat;
            -webkit-background-clip: text;
            background-clip: text;
            padding: 20px 40px;
            border-radius: 20px;
            display: inline-block;
        }

        .hero-title span {
            color: var(--gold);
        }

        .hero-subtitle {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            font-weight: 300;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 18px 45px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            letter-spacing: 2px;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            box-shadow: 0 8px 25px rgba(196, 18, 48, 0.4);
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(196, 18, 48, 0.5);
        }

        .hero-btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            border: 2px solid var(--gold);
            backdrop-filter: blur(10px);
        }

        .hero-btn-secondary:hover {
            background: var(--gold);
            color: var(--dark);
            border-color: var(--gold);
        }

        /* 滚动指示器 */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s ease-in-out infinite;
            z-index: 2;
        }

        .scroll-indicator a {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--gold);
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .scroll-indicator .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid var(--gold);
            border-radius: 20px;
            margin-bottom: 10px;
            position: relative;
        }

        .scroll-indicator .wheel {
            width: 4px;
            height: 10px;
            background: var(--gold);
            border-radius: 2px;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        @keyframes scroll {
            0% { opacity: 1; top: 10px; }
            100% { opacity: 0; top: 25px; }
        }

        /* 通用Section样式 */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(196, 18, 48, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            letter-spacing: 3px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        /* 品牌理念 */
        .about {
            background: var(--white);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-inner {
            border-radius: 20px;
            height: 500px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-image-inner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .about-image-inner:hover img {
            transform: scale(1.05);
        }

        .about-text h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 25px;
        }

        .about-text h3 span {
            color: var(--primary);
        }

        .about-text p {
            font-size: 16px;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.9;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: var(--light);
            border-radius: 15px;
            transition: all 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-family: 'Noto Serif SC', serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--gray);
            letter-spacing: 1px;
        }

        /* 品牌历程时间线 */
        .timeline {
            background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--gold) 0%, var(--primary) 100%);
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50px;
            position: relative;
            margin-bottom: 60px;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            right: -10px;
            top: 20px;
            width: 24px;
            height: 24px;
            background: var(--primary);
            border: 4px solid var(--gold);
            border-radius: 50%;
            z-index: 2;
        }

        .timeline-item:nth-child(even)::before {
            right: auto;
            left: -10px;
        }

        .timeline-content {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            max-width: 420px;
            transition: all 0.3s;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(196, 18, 48, 0.15);
        }

        .timeline-year {
            font-family: 'Noto Serif SC', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .timeline-desc {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* 品牌特色 */
        .features {
            background: var(--dark);
            color: var(--white);
        }

        .features .section-title {
            color: var(--white);
        }

        .features .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }

        .feature-card:hover::before {
            opacity: 0.1;
        }

        .feature-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            position: relative;
            z-index: 2;
            overflow: hidden;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .feature-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        /* 菜品展示 */
        .menu {
            background: var(--light);
        }

        .menu-category-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .menu-tab {
            padding: 12px 35px;
            background: var(--white);
            border: 2px solid var(--light-gray);
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            color: var(--gray);
            cursor: pointer;
            transition: all 0.3s;
        }

        .menu-tab.active,
        .menu-tab:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .menu-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
            cursor: pointer;
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(196, 18, 48, 0.15);
        }

        .menu-card-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .menu-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .menu-card:hover .menu-card-image img {
            transform: scale(1.1);
        }

        .menu-card-content {
            padding: 25px;
        }

        .menu-card-tag {
            display: inline-block;
            background: rgba(196, 18, 48, 0.1);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .menu-card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .menu-card-desc {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* 牛肉部位 */
        .beef {
            background: var(--white);
        }

        .beef-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
        }

        .cut-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s;
            position: relative;
        }

        .cut-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(196, 18, 48, 0.15);
        }

        .cut-image {
            height: 180px;
            position: relative;
            overflow: hidden;
        }

        .cut-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .cut-card:hover .cut-image img {
            transform: scale(1.1);
        }

        .cut-content {
            padding: 20px;
            text-align: center;
        }

        .cut-name {
            font-family: 'Noto Serif SC', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .cut-desc {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* 门店地图 */
        .stores {
            background: linear-gradient(180deg, var(--dark) 0%, var(--primary-dark) 100%);
            color: var(--white);
        }

        .stores .section-title {
            color: var(--white);
        }

        .stores .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .stores-container {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 50px;
            align-items: center;
        }

        .map-container {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }

        #mapContainer {
            border-radius: 15px;
        }

        .store-info-panel {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            color: var(--dark);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .store-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .store-name {
            font-family: 'Noto Serif SC', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .store-address {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .store-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .store-hours {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray);
            margin-bottom: 25px;
            font-size: 14px;
        }

        .store-features {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: var(--light);
            color: var(--gray);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
        }

        .store-tip {
            margin-top: 30px;
            padding: 15px;
            background: rgba(212, 165, 116, 0.15);
            border-left: 3px solid var(--gold);
            border-radius: 0 10px 10px 0;
            font-size: 13px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* 品牌赋能 */
        .empowerment {
            background: var(--white);
        }

        .empowerment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .empowerment-card {
            background: var(--light);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .empowerment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
        }

        .empowerment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(196, 18, 48, 0.15);
        }

        .empowerment-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(196, 18, 48, 0.3);
        }

        .empowerment-title {
            font-family: 'Noto Serif SC', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .empowerment-desc {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .empowerment-list {
            text-align: left;
        }

        .empowerment-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--gray);
        }

        .empowerment-list li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
        }

        /* 企业动态 */
        .news {
            background: var(--light);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s;
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(196, 18, 48, 0.15);
        }

        .news-card-image {
            height: 200px;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .news-card-content {
            padding: 30px;
        }

        .news-card-date {
            font-size: 13px;
            color: var(--gold);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .news-card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .news-card-excerpt {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .news-card-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }

        .news-card-link:hover {
            gap: 10px;
        }

        /* 加盟优势 */
        .franchise {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 120px 0;
        }

        .franchise .section-title {
            color: var(--white);
        }

        .franchise .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .franchise-stats {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin: 80px 0;
        }

        .franchise-stat {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: all 0.4s;
        }

        .franchise-stat:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.08);
        }

        .franchise-stat-number {
            font-family: 'Noto Serif SC', serif;
            font-size: 56px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 10px;
        }

        .franchise-stat-label {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 1px;
        }

        .franchise-cta {
            text-align: center;
            margin-top: 60px;
        }

        .franchise-phone {
            font-family: 'Noto Serif SC', serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .franchise-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: var(--white);
            padding: 20px 60px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 10px 40px rgba(196, 18, 48, 0.4);
            letter-spacing: 2px;
        }

        .franchise-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(196, 18, 48, 0.5);
        }

        /* 联系我们 */
        .contact {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info {
            padding: 40px;
        }

        .contact-info h3 {
            font-family: 'Noto Serif SC', serif;
            font-size: 32px;
            color: var(--dark);
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .contact-details p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.8;
        }

        .contact-form {
            background: var(--light);
            border-radius: 20px;
            padding: 50px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 15px;
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--light-gray);
            border-radius: 10px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(196, 18, 48, 0.1);
        }

        .form-group textarea {
            height: 150px;
            resize: none;
        }

        .form-submit {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border: none;
            padding: 18px 50px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 1px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(196, 18, 48, 0.3);
        }

        /* 页脚 */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            margin-bottom: 25px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-nav h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--gold);
        }

        .footer-nav ul {
            list-style: none;
        }

        .footer-nav li {
            margin-bottom: 12px;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .footer-nav a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-bottom a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .features-grid,
            .menu-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .beef-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }

            .hero-title {
                font-size: 56px;
            }

            .about-content,
            .stores-container,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .features-grid,
            .menu-grid,
            .news-grid,
            .empowerment-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .beef-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .franchise-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar-container {
                padding: 0 20px;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            section {
                padding: 60px 0;
            }

            .section-container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 32px;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 60px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .timeline-item::before,
            .timeline-item:nth-child(even)::before {
                left: 10px;
                right: auto;
            }

            .timeline-content {
                max-width: 100%;
            }

            .features-grid,
            .menu-grid,
            .beef-grid,
            .news-grid,
            .empowerment-grid {
                grid-template-columns: 1fr;
            }

            .franchise-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .store-info-panel {
                padding: 30px 20px;
            }

            .map-container {
                padding: 20px;
            }
        }

        /* 动画效果 */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
