/* MedSpa LA CA - 尔湾高端医美诊所 medspalaca.com */

:root {
    --primary: #1a1a2e;
    --primary-light: #2d2d44;
    --gold: #c9a96e;
    --gold-light: #d4bc8a;
    --gold-dark: #a88b4a;
    --rose: #c08080;
    --light-bg: #faf8f5;
    --cream: #f5f0e8;
    --dark-text: #1a1a1a;
    --body-text: #4a4a4a;
    --light-text: #777;
    --white: #ffffff;
    --border: #e8e4de;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    line-height: 1.8;
    color: var(--body-text);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* ========== Header / Navigation ========== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.logo a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.85;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    display: block;
}

.logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, #0d0d1a 0%, #1a1a2e 40%, #2d2d44 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 128, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-text h1 {
    font-size: 52px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-text h1 strong {
    font-weight: 700;
    color: var(--gold);
}

.hero-text .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-text .hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 45px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-top: 8px;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold);
    padding: 16px 40px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
}

.hero-visual {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.hero-img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.hero-img-wrapper:first-child {
    grid-row: span 2;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    padding: 20px 25px;
    border-radius: 8px;
    z-index: 2;
}

.hero-floating-card .rating {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.hero-floating-card .text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.hero-floating-card .sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* ========== Section Styles ========== */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header h2 {
    font-size: 40px;
    color: var(--dark-text);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header h2 strong {
    font-weight: 700;
}

.section-header p {
    font-size: 16px;
    color: var(--light-text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
}

/* ========== Services Overview ========== */
.services-overview {
    padding: 120px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
}

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

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(201, 169, 110, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--gold-dark);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

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

.service-card .service-en {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

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

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card .learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transition: left 0.4s ease;
    z-index: 0;
}

.service-card .learn-more:hover::before {
    left: 0;
}

.service-card .learn-more:hover {
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
    transform: translateY(-2px);
}

.service-card .learn-more span,
.service-card .learn-more i {
    position: relative;
    z-index: 1;
}

.service-card .learn-more i {
    width: 28px;
    height: 28px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.4s ease;
}

.service-card .learn-more:hover i {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(3px);
}

/* ========== Featured Treatments ========== */
.featured-treatments {
    padding: 120px 0;
    background: var(--light-bg);
}

.treatment-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.treatment-showcase:last-child {
    margin-bottom: 0;
}

.treatment-showcase.reverse {
    direction: rtl;
}

.treatment-showcase.reverse > * {
    direction: ltr;
}

.treatment-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.treatment-image .treatment-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 3px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.treatment-info .treatment-label {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.treatment-info h3 {
    font-size: 34px;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.3;
}

.treatment-info h3 strong {
    font-weight: 700;
}

.treatment-info > p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.9;
    margin-bottom: 30px;
}

.treatment-features {
    list-style: none;
    margin-bottom: 30px;
}

.treatment-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--body-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.treatment-features li i {
    color: var(--gold);
    font-size: 14px;
    width: 20px;
}

/* ========== Why Choose Us ========== */
.why-section {
    padding: 120px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
}

.why-section .section-header h2 {
    color: var(--white);
}

.why-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-card {
    text-align: center;
    padding: 45px 25px;
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 8px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.why-card:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-5px);
}

.why-icon {
    width: 65px;
    height: 65px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--gold);
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========== Testimonials ========== */
.testimonials-section {
    padding: 120px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-card .quote-icon {
    font-size: 40px;
    color: rgba(201, 169, 110, 0.3);
    margin-bottom: 15px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .client-name {
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 600;
}

.testimonial-card .client-service {
    font-size: 13px;
    color: var(--gold);
}

/* ========== CTA Section ========== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-section h2 strong {
    font-weight: 700;
    color: var(--gold);
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    justify-content: center;
}

/* ========== FAQ Section ========== */
.faq-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 22px;
    color: var(--dark-text);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 169, 110, 0.3);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(201, 169, 110, 0.03);
}

.faq-question h4 {
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 500;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: var(--gold);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-item.active .faq-question h4 {
    color: var(--gold-dark);
    font-weight: 600;
}

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

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

.faq-answer-inner {
    padding: 0 28px 25px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.9;
}

/* ========== Contact Section ========== */
.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--dark-text);
    font-weight: 300;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-info h2 strong {
    font-weight: 700;
}

.contact-info > p {
    font-size: 15px;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-text h4 {
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 4px;
    font-weight: 600;
}

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

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

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-form h3 {
    font-size: 22px;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form .form-subtitle {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    background: var(--white);
    color: var(--dark-text);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--gold);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: inherit;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

/* ========== Page Banner ========== */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right top, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.page-banner .section-label {
    margin-bottom: 15px;
}

.page-banner h1 {
    font-size: 46px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.page-banner h1 strong {
    font-weight: 700;
}

.page-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    margin-top: 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    position: relative;
}

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

.breadcrumb span {
    margin: 0 10px;
}

/* ========== Services Page ========== */
.services-full {
    padding: 120px 0;
    background: var(--white);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.service-detail-image .placeholder-img {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.service-detail-image .placeholder-img i {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.5;
}

.service-detail-info .service-number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(201, 169, 110, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

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

.service-detail-info .service-en-name {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.service-detail-info > p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--light-bg);
    border-radius: 4px;
    font-size: 14px;
    color: var(--body-text);
}

.highlight-item i {
    color: var(--gold);
    font-size: 12px;
}

.service-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-tags span {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ========== About Page ========== */
.about-intro {
    padding: 120px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .about-label {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-text h2 {
    font-size: 36px;
    color: var(--dark-text);
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text h2 strong {
    font-weight: 700;
}

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

.about-image {
    position: relative;
}

.about-image .placeholder-img {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.about-image .placeholder-img i {
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--primary);
    color: var(--gold);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.about-badge .number {
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Stats */
.stats-section {
    padding: 80px 0;
    background: var(--primary);
}

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

.stat-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Values */
.values-section {
    padding: 120px 0;
    background: var(--light-bg);
}

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

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
}

.value-card h4 {
    font-size: 20px;
    color: var(--dark-text);
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* Team */
.team-section {
    padding: 120px 0;
    background: var(--white);
}

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

.team-card {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-card .team-photo {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card .team-photo i {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
}

.team-card .team-info {
    padding: 30px;
}

.team-card .team-info h4 {
    font-size: 20px;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.team-card .team-info .position {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

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

/* ========== Technology Page ========== */
.tech-section {
    padding: 120px 0;
}

.tech-section:nth-child(even) {
    background: var(--light-bg);
}

.tech-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.tech-card:last-child {
    margin-bottom: 0;
}

.tech-card.reverse {
    direction: rtl;
}

.tech-card.reverse > * {
    direction: ltr;
}

.tech-image {
    position: relative;
}

.tech-image .placeholder-img {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.tech-image .placeholder-img i {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.4;
}

.tech-info .tech-label {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 600;
}

.tech-info h3 {
    font-size: 32px;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 300;
}

.tech-info h3 strong {
    font-weight: 700;
}

.tech-info > p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.9;
    margin-bottom: 25px;
}

.tech-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tech-spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 4px;
}

.tech-spec i {
    color: var(--gold);
    font-size: 14px;
}

.tech-spec span {
    font-size: 14px;
    color: var(--body-text);
}

/* ========== Map Section ========== */
.map-section {
    height: 400px;
    background: var(--light-bg);
    border-top: 1px solid var(--border);
}

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

/* ========== Footer ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-column h4 {
    font-size: 15px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-column ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-column ul li i {
    color: var(--gold);
    width: 20px;
    font-size: 14px;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

/* ========== Process Section ========== */
.process-section {
    padding: 120px 0;
    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.process-step h4 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.7;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .treatment-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treatment-showcase.reverse {
        direction: ltr;
    }

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

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

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .tech-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-card.reverse {
        direction: ltr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid rgba(201, 169, 110, 0.15);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-phone {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat .number {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 30px;
    }

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

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

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

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

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .page-banner {
        padding: 130px 0 60px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-phone {
        font-size: 22px;
    }

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

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

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .tech-specs {
        grid-template-columns: 1fr;
    }

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

    .map-section {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .stat-item .number {
        font-size: 36px;
    }

    .service-detail-info .service-number {
        font-size: 40px;
    }

    .service-detail-info h3 {
        font-size: 24px;
    }
}

/* ========== Scroll Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Service Categories Nav ========== */
.service-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 25px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    color: var(--body-text);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    letter-spacing: 1px;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
}

/* ========== Floating Contact Button ========== */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.phone {
    background: var(--gold);
}

.floating-btn.wechat {
    background: #07c160;
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--white);
}

/* ========== Service Detail Page ========== */
.service-detail-hero {
    padding: 120px 0 80px;
    background: var(--white);
}

.service-detail-hero .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.service-hero-content .service-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 6px 18px;
    border-radius: 20px;
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.service-hero-content h2 {
    font-size: 38px;
    color: var(--dark-text);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 25px;
}

.service-hero-content h2 strong {
    font-weight: 700;
}

.service-hero-content .service-intro {
    font-size: 16px;
    color: var(--body-text);
    line-height: 2;
    margin-bottom: 30px;
}

.service-quick-facts {
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 35px;
    position: sticky;
    top: 100px;
}

.service-quick-facts h3 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    letter-spacing: 1px;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.fact-label {
    font-size: 14px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fact-label i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

.fact-value {
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 600;
}

.quick-facts-cta {
    margin-top: 25px;
}

.quick-facts-cta .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
}

/* Service Content Sections */
.service-content-section {
    padding: 80px 0;
}

.service-content-section:nth-child(even) {
    background: var(--light-bg);
}

.service-content-section h2 {
    font-size: 32px;
    color: var(--dark-text);
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.service-content-section h2 strong {
    font-weight: 700;
}

.service-content-section .section-desc {
    font-size: 15px;
    color: var(--body-text);
    line-height: 2;
    margin-bottom: 25px;
    max-width: 800px;
}

/* How It Works Grid */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.how-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.how-step:hover {
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.how-step .step-num {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.how-step h4 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.how-step p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--gold);
}

.benefit-card h4 {
    font-size: 17px;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

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

/* Ideal Candidates */
.candidates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
}

.candidate-list {
    list-style: none;
}

.candidate-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.6;
}

.candidate-list li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.candidates-image .placeholder-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.candidates-image .placeholder-img i {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
}

/* Treatment Care */
.care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.care-column h3 {
    font-size: 22px;
    color: var(--dark-text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.care-column h3 i {
    color: var(--gold);
}

.care-list {
    list-style: none;
}

.care-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.care-list li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Service FAQ */
.service-faq {
    max-width: 850px;
    margin: 40px auto 0;
}

/* ========== Service Circular Navigation ========== */
.service-nav-section {
    padding: 60px 0;
    background: var(--light-bg);
    border-top: 1px solid var(--border);
}

.service-prev-next {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.service-prev,
.service-next {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-prev:hover,
.service-next:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-next {
    text-align: right;
    flex-direction: row-reverse;
}

.service-prev .nav-arrow,
.service-next .nav-arrow {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-prev:hover .nav-arrow,
.service-next:hover .nav-arrow {
    background: var(--gold);
    color: var(--white);
}

.nav-direction {
    font-size: 12px;
    color: var(--light-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.nav-service-name {
    font-size: 16px;
    color: var(--dark-text);
    font-weight: 600;
}

.service-nav-center {
    text-align: center;
}

.service-nav-center a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 13px;
    color: var(--body-text);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-nav-center a:hover {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
}

/* All Services Quick Nav */
.all-services-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.all-services-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--body-text);
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.all-services-nav a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(201, 169, 110, 0.05);
}

.all-services-nav a.current {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
    font-weight: 600;
}

/* Service Detail Page Responsive */
@media (max-width: 1024px) {
    .service-detail-hero .container {
        grid-template-columns: 1fr;
    }

    .service-quick-facts {
        position: static;
    }

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

    .candidates-content {
        grid-template-columns: 1fr;
    }

    .service-prev-next {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-nav-center {
        order: -1;
    }

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

@media (max-width: 768px) {
    .service-hero-content h2 {
        font-size: 28px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .service-prev .nav-text,
    .service-next .nav-text {
        display: none;
    }
}

/* ========== Blog Listing Page ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-light);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image .blog-icon {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
}

.blog-card-image .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--light-text);
}

.blog-card-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.blog-card-content h3 {
    font-size: 19px;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: var(--gold-dark);
}

.blog-card-content p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.blog-card-content .read-more:hover {
    gap: 10px;
}

/* ========== Blog Article Detail Page ========== */
.blog-article {
    padding: 80px 0 60px;
}

.blog-article .container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: start;
}

.article-content {
    max-width: 100%;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.article-header .blog-category {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 34px;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--light-text);
}

.article-meta i {
    color: var(--gold);
    margin-right: 5px;
}

.article-body h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 40px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.article-body h3 {
    font-size: 20px;
    color: var(--dark-text);
    margin: 30px 0 15px;
}

.article-body p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 18px;
    color: var(--body-text);
}

.article-body ul,
.article-body ol {
    margin: 15px 0 20px 20px;
}

.article-body li {
    font-size: 15px;
    line-height: 2;
    color: var(--body-text);
    margin-bottom: 6px;
}

.article-body li::marker {
    color: var(--gold);
}

.article-body strong {
    color: var(--dark-text);
}

.article-highlight {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream) 100%);
    border-left: 4px solid var(--gold);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.article-highlight p {
    font-size: 15px;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 0;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.article-table th {
    background: var(--primary);
    color: var(--gold);
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.article-table td {
    padding: 12px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--body-text);
}

.article-table tr:nth-child(even) {
    background: var(--light-bg);
}

.article-table tr:hover {
    background: rgba(201, 169, 110, 0.06);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.sidebar-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

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

.sidebar-card ul li {
    margin-bottom: 10px;
}

.sidebar-card ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--body-text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.sidebar-card ul li a:hover {
    color: var(--gold-dark);
    padding-left: 5px;
}

.sidebar-card ul li a i {
    color: var(--gold);
    font-size: 12px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--gold);
    border-bottom-color: rgba(201, 169, 110, 0.3);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sidebar-cta .sidebar-phone {
    display: block;
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-cta .btn-gold {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 14px;
}

/* Blog Article Navigation */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.article-nav a {
    display: block;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.article-nav a:hover {
    background: var(--cream);
    border-color: var(--gold-light);
}

.article-nav .nav-label {
    display: block;
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.article-nav .nav-title {
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 600;
    line-height: 1.4;
}

.article-nav .next-article {
    text-align: right;
}

/* Blog Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.article-tags span {
    background: var(--light-bg);
    color: var(--body-text);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid var(--border);
}

.article-tags span:first-child {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
    font-weight: 600;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-article .container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 26px;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-nav {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 180px;
    }
}
