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

:root {
    --primary-teal: #5a9a9a;
    --primary-dark: #3d7a7a;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --white: #ffffff;
    --black: #1a1a1a;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

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

.btn-white:hover {
    background-color: var(--bg-light);
}

/* ============================================
   FLOATING HEADER - Matching Screenshot
   ============================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1300px;
    background-color: var(--white);
    border-radius: 60px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 12px 20px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 110px;
    height: 110px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    background-color: var(--bg-light);
}

.nav-link.active {
    background-color: var(--bg-light);
}

.nav-link i {
    font-size: 0.7rem;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 15px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    border-radius: 10px;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-teal);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-call {
    background-color: transparent;
    border: 1.5px solid var(--text-muted);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call:hover {
    border-color: var(--text-dark);
    background-color: var(--bg-light);
}

.btn-book {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book:hover {
    background-color: #333;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION - Full Screen Background
   ============================================ */
.hero {
    min-height: 75vh;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   INTRO SECTION - Text with Image
   ============================================ */
.intro-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.intro-image img {
    border-radius: 20px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.intro-content h2 span {
    color: var(--primary-teal);
}

.intro-content .subtitle {
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.intro-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* TCM Content Section */
.tcm-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tcm-content h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 2rem;
}

.tcm-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

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

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

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

.section-header h2 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-teal);
}

.service-image {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.service-card .learn-more {
    color: var(--primary-teal);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.service-card .learn-more:hover {
    color: var(--primary-dark);
}

/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.feature-item h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   PRACTITIONER SECTION
   ============================================ */
.practitioner-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.practitioner-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.practitioner-info h2 {
    margin-bottom: 10px;
}

.practitioner-title {
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 8px;
}

.practitioner-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.practitioner-qualifications {
    margin-top: 25px;
}

.practitioner-qualifications li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
}

.practitioner-qualifications li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-teal);
}

/* ============================================
   INSURANCE LOGOS
   ============================================ */
.insurance-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.insurance-item {
    text-align: center;
}

.insurance-item img {
    max-width: 200px;
    margin-bottom: 10px;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: var(--transition);
}

.insurance-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-teal);
}

.testimonial-stars {
    color: #f5c518;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* ============================================
   CTA SECTION - Korean Traditional 창살문양
   ============================================ */
.cta-section {
    background-color: #b8d4d4;
    color: var(--text-dark);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* 창살문양 (Korean Window Lattice Pattern) */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Crect x='10' y='10' width='100' height='100' fill='none' stroke='%2390b8b8' stroke-width='2' opacity='0.3'/%3E%3Cline x1='10' y1='60' x2='110' y2='60' stroke='%2390b8b8' stroke-width='1.5' opacity='0.25'/%3E%3Cline x1='60' y1='10' x2='60' y2='110' stroke='%2390b8b8' stroke-width='1.5' opacity='0.25'/%3E%3Cline x1='10' y1='35' x2='110' y2='35' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='10' y1='85' x2='110' y2='85' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='35' y1='10' x2='35' y2='110' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='85' y1='10' x2='85' y2='110' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Crect x='35' y='35' width='50' height='50' fill='none' stroke='%2390b8b8' stroke-width='1.5' opacity='0.25'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

/* 팔각 창살 장식 (Octagonal lattice decorations) */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpolygon points='30,5 70,5 95,30 95,70 70,95 30,95 5,70 5,30' fill='none' stroke='%2390b8b8' stroke-width='2' opacity='0.35'/%3E%3Cline x1='30' y1='5' x2='30' y2='95' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='70' y1='5' x2='70' y2='95' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='5' y1='30' x2='95' y2='30' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='5' y1='70' x2='95' y2='70' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='50' y1='5' x2='50' y2='95' stroke='%2390b8b8' stroke-width='1' opacity='0.15'/%3E%3Cline x1='5' y1='50' x2='95' y2='50' stroke='%2390b8b8' stroke-width='1' opacity='0.15'/%3E%3Crect x='30' y='30' width='40' height='40' fill='none' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    background-position: 25px 25px;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    color: var(--text-dark);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.1rem;
}

.cta-section .btn {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1rem;
}

.cta-section .btn:hover {
    background-color: var(--black);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 70px 0 30px;
}

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

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-teal);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--primary-teal);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* ============================================
   PAGE HEADER (Inner Pages) - Korean Traditional 창살문양
   ============================================ */
