/* ================================
   ACCESS MULTI-SPECIALTY MEDICAL CLINIC
   Complete Stylesheet - All Pages
   ================================ */

/* ================================
   BASE STYLES (All Pages)
   ================================ */

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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.7;
color: #2c3e50;
background-color: #ffffff;
}

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

/* Enhanced Header */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 16px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

/* Mobile: Header scrolls away - CRITICAL! */
@media (max-width: 768px) {
    header {
        position: relative !important;
    }
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.logo {
flex: 1;
min-width: 280px;
}

.logo h1 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 700;
margin-bottom: 4px;
line-height: 1.2;
}

.logo p {
font-size: 0.9rem;
opacity: 0.95;
font-weight: 500;
}

.header-actions {
display: flex;
gap: 20px;
align-items: center;
flex-wrap: wrap;
}

.phone-cta {
background: rgba(255,255,255,0.15);
padding: 12px 20px;
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid rgba(255,255,255,0.2);
backdrop-filter: blur(10px);
}

.phone-cta:hover {
background: rgba(255,255,255,0.25);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.location-badge {
background: rgba(32, 201, 151, 0.2);
color: #20c997;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
border: 1px solid rgba(32, 201, 151, 0.3);
}

/* Navigation */
nav {
background: rgba(30, 60, 114, 0.95);
padding: 12px 0;
backdrop-filter: blur(10px);
}

.nav-links {
display: flex;
justify-content: center;
gap: 32px;
list-style: none;
flex-wrap: wrap;
align-items: center;
}

.nav-links li {
list-style: none;
display: inline-block;
vertical-align: middle;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
padding: 10px 16px;
border-radius: 20px;
transition: all 0.3s ease;
display: inline-block;
vertical-align: middle;
}

.nav-links a:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-2px);
}

.nav-links a.active {
background: linear-gradient(135deg, #20c997, #17a2b8);
box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Dropdown Navigation - Aligned with nav items */
.nav-dropdown {
position: relative;
display: inline-block;
vertical-align: middle;
}

.dropdown-toggle {
cursor: pointer;
display: inline-block;
color: white;
padding: 10px 16px;
border-radius: 20px;
transition: all 0.3s ease;
vertical-align: middle;
}

.dropdown-toggle::after {
content: ' ▼';
font-size: 0.7rem;
transition: transform 0.3s ease;
margin-left: 4px;
}

.dropdown-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: rgba(30, 60, 114, 0.98);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    list-style: none;
    padding: 8px 0;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white !important;
    text-decoration: none;
    transition: background 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.15);
    transform: none;
}

.dropdown-menu a.active {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}


/* Enhanced Hero Section */
.hero {
background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(42, 82, 152, 0.8) 100%), 
radial-gradient(circle at 30% 40%, rgba(32, 201, 151, 0.3) 0%, transparent 50%),
linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
padding: 80px 0;
text-align: center;
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="3" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="60" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="70" r="2" fill="rgba(255,255,255,0.06)"/><circle cx="10" cy="80" r="1" fill="rgba(255,255,255,0.04)"/></svg>');
animation: float 20s ease-in-out infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
position: relative;
z-index: 2;
}

