:root {
    --color-navy: #1a2744;
    --color-navy-light: #2a3a5c;
    --color-gold: #9a7b3c;
    --color-gold-light: #b8944d;
    --color-cream: #faf9f7;
    --color-white: #ffffff;
    --color-text: #3a3a3a;
    --color-text-light: #595959;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.skip-link {
    position: absolute; top: -40px; left: 0; background: var(--color-navy);
    color: var(--color-white); padding: 8px 16px; z-index: 10000;
    text-decoration: none; font-weight: 500; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--color-navy); outline-offset: 2px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--color-navy); outline-offset: 2px; }

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body); color: var(--color-text);
    background-color: var(--color-cream); line-height: 1.7; font-size: 17px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--color-navy); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--color-navy); margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; color: var(--color-navy); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

header {
    position: fixed; top: 0; left: 0; right: 0; background: var(--color-white);
    z-index: 1000; box-shadow: 0 1px 0 rgba(26, 39, 68, 0.08); transition: all 0.3s ease;
}
header.scrolled { box-shadow: 0 4px 20px rgba(26, 39, 68, 0.1); }

nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem; max-width: 1200px; margin: 0 auto;
}
.logo {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
    color: var(--color-navy); text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--color-text); font-size: 0.95rem;
    font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s ease;
    position: relative; display: inline-flex; align-items: center; gap: 0.25rem;
}
.nav-links a svg { transition: transform 0.2s ease; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
    height: 2px; background: var(--color-gold); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--color-navy); }
.nav-links a:hover::after { width: 100%; }

.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: var(--color-white); min-width: 240px; padding: 0.75rem 0;
    border-radius: 8px; box-shadow: 0 8px 30px rgba(26, 39, 68, 0.15);
    opacity: 0; visibility: hidden; transition: all 0.2s ease;
    list-style: none; margin-top: 0.5rem; z-index: 100;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
    opacity: 1; visibility: visible;
}
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
    display: block; padding: 0.6rem 1.25rem; color: var(--color-text); font-size: 0.9rem;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--color-cream); color: var(--color-navy); padding-left: 1.5rem; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--color-navy); margin: 5px 0; }

/* Hero */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
    padding-top: 80px; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero-text { animation: fadeInUp 0.8s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-subtitle { font-size: 1rem; font-weight: 500; color: var(--color-gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero-tagline { font-family: var(--font-display); font-size: 1.4rem; color: var(--color-text-light); font-style: italic; margin-bottom: 2rem; }
.hero-credentials { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.credential-badge {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem;
    background: var(--color-white); border: 1px solid rgba(26, 39, 68, 0.1);
    border-radius: 50px; font-size: 0.85rem; color: var(--color-navy); font-weight: 500;
}
.credential-badge svg { width: 16px; height: 16px; fill: var(--color-gold); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 2; }
.hero-visual { position: relative; animation: fadeInUp 0.8s ease-out 0.2s both; z-index: 1; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem;
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    text-decoration: none; border-radius: 4px; transition: all 0.3s ease; cursor: pointer; border: none;
    -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn-primary { background: var(--color-navy); color: var(--color-white); }
.btn-primary:hover, .btn-primary:active { background: var(--color-navy-light); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(26, 39, 68, 0.3); }
.btn-secondary { background: transparent; color: var(--color-navy); border: 2px solid var(--color-navy); }
.btn-secondary:hover, .btn-secondary:active { background: var(--color-navy); color: var(--color-white); }
.btn-gold { background: var(--color-gold); color: var(--color-white); }
.btn-gold:hover, .btn-gold:active { background: var(--color-gold-light); transform: translateY(-2px); }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-card {
    background: var(--color-white); padding: 2rem; border-radius: 8px;
    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06); text-align: center; transition: all 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26, 39, 68, 0.1); }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--color-navy); line-height: 1; margin-bottom: 0.5rem; }
.stat-number span { color: var(--color-gold); }
.stat-label { font-size: 0.9rem; color: var(--color-text-light); font-weight: 500; }

/* About */
.about { background: var(--color-white); }
.about-content { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.about-image { position: sticky; top: 120px; }
.about-image img { width: 100%; border-radius: 8px; box-shadow: 0 8px 30px rgba(26, 39, 68, 0.12); }
.about-image-caption { text-align: center; margin-top: 1rem; font-size: 0.85rem; color: var(--color-text-light); font-style: italic; }
.about-text h2 { position: relative; display: inline-block; }
.about-text h2::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 60px; height: 3px; background: var(--color-gold); }
.about-intro { font-size: 1.15rem; color: var(--color-text); margin: 2rem 0; line-height: 1.8; }
.section-divider { width: 60px; height: 3px; background: var(--color-gold); margin: 2rem 0; }

/* Specializations */
.specializations { background: var(--color-cream); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--color-gold); margin: 1rem auto 0; }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.spec-card {
    background: var(--color-white); padding: 2.5rem 2rem; border-radius: 8px;
    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06); transition: all 0.3s ease; border-top: 3px solid transparent;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26, 39, 68, 0.1); border-top-color: var(--color-gold); }