.page-header {
    background-color: #b8d4d4;
    padding: 160px 0 80px;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

/* 창살문양 (Korean Window Lattice Pattern) */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Crect x='10' y='10' width='100' height='100' fill='none' stroke='%2390b8b8' stroke-width='2' opacity='0.3'/%3E%3Cline x1='10' y1='60' x2='110' y2='60' stroke='%2390b8b8' stroke-width='1.5' opacity='0.25'/%3E%3Cline x1='60' y1='10' x2='60' y2='110' stroke='%2390b8b8' stroke-width='1.5' opacity='0.25'/%3E%3Cline x1='10' y1='35' x2='110' y2='35' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='10' y1='85' x2='110' y2='85' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='35' y1='10' x2='35' y2='110' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='85' y1='10' x2='85' y2='110' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Crect x='35' y='35' width='50' height='50' fill='none' stroke='%2390b8b8' stroke-width='1.5' opacity='0.25'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    pointer-events: none;
}

/* 팔각 창살 장식 (Octagonal lattice decorations) */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpolygon points='30,5 70,5 95,30 95,70 70,95 30,95 5,70 5,30' fill='none' stroke='%2390b8b8' stroke-width='2' opacity='0.35'/%3E%3Cline x1='30' y1='5' x2='30' y2='95' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='70' y1='5' x2='70' y2='95' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='5' y1='30' x2='95' y2='30' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='5' y1='70' x2='95' y2='70' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3Cline x1='50' y1='5' x2='50' y2='95' stroke='%2390b8b8' stroke-width='1' opacity='0.15'/%3E%3Cline x1='5' y1='50' x2='95' y2='50' stroke='%2390b8b8' stroke-width='1' opacity='0.15'/%3E%3Crect x='30' y='30' width='40' height='40' fill='none' stroke='%2390b8b8' stroke-width='1' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    background-position: 25px 25px;
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 3rem;
}

.page-header p {
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.85;
}

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

.breadcrumb a {
    color: var(--text-dark);
    opacity: 0.7;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: var(--text-dark);
    opacity: 0.5;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background-color: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(90, 154, 154, 0.1);
}

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

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-dark));
    color: var(--white);
    padding: 45px;
    border-radius: 20px;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
}

.contact-info-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

/* Map */
.map-container {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.blog-date {
    color: var(--primary-teal);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.blog-card h3 a:hover {
    color: var(--primary-teal);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-main h2 {
    margin-bottom: 20px;
}

.service-main h3 {
    margin-top: 35px;
    margin-bottom: 18px;
}

.service-list {
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-teal);
}

.service-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background-color: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-card h4 {
    margin-bottom: 20px;
}

.service-menu li {
    margin-bottom: 10px;
}

.service-menu a {
    display: block;
    padding: 14px 18px;
    background-color: var(--white);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-menu a:hover,
.service-menu a.active {
    background-color: var(--primary-teal);
    color: var(--white);
}

/* Hours Table */
.hours-table {
    width: 100%;
}

.hours-table tr {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.95rem;
}

.hours-table tr:last-child {
    border-bottom: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .header {
        width: calc(100% - 40px);
    }
}

@media (max-width: 992px) {
    .header {
        top: 15px;
        width: calc(100% - 30px);
        padding: 10px 15px;
        border-radius: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

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

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

    .about-content.reverse {
        direction: ltr;
    }

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

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

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

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

@media (max-width: 768px) {
    .header {
        border-radius: 30px;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: 15px;
        right: 15px;
        background-color: var(--white);
        flex-direction: column;
        padding: 25px;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 15px;
        width: 100%;
        justify-content: space-between;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .subtitle {
        font-size: 1.1rem;
    }

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

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

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

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

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Service Hero Image */
.service-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