.hero-badge {
background: linear-gradient(135deg, #20c997, #17a2b8);
color: white;
padding: 8px 20px;
border-radius: 25px;
font-size: 0.9rem;
font-weight: 600;
display: inline-block;
margin-bottom: 24px;
box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.hero h1 {
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 800;
margin-bottom: 24px;
color: white;
line-height: 1.1;
text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
margin-bottom: 32px;
color: rgba(255,255,255,0.95);
max-width: 700px;
margin-left: auto;
margin-right: auto;
font-weight: 400;
}

.hero-ctas {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.cta-primary {
background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
color: white;
padding: 16px 32px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(32, 201, 151, 0.4);
border: none;
cursor: pointer;
}

.cta-primary:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(32, 201, 151, 0.5);
}

.cta-secondary {
background: rgba(255,255,255,0.1);
color: white;
padding: 16px 32px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
}

.cta-secondary:hover {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

.trust-indicators {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
margin-top: 40px;
}

.trust-item {
color: rgba(255,255,255,0.9);
font-size: 0.9rem;
text-align: center;
}

.trust-item strong {
display: block;
font-size: 1.1rem;
margin-bottom: 4px;
}

/* Main Content Sections */
.section {
padding: 80px 0;
}

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

.section-badge {
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
color: #1976d2;
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
margin-bottom: 16px;
}

.section h2 {
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
line-height: 1.2;
}

.section-description {
font-size: 1.2rem;
color: #6c757d;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

/* Featured Treatments Grid */
.treatments-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 32px;
margin-top: 60px;
}

.treatment-card {
background: white;
border-radius: 20px;
padding: 40px 32px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
transition: all 0.3s ease;
border: 1px solid rgba(30, 60, 114, 0.1);
position: relative;
overflow: hidden;
}

.treatment-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(135deg, #20c997, #17a2b8);
}

.treatment-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.treatment-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
font-size: 24px;
}

.treatment-card h3 {
font-size: 1.4rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
line-height: 1.3;
}

.treatment-card p {
color: #6c757d;
line-height: 1.6;
margin-bottom: 24px;
}

.learn-more {
color: #1e3c72;
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.learn-more:hover {
color: #20c997;
transform: translateX(4px);
}

/* Quick Access Section */
.quick-access {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quick-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
}

.quick-card {
background: white;
padding: 32px;
border-radius: 16px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
transition: all 0.3s ease;
}

.quick-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.quick-card h3 {
font-size: 1.3rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 12px;
}

.quick-card p {
color: #6c757d;
margin-bottom: 20px;
line-height: 1.5;
}

.quick-cta {
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: white;
padding: 12px 24px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
display: inline-block;
transition: all 0.3s ease;
}

.quick-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(30, 60, 114, 0.3);
}

/* Footer */
footer {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 60px 0 30px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h3 {
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 20px;
color: #20c997;
}

.footer-section p {
margin-bottom: 8px;
line-height: 1.6;
color: rgba(255,255,255,0.9);
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
.header-content {
flex-direction: column;
text-align: center;
}

.nav-links {
gap: 16px;
}

.hero {
padding: 60px 0;
}

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

.section {
padding: 60px 0;
}

.treatments-grid {
grid-template-columns: 1fr;
gap: 24px;
}

.treatment-card {
padding: 32px 24px;
}

.trust-indicators {
gap: 24px;
}

.container {
padding: 0 20px;
}
}

@media (max-width: 480px) {
.hero-ctas > * {
width: 100%;
text-align: center;
}

.treatment-card {
padding: 24px 20px;
}
}

/* Loading animations */
.fade-in-up {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* ================================
   TREATMENTS PAGE SPECIFIC STYLES
   ================================ */

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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.7;
color: #2c3e50;
background-color: #ffffff;
}

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

/* Header (consistent with homepage) */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 16px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.logo {
flex: 1;
min-width: 280px;
}

.logo h1 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 700;
margin-bottom: 4px;
line-height: 1.2;
}

.logo p {
font-size: 0.9rem;
opacity: 0.95;
font-weight: 500;
}

.header-actions {
display: flex;
gap: 20px;
align-items: center;
flex-wrap: wrap;
}

.phone-cta {
background: rgba(255,255,255,0.15);
padding: 12px 20px;
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid rgba(255,255,255,0.2);
}

.phone-cta:hover {
background: rgba(255,255,255,0.25);
transform: translateY(-2px);
}

.location-badge {
background: rgba(32, 201, 151, 0.2);
color: #20c997;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
border: 1px solid rgba(32, 201, 151, 0.3);
}

nav {
background: rgba(30, 60, 114, 0.95);
padding: 12px 0;
}

.nav-links {
display: flex;
justify-content: center;
gap: 32px;
list-style: none;
flex-wrap: wrap;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
padding: 10px 16px;
border-radius: 20px;
transition: all 0.3s ease;
}

.nav-links a:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-2px);
}

