/*
Theme Name: District Clinical Services
Theme URI: https://districtclinical.com
Author: District Clinical Services
Author URI: https://districtclinical.com
Description: A professional medical theme for District Clinical Services - Neurological Testing for Accident Injuries
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: district-clinical
Tags: medical, healthcare, neurology, one-page, custom-logo, custom-menu
*/

:root {
    --navy: #0a1628;
    --navy-light: #142238;
    --gold: #c9a962;
    --gold-light: #e4d4a8;
    --cream: #faf8f5;
    --white: #ffffff;
    --text-muted: #6b7a8f;
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
    --gradient-gold: linear-gradient(135deg, #c9a962 0%, #e4d4a8 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--cream); color: var(--navy); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
img { max-width: 100%; height: auto; }

/* Navigation */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 0; transition: all 0.4s ease; background: transparent; }
.site-header.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); box-shadow: 0 2px 40px rgba(10, 22, 40, 0.08); }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.site-branding { display: flex; align-items: center; gap: 0.75rem; }
.site-branding a { text-decoration: none; display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { width: 48px; height: 48px; background: var(--gradient-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; position: relative; }
.logo-icon::before { content: ''; position: absolute; width: 24px; height: 24px; border: 2px solid var(--navy); border-radius: 50%; }
.logo-icon::after { content: ''; position: absolute; width: 8px; height: 8px; background: var(--navy); border-radius: 50%; }
.custom-logo { max-height: 48px; width: auto; }
.site-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; margin: 0; }
.site-title a { color: inherit; text-decoration: none; }

/* Main Navigation */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; gap: 2rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.main-navigation ul li { margin: 0; }
.main-navigation a { text-decoration: none; color: var(--navy); font-weight: 400; font-size: 0.9rem; letter-spacing: 0.02em; transition: color 0.3s ease; position: relative; }
.main-navigation a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.main-navigation a:hover::after { width: 100%; }
.main-navigation .nav-cta a { background: var(--navy); color: var(--white) !important; padding: 0.875rem 1.5rem; border-radius: 8px; font-weight: 500; transition: all 0.3s ease; }
.main-navigation .nav-cta a::after { display: none; }
.main-navigation .nav-cta a:hover { background: var(--gold); color: var(--navy) !important; transform: translateY(-2px); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--navy); transition: all 0.3s ease; display: block; }

