/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #00ccff;
    --accent-color: #9933ff;
    --dark-color: #0a192f;
    --light-color: #f0f4f8;
    --text-color: #333;
    --text-light: #64748b;
    --text-lighter: #a0aec0;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 102, 204, 0.2);
    --shadow-md: 0 10px 30px rgba(0, 102, 204, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 102, 204, 0.2);
    --glow-sm: 0 0 10px rgba(0, 204, 255, 0.5);
    --glow-md: 0 0 20px rgba(0, 204, 255, 0.6);
    --glow-lg: 0 0 30px rgba(0, 204, 255, 0.7);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 204, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(153, 51, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 204, 255, 0.3);
    backdrop-filter: blur(10px);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    animation: glow 3s ease-in-out infinite;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 25, 47, 0.95);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.2);
    border-bottom: 1px solid rgba(0, 204, 255, 0.4);
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav li {
    margin-left: 30px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 12px;
    border-radius: 8px;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav a:hover::before {
    left: 100%;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    box-shadow: var(--glow-sm);
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
    background: rgba(0, 204, 255, 0.1);
}

.admin-link {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(153, 51, 255, 0.2));
    padding: 10px 20px;
    border-radius: 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 204, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.admin-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.admin-link:hover::before {
    left: 100%;
}

.admin-link:hover {
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.3), rgba(153, 51, 255, 0.3));
    transform: translateY(-2px);
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.5);
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 204, 255, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 204, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(153, 51, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.2) 0%, rgba(153, 51, 255, 0.1) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
    box-shadow: var(--glow-lg);
}

/* 网格背景 */
.hero .grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 204, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 204, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

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

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 204, 255, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
    background: linear-gradient(90deg, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 24px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 60px 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.1), rgba(153, 51, 255, 0.1));
    padding: 30px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 204, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.2), rgba(153, 51, 255, 0.2));
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.5);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
    background: linear-gradient(90deg, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.3);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 15px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--glow-md);
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-lg);
    border: 1px solid rgba(0, 204, 255, 0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}

/* 服务项目 */
.services {
    padding: 120px 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-bottom: 24px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-title p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 204, 255, 0.2);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    box-shadow: var(--glow-sm);
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::after {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
}

.service-item:hover .service-image {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 204, 255, 0.2));
    box-shadow: var(--glow-md);
}

.service-image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: var(--transition);
    display: inline-block;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(66, 153, 225, 0.1));
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.2), rgba(66, 153, 225, 0.2));
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: bold;
    transition: var(--transition);
}

.service-item:hover h3 {
    color: var(--primary-color);
}

.service-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
    transition: var(--transition);
}

.service-item:hover p {
    color: var(--text-color);
}

/* 关于我们 */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}

.about-text {
    flex: 1;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 204, 255, 0.2);
    overflow: hidden;
}

.about-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.about-text:hover {
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: var(--glow-sm);
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--dark-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    transition: var(--transition);
}

.about-text:hover p {
    color: var(--text-color);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    z-index: -1;
    transition: var(--transition);
    box-shadow: var(--glow-md);
}

.about-image:hover::before {
    transform: scale(1.05);
    box-shadow: var(--glow-lg);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.about-image:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: var(--glow-md);
}

/* 宠物管理 */
.pet-management {
    padding: 120px 0;
    background: var(--light-color);
}

.pet-features {
    margin-top: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 204, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.pet-management-mode {
    margin-top: 100px;
}

.mode-content {
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.mode-text {
    flex: 1;
    min-width: 300px;
}

.mode-text h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-weight: bold;
}

.mode-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.mode-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.mode-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mode-text li div {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.mode-text li span {
    color: var(--text-light);
    font-size: 16px;
}

.mode-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.mode-image div {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.mode-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.mode-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--glow-md);
}

.mode-image div::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: 0;
    opacity: 0.2;
    box-shadow: var(--glow-md);
}

.mode-image div::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    z-index: 0;
    opacity: 0.1;
    box-shadow: var(--glow-lg);
}

.pet-services {
    margin-top: 100px;
}

.pet-achievements {
    margin-top: 100px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.achievement-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 204, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.achievement-item:hover::before {
    left: 100%;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.achievement-item div {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-item p {
    color: var(--text-light);
    font-size: 18px;
}

/* 客户评价 */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 204, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.testimonial-item:hover::before {
    left: 100%;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.testimonial-item div:first-child {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.testimonial-item div:last-child {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-item div:last-child div:first-child {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.testimonial-item h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-item div:last-child p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* 联系我们 */
.contact {
    padding: 120px 0;
    background: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 32px;
    color: var(--dark-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 204, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.contact-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 255, 0.1));
    padding: 15px;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 204, 255, 0.2));
    box-shadow: var(--glow-md);
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: bold;
    transition: var(--transition);
}

.contact-item:hover h3 {
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.contact-item:hover p {
    color: var(--text-color);
}

.contact-form {
    flex: 1;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 204, 255, 0.2);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: var(--glow-sm);
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-form:hover::after {
    left: 100%;
}

.contact-form:hover {
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-weight: bold;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 204, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 204, 255, 0.2), var(--glow-sm);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

/* 地图 */
.map-section {
    margin-top: 60px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    border: 1px solid rgba(0, 204, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 204, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.map-container:hover::before {
    left: 100%;
}

.map-container:hover {
    box-shadow: var(--glow-md);
    border: 1px solid rgba(0, 204, 255, 0.4);
}

.map-container div:first-child {
    font-size: 64px;
    margin-bottom: 30px;
}

.map-container h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.map-container p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}

.map-container div:last-child {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.map-container a {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
}

.map-container a:first-child {
    background: var(--primary-color);
    color: white;
}

.map-container a:last-child {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.map-container a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 底部 */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a2b4a 100%);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 204, 255, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: var(--glow-md);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 204, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(153, 51, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-item h3 {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.footer-item p {
    line-height: 1.8;
    color: var(--text-lighter);
    font-size: 16px;
    transition: var(--transition);
}

.footer-item:hover p {
    color: var(--accent-color);
}

.footer-item a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.footer-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-item a:hover {
    color: var(--accent-color);
}

.footer-item a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    color: var(--text-lighter);
    text-align: center;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.footer-bottom:hover {
    color: var(--accent-color);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-item {
        padding: 25px 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .about-text {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 10px 0;
    }
    
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav li {
        margin-left: 0;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        width: 80%;
        max-width: 300px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .services,
    .about,
    .contact,
    .pet-management,
    .testimonials {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .service-item {
        padding: 40px 20px;
    }
    
    .about-text {
        padding: 20px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动动画 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 语言选择器 */
.language-selector select {
    padding: 8px 12px;
    border: 1px solid rgba(0, 204, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.language-selector select:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--glow-sm);
    background: rgba(255, 255, 255, 0.15);
}

.language-selector select option {
    background: var(--dark-color);
    color: var(--white);
}