.nav-links a.active {
background: linear-gradient(135deg, #20c997, #17a2b8);
box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Page Header */
.page-hero {
background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.8)), 
linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: clamp(2.5rem, 5vw, 3.2rem);
font-weight: 700;
color: white;
margin-bottom: 16px;
line-height: 1.2;
}

.page-hero p {
font-size: 1.2rem;
color: rgba(255,255,255,0.9);
max-width: 600px;
margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
padding: 20px 0;
background: #f8f9fa;
border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
color: #6c757d;
text-decoration: none;
font-size: 0.9rem;
}

.breadcrumb a:hover {
color: #1e3c72;
}

.breadcrumb span {
color: #1e3c72;
font-weight: 600;
}

/* Treatment Sections */
.treatment-section {
padding: 80px 0;
border-bottom: 1px solid #f1f3f4;
}

.treatment-section:nth-child(even) {
background: #fafbfc;
}

.treatment-header {
display: grid;
grid-template-columns: 1fr 300px;
gap: 60px;
align-items: start;
margin-bottom: 60px;
}

.treatment-content h2 {
font-size: 2.5rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
line-height: 1.2;
}

.treatment-badge {
background: linear-gradient(135deg, #20c997, #17a2b8);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
margin-bottom: 16px;
}

.treatment-summary {
font-size: 1.2rem;
color: #6c757d;
line-height: 1.6;
margin-bottom: 32px;
}

.treatment-sidebar {
background: white;
padding: 32px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
position: sticky;
top: 120px;
}

.sidebar-item {
margin-bottom: 24px;
}

.sidebar-item h4 {
font-size: 1rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 8px;
}

.sidebar-item p {
font-size: 0.9rem;
color: #6c757d;
line-height: 1.5;
}

.quick-facts {
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
padding: 24px;
border-radius: 12px;
margin-bottom: 24px;
}

.quick-facts h4 {
color: #1976d2;
margin-bottom: 12px;
}

.quick-facts ul {
list-style: none;
padding: 0;
}

.quick-facts li {
color: #1976d2;
font-size: 0.9rem;
margin-bottom: 4px;
position: relative;
padding-left: 16px;
}

.quick-facts li::before {
content: "✓";
position: absolute;
left: 0;
font-weight: bold;
}

.book-cta {
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: white;
padding: 16px 24px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
display: block;
text-align: center;
transition: all 0.3s ease;
margin-top: 24px;
}

.book-cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.treatment-details {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 60px;
}

.detail-card {
background: white;
padding: 32px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.detail-card h3 {
font-size: 1.4rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
}

.detail-card ul {
list-style: none;
padding: 0;
}

.detail-card li {
margin-bottom: 8px;
position: relative;
padding-left: 20px;
line-height: 1.5;
}

.detail-card li::before {
content: "•";
position: absolute;
left: 0;
color: #20c997;
font-weight: bold;
}

.faq-section {
margin-top: 60px;
}

.faq-item {
background: white;
margin-bottom: 16px;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
overflow: hidden;
}

.faq-question {
background: linear-gradient(135deg, #f8f9fa, #e9ecef);
padding: 20px 24px;
cursor: pointer;
font-weight: 600;
color: #1e3c72;
display: flex;
justify-content: space-between;
align-items: center;
}

.faq-answer {
padding: 0 24px;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
}

.faq-answer.active {
padding: 20px 24px;
max-height: 500px;
}

.faq-toggle {
font-size: 1.2rem;
transition: transform 0.3s ease;
}

.faq-toggle.active {
transform: rotate(45deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.treatment-header {
grid-template-columns: 1fr;
gap: 40px;
}

.treatment-sidebar {
position: static;
}

.treatment-details {
grid-template-columns: 1fr;
gap: 24px;
}

.treatment-section {
padding: 60px 0;
}

.nav-links {
gap: 16px;
}

.container {
padding: 0 20px;
}
}

/* ================================
   APPOINTMENT PAGE SPECIFIC STYLES
   ================================ */

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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.7;
color: #2c3e50;
background-color: #ffffff;
}

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

/* Header (copied to match conditions.html) */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 16px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.logo {
flex: 1;
min-width: 280px;
}

.logo h1 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 700;
margin-bottom: 4px;
line-height: 1.2;
}

.logo p {
font-size: 0.9rem;
opacity: 0.95;
font-weight: 500;
}

.header-actions {
display: flex;
gap: 20px;
align-items: center;
flex-wrap: wrap;
}

.phone-cta {
background: rgba(255,255,255,0.15);
padding: 12px 20px;
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid rgba(255,255,255,0.2);
}

.phone-cta:hover {
background: rgba(255,255,255,0.25);
transform: translateY(-2px);
}

.location-badge {
background: rgba(32, 201, 151, 0.2);
color: #20c997;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
border: 1px solid rgba(32, 201, 151, 0.3);
}

nav {
background: rgba(30, 60, 114, 0.95);
padding: 12px 0;
}

.nav-links {
display: flex;
justify-content: center;
gap: 32px;
list-style: none;
flex-wrap: wrap;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
padding: 10px 16px;
border-radius: 20px;
transition: all 0.3s ease;
}

.nav-links a:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-2px);
}

