/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Option B: Precision Sapphire & Ice Blue)
   ========================================================================== */

:root {
    --bg-primary: #F3F7FA;       /* Soft Ice Blue Off-White */
    --bg-secondary: #E4EDF3;     /* Slightly darker blue-grey tint for contrast */
    --bg-card: #FFFFFF;          /* Pure White */
    --color-primary: #0A335C;     /* Deep Medical Sapphire Blue */
    --color-accent: #06B6D4;      /* Active Medical Cyan */
    --text-primary: #0F172A;      /* Navy Slate Text */
    --text-muted: #475569;       /* Slate grey for secondary text */
    --border-color: #CBD5E1;     /* Light slate 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(6, 182, 212, 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;
}

.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);
}

.emergency-strip {
    background-color: var(--color-primary);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-family: var(--font-header);
    letter-spacing: 0.1em;
    padding: 10px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.emergency-status {
    color: #67E8F9; /* Sky Blue/Cyan */
    font-weight: 600;
}

.emergency-phone strong {
    color: #FDA4AF; /* Soft emergency red-pink */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(243, 247, 250, 0.85);
    backdrop-filter: blur(10px);
}

.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 SECTIONS
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15); /* GSAP scale down */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 51, 92, 0.45); /* Soft sapphire overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #67E8F9;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-cta-btn:hover {
    background-color: #FFFFFF;
    color: var(--color-primary);
    border-color: #FFFFFF;
}

/* ==========================================================================
   ABOUT MULTISPECIALTY SECTION
   ========================================================================== */

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.about-lead {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-primary);
}

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

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.stat-card h3 {
    font-family: var(--font-header);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-card span {
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ==========================================================================
   DYNAMIC DEPARTMENT SWITCHER
   ========================================================================== */

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

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

.dept-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.tab-btn {
    font-family: var(--font-header);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    background-color: transparent;
    border: 1px solid var(--border-color);
    padding: 14px 28px;
    cursor: none;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

.dept-content-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 60px;
    box-shadow: 0 20px 40px rgba(10, 51, 92, 0.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.pane-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.pane-badge {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    background-color: rgba(6, 182, 212, 0.1);
    padding: 6px 12px;
    margin-bottom: 20px;
}

.pane-text h3 {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

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

.pane-bullets {
    list-style: none;
    margin-bottom: 35px;
}

.pane-bullets li {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.pane-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.pane-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    font-family: var(--font-header);
}

.pane-contact span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.pane-contact strong {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.pane-image {
    height: 350px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

/* ==========================================================================
   HEALTH SCREENING PACKAGES
   ========================================================================== */

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

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

.package-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    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);
}

.package-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(10, 51, 92, 0.06);
}

.package-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 15px 35px rgba(10, 51, 92, 0.08);
}

.package-badge {
    display: inline-block;
    font-family: var(--font-header);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    background-color: rgba(6, 182, 212, 0.1);
    color: var(--color-accent);
    padding: 6px 12px;
    align-self: flex-start;
    margin-bottom: 25px;
}

.package-card.featured .package-badge {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

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

.package-price {
    font-family: var(--font-header);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.package-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.package-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.package-list {
    list-style: none;
    margin-bottom: 35px;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.package-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.package-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.package-btn {
    display: block;
    text-align: center;
    font-family: var(--font-header);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    background-color: var(--color-primary);
    text-decoration: none;
    padding: 15px;
    border: 1px solid var(--color-primary);
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   PATIENT TESTIMONIALS
   ========================================================================== */

.testimonials-section {
    padding: 140px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

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

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    position: relative;
    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);
}

.testimonial-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(10, 51, 92, 0.06);
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: rgba(6, 182, 212, 0.15);
    margin-bottom: -20px;
    margin-top: -10px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-header);
    font-size: 0.9rem;
    color: var(--color-primary);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   INSURANCE SCROLLING TICKER
   ========================================================================== */

.insurance-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.ticker-scroll {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   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-primary);
    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-title {
        font-size: 3.25rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pane-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pane-image {
        height: 250px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .emergency-strip {
        padding: 8px 20px;
    }
    .strip-container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .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;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .dept-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    .dept-content-panel {
        padding: 30px 20px;
    }
    .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;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* ===== GENERAL HOSPITAL CUSTOM THEME OVERRIDES & MOBILE FIXES ===== */

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

/* --- NEO-BRUTALISM OVERRIDES --- */
body.theme-brutal,
body.theme-brutal .about-section,
body.theme-brutal .dept-section,
body.theme-brutal .packages-section,
body.theme-brutal .testimonials-section,
body.theme-brutal .insurance-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-btn,
body.theme-brutal .hero-cta-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 .pane-grid,
body.theme-brutal .dept-content-panel,
body.theme-brutal .tab-btn,
body.theme-brutal .team-card,
body.theme-brutal .package-card,
body.theme-brutal .testimonial-card,
body.theme-brutal .stat-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-btn,
body.theme-brutal .hero-cta-btn,
body.theme-brutal .submit-btn,
body.theme-brutal .tab-btn.active,
body.theme-brutal .package-btn {
  background-color: #FFDE4D !important;
  color: #000000 !important;
  font-weight: 900 !important;
  border: 3px solid #000000 !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-title,
body.theme-brutal .section-label,
body.theme-brutal .about-lead,
body.theme-brutal .about-text,
body.theme-brutal .pane-text h3,
body.theme-brutal .pane-text p,
body.theme-brutal .pane-bullets li,
body.theme-brutal .package-card h3,
body.theme-brutal .package-price,
body.theme-brutal .package-desc,
body.theme-brutal .package-list li,
body.theme-brutal .testimonial-text,
body.theme-brutal .testimonial-author strong,
body.theme-brutal .testimonial-author span,
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-title {
  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 .dept-section,
body.theme-minimalist .packages-section,
body.theme-minimalist .testimonials-section,
body.theme-minimalist .insurance-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-btn,
body.theme-minimalist .hero-cta-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 .pane-grid,
body.theme-minimalist .dept-content-panel,
body.theme-minimalist .tab-btn,
body.theme-minimalist .team-card,
body.theme-minimalist .package-card,
body.theme-minimalist .testimonial-card,
body.theme-minimalist .stat-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-btn,
body.theme-minimalist .hero-cta-btn,
body.theme-minimalist .submit-btn,
body.theme-minimalist .tab-btn.active,
body.theme-minimalist .package-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-title,
body.theme-minimalist .pane-text h3,
body.theme-minimalist .package-card 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-btn):not(.hero-cta-btn):not(.submit-btn):not(.package-btn):not(.tab-btn),
body.theme-minimalist .section-label,
body.theme-minimalist .about-lead,
body.theme-minimalist .about-text,
body.theme-minimalist .pane-text p,
body.theme-minimalist .pane-bullets li,
body.theme-minimalist .package-desc,
body.theme-minimalist .package-list li,
body.theme-minimalist .testimonial-text,
body.theme-minimalist .testimonial-author strong,
body.theme-minimalist .testimonial-author span,
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 .dept-section,
body.theme-clay .packages-section,
body.theme-clay .testimonials-section,
body.theme-clay .insurance-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-btn,
body.theme-clay .hero-cta-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 .pane-grid,
body.theme-clay .dept-content-panel,
body.theme-clay .tab-btn,
body.theme-clay .team-card,
body.theme-clay .package-card,
body.theme-clay .testimonial-card,
body.theme-clay .stat-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-btn,
body.theme-clay .hero-cta-btn,
body.theme-clay .submit-btn,
body.theme-clay .tab-btn.active,
body.theme-clay .package-btn {
  background-color: #FFB3C6 !important;
  box-shadow: 0 6px 12px rgba(255, 179, 198, 0.4) !important;
  color: #3A234A !important;
  border: none !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-title,
body.theme-clay .pane-text h3,
body.theme-clay .package-card 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-btn):not(.hero-cta-btn):not(.submit-btn):not(.package-btn):not(.tab-btn),
body.theme-clay .section-label,
body.theme-clay .about-lead,
body.theme-clay .about-text,
body.theme-clay .pane-text p,
body.theme-clay .pane-bullets li,
body.theme-clay .package-desc,
body.theme-clay .package-list li,
body.theme-clay .testimonial-text,
body.theme-clay .testimonial-author strong,
body.theme-clay .testimonial-author span,
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 .dept-section,
body.theme-glass .packages-section,
body.theme-glass .testimonials-section,
body.theme-glass .insurance-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-btn,
body.theme-glass .hero-cta-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 .pane-grid,
body.theme-glass .dept-content-panel,
body.theme-glass .tab-btn,
body.theme-glass .team-card,
body.theme-glass .package-card,
body.theme-glass .testimonial-card,
body.theme-glass .stat-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-btn,
body.theme-glass .hero-cta-btn,
body.theme-glass .submit-btn,
body.theme-glass .tab-btn.active,
body.theme-glass .package-btn {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !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-title,
body.theme-glass .pane-text h3,
body.theme-glass .package-card 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-btn):not(.hero-cta-btn):not(.submit-btn):not(.package-btn):not(.tab-btn),
body.theme-glass .section-label,
body.theme-glass .about-lead,
body.theme-glass .about-text,
body.theme-glass .pane-text p,
body.theme-glass .pane-bullets li,
body.theme-glass .package-desc,
body.theme-glass .package-list li,
body.theme-glass .testimonial-text,
body.theme-glass .testimonial-author strong,
body.theme-glass .testimonial-author span,
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;
}
