/* ========================================
   阳光SPA养生馆 - 主样式表
   配色：米白 / 木色 / 深绿 / 暖金色系
   风格：现代中式 + 轻奢 SPA
   ======================================== */

/* CSS Variables */
:root {
    --primary-green: #2d5a47;
    --primary-green-light: #3d7a5f;
    --primary-green-dark: #1d4a37;
    --gold: #c9a962;
    --gold-light: #d9c982;
    --gold-dark: #a98942;
    --cream: #faf8f5;
    --cream-dark: #f5f0e8;
    --wood: #8b7355;
    --wood-light: #a89070;
    --wood-dark: #6b5340;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

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

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo a:hover {
    opacity: 0.9;
}

/* Desktop Navigation */
.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-green);
}

/* Header Phone */
.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.header-phone:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

.header-phone i {
    font-size: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    padding: 20px;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--cream-dark);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 15px 10px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary-green);
    background: var(--cream);
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 18px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 100px 20px 60px;
    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"><circle cx="50" cy="50" r="2" fill="rgba(201,169,98,0.1)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 98, 0.3);
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.hero-features i {
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-green {
    background: var(--primary-green);
    color: var(--white);
}

.btn-green:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 90, 71, 0.4);
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 80px 20px;
}

.section-light {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-green {
    background: var(--primary-green);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-green .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-green .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-green .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Services Grid
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-green);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.service-price {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: var(--cream);
    color: var(--primary-green);
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

/* ========================================
   Price Section
   ======================================== */
.price-highlight {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.price-badge {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    min-width: 150px;
}

.price-badge .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.price-badge .label {
    font-size: 14px;
    color: var(--text-medium);
    margin-top: 5px;
}

.price-badge .unit {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.price-table {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--cream-dark);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: var(--cream);
}

.price-name {
    font-weight: 600;
    color: var(--text-dark);
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.price-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--border-radius);
    color: var(--text-medium);
    font-size: 14px;
}

/* ========================================
   Why Choose Us
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   Therapist Section
   ======================================== */
.therapists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.therapist-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.therapist-image {
    height: 200px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary-green);
}

.therapist-info {
    padding: 25px;
    text-align: center;
}

.therapist-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.therapist-title {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 10px;
}

.therapist-exp {
    display: inline-block;
    background: var(--cream);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.therapist-info p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* ========================================
   About Page
   ======================================== */
.about-intro {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--border-radius);
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.value-item h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.value-item p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
}

/* ========================================
   Gallery
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-align: center;
    padding: 20px;
}

.gallery-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.gallery-placeholder span {
    font-size: 14px;
    color: var(--text-medium);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 15px 15px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Training Page
   ======================================== */
.training-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.training-intro p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.8;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.training-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.training-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.training-card h3 i {
    color: var(--gold);
}

.training-card ul {
    margin-top: 15px;
}

.training-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 15px;
    border-bottom: 1px solid var(--cream-dark);
}

.training-card li:last-child {
    border-bottom: none;
}

.training-card li i {
    color: var(--gold);
    margin-top: 3px;
}

/* ========================================
   FAQ Page
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question h3 i {
    color: var(--primary-green);
    font-size: 18px;
}

.faq-icon {
    color: var(--gold);
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--cream-dark);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.contact-text h4 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-text p,
.contact-text a {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-text a:hover {
    color: var(--primary-green);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: inherit;
}

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

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

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

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
}

/* Map */
.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 300px;
    margin-top: 30px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-contact {
    text-align: center;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--gold);
    width: 20px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-designer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-designer a {
    color: var(--gold);
}

.footer-designer a:hover {
    text-decoration: underline;
}

/* ========================================
   Page Header (Sub Pages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .therapist-card {
        flex-direction: row;
    }

    .therapist-image {
        width: 200px;
        height: auto;
        min-height: 200px;
    }

    .therapist-info {
        text-align: left;
        flex: 1;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-brand p {
        margin: 0;
    }

    .footer-links ul {
        flex-direction: column;
        justify-content: flex-start;
        gap: 12px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
    }
}

/* ========================================
   Responsive - Desktop
   ======================================== */
@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }

    .main-nav {
        display: block;
    }

    .header-phone {
        display: flex;
    }

    .hero h1 {
        font-size: 52px;
    }

    .section {
        padding: 100px 20px;
    }

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

    .service-card {
        padding: 40px 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        padding: 140px 20px 80px;
    }

    .page-header h1 {
        font-size: 42px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-green {
    color: var(--primary-green);
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}