.nav-links a.active {
background: linear-gradient(135deg, #20c997, #17a2b8);
box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Page Hero + Breadcrumb (same layout style as conditions.html) */
.page-hero {
background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.8)),
linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: clamp(2.5rem, 5vw, 3.2rem);
font-weight: 700;
color: white;
margin-bottom: 16px;
line-height: 1.2;
}

.page-hero p {
font-size: 1.2rem;
color: rgba(255,255,255,0.9);
max-width: 600px;
margin: 0 auto;
}

.breadcrumb {
padding: 20px 0;
background: #f8f9fa;
border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
color: #6c757d;
text-decoration: none;
font-size: 0.9rem;
}

.breadcrumb a:hover {
color: #1e3c72;
}

.breadcrumb span {
color: #1e3c72;
font-weight: 600;
}

/* Section wrapper for main content */
.section {
padding: 60px 0;
background: #ffffff;
}

/* Form Container Styles (from your original design) */
.form-container {
max-width: 800px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 15px 50px rgba(0,0,0,0.1);
overflow: hidden;
}

.form-header {
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: white;
padding: 40px;
text-align: center;
}

.form-header h2 {
font-size: 2rem;
margin-bottom: 12px;
}

.form-header p {
opacity: 0.9;
font-size: 1.1rem;
}

.form-content {
padding: 40px;
}

.form-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
margin-bottom: 24px;
}

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

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: #1e3c72;
font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 16px;
border: 2px solid #e9ecef;
border-radius: 12px;
font-size: 1rem;
transition: all 0.3s ease;
background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #20c997;
background: white;
box-shadow: 0 0 0 0.2rem rgba(32, 201, 151, 0.25);
}

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

.required {
color: #dc3545;
}

.form-section {
margin-bottom: 40px;
padding-bottom: 32px;
border-bottom: 1px solid #f1f3f4;
}

.form-section:last-child {
border-bottom: none;
margin-bottom: 0;
}

.form-section h3 {
color: #1e3c72;
font-size: 1.4rem;
margin-bottom: 20px;
padding-bottom: 12px;
border-bottom: 2px solid #20c997;
display: inline-block;
}

.treatment-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 16px;
margin-bottom: 20px;
}

.treatment-option {
background: #f8f9fa;
padding: 20px;
border-radius: 12px;
border: 2px solid transparent;
cursor: pointer;
transition: all 0.3s ease;
}

