/* ============================================================
   AA Rheumatology - Complete Stylesheet
   ============================================================ */

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary-color: #2D4A3E;
    --secondary-color: #1B3A2D;
    --accent-color: #C5A55A;
    --accent-light: #D4B96E;
    --sage: #8FA98B;
    --sage-light: #A8BFA5;
    --text-dark: #2A2A2A;
    --text-light: #5C5C5C;
    --text-muted: #8A8A8A;
    --bg-cream: #F5F0E8;
    --bg-cream-light: #FAF7F2;
    --bg-sage-tint: #EEF2EC;
    --white: #FFFFFF;
    --border-color: #DDD5C8;
    --shadow: 0 4px 6px rgba(45, 74, 62, 0.08);
    --shadow-lg: 0 10px 30px rgba(45, 74, 62, 0.12);
    --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.15);
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-cream-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: var(--bg-cream-light);
    box-shadow: 0 1px 0 var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* New Logo Mark */
.logo-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(197, 165, 90, 0.4);
    border-radius: 6px;
}

.logo-initials {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 14px;
    border-radius: 20px;
}

.nav-menu li a:hover {
    color: var(--primary-color);
    background: var(--bg-sage-tint);
}

.nav-menu li a.active {
    color: var(--white);
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(45, 74, 62, 0.25);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ============================================================
   HORIZONTAL SLIDE CAROUSEL
   ============================================================ */
.slides-wrapper {
    position: relative;
    height: 100vh;
    margin-top: 74px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 58, 45, 0.92) 0%, rgba(45, 74, 62, 0.85) 50%, rgba(27, 58, 45, 0.78) 100%);
}

/* Rheumatology-themed subtle background pattern */
.slide-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image:
        radial-gradient(ellipse 120px 180px at 8% 20%, rgba(197, 165, 90, 1) 0%, transparent 70%),
        radial-gradient(ellipse 100px 160px at 12% 60%, rgba(197, 165, 90, 1) 0%, transparent 70%),
        radial-gradient(circle 8px at 10% 35%, rgba(255,255,255,1) 0%, transparent 60%),
        radial-gradient(circle 6px at 8% 45%, rgba(255,255,255,1) 0%, transparent 60%),
        radial-gradient(circle 7px at 14% 38%, rgba(255,255,255,1) 0%, transparent 60%),
        radial-gradient(ellipse 80px 120px at 6% 75%, rgba(197, 165, 90, 0.8) 0%, transparent 70%),
        radial-gradient(ellipse 60px 90px at 18% 15%, rgba(197, 165, 90, 0.6) 0%, transparent 70%),
        /* Spine-like vertical dots on left edge */
        radial-gradient(circle 3px at 3% 10%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 18%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 26%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 34%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 42%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 50%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 58%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 66%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 74%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 82%, rgba(255,255,255,0.8) 0%, transparent 50%),
        radial-gradient(circle 3px at 3% 90%, rgba(255,255,255,0.8) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Hero Split Layout */
.hero-split {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: calc(100vh - 74px);
    padding: 40px 0;
}

.hero-content-left {
    flex: 1;
    text-align: left;
    color: var(--white);
    max-width: 600px;
}

.hero-content-left .premium-line {
    justify-content: flex-start;
}

.hero-content-left .hero-buttons {
    justify-content: flex-start;
}

.hero-content-left .slide-conditions-list {
    justify-content: flex-start;
}

/* Doctor Photo Side */
.hero-photo-side {
    flex: 0 0 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-doctor-frame {
    position: relative;
    z-index: 2;
    width: 340px;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(197, 165, 90, 0.4);
}

.hero-doctor-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hero-photo-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 340px;
    height: 440px;
    border: 2px solid rgba(197, 165, 90, 0.3);
    border-radius: 16px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    margin: 0 auto;
}

/* Premium Lines */
.premium-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.premium-line.bottom-line {
    margin-top: 28px;
    margin-bottom: 32px;
}

.line-decoration {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.premium-text {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Hero Typography */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero-role {
    font-size: 20px;
    font-weight: 300;
    color: var(--accent-light);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

.slide-heading {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.slide-text {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 32px;
}

.slide-conditions-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.slide-conditions-list span {
    padding: 8px 20px;
    border: 1px solid rgba(197, 165, 90, 0.4);
    border-radius: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Slide Navigation */
.slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.slide-arrow-left { left: 24px; }
.slide-arrow-right { right: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 15px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    font-weight: 300;
}

/* ============================================================
   BIOGRAPHY SECTION
   ============================================================ */
.biography {
    background: var(--white);
}

/* Bio Summary Card */
.bio-summary {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.bio-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.bio-summary .subtitle {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.bio-summary .credentials {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    line-height: 1.6;
}

.bio-quick-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.bio-quick-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    padding: 8px 18px;
    background: var(--bg-cream-light);
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.bio-quick-info i {
    color: var(--accent-color);
}

/* Bio Content Grid */
.biography-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: start;
}

/* Bio Images */
.biography-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bio-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-color);
}

.bio-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    
}

.bio-image-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 3px solid var(--accent-color);
}

/* Bio Text */
.biography-text h4 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 14px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.biography-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.bio-lead {
    font-size: 18px;
    color: var(--text-dark) !important;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin-bottom: 24px !important;
    line-height: 1.75;
}

.qualifications-list {
    list-style: none;
}

.qualifications-list li {
    padding: 9px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.qualifications-list li i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tag {
    display: inline-block;
    padding: 7px 18px;
    background: var(--bg-sage-tint);
    border-radius: 25px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(45, 74, 62, 0.1);
}

/* ============================================================
   CONDITIONS SECTION
   ============================================================ */
.conditions {
    background: var(--bg-cream);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.condition-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(221, 213, 200, 0.5);
}

.condition-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.condition-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.condition-icon i {
    font-size: 32px;
    color: var(--white);
}

.condition-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.condition-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.65;
    font-size: 15px;
}

.learn-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease, color 0.3s ease;
    font-size: 14px;
}

.learn-more:hover {
    gap: 10px;
    color: var(--primary-color);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 58, 45, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog {
    background: var(--bg-cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(221, 213, 200, 0.5);
    cursor: pointer;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-color);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
    font-family: 'Playfair Display', serif;
}

.blog-author-line {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-style: italic;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease, color 0.3s ease;
    font-size: 14px;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-color);
}

/* ============================================================
   BLOG ARTICLE SECTION
   ============================================================ */
.blog-article-section {
    background: var(--white);
    padding: 80px 0;
}

.blog-article {
    max-width: 820px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.article-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.article-author {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-cream-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.author-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.author-details strong {
    font-size: 17px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
}

.author-details p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.article-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta i {
    color: var(--accent-color);
    font-size: 14px;
}

/* Article Body */
.article-body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-light);
}

.article-body p {
    margin-bottom: 18px;
}

.article-body .article-intro {
    font-size: 19px;
    color: var(--text-dark);
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
    margin-bottom: 28px;
    line-height: 1.75;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 44px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-cream);
    font-weight: 700;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 21px;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.article-body ul {
    margin-bottom: 18px;
    padding-left: 0;
    list-style: none;
}

.article-body ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Article Callout Box */
.article-callout {
    background: linear-gradient(135deg, rgba(45, 74, 62, 0.04), rgba(197, 165, 90, 0.06));
    border: 1px solid rgba(197, 165, 90, 0.2);
    border-left: 5px solid var(--accent-color);
    border-radius: 10px;
    padding: 30px;
    margin-top: 44px;
}

.article-callout h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 14px;
    padding-bottom: 0;
    border-bottom: none;
}

.article-callout p {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
}

.article-callout p:last-child {
    margin-bottom: 0;
}

.article-callout strong {
    color: var(--primary-color);
}

/* ============================================================
   CLINIC LOCATIONS
   ============================================================ */
.clinic-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.clinic-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clinic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.clinic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.clinic-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.clinic-card-icon i {
    font-size: 26px;
    color: var(--white);
}

.clinic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.clinic-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.clinic-address i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.clinic-address p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.clinic-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--bg-sage-tint);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 74, 62, 0.1);
}

