/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Option A: Calming Mint & Deep Teal)
   ========================================================================== */

:root {
    --bg-primary: #F6FAF8;       /* Soft Mint Tint */
    --bg-secondary: #EDF4F1;     /* Slightly darker mint tint for contrast */
    --bg-card: #FFFFFF;          /* Pure White */
    --color-primary: #0F5B5B;     /* Deep Medical Teal Green */
    --color-accent: #4AA988;      /* Mint Green Accent */
    --text-primary: #1E2522;      /* Dark Forest/Slate Text */
    --text-muted: #50625A;       /* Soft Slate for secondary text */
    --border-color: #D2DFDB;     /* Warm mint grey borders */
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-header: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    cursor: none;
}

a, button, input, select, textarea {
    cursor: none;
}

::selection {
    background-color: var(--color-primary);
    color: var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.loader-content {
    opacity: 1;
}

.loader-logo {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 2.75rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.loader-line-wrap {
    width: 150px;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 auto 20px auto;
    overflow: hidden;
    position: relative;
}

.loader-line {
    width: 0%;
    height: 100%;
    background-color: var(--color-accent);
    position: absolute;
    left: 0;
    top: 0;
}

.loader-subtitle {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.custom-cursor-circle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

.custom-cursor-circle.hovered {
    width: 56px;
    height: 56px;
    background-color: rgba(74, 169, 136, 0.1);
    border-color: var(--color-accent);
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

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

.container.small {
    max-width: 800px;
}

.section-label {
    display: block;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(246, 250, 248, 0.85);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo a {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-btn {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--bg-primary);
    background-color: var(--color-primary);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 0;
    border: 1px solid var(--color-primary);
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* ==========================================================================
   HERO SPLIT SECTION
   ========================================================================== */

.hero-split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    height: 100vh;
    align-items: center;
    background-color: var(--bg-secondary);
    padding-top: 80px;
}

.hero-text-side {
    padding: 0 80px 0 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    background-color: rgba(74, 169, 136, 0.12);
    padding: 8px 16px;
    margin-bottom: 25px;
}

.hero-heading {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-action-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-primary-btn {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--bg-primary);
    background-color: var(--color-primary);
    text-decoration: none;
    padding: 16px 36px;
    border: 1px solid var(--color-primary);
    transition: var(--transition-fast);
}

.hero-primary-btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.hero-secondary-btn {
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.hero-secondary-btn:hover {
    color: var(--color-accent);
}

.hero-image-side {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-badge {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 91, 91, 0.08);
}

.badge-num {
    font-family: var(--font-header);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.badge-lbl {
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   ABOUT CLINIC SECTION
   ========================================================================== */

.about-section {
    padding: 140px 0;
    background-color: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-img-frame {
    border: 1px solid var(--border-color);
    padding: 20px;
    background-color: var(--bg-card);
}

.about-doctor-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-lead {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.about-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.doctor-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.credential-item strong {
    display: block;
    font-family: var(--font-header);
    font-size: 0.95rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.credential-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SERVICES BENTO GRID
   ========================================================================== */

.services-section {
    padding: 140px 0;
    background-color: var(--bg-secondary);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 80px auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.bento-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(15, 91, 91, 0.08);
}

.bento-card h3 {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.bento-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.card-link {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    text-decoration: none;
    text-transform: uppercase;
}

/* Featured Bento Card (Clear Aligners) */
.featured-card {
    grid-row: span 2;
    justify-content: flex-end;
    color: #FFFFFF;
}

.featured-card:hover {
    box-shadow: 0 12px 30px rgba(15, 91, 91, 0.12);
}

.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-card:hover .card-image-bg img {
    transform: scale(1.06);
}

.featured-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(15, 91, 91, 0.9) 20%, rgba(15, 91, 91, 0));
    z-index: 2;
}

.featured-card .card-content {
    position: relative;
    z-index: 3;
}

.featured-card h3 {
    color: #FFFFFF;
    font-size: 1.75rem;
}

.featured-card p {
    color: rgba(255, 255, 255, 0.85);
}

.card-badge {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background-color: var(--color-accent);
    color: var(--bg-primary);
    padding: 6px 12px;
    margin-bottom: 15px;
}

/* Standard cards styling */
.standard-card {
    justify-content: flex-start;
}

.card-icon {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: var(--color-primary);
}

/* Wide Bento Card */
.wide-card {
    grid-column: span 2;
    justify-content: center;
    padding: 40px;
}

.card-content-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.split-img {
    height: 160px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   BEFORE/AFTER SLIDER SECTION
   ========================================================================== */

.slider-section {
    padding: 140px 0;
    background-color: var(--bg-primary);
}

.section-desc {
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 60px;
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(15, 91, 91, 0.05);
}

.img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Before slide stands at baseline */
.before-slide {
    z-index: 10;
}

/* After slide gets clipped dynamically */
.after-slide {
    z-index: 20;
    /* Uses CSS clip-path inset(top right bottom left) */
    clip-path: inset(0 0 0 50%);
}

.slide-label {
    position: absolute;
    bottom: 25px;
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 8px 16px;
    z-index: 30;
}

.label-before {
    left: 25px;
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.label-after {
    right: 25px;
    background-color: var(--color-accent);
    color: var(--bg-primary);
}

/* Slider Controls & Handles */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 40;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.handle-line {
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
}

.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 2px solid var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   TESTIMONIALS/REVIEWS SECTION
   ========================================================================== */

.reviews-section {
    padding: 140px 0;
    background-color: var(--bg-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(15, 91, 91, 0.08);
}

.review-stars {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--bg-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 0.85rem;
}

.reviewer-name {
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
}

.reviewer-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   RESERVATIONS
   ========================================================================== */

.reserve-section {
    padding: 140px 0;
    background-color: var(--bg-primary);
}

.reserve-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 80px;
}

.reserve-intro {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 15px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-primary);
    outline: none;
    border-radius: 0;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: #FFFFFF;
}

.form-submit {
    margin-top: 20px;
    text-align: center;
}

.submit-btn {
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--bg-primary);
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 18px 48px;
    cursor: none;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background-color: var(--color-primary);
    color: #FFFFFF;
    padding: 100px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.brand-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-col h3 {
    font-family: var(--font-header);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col p.highlight {
    color: #FFFFFF;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-header);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    body {
        cursor: auto;
    }
    .custom-cursor-dot, .custom-cursor-circle {
        display: none;
    }
    
    .nav-container {
        padding: 20px;
    }
    .nav-left, .nav-right {
        gap: 20px;
    }
    
    .hero-split-section {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 120px;
    }
    .hero-text-side {
        padding: 40px 40px 60px 40px;
    }
    .hero-heading {
        font-size: 2.75rem;
    }
    .hero-image-side {
        height: 400px;
    }
    .hero-img-badge {
        left: 20px;
        bottom: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-doctor-img {
        height: 400px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .featured-card {
        grid-row: span 1;
        height: 350px;
    }
    .wide-card {
        grid-column: span 1;
    }
    .card-content-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    .nav-left, .nav-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    .nav-logo {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    .container {
        padding: 0 20px;
    }
    header {
        position: relative;
    }
    .comparison-container {
        height: 350px;
    }
    .slide-label {
        font-size: 0.6rem;
        padding: 6px 12px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reserve-card {
        padding: 40px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .doctor-credentials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== DENTAL CUSTOM THEME OVERRIDES & MOBILE FIXES ===== */

/* --- MOBILE LAYOUT SPACING ADJUSTMENTS --- */
@media (max-width: 768px) {
  .about-section,
  .services-section,
  .slider-section,
  .reviews-section,
  .reserve-section {
    padding: 60px 0 !important;
  }
}

/* --- NEO-BRUTALISM OVERRIDES --- */
body.theme-brutal,
body.theme-brutal .about-section,
body.theme-brutal .services-section,
body.theme-brutal .slider-section,
body.theme-brutal .reviews-section,
body.theme-brutal .reserve-section {
  background-color: #FAF8F5 !important;
  color: #000000 !important;
}
body.theme-brutal header,
body.theme-brutal .nav-container,
body.theme-brutal .nav-btn,
body.theme-brutal .hero-cta,
body.theme-brutal .hero-primary-btn,
body.theme-brutal .hero-secondary-btn,
body.theme-brutal .reserve-card,
body.theme-brutal .submit-btn,
body.theme-brutal .form-group input,
body.theme-brutal .form-group select,
body.theme-brutal .form-group textarea,
body.theme-brutal .review-card,
body.theme-brutal .featured-card,
body.theme-brutal .wide-card,
body.theme-brutal .service-card,
body.theme-brutal .doctor-card,
body.theme-brutal .faq-item,
body.theme-brutal .bento-card {
  border: 3px solid #000000 !important;
  border-radius: 0px !important;
  box-shadow: 6px 6px 0px #000000 !important;
  background-color: #ffffff !important;
  color: #000000 !important;
}
body.theme-brutal .nav-btn,
body.theme-brutal .hero-primary-btn,
body.theme-brutal .submit-btn {
  background-color: #FFDE4D !important;
  color: #000000 !important;
  font-weight: 900 !important;
}
body.theme-brutal h1,
body.theme-brutal h2,
body.theme-brutal h3,
body.theme-brutal h4,
body.theme-brutal p,
body.theme-brutal span,
body.theme-brutal a,
body.theme-brutal label,
body.theme-brutal .section-title,
body.theme-brutal .hero-heading,
body.theme-brutal .section-label,
body.theme-brutal .about-lead,
body.theme-brutal .about-body,
body.theme-brutal .card-content h3,
body.theme-brutal .card-content p,
body.theme-brutal .review-text,
body.theme-brutal .reviewer-name,
body.theme-brutal .reviewer-meta,
body.theme-brutal .reserve-intro,
body.theme-brutal .form-group label {
  color: #000000 !important;
  font-family: 'Space Grotesk', 'Montserrat', sans-serif !important;
}
body.theme-brutal h1,
body.theme-brutal h2,
body.theme-brutal h3,
body.theme-brutal h4,
body.theme-brutal .section-title,
body.theme-brutal .hero-heading {
  font-weight: 900 !important;
}
body.theme-brutal footer {
  background-color: #000000 !important;
  border-top: 3px solid #000000 !important;
}
body.theme-brutal footer * {
  color: #ffffff !important;
}

/* --- MINIMALIST OVERRIDES --- */
body.theme-minimalist,
body.theme-minimalist .about-section,
body.theme-minimalist .services-section,
body.theme-minimalist .slider-section,
body.theme-minimalist .reviews-section,
body.theme-minimalist .reserve-section {
  background-color: #ffffff !important;
  color: #111111 !important;
}
body.theme-minimalist header,
body.theme-minimalist .nav-container,
body.theme-minimalist .nav-btn,
body.theme-minimalist .hero-cta,
body.theme-minimalist .hero-primary-btn,
body.theme-minimalist .hero-secondary-btn,
body.theme-minimalist .reserve-card,
body.theme-minimalist .submit-btn,
body.theme-minimalist .form-group input,
body.theme-minimalist .form-group select,
body.theme-minimalist .form-group textarea,
body.theme-minimalist .review-card,
body.theme-minimalist .featured-card,
body.theme-minimalist .wide-card,
body.theme-minimalist .service-card,
body.theme-minimalist .doctor-card,
body.theme-minimalist .faq-item,
body.theme-minimalist .bento-card {
  border: 1px solid #E2E2E2 !important;
  border-radius: 4px !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.02) !important;
  background-color: #FAFAFA !important;
  color: #111111 !important;
}
body.theme-minimalist .nav-btn,
body.theme-minimalist .hero-primary-btn,
body.theme-minimalist .submit-btn {
  background-color: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
}
body.theme-minimalist h1,
body.theme-minimalist h2,
body.theme-minimalist h3,
body.theme-minimalist h4,
body.theme-minimalist .section-title,
body.theme-minimalist .hero-heading,
body.theme-minimalist .card-content h3 {
  color: #111111 !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 400 !important;
}
body.theme-minimalist p,
body.theme-minimalist span,
body.theme-minimalist label,
body.theme-minimalist a:not(.nav-btn):not(.hero-primary-btn):not(.submit-btn),
body.theme-minimalist .section-label,
body.theme-minimalist .about-lead,
body.theme-minimalist .about-body,
body.theme-minimalist .card-content p,
body.theme-minimalist .review-text,
body.theme-minimalist .reviewer-name,
body.theme-minimalist .reviewer-meta,
body.theme-minimalist .reserve-intro,
body.theme-minimalist .form-group label {
  color: #555555 !important;
}
body.theme-minimalist footer {
  background-color: #fafafa !important;
  border-top: 1px solid #e2e2e2 !important;
}
body.theme-minimalist footer * {
  color: #111111 !important;
}

/* --- CLAYMORPHISM OVERRIDES --- */
body.theme-clay,
body.theme-clay .about-section,
body.theme-clay .services-section,
body.theme-clay .slider-section,
body.theme-clay .reviews-section,
body.theme-clay .reserve-section {
  background-color: #ECEFF4 !important;
  color: #3A234A !important;
}
body.theme-clay header,
body.theme-clay .nav-container,
body.theme-clay .nav-btn,
body.theme-clay .hero-cta,
body.theme-clay .hero-primary-btn,
body.theme-clay .hero-secondary-btn,
body.theme-clay .reserve-card,
body.theme-clay .submit-btn,
body.theme-clay .form-group input,
body.theme-clay .form-group select,
body.theme-clay .form-group textarea,
body.theme-clay .review-card,
body.theme-clay .featured-card,
body.theme-clay .wide-card,
body.theme-clay .service-card,
body.theme-clay .doctor-card,
body.theme-clay .faq-item,
body.theme-clay .bento-card {
  border: none !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 20px rgba(186, 197, 211, 0.5), 
              inset 3px 3px 6px rgba(255, 255, 255, 0.9), 
              inset -3px -3px 6px rgba(0, 0, 0, 0.03) !important;
  background-color: #ffffff !important;
  color: #3A234A !important;
}
body.theme-clay .nav-btn,
body.theme-clay .hero-primary-btn,
body.theme-clay .submit-btn {
  background-color: #FFB3C6 !important;
  box-shadow: 0 6px 12px rgba(255, 179, 198, 0.4) !important;
  color: #3A234A !important;
}
body.theme-clay h1,
body.theme-clay h2,
body.theme-clay h3,
body.theme-clay h4,
body.theme-clay .section-title,
body.theme-clay .hero-heading,
body.theme-clay .card-content h3 {
  color: #3A234A !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
}
body.theme-clay p,
body.theme-clay span,
body.theme-clay label,
body.theme-clay a:not(.nav-btn):not(.hero-primary-btn):not(.submit-btn),
body.theme-clay .section-label,
body.theme-clay .about-lead,
body.theme-clay .about-body,
body.theme-clay .card-content p,
body.theme-clay .review-text,
body.theme-clay .reviewer-name,
body.theme-clay .reviewer-meta,
body.theme-clay .reserve-intro,
body.theme-clay .form-group label {
  color: #6B4D7E !important;
}
body.theme-clay footer {
  background-color: #ECEFF4 !important;
  border-top: 1px dashed rgba(186,197,211,0.5) !important;
}
body.theme-clay footer * {
  color: #3A234A !important;
}

/* --- GLASSMORPHISM OVERRIDES --- */
body.theme-glass,
body.theme-glass .about-section,
body.theme-glass .services-section,
body.theme-glass .slider-section,
body.theme-glass .reviews-section,
body.theme-glass .reserve-section {
  background-color: #0E0A16 !important;
  color: #ffffff !important;
}
body.theme-glass header,
body.theme-glass .nav-container,
body.theme-glass .nav-btn,
body.theme-glass .hero-cta,
body.theme-glass .hero-primary-btn,
body.theme-glass .hero-secondary-btn,
body.theme-glass .reserve-card,
body.theme-glass .submit-btn,
body.theme-glass .form-group input,
body.theme-glass .form-group select,
body.theme-glass .form-group textarea,
body.theme-glass .review-card,
body.theme-glass .featured-card,
body.theme-glass .wide-card,
body.theme-glass .service-card,
body.theme-glass .doctor-card,
body.theme-glass .faq-item,
body.theme-glass .bento-card {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
}
body.theme-glass .nav-btn,
body.theme-glass .hero-primary-btn,
body.theme-glass .submit-btn {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}
body.theme-glass h1,
body.theme-glass h2,
body.theme-glass h3,
body.theme-glass h4,
body.theme-glass .section-title,
body.theme-glass .hero-heading,
body.theme-glass .card-content h3 {
  color: #ffffff !important;
  font-family: 'Space Grotesk', 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
}
body.theme-glass p,
body.theme-glass span,
body.theme-glass label,
body.theme-glass a:not(.nav-btn):not(.hero-primary-btn):not(.submit-btn),
body.theme-glass .section-label,
body.theme-glass .about-lead,
body.theme-glass .about-body,
body.theme-glass .card-content p,
body.theme-glass .review-text,
body.theme-glass .reviewer-name,
body.theme-glass .reviewer-meta,
body.theme-glass .reserve-intro,
body.theme-glass .form-group label {
  color: rgba(255, 255, 255, 0.7) !important;
}
body.theme-glass footer {
  background-color: #0e0a16 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
body.theme-glass footer * {
  color: #ffffff !important;
}
