/* 
   Charlotte Spine & Wellness - Premium Healthcare Design
   Aesthetic: Warm, Professional, Trustworthy
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0d5c63;
    --primary-dark: #094349;
    --primary-light: #e8f4f5;
    --accent: #2dd4bf;
    --accent-dark: #14b8a6;
    --text: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --cream: #fafaf9;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 0.75rem;
    --radius-lg: 1.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    color: var(--text); 
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    color: var(--text);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

h1 em, h2 em { font-style: italic; color: var(--primary); }

p { margin-bottom: 1rem; color: var(--text-light); }

a { color: var(--primary); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--accent-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background: var(--white);
    position: sticky;
    top: 60px;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.phone-link i { 
    font-size: 0.9rem;
    color: var(--primary);
}

/* Icon Styling */
.condition-icon i,
.value-icon i,
.mini-icon i,
.add-icon i,
.feature-icon i,
.card-icon i,
.card-icon-large i,
.credential-icon i {
    color: var(--primary);
}

.condition-icon i {
    font-size: 0.6rem;
    color: var(--accent-dark);
}

.testimonial-stars i {
    color: #f59e0b;
}

.hero-badge i {
    margin-right: 0.35rem;
}

.service-benefits li i {
    color: var(--accent-dark);
    margin-right: 0.5rem;
}

.sidebar-card h4 i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.info-block h4 i {
    margin-right: 0.5rem;
}

.pricing-card li i {
    color: var(--accent-dark);
    margin-right: 0.5rem;
}

.clinic-features li i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.expect-time i {
    margin-right: 0.25rem;
}

.btn-text i {
    font-size: 0.8rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    border-bottom: 1px solid var(--border);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary);
    background: var(--cream);
}

.mobile-nav .mobile-phone {
    color: var(--primary);
    font-weight: 600;
}

.mobile-nav .mobile-phone i {
    margin-right: 0.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 1.1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-text {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-text:hover { gap: 0.5rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-content h1 { margin-bottom: 1.5rem; }

.hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.trust-item { text-align: center; }

.trust-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.trust-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-visual { position: relative; }

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-main img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border: 1px solid var(--border);
}

.card-icon { font-size: 2rem; }

.card-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-value {
    display: block;
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
    margin: 0.25rem 0;
}

.card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    color: var(--white);
}

.page-hero-content {
    max-width: 700px;
}

.page-hero .hero-badge {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero h1 em { color: var(--accent); }

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 0; }

.bg-soft { background: var(--cream); }

.bg-dark {
    background: var(--primary);
    color: var(--white);
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.8); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-tag.light { color: var(--accent); }

.section-header h2 { margin-bottom: 1rem; }

.section-cta { text-align: center; margin-top: 3rem; }

/* ============================================
   CONDITIONS GRID
   ============================================ */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.condition-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.condition-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.condition-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.condition-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.condition-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   SERVICES SHOWCASE
   ============================================ */
.services-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.service-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 2.5rem;
}

.service-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-content h3 { margin-bottom: 1rem; }

.service-benefits {
    list-style: none;
    margin: 1.5rem 0;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: var(--text);
    font-weight: 500;
}

.service-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-card-mini {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card-mini:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.mini-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card-mini h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-card-mini p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.why-us-content h2 { margin-bottom: 1rem; }

.why-us-features { margin-top: 2.5rem; }

.feature-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-item:last-child { border-bottom: none; }

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.why-us-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.author-detail {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta-full {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   LOCATION & HOURS
   ============================================ */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.location-info h2 { margin-bottom: 2rem; }

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.info-block p { margin-bottom: 0; color: var(--text); }

.hours-list { }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.hours-row:last-child { border-bottom: none; }

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding-top: 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    margin-top: -3rem;
}

.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 { margin-bottom: 0.5rem; }
.form-header p { margin-bottom: 0; }

.contact-form { }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--cream);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.checkbox-group { margin-bottom: 1rem; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1rem;
}

.sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.sidebar-card.highlight {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    border: none;
}

.sidebar-card.highlight h3 { color: var(--white); margin-bottom: 0.25rem; }
.sidebar-card.highlight p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }

.card-icon-large { font-size: 2.5rem; margin-bottom: 1rem; }

.phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.availability {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.sidebar-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.sidebar-card p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.sidebar-card.urgent {
    background: #fef3c7;
    border-color: #f59e0b;
}

.sidebar-card.urgent h4 { color: #92400e; }
.sidebar-card.urgent p { color: #92400e; margin-bottom: 0; }

.hours-compact {
    font-size: 0.85rem;
}

.hours-compact > div {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.hours-compact > div:last-child { border-bottom: none; }

/* ============================================
   EXPECT & FAQ SECTIONS
   ============================================ */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expect-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.expect-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.expect-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.expect-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.expect-time {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.faq-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.faq-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact strong {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-contact .btn-primary {
    margin-top: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.footer-legal a:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.6;
}

.credentials {
    margin-top: 2rem;
}

.credential {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.credential:last-child { border-bottom: none; }

.credential-icon { font-size: 1.5rem; }

.credential strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.credential span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.team-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.clinic-features {
    list-style: none;
    margin: 2rem 0;
}

.clinic-features li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
}

.clinic-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.clinic-images img {
    width: 100%;
    border-radius: var(--radius);
}

.clinic-img-2 {
    margin-top: 2rem;
}

/* Services Page Styles */
.service-detail {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-detail-content h3 {
    margin-bottom: 1rem;
}

.service-benefits-list {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius);
}

.service-benefits-list h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-benefits-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.service-benefits-list li {
    font-size: 0.9rem;
    color: var(--text);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.additional-service {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.additional-service:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.add-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.additional-service h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.additional-service p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.pricing-card li:last-child { border-bottom: none; }

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--radius);
}

.pricing-note p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.pricing-note p:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
    .hero-grid,
    .services-showcase,
    .why-us-grid,
    .location-grid,
    .about-grid,
    .clinic-grid,
    .service-detail,
    .service-detail.reverse { 
        grid-template-columns: 1fr; 
    }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .service-card.featured { grid-template-columns: 1fr; }
    
    .conditions-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    
    .expect-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .hero-card { position: static; margin-top: 1rem; }
}

@media (max-width: 768px) {
    header { top: 50px; padding: 0.75rem 0; }
    
    .nav-links, .nav-cta .phone-link { display: none; }
    .mobile-toggle { display: flex; }
    .nav-cta .btn-primary { display: none; }
    
    /* UNIQUE HERO: WELLNESS SANCTUARY STYLE */
    /* Above-the-fold conversion-first: headline + primary CTA visible without scrolling */
    .hero { 
        padding: 1.25rem 0 0.75rem;
        background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    }
    
    .hero-grid { 
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* CONTENT FIRST */
    .hero-content { 
        order: 1; 
        text-align: left;
        padding: 0;
    }
    
    /* IMAGE SECOND - Full width with soft curve */
    .hero-visual { 
        order: 2; 
        position: relative;
        margin: 0 -1.5rem;
    }
    
    .hero-image-main {
        border-radius: 0 0 50% 50% / 0 0 30px 30px;
        overflow: hidden;
    }
    
    .hero-image-main img {
        width: 100%;
        height: 165px;
        object-fit: cover;
    }
    
    .hero-card {
        position: absolute;
        bottom: 12px;
        left: 1.5rem;
        right: 1.5rem;
        transform: none;
        background: var(--white);
        padding: 0.9rem 1rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: flex;
        gap: 0.75rem;
        align-items: center;
        white-space: normal;
        border: 2px solid var(--primary-light);
    }
    
    .card-icon { font-size: 1.25rem; color: var(--accent-dark); }
    .card-content { display: flex; flex-direction: column; }
    .card-label { font-size: 0.6rem; color: var(--text-light); }
    .card-value { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
    .card-link { display: none; }
    
    .hero-badge { 
        font-size: 0.65rem; 
        padding: 0.5rem 1rem;
        margin-bottom: 0.85rem;
        background: var(--accent);
        color: var(--white);
        border-radius: 50px;
    }
    
    .hero-content h1 { 
        font-size: 1.9rem; 
        margin-bottom: 0.5rem;
        line-height: 1.15;
    }
    
    .hero-text { 
        font-size: 0.9rem; 
        margin-bottom: 0.6rem;
        line-height: 1.65;
        color: var(--text-light);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .hero-ctas { 
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 0;
    }
    
    .hero-ctas .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem;
        border-radius: 16px;
        font-size: 1rem;
    }
    
    .hero-ctas .btn-outline {
        width: 100%;
        justify-content: center;
        border-radius: 16px;
    }
    
    /* Keep hero short on mobile; trust proof appears lower on the page */
    .hero-trust { display: none; }
    
    /* SECTIONS MOBILE */
    .section { padding: 2.5rem 0; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: 1.5rem; }
    .section-tag { font-size: 0.7rem; }
    
    .conditions-grid,
    .testimonials-grid,
    .faq-grid,
    .expect-grid { grid-template-columns: 1fr; gap: 1rem; }
    
    .condition-card,
    .testimonial-card { padding: 1.25rem; }
    
    .service-grid-small { grid-template-columns: 1fr; gap: 0.75rem; }
    .service-card-mini { padding: 1rem; }
    .mini-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
    
    .service-card.featured { grid-template-columns: 1fr; }
    .service-image img { max-height: 200px; }
    .service-content { padding: 1.5rem; }
    .service-benefits { margin: 1rem 0; }
    
    /* WHY US MOBILE */
    .why-us-grid { gap: 2rem; }
    .why-us-features { margin-top: 1.5rem; }
    .feature-item { 
        gap: 1rem; 
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .feature-icon { font-size: 1.25rem; }
    .feature-text h4 { font-size: 0.95rem; }
    .feature-text p { font-size: 0.85rem; }
    
    .why-us-image img { max-height: 250px; object-fit: cover; }
    
    /* CTA MOBILE */
    .section-cta-full { padding: 3rem 0; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-content p { font-size: 1rem; margin-bottom: 1.5rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline-light { width: 100%; justify-content: center; }
    
    /* LOCATION MOBILE */
    .location-grid { gap: 2rem; }
    .location-info h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
    .info-block { margin-bottom: 1.5rem; }
    .hours-row { font-size: 0.85rem; }
    .location-map iframe { height: 280px; }
    
    /* FORM MOBILE */
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.5rem; margin-top: 0; }
    .contact-grid { margin-top: 0; gap: 1.5rem; }
    .form-header h2 { font-size: 1.35rem; }
    
    .sidebar-card { padding: 1rem; }
    .card-icon-large { font-size: 2rem; }
    .phone-number { font-size: 1.25rem; }
    
    /* FOOTER MOBILE */
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-brand p { font-size: 0.85rem; }
    .footer-links h4, .footer-contact h4 { margin-bottom: 0.75rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    
    /* Page hero mobile */
    .page-hero { padding: 2rem 0; }
    .page-hero h1 { font-size: 1.75rem; }
    .page-hero p { font-size: 1rem; }
}

/* Extra small devices */
@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    
    .hero-content h1 { font-size: 1.5rem; }
    .hero-text { font-size: 0.9rem; }
    
    .hero-trust { gap: 0.75rem; }
    .trust-item { flex: 1; min-width: 80px; }
    
    .btn-primary, .btn-outline { padding: 0.75rem 1.25rem; font-size: 0.9rem; }
}