.treatment-option:hover {
border-color: #20c997;
background: white;
}

.treatment-option.selected {
border-color: #20c997;
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
}

.treatment-option input[type="radio"] {
display: none;
}

.treatment-option h4 {
color: #1e3c72;
margin-bottom: 8px;
font-size: 1.1rem;
}

.treatment-option p {
color: #6c757d;
font-size: 0.9rem;
line-height: 1.4;
}

.submit-btn {
background: linear-gradient(135deg, #20c997, #17a2b8);
color: white;
padding: 18px 40px;
border: none;
border-radius: 50px;
font-size: 1.2rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(32, 201, 151, 0.3);
width: 100%;
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
}

.submit-btn:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none;
}

.privacy-notice {
background: #e8f5e8;
padding: 20px;
border-radius: 12px;
margin-top: 32px;
border-left: 4px solid #28a745;
}

.privacy-notice h4 {
color: #155724;
margin-bottom: 8px;
}

.privacy-notice p {
color: #155724;
font-size: 0.95rem;
line-height: 1.5;
}

.insurance-card-notice {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 16px;
    margin-top: 12px;
    border-radius: 8px;
}

.insurance-card-notice p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #1565c0;
}

.insurance-card-notice strong {
    color: #0d47a1;
}

.insurance-card-notice .note {
    font-size: 0.85rem;
    font-style: italic;
    color: #1976d2;
    margin-top: 12px;
}

.insurance-card-notice a {
    color: #1976d2;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.container {
padding: 0 20px;
}

.nav-links {
gap: 16px;
}

.form-content {
padding: 32px 24px;
}

.form-header {
padding: 32px 24px;
}

.form-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.treatment-options {
grid-template-columns: 1fr;
gap: 12px;
}
}

/* ================================
   CONDITIONS PAGE SPECIFIC STYLES
   ================================ */

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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.7;
color: #2c3e50;
background-color: #ffffff;
}

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

/* Header (consistent with other pages) */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 16px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.logo {
flex: 1;
min-width: 280px;
}

.logo h1 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 700;
margin-bottom: 4px;
line-height: 1.2;
}

.logo p {
font-size: 0.9rem;
opacity: 0.95;
font-weight: 500;
}

.header-actions {
display: flex;
gap: 20px;
align-items: center;
flex-wrap: wrap;
}

.phone-cta {
background: rgba(255,255,255,0.15);
padding: 12px 20px;
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid rgba(255,255,255,0.2);
}

.phone-cta:hover {
background: rgba(255,255,255,0.25);
transform: translateY(-2px);
}

.location-badge {
background: rgba(32, 201, 151, 0.2);
color: #20c997;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
border: 1px solid rgba(32, 201, 151, 0.3);
}

nav {
background: rgba(30, 60, 114, 0.95);
padding: 12px 0;
}

.nav-links {
display: flex;
justify-content: center;
gap: 32px;
list-style: none;
flex-wrap: wrap;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
padding: 10px 16px;
border-radius: 20px;
transition: all 0.3s ease;
}

.nav-links a:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-2px);
}

.nav-links a.active {
background: linear-gradient(135deg, #20c997, #17a2b8);
box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Page Header */
.page-hero {
background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.8)), 
linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: clamp(2.5rem, 5vw, 3.2rem);
font-weight: 700;
color: white;
margin-bottom: 16px;
line-height: 1.2;
}

.page-hero p {
font-size: 1.2rem;
color: rgba(255,255,255,0.9);
max-width: 600px;
margin: 0 auto;
}

.breadcrumb {
padding: 20px 0;
background: #f8f9fa;
border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
color: #6c757d;
text-decoration: none;
font-size: 0.9rem;
}

.breadcrumb a:hover {
color: #1e3c72;
}

.breadcrumb span {
color: #1e3c72;
font-weight: 600;
}

/* Condition Sections */
.condition-section {
padding: 80px 0;
border-bottom: 1px solid #f1f3f4;
}

