/* 瑜享家官网样式 - 绿色主题 */

/* 颜色变量定义 */
:root {
    --primary-green: #2E8B57;      /* 海绿色 - 主色调 */
    --light-green: #90EE90;        /* 浅绿色 - 辅助色 */
    --sage-green: #9CAF88;         /* 鼠尾草绿 - 柔和色 */
    --forest-green: #228B22;       /* 森林绿 - 深色调 */
    --mint-green: #F0FFF0;         /* 薄荷绿 - 背景色 */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --shadow: rgba(46, 139, 87, 0.1);
}

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

/* 移动端菜单按钮 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* 首页横幅 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--mint-green) 0%, rgba(144, 238, 144, 0.3) 100%);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%232E8B57" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%232E8B57" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%232E8B57" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    z-index: 2;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    margin-bottom: 1rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.hero-description p {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-description p:nth-child(1) { animation-delay: 0.2s; }
.hero-description p:nth-child(2) { animation-delay: 0.4s; }
.hero-description p:nth-child(3) { animation-delay: 0.6s; }
.hero-description p:nth-child(4) { animation-delay: 0.8s; }

.no-sales-promise {
    margin: 0;
}

.promise-badge {
    background: rgba(46, 139, 87, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
    animation: pulse-glow 3s ease-in-out infinite;
}

.promise-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.promise-text strong {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.promise-text p {
    color: var(--forest-green);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
    }
    50% {
        box-shadow: 0 8px 35px rgba(46, 139, 87, 0.25);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.yoga-illustration {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.yoga-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 20px rgba(46, 139, 87, 0.2));
}

/* 浮动装饰元素 */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-around 8s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* 章节标题 */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sage-green);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.meaning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.meaning-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.meaning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
    background: var(--mint-green);
}

.card-icon {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: block;
}

.meaning-card h3 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.meaning-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* 课程服务部分 */
.courses {
    padding: 100px 0;
    background: var(--mint-green);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.2);
}

.course-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-card ul {
    list-style: none;
}

.course-card li {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.course-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* 招商加盟部分 */
.franchise {
    padding: 100px 0;
    background: var(--white);
}

.franchise-intro {
    margin-bottom: 4rem;
}

.franchise-content h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.business-model-highlight {
    background: linear-gradient(135deg, var(--mint-green) 0%, rgba(144, 238, 144, 0.3) 100%);
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.business-model-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), var(--sage-green), var(--primary-green));
    border-radius: 15px;
    z-index: -1;
    animation: border-glow 3s ease-in-out infinite;
}

.business-model-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--forest-green);
    font-weight: 500;
    line-height: 1.5;
}

.business-model-highlight strong {
    color: var(--primary-green);
    font-weight: 700;
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.franchise-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--mint-green);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-item h4 {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-item p {
    color: var(--gray);
    line-height: 1.6;
}

.franchise-process {
    margin-bottom: 4rem;
}

.franchise-process h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-item h4 {
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.franchise-requirements {
    margin-bottom: 4rem;
}

.franchise-requirements h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
    background: var(--mint-green);
}

.requirement-card h4 {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    color: var(--gray);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.requirement-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.franchise-contact {
    display: flex;
    justify-content: center;
}

.franchise-contact .contact-card {
    background: var(--mint-green);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--primary-green);
}

.franchise-contact h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.franchise-contact p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.method-icon {
    font-size: 2rem;
}

.contact-method strong {
    color: var(--forest-green);
    display: block;
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* 老师招聘部分 */
.careers {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
}

.careers-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.careers-intro h3 {
    font-size: 2rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.careers-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 职业发展路线样式 */
.career-path {
    margin-bottom: 4rem;
}

.path-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.path-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.path-header h4 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.path-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.6;
}

.job-positions {
    margin-bottom: 4rem;
}

.job-positions h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.position-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--primary-green);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.position-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 139, 87, 0.2);
}

.position-card h4,
.position-card h5 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* 管理路线卡片样式 */
.position-card.management {
    border-top: 4px solid #2c5530;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f0 100%);
}

.position-card.management h5 {
    color: #2c5530;
}

.position-card.management:hover {
    box-shadow: 0 15px 30px rgba(44, 85, 48, 0.2);
}

/* 技术路线卡片样式 */
.position-card.technical {
    border-top: 4px solid var(--sage-green);
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.position-card.technical h5 {
    color: var(--sage-green);
}

.position-card.technical:hover {
    box-shadow: 0 15px 30px rgba(106, 153, 78, 0.2);
}

.position-details p {
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-weight: 500;
}

.position-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.position-details li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.position-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.application-process {
    margin-bottom: 4rem;
}

.application-process h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sage-green);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.career-contact {
    display: flex;
    justify-content: center;
}

.career-contact .contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 15px 35px var(--shadow);
}

.career-contact h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.career-contact p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* 招聘部分联系信息样式 */
.career-contact .contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    gap: 1rem;
}

.career-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-icon {
    font-size: 2rem;
}

.career-contact .contact-item strong {
    color: var(--forest-green);
    display: block;
    margin-bottom: 0.3rem;
}

.career-contact .contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* 社群入口部分 */
.community {
    padding: 100px 0;
    background: var(--white);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.community-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.community-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background: var(--mint-green);
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--primary-green);
}

.qr-icon {
    font-size: 3rem;
}

.community-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.community-card p {
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.qr-text {
    font-size: 0.9rem;
    color: var(--sage-green) !important;
    font-style: italic;
}

/* 联系我们部分 */
.contact {
    padding: 100px 0;
    background: var(--mint-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info .contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info .contact-item strong {
    color: var(--forest-green);
    font-weight: 600;
}

.contact-info .contact-item span {
    color: var(--gray);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* 页脚 */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--light-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-brand p {
    color: #CCC;
    font-size: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.8;
}

.footer-links a:hover {
    color: var(--light-green);
}

.footer-contact p {
    color: #CCC;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 2rem;
    text-align: center;
    color: #ADB5BD;
}

/* 动画效果 */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-around {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-15px) translateX(10px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(5px) translateX(-10px) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-visual {
        min-height: 300px;
        order: -1;
    }
    
    .yoga-illustration {
        width: 200px;
        height: 200px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .meaning-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .promise-badge {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .promise-text strong {
        font-size: 1rem;
    }
    
    .promise-text p {
        font-size: 0.85rem;
    }
    
    .business-model-highlight {
        margin: 0 1rem 2rem;
        padding: 1rem;
    }
    
    .business-model-highlight p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .meaning-card,
    .community-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* 招商加盟移动端适配 */
    .franchise-advantages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-method {
        justify-content: center;
        text-align: center;
    }
    
    /* 职业发展路线移动端适配 */
    .path-header {
        padding: 1.5rem;
    }
    
    .path-icon {
        font-size: 2.5rem;
    }
    
    .path-header h4 {
        font-size: 1.5rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .position-card {
        padding: 2rem 1.5rem;
    }
    
    .position-card h5 {
        font-size: 1.2rem;
    }
    
    .franchise-contact .contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    /* 老师招聘移动端适配 */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 1rem;
    }
    
    .career-contact .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-info .contact-item {
        justify-content: center;
        text-align: center;
        align-items: center;
    }
    
    .career-contact .contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 选中文本样式 */
::selection {
    background: var(--light-green);
    color: var(--forest-green);
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--sage-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}