.spec-card-link { text-decoration: none; display: flex; flex-direction: column; color: inherit; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.spec-card-link p { flex-grow: 1; }
.spec-card-link .learn-more { display: inline-block; margin-top: auto; padding-top: 1rem; color: #7a6230; font-weight: 600; font-size: 0.9rem; }
.spec-card-link:hover .learn-more, .spec-card-link:active .learn-more { color: var(--color-navy); }
.spec-icon {
    width: 56px; height: 56px; background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
}
.spec-icon svg { width: 28px; height: 28px; stroke: var(--color-gold); }
.spec-card h3 { margin-bottom: 1rem; }
.spec-card p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 0; }

/* Education Timeline */
.education { background: var(--color-navy); color: var(--color-white); position: relative; overflow: hidden; }
.education::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.education .section-header h2 { color: var(--color-white); }
.education .section-header p { color: rgba(255, 255, 255, 0.85); }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: rgba(201, 169, 98, 0.3); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 30px); position: relative; margin-bottom: 2rem; }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 30px); }
.timeline-content {
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); padding: 1.5rem 2rem;
    border-radius: 8px; width: 380px; min-height: 120px; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease;
    display: flex; flex-direction: column; justify-content: center;
}
.timeline-content:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--color-gold); }
.timeline-item::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    width: 14px; height: 14px; background: var(--color-gold); border-radius: 50%; top: 1.5rem; border: 3px solid var(--color-navy);
}
.timeline-date { font-size: 0.85rem; color: var(--color-gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.timeline-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-white); margin-bottom: 0.25rem; }
.timeline-institution { font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 0; }

/* Certifications */
.certifications { background: var(--color-white); }
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cert-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--color-cream); border-radius: 8px; transition: all 0.3s ease; }
.cert-item:hover { background: var(--color-white); box-shadow: 0 4px 20px rgba(26, 39, 68, 0.08); }
.cert-icon { width: 40px; height: 40px; background: var(--color-navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cert-icon svg { width: 20px; height: 20px; fill: var(--color-gold); }
.cert-text h3, .cert-text h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--color-navy); margin-bottom: 0.25rem; }
.cert-text p { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 0; }
.military-service { margin-top: 3rem; padding: 2rem; background: var(--color-cream); border-radius: 8px; text-align: center; border-left: 4px solid var(--color-gold); }
.military-service h3 { color: var(--color-navy); margin-bottom: 0.5rem; }
.military-service p { margin-bottom: 0.25rem; color: var(--color-text); }

/* Reviews */
.reviews { background: var(--color-cream); }
.reviews-intro { text-align: center; margin-bottom: 3rem; }
.google-rating { display: inline-flex; align-items: center; gap: 1rem; background: var(--color-white); padding: 1rem 2rem; border-radius: 50px; box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06); }
.google-logo { height: 24px; width: auto; }
.rating-stars { display: flex; gap: 2px; }
.rating-stars svg { width: 20px; height: 20px; fill: #fbbc04; }
.rating-text { font-weight: 600; color: var(--color-navy); }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.review-card { background: var(--color-white); padding: 2rem; border-radius: 8px; box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06); transition: all 0.3s ease; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26, 39, 68, 0.1); }
.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-avatar { width: 48px; height: 48px; background: var(--color-navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); font-weight: 600; }
.review-meta .reviewer-name { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--color-navy); margin-bottom: 0.25rem; display: block; }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 14px; height: 14px; fill: #fbbc04; }
.review-text { font-size: 0.95rem; color: var(--color-text); font-style: italic; line-height: 1.7; margin-bottom: 0; }

/* Service Areas */
.service-areas { background: var(--color-navy); color: var(--color-white); }
.service-areas .section-header h2 { color: var(--color-white); }
.service-areas .section-header p { color: rgba(255, 255, 255, 0.85); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-item { background: rgba(255, 255, 255, 0.05); padding: 1rem 1.25rem; border-radius: 6px; text-align: center; font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); transition: all 0.2s ease; border: 1px solid rgba(255, 255, 255, 0.1); }
.area-item:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--color-gold); }
.area-item.primary { background: rgba(201, 169, 98, 0.2); border-color: var(--color-gold); color: var(--color-white); font-weight: 500; }