.condition-section:nth-child(even) {
background: #fafbfc;
}

.condition-header {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 60px;
align-items: start;
margin-bottom: 60px;
}

.condition-content h2 {
font-size: 2.5rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
line-height: 1.2;
}

.condition-badge {
background: linear-gradient(135deg, #dc3545, #c82333);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
margin-bottom: 16px;
}

.specialty-badge {
background: linear-gradient(135deg, #20c997, #17a2b8);
color: white;
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
display: inline-block;
margin-bottom: 16px;
}

.condition-summary {
font-size: 1.2rem;
color: #6c757d;
line-height: 1.6;
margin-bottom: 32px;
}

.condition-sidebar {
background: white;
padding: 32px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
position: sticky;
top: 120px;
}

.stats-box {
background: linear-gradient(135deg, #fff3cd, #ffeaa7);
padding: 24px;
border-radius: 12px;
margin-bottom: 24px;
text-align: center;
}

.stats-box h4 {
color: #856404;
margin-bottom: 12px;
font-size: 1.1rem;
}

.stat-item {
margin-bottom: 8px;
color: #856404;
font-size: 0.9rem;
}

.stat-number {
font-weight: 700;
font-size: 1.1rem;
}

.treatment-options {
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
padding: 24px;
border-radius: 12px;
margin-bottom: 24px;
}

.treatment-options h4 {
color: #1976d2;
margin-bottom: 12px;
}

.treatment-options ul {
list-style: none;
padding: 0;
}

.treatment-options li {
color: #1976d2;
font-size: 0.9rem;
margin-bottom: 6px;
position: relative;
padding-left: 16px;
}

.treatment-options li::before {
content: "→";
position: absolute;
left: 0;
font-weight: bold;
}

.book-cta {
background: linear-gradient(135deg, #1e3c72, #2a5298);
color: white;
padding: 16px 24px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
display: block;
text-align: center;
transition: all 0.3s ease;
}

.book-cta:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.condition-details {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 60px;
}

.detail-card {
background: white;
padding: 32px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.detail-card h3 {
font-size: 1.4rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
}

.detail-card ul {
list-style: none;
padding: 0;
}

.detail-card li {
margin-bottom: 8px;
position: relative;
padding-left: 20px;
line-height: 1.5;
}

.detail-card li::before {
content: "•";
position: absolute;
left: 0;
color: #20c997;
font-weight: bold;
}

.warning-signs {
background: linear-gradient(135deg, #f8d7da, #f5c6cb);
border-left: 4px solid #dc3545;
padding: 24px;
border-radius: 12px;
margin-bottom: 32px;
}

.warning-signs h4 {
color: #721c24;
margin-bottom: 12px;
font-size: 1.2rem;
}

.warning-signs p {
color: #721c24;
margin-bottom: 16px;
line-height: 1.6;
}

.emergency-cta {
background: #dc3545;
color: white;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
display: inline-block;
transition: all 0.3s ease;
}

.emergency-cta:hover {
background: #c82333;
transform: translateY(-2px);
}

/* Success Stories Section */
.success-section {
background: linear-gradient(135deg, #d4edda, #c3e6cb);
padding: 60px 0;
}

.success-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}

.success-content h3 {
font-size: 2rem;
color: #155724;
margin-bottom: 24px;
}

.success-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 32px;
margin-top: 40px;
}

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

.success-stat .number {
font-size: 3rem;
font-weight: 700;
color: #155724;
display: block;
}

.success-stat .label {
color: #155724;
font-weight: 600;
font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.condition-header {
grid-template-columns: 1fr;
gap: 40px;
}

.condition-sidebar {
position: static;
}

.condition-details {
grid-template-columns: 1fr;
gap: 24px;
}

.condition-section {
padding: 60px 0;
}

.nav-links {
gap: 16px;
}

.container {
padding: 0 20px;
}

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

/* ================================
   CONTACT PAGE SPECIFIC STYLES
   ================================ */

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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.7;
color: #2c3e50;
background-color: #ffffff;
}

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

/* Header (consistent) */
header {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
padding: 16px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.logo {
flex: 1;
min-width: 280px;
}

.logo h1 {
font-size: clamp(1.4rem, 3vw, 1.8rem);
font-weight: 700;
margin-bottom: 4px;
line-height: 1.2;
}

.logo p {
font-size: 0.9rem;
opacity: 0.95;
font-weight: 500;
}

.header-actions {
display: flex;
gap: 20px;
align-items: center;
flex-wrap: wrap;
}

.phone-cta {
background: rgba(255,255,255,0.15);
padding: 12px 20px;
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid rgba(255,255,255,0.2);
}

.phone-cta:hover {
background: rgba(255,255,255,0.25);
transform: translateY(-2px);
}

.location-badge {
background: rgba(32, 201, 151, 0.2);
color: #20c997;
padding: 8px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
border: 1px solid rgba(32, 201, 151, 0.3);
}

nav {
background: rgba(30, 60, 114, 0.95);
padding: 12px 0;
}

.nav-links {
display: flex;
justify-content: center;
gap: 32px;
list-style: none;
flex-wrap: wrap;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
padding: 10px 16px;
border-radius: 20px;
transition: all 0.3s ease;
}

.nav-links a:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-2px);
}

.nav-links a.active {
background: linear-gradient(135deg, #20c997, #17a2b8);
box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* Page Header */
.page-hero {
background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.8)), 
linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
padding: 60px 0;
text-align: center;
}

.page-hero h1 {
font-size: clamp(2.5rem, 5vw, 3.2rem);
font-weight: 700;
color: white;
margin-bottom: 16px;
line-height: 1.2;
}

.page-hero p {
font-size: 1.2rem;
color: rgba(255,255,255,0.9);
max-width: 600px;
margin: 0 auto;
}

.breadcrumb {
padding: 20px 0;
background: #f8f9fa;
border-bottom: 1px solid #e9ecef;
}

.breadcrumb a {
color: #6c757d;
text-decoration: none;
font-size: 0.9rem;
}

.breadcrumb a:hover {
color: #1e3c72;
}

.breadcrumb span {
color: #1e3c72;
font-weight: 600;
}

/* Contact Content */
.contact-section {
padding: 80px 0;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
margin-bottom: 60px;
}

.contact-card {
background: white;
padding: 40px;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
border-top: 4px solid #20c997;
transition: all 0.3s ease;
}

.contact-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.contact-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
font-size: 24px;
}

.contact-card h3 {
font-size: 1.4rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
}

.contact-card p {
color: #6c757d;
margin-bottom: 12px;
line-height: 1.6;
}

.contact-card strong {
color: #1e3c72;
}

.contact-cta {
background: linear-gradient(135deg, #20c997, #17a2b8);
color: white;
padding: 14px 36px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
display: inline-block;
margin-top: 16px;
transition: all 0.3s ease;
font-size: 1rem;
}

.contact-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(32, 201, 151, 0.3);
}

/* Map Section */
.map-section {
background: #fafbfc;
padding: 80px 0;
}

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

.map-header h2 {
font-size: 2.5rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
}

.map-container {
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 50px rgba(0,0,0,0.15);
margin-bottom: 40px;
}

.location-features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 24px;
margin-top: 40px;
}

.feature-card {
background: white;
padding: 24px;
border-radius: 12px;
text-align: center;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.feature-card h4 {
color: #1e3c72;
margin-bottom: 8px;
font-size: 1.1rem;
}

.feature-card p {
color: #6c757d;
font-size: 0.9rem;
}

/* Insurance Section */
.insurance-section {
padding: 80px 0;
}

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

.insurance-header h2 {
font-size: 2.5rem;
font-weight: 700;
color: #1e3c72;
margin-bottom: 16px;
}

.insurance-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 32px;
}

.insurance-card {
background: linear-gradient(135deg, #e3f2fd, #bbdefb);
padding: 32px;
border-radius: 16px;
text-align: center;
}

.insurance-card h3 {
color: #1976d2;
margin-bottom: 16px;
font-size: 1.3rem;
}

.insurance-list {
list-style: none;
padding: 0;
}

.insurance-list li {
color: #1976d2;
margin-bottom: 8px;
font-weight: 500;
}

/* Hours Section */
.hours-section {
background: linear-gradient(135deg, #fff3cd, #ffeaa7);
padding: 60px 0;
margin: 80px 0;
border-radius: 20px;
}

.hours-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.hours-content h3 {
color: #856404;
font-size: 2rem;
margin-bottom: 24px;
}

.hours-content p {
color: #856404;
font-size: 1.1rem;
margin-bottom: 16px;
line-height: 1.6;
}

/* Emergency Section */
.emergency-section {
background: linear-gradient(135deg, #f8d7da, #f5c6cb);
padding: 40px;
border-radius: 16px;
margin: 40px 0;
border-left: 4px solid #dc3545;
}

.emergency-section h4 {
color: #721c24;
font-size: 1.4rem;
margin-bottom: 16px;
}

.emergency-section p {
color: #721c24;
margin-bottom: 20px;
line-height: 1.6;
}

.emergency-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

.emergency-cta {
background: #dc3545;
color: white;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}

.emergency-cta:hover {
background: #c82333;
transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 32px;
}

.contact-section {
padding: 60px 0;
}

.map-section {
padding: 60px 0;
}

.insurance-section {
padding: 60px 0;
}

.nav-links {
gap: 16px;
}

.container {
padding: 0 20px;
}

.emergency-buttons {
flex-direction: column;
}

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


/* Doctor/Team Member Images */
.doctor-image,
.doctor-photo {
    max-width: 300px;
}

.doctor-image img,
.doctor-photo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    display: block;
}

.photo-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Team member cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.team-photo-container {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
}

.team-member-info {
    padding: 32px;
}

.team-member-info h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member-title {
    color: #20c997;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.team-member-info p {
    color: #5a6c7d;
    line-height: 1.8;
}

.view-profile-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.3);
}

/* Doctor Profile Page Styles */
.doctor-hero {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.8)), 
                linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

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

@media (max-width: 768px) {
    .doctor-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.doctor-content {
    color: white;
}

.doctor-badge {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.doctor-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.doctor-title {
    font-size: 1.3rem;
    color: #20c997;
    font-weight: 600;
    margin-bottom: 24px;
}

.doctor-summary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.credentials-list {
    list-style: none;
    padding: 0;
}

.credentials-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
    font-weight: 500;
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #20c997;
    font-weight: bold;
}

/* Timeline Styles */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #20c997, #17a2b8);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin-left: calc(50% + 40px);
    position: relative;
}

@media (max-width: 768px) {
    .timeline-content {
        margin-left: 60px;
    }
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent white transparent transparent;
}

.timeline-year {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 16px;
}

.timeline-content h3 {
    color: #1e3c72;
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.timeline-content p {
    color: #5a6c7d;
    line-height: 1.8;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #20c997, #17a2b8);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.2);
    z-index: 1;
}

@media (max-width: 768px) {
    .timeline-dot {
        left: 30px;
    }
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.expertise-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.expertise-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 1.4rem;
    color: #1e3c72;
    margin-bottom: 16px;
    font-weight: 700;
}

.expertise-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #2c3e50;
}

.expertise-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #20c997;
    font-weight: bold;
}

/* Philosophy Section */
.philosophy-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.philosophy-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
    position: relative;
    padding: 0 40px;
}

.philosophy-quote::before {
    content: '"';
    font-size: 4rem;
    color: #20c997;
    position: absolute;
    left: 0;
    top: -20px;
    font-family: Georgia, serif;
}

.philosophy-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.9;
    text-align: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #1e3c72;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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