.clinic-directions-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 74, 62, 0.2);
}

/* ============================================================
   CONTACT COMING SOON
   ============================================================ */
.contact-coming-soon {
    background: var(--bg-cream-light);
}

.coming-soon-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding: 50px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.coming-soon-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.coming-soon-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.coming-soon-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 16px;
}

.coming-soon-note {
    font-size: 14px !important;
    color: var(--text-muted) !important;
    font-style: italic;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    background: var(--bg-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(221, 213, 200, 0.5);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-cream-light);
}

.faq-question h3 {
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 6px;
}

.footer-logo .logo-mark::after {
    border-radius: 4px;
}

.footer-logo .logo-initials {
    font-size: 15px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    margin: 0;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-light);
}

.footer-section ul li i {
    color: var(--accent-color);
    font-size: 13px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-4px);
}

.scroll-top.show {
    display: flex;
}

/* ============================================================
   RESPONSIVE - TABLET
   ============================================================ */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 74px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        padding: 10px 20px;
        border-radius: 8px;
        margin: 2px 16px;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-title,
    .slide-heading {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 0;
    }

    .hero-content-left {
        text-align: center;
        max-width: 100%;
    }

    .hero-content-left .premium-line {
        justify-content: center;
    }

    .hero-content-left .hero-buttons {
        justify-content: center;
    }

    .hero-content-left .slide-conditions-list {
        justify-content: center;
    }

    .hero-photo-side {
        flex: 0 0 auto;
    }

    .hero-doctor-frame {
        width: 260px;
        height: 340px;
    }

    .hero-photo-accent {
        width: 260px;
        height: 340px;
        top: -10px;
        right: -10px;
    }

    .slide-arrow {
        display: none;
    }

    .biography-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .conditions-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .bio-quick-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .article-body h2 {
        font-size: 22px;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE
   ============================================================ */
@media (max-width: 576px) {
    .slides-wrapper {
        height: 85vh;
    }

    .hero-title,
    .slide-heading {
        font-size: 32px;
    }

    .hero-role {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-doctor-frame {
        width: 200px;
        height: 260px;
    }

    .hero-photo-accent {
        width: 200px;
        height: 260px;
        top: -8px;
        right: -8px;
    }

    .hero-split {
        gap: 20px;
        min-height: auto;
    }

    .premium-text {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .line-decoration {
        width: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .bio-summary h3 {
        font-size: 28px;
    }

    .article-header h1 {
        font-size: 24px;
    }

    .article-author {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .article-meta {
        flex-direction: column;
        gap: 8px;
    }

    .coming-soon-content {
        padding: 36px 24px;
    }

    .slide-conditions-list span {
        font-size: 12px;
        padding: 6px 14px;
    }
}