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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 5rem; /* Clear fixed nav */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

/* Navigation - Fixed when scrolled */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
}

.logo-accent {
    color: #0d9488;
}

.logo-icon {
    font-size: 1.5rem;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #0d9488;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
}

.btn-nav {
    background: #0d9488;
    color: #fff !important;
}

.btn-primary {
    background: #0d9488;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 2px solid #374151;
}

.btn-outline:hover {
    background: #f3f4f6;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 3rem 4rem;
    max-width: 640px;
}

.hero-tag {
    display: inline-block;
    background: #0f766e;
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-accent {
    color: #2dd4bf;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* About Us Section */
.about {
    background: #F8F8F5;
    padding: 4rem 3rem;
}

.about-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.about-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.about-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-intro {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card-icon svg {
    width: 100%;
    height: 100%;
    color: #0d9488;
}

.about-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.about-card-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 1024px) {
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-cards {
        grid-template-columns: 1fr;
    }
}

/* Conditions Treated Section */
.conditions {
    background: #fff;
    padding: 4rem 3rem;
}

.conditions-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.conditions-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.conditions-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.conditions-intro {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.conditions-card {
    background: #F8F8F5;
    padding: 1.75rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.conditions-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0d9488;
}

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

.conditions-list li {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    padding: 0.35rem 0 0.35rem 1.25rem;
    position: relative;
}

.conditions-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0d9488;
}

@media (max-width: 1024px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .conditions-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Team Section */
.team {
    background: #F8F8F5;
    padding: 4rem 3rem;
}

.team-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.team-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.team-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.team-intro {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-cards .team-empty {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 28rem;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.team-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.team-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.team-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.25rem 1.25rem 0.25rem;
}

.team-card-title {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 1.25rem 0.5rem;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0 1.25rem 1rem;
}

.team-card-tags .team-card-tag {
    margin: 0;
}

.team-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin: 0 1.25rem 1rem;
}

.team-card-tag-clinic {
    background: #dbeafe;
    color: #1d4ed8;
}

.team-card-tag-online {
    background: #dcfce7;
    color: #15803d;
}

.team-card-tag-both {
    background: #e0e7ff;
    color: #4338ca;
}

.team-card-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    margin: 0 1.25rem 0.75rem;
}

.team-card-location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #0d9488;
}

.team-card-buttons {
    display: flex;
    gap: 0.75rem;
    padding: 0 1.25rem 1.25rem;
}

.team-card-buttons .btn {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
}

.team-card-buttons .btn-outline {
    flex: 1;
    background: #fff;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.team-card-buttons .btn-outline:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.team-card-buttons .btn-primary {
    flex: 1.2;
    background: #0d9488;
    color: #fff;
    border: none;
}

@media (max-width: 1024px) {
    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-cards {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 4rem 3rem;
}

.testimonials-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.testimonials-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.testimonials-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.testimonials-intro {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #F8F8F5;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #0d9488;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    flex: 1;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 2rem;
    line-height: 0;
    color: #0d9488;
    display: block;
    margin-bottom: 0.5rem;
    font-family: Georgia, 'Times New Roman', serif;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #6b7280;
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    background: #F8F8F5;
    padding: 4rem 3rem 0;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.contact-left {
    max-width: 560px;
}

.contact-grid {
    margin-top: 2rem;
}

.contact-form-wrapper {
    max-width: 520px;
    justify-self: stretch;
}

.contact-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.contact-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-intro {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-icon-location { background: #ECFDF3; color: #16A34A; }
.contact-card-icon-phone { background: #ECFEFF; color: #0E7490; }
.contact-card-icon-mail { background: #EEF2FF; color: #4F46E5; }
.contact-card-icon-hours { background: #FEF3C7; color: #D97706; }

.contact-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-card-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.contact-form-row {
    margin-bottom: 1rem;
}

.contact-form-row-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
}

.contact-textarea {
    border-radius: 12px;
    resize: vertical;
    min-height: 150px;
}

.contact-input::placeholder {
    color: #9ca3af;
}

.contact-input:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.2);
}

.contact-submit {
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 999px;
    background: #0d9488;
    color: #ffffff;
    border: none;
}

@media (max-width: 960px) {
    .contact-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .contact {
        padding: 3rem 1.5rem 0;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: #020617;
    color: #e5e7eb;
    padding: 1.5rem 3rem;
    margin-top: 3rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.footer-logo {
    font-weight: 600;
}

.footer-meta {
    color: #9ca3af;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Specialist profile page */
.profile-body {
    background: #f9f9f9;
    min-height: 100vh;
}

.profile-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 6.5rem 3rem 4rem;
}

.profile-back {
    display: inline-block;
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    color: #4b5563;
    text-decoration: none;
}

.profile-back:hover {
    color: #0d9488;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.profile-sidebar {
    position: sticky;
    top: 6rem;
}

.profile-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 1;
    display: block;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.profile-stats {
    list-style: none;
    margin: 1.5rem 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.profile-stat {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.45;
}

.profile-stat-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #0d9488;
    margin-top: 1px;
}

.profile-stat-icon svg {
    width: 100%;
    height: 100%;
}

.profile-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    background: #0d9488;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    box-sizing: border-box;
}

.profile-book-btn:hover {
    opacity: 0.92;
}

.profile-content {
    padding-bottom: 2rem;
}

.profile-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 0.5rem;
}

.profile-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.profile-title {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2.25rem;
}

.profile-section {
    margin-bottom: 2rem;
}

.profile-section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.profile-body-text {
    font-size: 1.02rem;
    color: #4b5563;
    line-height: 1.75;
    max-width: 52rem;
}

.profile-edu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.profile-edu-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.55;
}

.profile-edu-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #0d9488;
    margin-top: 2px;
}

.profile-edu-icon svg {
    width: 100%;
    height: 100%;
}

.profile-specialisation {
    margin-top: 2.5rem;
    padding: 1.75rem 1.5rem;
    background: rgba(13, 148, 136, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(13, 148, 136, 0.12);
}

.profile-specialisation .profile-section-title {
    margin-bottom: 0.65rem;
}

.profile-specialisation .profile-body-text {
    margin: 0;
}

.profile-body .nav .btn-nav {
    border-radius: 999px;
}

@media (max-width: 900px) {
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-sidebar {
        position: static;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .profile-main {
        padding: 5.5rem 1.5rem 3rem;
    }

    .nav {
        padding: 1rem 1.25rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
}

/* Booking page */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.book-body {
    background: #fff;
    min-height: 100vh;
}

.book-body .nav .btn-nav {
    border-radius: 999px;
}

.book-main {
    padding: 6.5rem 1.5rem 4rem;
}

.book-inner {
    max-width: 900px;
    margin: 0 auto;
}

.book-header {
    margin-bottom: 2rem;
}

.book-page-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.book-page-lead {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.book-flashes {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.book-flash {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.book-flash--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.book-flash--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.book-step {
    margin-bottom: 2.5rem;
}

.book-step-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.book-select {
    width: 100%;
    max-width: 420px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
}

.book-select:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.book-visit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.book-visit-option {
    cursor: pointer;
    margin: 0;
}

.book-visit-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.book-visit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    height: 100%;
    padding: 1rem 1rem 1.1rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.book-visit-option:hover .book-visit-card {
    border-color: #99f6e4;
}

.book-visit-input:focus-visible + .book-visit-card {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.book-visit-input:checked + .book-visit-card {
    border-color: #0d9488;
    background: #f0fdfa;
    box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.25);
}

.book-visit-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.book-visit-card-desc {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.book-doctor-filter-copy {
    font-size: 0.9rem;
    color: #0f766e;
    font-weight: 600;
    margin: 0 0 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #ecfdf5;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
}

.book-doctor-hint {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0 0 1rem;
}

.book-doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.book-doctor-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0;
    margin: 0;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s;
    font: inherit;
    color: inherit;
}

.book-doctor-card:hover:not(:disabled) {
    border-color: #99f6e4;
}

.book-doctor-card:focus-visible {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.book-doctor-card.book-doctor-card--filtered-out {
    display: none !important;
}

.book-doctor-card--selected {
    border-color: #0d9488;
    box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.3);
    background: #f0fdfa;
}

.book-doctor-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.book-doctor-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    padding: 0.75rem 0.85rem 0.15rem;
}

.book-doctor-card-role {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.4;
    padding: 0 0.85rem;
}

.book-doctor-card-loc {
    font-size: 0.75rem;
    color: #6b7280;
    padding: 0.35rem 0.85rem 0.85rem;
}

.book-doctor-empty {
    font-size: 0.95rem;
    color: #b45309;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin: 0;
}

.book-calendar-card {
    max-width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1rem 1rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.book-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.book-cal-month {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.book-cal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
}

.book-cal-nav:hover {
    background: #f3f4f6;
    color: #374151;
}

.book-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9ca3af;
    text-align: center;
}

.book-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
}

.book-cal-day {
    aspect-ratio: 1;
    max-height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.book-cal-day:hover:not(:disabled) {
    background: #f3f4f6;
}

.book-cal-day--muted {
    color: #d1d5db;
    cursor: default;
}

.book-cal-day--past {
    color: #d1d5db;
    cursor: not-allowed;
}

.book-cal-day--today:not(.book-cal-day--selected) {
    background: #e0f2f1;
    color: #0f766e;
}

.book-cal-day--selected {
    background: #0d9488;
    color: #fff;
    font-weight: 600;
}

.book-cal-day--selected:hover:not(:disabled) {
    background: #0f766e;
}

.book-time-hint {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.book-time-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
}

.book-time-slot {
    padding: 0.65rem 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.book-time-slot:hover:not(:disabled) {
    border-color: #0d9488;
    color: #0d9488;
}

.book-time-slot--selected {
    background: #0d9488;
    border-color: #0d9488;
    color: #fff;
}

.book-time-slot--selected:hover:not(:disabled) {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
}

.book-time-slot--unavailable {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
    text-decoration: line-through;
    cursor: not-allowed;
}

.book-details-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.book-input-wrap {
    display: block;
    min-width: 0;
}

.book-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    box-sizing: border-box;
}

.book-input::placeholder {
    color: #9ca3af;
}

.book-input:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}

.book-toc {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #F8F8F5;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.book-toc-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.book-toc-checkbox {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: #0d9488;
    cursor: pointer;
}

.book-toc-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #0d9488;
    text-decoration: underline;
    cursor: pointer;
}

.book-toc-link:hover {
    color: #0f766e;
}

.book-toc-link:focus-visible {
    outline: 2px solid #0d9488;
    outline-offset: 2px;
    border-radius: 2px;
}

body.book-toc-modal-open {
    overflow: hidden;
}

.book-toc-modal[hidden] {
    display: none;
}

.book-toc-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.book-toc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.book-toc-modal-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    max-height: min(85vh, 720px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.book-toc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.book-toc-modal-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
}

.book-toc-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: #f3f4f6;
    border-radius: 8px;
    color: #374151;
    cursor: pointer;
    flex-shrink: 0;
}

.book-toc-modal-close:hover {
    background: #e5e7eb;
}

.book-toc-modal-body {
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.65;
}

.book-toc-modal-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.25rem 0 0.5rem;
}

.book-toc-modal-body h3:first-of-type {
    margin-top: 0;
}

.book-toc-modal-body p {
    margin-bottom: 0.75rem;
}

.book-toc-modal-updated {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem !important;
}

.book-toc-modal-footer {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.book-toc-modal-accept {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: #0d9488;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.book-toc-modal-accept:hover {
    opacity: 0.92;
}

.book-actions {
    margin-top: 1rem;
}

.book-submit {
    border: none;
    cursor: pointer;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    background: #0d9488;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.book-submit:hover {
    opacity: 0.92;
}

@media (max-width: 720px) {
    .book-visit-grid {
        grid-template-columns: 1fr;
    }

    .book-time-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .book-details-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .book-time-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .book-calendar-card {
        max-width: none;
    }
}

/* Admin — therapist CRUD */
.admin-body {
    background: #f8f8f5;
    min-height: 100vh;
    padding-top: 5rem;
}

.admin-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.admin-main--form {
    max-width: 640px;
}

.admin-main--narrow {
    max-width: 480px;
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.35rem;
}

.admin-lead {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
}

.admin-flashes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.admin-flash {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.admin-flash--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.admin-flash--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.admin-table-wrap {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.admin-table th,
.admin-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table th {
    font-weight: 600;
    color: #374151;
    background: #f9fafb;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table-actions {
    white-space: nowrap;
    text-align: right;
}

.admin-table-actions .admin-link + .admin-link {
    margin-left: 1rem;
}

.admin-link {
    color: #0d9488;
    text-decoration: none;
    font-weight: 500;
}

.admin-link:hover {
    text-decoration: underline;
}

.admin-link-danger {
    color: #b91c1c;
}

.admin-empty {
    color: #4b5563;
}

.admin-empty a {
    color: #0d9488;
    font-weight: 500;
}

.admin-form .admin-field {
    margin-bottom: 1.25rem;
}

.admin-form-row-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 520px) {
    .admin-form-row-dates {
        grid-template-columns: 1fr;
    }
}

.admin-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.4rem;
}

.admin-fieldset {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem 1rem 0.75rem;
    margin-bottom: 1.25rem;
}

.admin-fieldset .admin-label {
    padding: 0 0.25rem;
    margin-bottom: 0.75rem;
}

.admin-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.admin-checkbox {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #0d9488;
}

.admin-input,
.admin-select,
.admin-textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

.admin-textarea {
    resize: vertical;
    line-height: 1.5;
}

.admin-input:focus,
.admin-select:focus,
.admin-textarea:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.2);
}

.admin-field-error {
    color: #b91c1c;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.admin-submit {
    border: none;
    cursor: pointer;
}

.admin-cancel {
    color: #374151 !important;
    border-color: #d1d5db !important;
}

.btn-nav-secondary {
    background: transparent;
    color: #374151 !important;
    border: 2px solid #d1d5db;
}

.btn-nav-secondary:hover {
    background: #f3f4f6;
    opacity: 1;
}

.btn-danger {
    background: #b91c1c;
    color: #fff !important;
    border: none;
    cursor: pointer;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
}

.btn-danger:hover {
    background: #991b1b;
    opacity: 1;
}

.admin-delete-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.admin-delete-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.admin-delete-meta {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.admin-delete-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.admin-field-hint {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.admin-file {
    font-size: 0.95rem;
}

.admin-current-photo {
    margin-bottom: 0.75rem;
}

.admin-photo-preview {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.admin-table-photo {
    width: 56px;
    vertical-align: middle;
}

.admin-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    display: block;
}

.admin-thumb-placeholder {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Select2 (admin clinic location) */
.admin-form .select2-container--default .select2-selection--single {
    min-height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.35rem 0;
}

.admin-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2rem;
    padding-left: 0.85rem;
    color: #1f2937;
}

.admin-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.admin-form .select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #0d9488;
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.2);
}