/* Hero */
.hero { min-height: 100vh; background: var(--gradient-dark); position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg-pattern { position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(circle at 20% 50%, var(--gold) 0%, transparent 50%), radial-gradient(circle at 80% 20%, var(--gold-light) 0%, transparent 40%); }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; padding-top: 6rem; }
.hero-content { animation: fadeInUp 1s ease forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201, 169, 98, 0.15); border: 1px solid rgba(201, 169, 98, 0.3); padding: 0.5rem 1rem; border-radius: 100px; margin-bottom: 2rem; }
.hero-badge span { color: var(--gold); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.2); } }
.hero h1 { font-size: clamp(2.75rem, 5vw, 4rem); color: var(--white); margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero h1 span { color: var(--gold); }
.hero-description { font-size: 1.15rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; max-width: 520px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3); }
.btn-secondary { background: transparent; color: var(--white); padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.95rem; border: 1px solid rgba(255, 255, 255, 0.3); display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--gold); }
.hero-visual { position: relative; animation: fadeInUp 1s ease 0.3s forwards; opacity: 0; }
.hero-image { width: 100%; height: 500px; background: linear-gradient(135deg, #1a2d4a 0%, #0a1628 100%); border-radius: 24px; position: relative; display: flex; align-items: center; justify-content: center; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4); }
.neuro-visual { width: 280px; height: 280px; position: relative; }
.brain-outline { width: 100%; height: 100%; border: 2px solid var(--gold); border-radius: 50% 50% 45% 45%; position: relative; animation: glow 3s ease infinite; display: flex; align-items: center; justify-content: center; }
@keyframes glow { 0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 98, 0.3); } 50% { box-shadow: 0 0 40px rgba(201, 169, 98, 0.5); } }
.brain-waves { position: absolute; width: 200px; height: 60px; }
.wave { position: absolute; width: 100%; height: 2px; background: var(--gold); opacity: 0.6; }
.wave:nth-child(1) { top: 0; animation: wave 2s ease infinite; }
.wave:nth-child(2) { top: 15px; animation: wave 2s ease 0.2s infinite; }
.wave:nth-child(3) { top: 30px; animation: wave 2s ease 0.4s infinite; }
.wave:nth-child(4) { top: 45px; animation: wave 2s ease 0.6s infinite; }
.wave:nth-child(5) { top: 60px; animation: wave 2s ease 0.8s infinite; }
@keyframes wave { 0%, 100% { transform: scaleX(1); opacity: 0.6; } 50% { transform: scaleX(0.6); opacity: 1; } }
.hero-stats { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); display: flex; gap: 1rem; background: var(--white); padding: 1.5rem 2rem; border-radius: 16px; box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15); }
.stat-item { text-align: center; padding: 0 1.5rem; border-right: 1px solid rgba(10, 22, 40, 0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Credentials */
.credentials-bar { background: var(--white); padding: 3rem 0; border-bottom: 1px solid rgba(10, 22, 40, 0.08); }
.credentials-content { display: flex; justify-content: center; align-items: center; gap: 4rem; flex-wrap: wrap; }
.credential-item { display: flex; align-items: center; gap: 1rem; }
.credential-icon { width: 48px; height: 48px; background: rgba(201, 169, 98, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.credential-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.credential-text { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
.credential-sub { font-size: 0.8rem; color: var(--text-muted); }

/* Section Styles */
.section-label { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.section-label-line { width: 40px; height: 2px; background: var(--gold); }
.section-label-text { font-size: 0.85rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }

/* About */
.about { padding: 8rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.about h2 { font-size: clamp(2.25rem, 4vw, 3rem); margin-bottom: 1.5rem; color: var(--navy); }
.about-description { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-feature { display: flex; align-items: flex-start; gap: 1rem; }
.about-feature-icon { width: 24px; height: 24px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.about-feature-icon svg { width: 12px; height: 12px; stroke: var(--navy); stroke-width: 3; }
.about-feature-text { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.about-image-container { position: relative; }
.about-image { width: 100%; height: 500px; background: var(--gradient-dark); border-radius: 24px; position: relative; }
.about-card { position: absolute; background: var(--white); padding: 2rem; border-radius: 16px; box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12); max-width: 280px; }
.about-card-1 { top: 2rem; left: -2rem; }
.about-card-2 { bottom: 2rem; right: -2rem; }
.about-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.about-card-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Services */
.services { padding: 8rem 0; background: var(--white); }
.services-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.services h2 { font-size: clamp(2.25rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--navy); }
.services-subtitle { font-size: 1.1rem; color: var(--text-muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--cream); border-radius: 20px; padding: 2.5rem; transition: all 0.4s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-gold); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(10, 22, 40, 0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: var(--gradient-gold); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.service-icon svg { width: 32px; height: 32px; stroke: var(--navy); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 1rem; color: var(--navy); }
.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* Treatments */
.treatments { padding: 8rem 0; background: var(--cream); }
.treatments-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.treatments h2 { font-size: clamp(2.25rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--navy); }
.treatments-subtitle { font-size: 1.1rem; color: var(--text-muted); }
.treatments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.treatment-card { background: var(--white); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.4s ease; border: 1px solid rgba(10, 22, 40, 0.08); }
.treatment-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(10, 22, 40, 0.1); border-color: var(--gold); }
.treatment-icon { width: 80px; height: 80px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.treatment-icon svg { width: 40px; height: 40px; stroke: var(--navy); }
.treatment-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--navy); }
.treatment-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Conditions */
.conditions { padding: 8rem 0; background: var(--gradient-dark); position: relative; overflow: hidden; }
.conditions::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.1) 0%, transparent 50%); }
.conditions .container { position: relative; z-index: 2; }
.conditions-header { text-align: center; margin-bottom: 4rem; }
.conditions h2 { font-size: clamp(2.25rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.conditions-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.6); max-width: 700px; margin: 0 auto; }
.conditions-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.conditions-column h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201, 169, 98, 0.3); }
.condition-item { background: rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 1.5rem 2rem; margin-bottom: 1rem; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); }
.condition-item:hover { background: rgba(201, 169, 98, 0.1); border-color: var(--gold); transform: translateX(8px); }
.condition-item-header { display: flex; align-items: center; gap: 1rem; }
.condition-number { width: 36px; height: 36px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1rem; color: var(--navy); flex-shrink: 0; }
.condition-item h4 { font-size: 1.15rem; color: var(--white); font-weight: 500; }
.condition-item p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.75rem; padding-left: 52px; line-height: 1.6; }
.conditions-cta { text-align: center; margin-top: 3rem; }

/* Process */
.process { padding: 8rem 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process h2 { font-size: clamp(2.25rem, 4vw, 3rem); color: var(--navy); margin-bottom: 1rem; }
.process-subtitle { font-size: 1.1rem; color: var(--text-muted); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent); opacity: 0.3; }
.process-step { text-align: center; position: relative; }
.step-number { width: 80px; height: 80px; background: rgba(201, 169, 98, 0.1); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.step-number span { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.process-step h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Providers */
.providers { padding: 8rem 0; background: var(--cream); }
.providers-header { text-align: center; margin-bottom: 4rem; }
.providers h2 { font-size: clamp(2.25rem, 4vw, 3rem); color: var(--navy); margin-bottom: 1rem; }
.providers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1000px; margin: 0 auto; }
.provider-card { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.provider-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(10, 22, 40, 0.12); }
.provider-image { height: 200px; background: var(--gradient-dark); display: flex; align-items: center; justify-content: center; position: relative; }
.provider-avatar { width: 120px; height: 120px; background: var(--gradient-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 4px solid var(--white); position: absolute; bottom: -40px; overflow: hidden; }
.provider-avatar svg { width: 60px; height: 60px; stroke: var(--navy); }
.provider-avatar img { width: 100%; height: 100%; object-fit: cover; }
.provider-info { padding: 3.5rem 2rem 2rem; text-align: center; }
.provider-name { font-size: 1.5rem; color: var(--navy); margin-bottom: 0.25rem; }
.provider-credentials { font-size: 1rem; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.provider-title { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.provider-bio { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Attorneys */
.attorneys { padding: 8rem 0; background: var(--white); }
.attorneys-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.attorneys h2 { font-size: clamp(2.25rem, 4vw, 3rem); color: var(--navy); margin-bottom: 1.5rem; }
.attorneys-description { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.attorneys-list { display: flex; flex-direction: column; gap: 1.25rem; }
.attorney-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--cream); border-radius: 12px; transition: all 0.3s ease; }
.attorney-item:hover { background: rgba(201, 169, 98, 0.1); }
.attorney-item-icon { width: 40px; height: 40px; background: var(--gradient-gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.attorney-item-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.attorney-item-text h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.attorney-item-text p { font-size: 0.85rem; color: var(--text-muted); }
.attorneys-visual { position: relative; }
.attorneys-image { width: 100%; height: 450px; background: var(--gradient-dark); border-radius: 24px; position: relative; }
.attorneys-badge { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 1.5rem 2.5rem; border-radius: 12px; box-shadow: 0 15px 40px rgba(10, 22, 40, 0.12); text-align: center; }
.attorneys-badge-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.attorneys-badge-text { font-size: 0.85rem; color: var(--text-muted); }

/* CTA */
.cta { padding: 6rem 0; background: var(--gradient-dark); position: relative; }
.cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 50%, rgba(201, 169, 98, 0.15) 0%, transparent 50%); }
.cta .container { position: relative; z-index: 2; }
.cta-content { max-width: 800px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--white); margin-bottom: 1rem; }
.cta-description { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact { padding: 6rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact h2 { font-size: clamp(2rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 1.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 48px; height: 48px; background: var(--gradient-gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 24px; height: 24px; stroke: var(--navy); }
.contact-item-text h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.25rem; }
.contact-item-text p { font-size: 0.95rem; color: var(--text-muted); }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: 20px; box-shadow: 0 20px 50px rgba(10, 22, 40, 0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid rgba(10, 22, 40, 0.12); border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--navy); transition: all 0.3s ease; background: var(--cream); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 1rem; }

/* Footer */
.site-footer { background: var(--navy); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .site-title { color: var(--white); margin-bottom: 1rem; display: block; font-size: 1.5rem; }
.footer-brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }
.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 { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); margin: 0; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 20px; height: 20px; stroke: var(--white); }
.footer-social a:hover svg { stroke: var(--navy); }

/* WordPress Specific */
.wp-block-button__link { background: var(--gold); color: var(--navy); }
.entry-content { padding: 2rem 0; }
.page-content, .entry-content, .entry-summary { margin: 1.5em 0 0; }

/* Contact Form 7 Styles */
.wpcf7-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.wpcf7-form p { margin-bottom: 1rem; }
.wpcf7-form label { display: block; font-size: 0.9rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form select, .wpcf7-form textarea { width: 100%; padding: 1rem; border: 1px solid rgba(10, 22, 40, 0.12); border-radius: 10px; font-family: 'Outfit', sans-serif; font-size: 0.95rem; color: var(--navy); transition: all 0.3s ease; background: var(--cream); }
.wpcf7-form input:focus, .wpcf7-form select:focus, .wpcf7-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15); }
.wpcf7-form textarea { resize: vertical; min-height: 120px; }
.wpcf7-form input[type="submit"] { width: 100%; background: var(--gold); color: var(--navy); padding: 1rem 2rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s ease; }
.wpcf7-form input[type="submit"]:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3); }

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-wrapper { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .process-steps::before { display: none; }
    .attorneys-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-navigation { display: none; }
    .main-navigation.toggled { display: block; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 2rem; box-shadow: 0 10px 30px rgba(10, 22, 40, 0.1); }
    .main-navigation.toggled ul { flex-direction: column; gap: 1rem; }
    .menu-toggle { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .treatments-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .providers-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; width: calc(100% - 2rem); left: 1rem; transform: none; bottom: -100px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(10, 22, 40, 0.1); padding-bottom: 1rem; }
    .stat-item:last-child { border-bottom: none; }
    .about-features { grid-template-columns: 1fr; }
    .about-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; margin-bottom: 1rem; max-width: 100%; }
    .credentials-content { flex-direction: column; gap: 2rem; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .wpcf7-form .form-row { grid-template-columns: 1fr; }
}