/* Contact */
.contact { background: var(--color-white); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--color-gold); margin-top: 1rem; }
.contact-details { margin: 2rem 0; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: var(--color-cream); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 22px; height: 22px; fill: var(--color-navy); }
.contact-item .contact-label { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; display: block; }
.contact-item p { font-size: 1rem; color: var(--color-navy); margin-bottom: 0; }
.contact-item a { color: var(--color-navy); text-decoration: none; transition: color 0.2s ease; }
.contact-item a:hover { color: var(--color-gold); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { width: 48px; height: 48px; background: var(--color-navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-link:hover { background: var(--color-gold); transform: translateY(-3px); }
.social-link svg { width: 22px; height: 22px; fill: var(--color-white); }

/* Contact Form */
.contact-form-container { background: var(--color-cream); border-radius: 8px; padding: 2.5rem; }
.contact-form-container h3 { margin-bottom: 0.5rem; }
.form-disclaimer { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 1.5rem; padding: 0.75rem; background: rgba(201, 169, 98, 0.1); border-left: 3px solid var(--color-gold); border-radius: 0 4px 4px 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--color-navy); }
.form-group input, .form-group textarea { padding: 0.875rem 1rem; border: 1px solid rgba(26, 39, 68, 0.2); border-radius: 6px; font-family: var(--font-body); font-size: 1rem; color: var(--color-text); background: var(--color-white); transition: all 0.2s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-navy); box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--color-text-light); }
.btn-submit { margin-top: 0.5rem; }

/* Footer */
footer { background: var(--color-navy); color: var(--color-white); padding: 3rem 0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.footer-text { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--color-gold); }

/* Page Hero (for subpages) */
.page-hero { background: var(--color-navy); color: var(--color-white); padding: 8rem 0 4rem; text-align: center; }
.page-hero h1 { color: var(--color-white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255, 255, 255, 0.8); font-size: 1.2rem; max-width: 700px; margin: 0 auto; }

/* Breadcrumbs */
.breadcrumbs { padding: 1rem 0; background: var(--color-cream); border-bottom: 1px solid rgba(26, 39, 68, 0.08); }
.breadcrumbs nav { font-size: 0.9rem; }
.breadcrumbs a { color: var(--color-text-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-navy); }
.breadcrumbs span { color: var(--color-text-light); margin: 0 0.5rem; }
.breadcrumbs .current { color: var(--color-navy); font-weight: 500; }

/* Content Pages */
.content-section { background: var(--color-white); }
.content-wrapper { max-width: 800px; margin: 0 auto; }
.content-wrapper h2 { margin-top: 2.5rem; }
.content-wrapper h2:first-child { margin-top: 0; }
.content-wrapper ul, .content-wrapper ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.content-wrapper li { margin-bottom: 0.5rem; }

/* CTA Section */
.cta-section { background: var(--color-cream); text-align: center; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 600px; margin: 0 auto 2rem; color: var(--color-text-light); }

/* FAQ Section */
.faq-section { background: var(--color-cream); }
.faq-item { background: var(--color-white); border-radius: 8px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--color-navy); }
.faq-question:hover { background: rgba(26, 39, 68, 0.02); }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 500px; }

/* Related Services */
.related-services { background: var(--color-white); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--color-white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06); transition: all 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(26, 39, 68, 0.1); }
.blog-card-image { height: 200px; background: var(--color-navy); display: flex; align-items: center; justify-content: center; }
.blog-card-image svg { width: 48px; height: 48px; stroke: var(--color-gold); }
.blog-card-content { padding: 1.5rem; }
.blog-card-date { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.blog-card h3 a { color: var(--color-navy); text-decoration: none; }
.blog-card h3 a:hover { color: var(--color-gold); }
.blog-card p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 1rem; }
.blog-card .read-more { color: var(--color-gold); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.blog-card .read-more:hover { color: var(--color-navy); }

/* Physician Referral Specific */
.physician-info { background: var(--color-cream); }
.physician-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.physician-contact-card { background: var(--color-white); padding: 2rem; border-radius: 8px; box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06); }
.physician-contact-card h3 { margin-bottom: 1.5rem; color: var(--color-navy); border-bottom: 2px solid var(--color-gold); padding-bottom: 0.5rem; }

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero-credentials { justify-content: center; }
    .hero-cta { justify-content: center; }
    .stats-grid { max-width: 500px; margin: 0 auto; }
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { position: static; max-width: 300px; margin: 0 auto; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { padding-left: 60px; padding-right: 0; justify-content: flex-start; }
    .timeline-item::after { left: 20px; transform: translateX(-50%); }
    .timeline-content { width: 100%; }
    .reviews-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-content { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .physician-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 3.5rem 0; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--color-white); flex-direction: column; padding: 1rem 2rem 2rem; gap: 1rem;
        box-shadow: 0 4px 20px rgba(26, 39, 68, 0.1);
    }
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; }
    .dropdown-menu { position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible; padding-left: 1rem; background: var(--color-cream); margin-top: 0.5rem; border-radius: 4px; }
    .spec-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .related-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    nav { padding: 1rem 1.25rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero-tagline { font-size: 1.1rem; }
    .btn { width: 100%; justify-content: center; }
    .hero-cta { flex-direction: column; }
    .page-hero { padding: 6rem 0 3rem; }
    .page-hero p { font-size: 1rem; }
}

/* Print Styles */
@media print {
    header, footer, .cta-section, .contact-form-container { display: none; }
    body { font-size: 12pt; }
    .page-hero { background: none; color: var(--color-navy); padding: 2rem 0; }
    .page-hero h1 { color: var(--color-navy); }
}
