@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7eee5;
    /* Warm Cream */
    --bg-glass: #f9e0e2;
    /* Light Pink/Rose Header */
    --border-glass: rgba(15, 44, 89, 0.12);

    --color-primary: #5b7086;
    /* Dark Navy Blue */
    --color-secondary: #7e9f82;
    /* Sage Green */
    --color-teal: #be623c;
    /* Rust/Orange-brown */
    --color-accent: #e0a82e;
    /* Gold/Ochre */

    --text-main: #333333;
    --text-muted: #666666;
    --text-dark: #5b7086;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 25px rgba(224, 168, 46, 0.15);
    --shadow-teal-glow: 0 0 25px rgba(190, 98, 60, 0.15);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

p {
    text-align: justify;
}

/* Exclude specific sections from justification to maintain layout hierarchy */
.hero p,
.section-header p,
.testimonial-info p,
.footer-brand p,
footer p,
.prefooter-section p,
.ticker-content span {
    text-align: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-glass);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.logo span {
    color: var(--color-teal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-teal);
    text-shadow: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #ffffff;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-teal {
    background: var(--color-teal);
    color: #ffffff;
}

.btn-teal:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal-glow);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    background: radial-gradient(circle at 80% 20%, rgba(224, 168, 46, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(224, 168, 46, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(224, 168, 46, 0.2);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

/* Cards */
.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 168, 46, 0.3);
    box-shadow: var(--shadow-subtle), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card-desc {
    color: var(--text-muted);
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
}

/* Blog List / Index */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.post-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.post-thumb {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.post-card:hover .post-thumb img {
    transform: scale(1.08);
}

.post-content-wrap {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.post-category {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-card-title {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
}

.post-card-title a:hover {
    color: var(--color-teal);
}

.post-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.post-read-more {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.post-read-more:hover {
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

/* Category Filter Chips */
.filters-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-chip {
    padding: 0.6rem 1.4rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-chip:hover,
.filter-chip.active {
    background: #fff;
    color: var(--bg-primary);
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Blog Show page */
.post-detail-header {
    padding: 10rem 0 4rem 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.post-detail-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--color-teal);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.post-detail-title {
    font-size: 3rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.5rem;
}

.post-detail-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.post-detail-meta span strong {
    color: #fff;
}

.post-detail-image {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-glass);
}

.post-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.post-detail-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
}

.post-detail-body p {
    margin-bottom: 2rem;
}

.post-detail-body h3,
.post-detail-body h4 {
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.post-detail-body ul,
.post-detail-body ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.post-detail-body li {
    margin-bottom: 0.5rem;
}

.post-detail-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
}

.post-detail-body th,
.post-detail-body td {
    padding: 1rem;
    border: 1px solid var(--border-glass);
    text-align: left;
}

.post-detail-body th {
    background-color: var(--bg-secondary);
    color: #fff;
}

/* Contact Us Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #fff;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(224, 168, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    border: 1px solid rgba(224, 168, 46, 0.2);
}

.contact-method-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #fff;
}

.contact-method-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.contact-form-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Alert Boxes */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Explorace Activity Sheet */
.activity-box {
    max-width: 800px;
    margin: 0 auto;
}

.activity-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(224, 168, 46, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(224, 168, 46, 0.2);
}

.activity-instructions {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3rem;
    margin: 2.5rem 0;
}

.instruction-section {
    margin-bottom: 2.5rem;
}

.instruction-section:last-child {
    margin-bottom: 0;
}

.instruction-section h3 {
    color: #fff;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
}

.instruction-list {
    list-style: none;
}

.instruction-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.instruction-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-teal);
    font-weight: 700;
}

/* Footer styling */
footer {
    background: #060910;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: #ffffff !important;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    border: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-menu-toggle:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .nav-links {
        display: none;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mobile-menu-toggle {
        display: inline-block;
        margin-right: 2.2rem;
    }

    /* Staggered Falling Letters Animation */
    .anim-letter {
        display: inline-block;
        opacity: 0;
        transform: translateY(-45px);
        transition: transform var(--duration, 0.35s) cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity var(--duration, 0.35s) ease;
    }

    .nav-links.open .anim-letter {
        opacity: 1;
        transform: translateY(0);
        transition: transform var(--duration, 0.55s) cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity var(--duration, 0.55s) ease;
        transition-delay: var(--delay);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Pagination Styling */
.pagination,
nav[role="navigation"] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

nav[role="navigation"] svg {
    width: 20px;
    height: 20px;
}

nav[role="navigation"] .flex.justify-between,
nav[role="navigation"] .hidden.sm\:flex-1 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav[role="navigation"] span,
nav[role="navigation"] a {
    padding: 0.6rem 1.2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav[role="navigation"] a:hover {
    background: #fff;
    color: var(--bg-primary);
    border-color: #fff;
}

nav[role="navigation"] span[aria-current="page"] {
    background: rgba(0, 229, 255, 0.1);
    color: var(--color-teal);
    border-color: rgba(0, 229, 255, 0.2);
}

/* Custom Section Utilities */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-teal);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    opacity: 0.6;
    margin-top: 2rem;
}

.client-logo {
    max-height: 45px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: none;
    opacity: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-style: italic;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-teal);
}

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

.testimonial-info h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.1rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.schedule-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-top: 2rem;
    overflow: hidden;
}

.schedule-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 2rem;
}

.schedule-day {
    padding: 2rem;
    border-bottom: 1px solid var(--border-glass);
}

.schedule-day:last-child {
    border-bottom: none;
}

.schedule-day h4 {
    color: var(--color-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-list {
    list-style: none;
    padding-left: 0;
}

.schedule-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.schedule-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1rem;
}

.schedule-list li strong {
    color: #fff;
}

.agenda-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ==========================================================================
   ORIGINAL WEBSITE COLOR SCHEME & SECTION OVERRIDES
   ========================================================================== */

/* --- Hero overlays --- */
.hero .hero-overlay {
    background: rgba(0, 0, 0, 0.65) !important;
}

.hero .hero-title {
    color: #ffd800 !important;
    text-shadow: 2px 2px 3px #333333 !important;
}

.hero .hero-desc {
    color: #ffffff !important;
    text-shadow: 2px 2px 3px #333333 !important;
}

.hero .hero-tag {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffd800 !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    text-shadow: 2px 2px 3px #333333 !important;
}

.hero p {
    text-shadow: 2px 2px 3px #333333 !important;
}

/* --- Client Logos Section --- */
.clients-section {
    background-color: #ffffff !important;
    border-top: 1px solid rgba(15, 44, 89, 0.1) !important;
    border-bottom: 1px solid rgba(15, 44, 89, 0.1) !important;
}

.clients-section p {
    color: var(--text-muted) !important;
}

.client-logo {
    filter: grayscale(1) opacity(0.5) !important;
}

.client-logo:hover {
    filter: none !important;
    opacity: 1 !important;
}

/* --- Workplace Symptoms Section --- */
.symptoms-section {
    background-color: #daf7cf !important;
    /* Mint Green */
}

.symptoms-section .section-title {
    color: #ff0000 !important;
}

.symptoms-section .section-subtitle {
    color: #ff0000 !important;
}

.symptoms-section .card {
    background: #ffffff !important;
    border: 1.5px solid #ff0000 !important;
    box-shadow: none !important;
}

.symptoms-section .card-title {
    color: #ff0000 !important;
}

.symptoms-section .card-desc {
    color: #333333 !important;
}

.symptoms-section .card-icon {
    color: #ff0000 !important;
}

/* --- Stats Counters Section --- */
.stats-section {
    background-color: #ffffff !important;
    border-top: 1px solid rgba(15, 44, 89, 0.1) !important;
    border-bottom: 1px solid rgba(15, 44, 89, 0.1) !important;
}

.stats-section .stat-card {
    background-color: #f7eee5 !important;
    /* Warm Cream */
    border: 1px solid rgba(15, 44, 89, 0.15) !important;
    box-shadow: none !important;
}

.stats-section .stat-number {
    color: #5b7086 !important;
}

.stats-section .stat-label {
    color: #666666 !important;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #cba73a !important;
    /* Mustard Yellow */
}

.testimonials-section .section-title {
    color: #ffffff !important;
}

.testimonials-section .section-subtitle {
    color: #5b7086 !important;
}

.testimonials-section .testimonial-card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 44, 89, 0.1) !important;
    box-shadow: none !important;
}

.testimonials-section .testimonial-text {
    color: #333333 !important;
}

.testimonials-section .testimonial-info h4 {
    color: #5b7086 !important;
}

.testimonials-section .testimonial-info p {
    color: #666666 !important;
}

/* --- Beyond The Buzzwords Section --- */
.buzzwords-section {
    background-color: #ffffff !important;
    border-top: 1px solid rgba(15, 44, 89, 0.1) !important;
    border-bottom: 1px solid rgba(15, 44, 89, 0.1) !important;
}

.buzzwords-section h2 {
    color: #5b7086 !important;
}

.buzzwords-section p {
    color: #666666 !important;
}

/* --- Methodologies, Pillars & Packages Section --- */
.methodologies-section,
.pillars-section,
.packages-section,
.eq-method-section,
.outdoor-simulations-section,
.vision-mission-section {
    background-color: #f7eee5 !important;
    /* Warm Cream background */
}

.methodologies-section .card,
.pillars-section .post-card,
.eq-method-section .card,
.outdoor-simulations-section .card,
.vision-mission-section .card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 44, 89, 0.15) !important;
    box-shadow: none !important;
}

.methodologies-section .card-title,
.pillars-section .post-card-title,
.eq-method-section .card-title,
.outdoor-simulations-section .card-title,
.vision-mission-section .card-title {
    color: #5b7086 !important;
}

.methodologies-section .card-desc,
.eq-method-section .card-desc,
.outdoor-simulations-section .card-desc,
.vision-mission-section .card-desc,
.pillars-section .post-excerpt {
    color: #666666 !important;
}

/* --- Founders & Bios Sections --- */
.founders-section,
.founders-bio-section {
    background-color: #ffffff !important;
}

.founders-section h2,
.founders-section h3,
.founders-bio-section h2,
.founders-bio-section h3 {
    color: #5b7086 !important;
}

.founders-section p,
.founders-bio-section p {
    color: #666666 !important;
}

.founders-section .card {
    border-color: rgba(15, 44, 89, 0.2) !important;
    box-shadow: var(--shadow-subtle) !important;
}

.founders-section .card h3 {
    color: var(--color-teal) !important;
    /* rust */
}

.founders-section .card p {
    color: #ffffff !important;
    /* white quote text inside dark quote cards */
}

/* --- Packages Schedule & Detail Layouts --- */
.packages-section h3,
.packages-section h4 {
    color: #5b7086 !important;
}

.packages-section p {
    color: #666666 !important;
}

.packages-section strong {
    color: #333333 !important;
}

.package-row {
    display: grid;
    gap: 3.5rem;
    align-items: start;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 5rem;
}

.package-row.split-1-2 {
    grid-template-columns: 1.2fr 1fr;
}

.package-row.split-2-1 {
    grid-template-columns: 1fr 1.2fr;
}

.package-row.no-border {
    border-bottom: none;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .package-row {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }
    
    /* On mobile, reverse columns for split-2-1 so text details always render on top and flyer/button on bottom */
    .package-row.split-2-1 {
        display: flex;
        flex-direction: column-reverse;
    }
}

.schedule-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(15, 44, 89, 0.15) !important;
    box-shadow: none !important;
}

.schedule-header {
    background: rgba(15, 44, 89, 0.04) !important;
    border-bottom: 1.5px solid rgba(15, 44, 89, 0.15) !important;
}

.schedule-header h4 {
    color: #5b7086 !important;
}

.schedule-day {
    border-bottom: 1px solid rgba(15, 44, 89, 0.1) !important;
}

.schedule-day h4 {
    color: var(--color-teal) !important;
    /* rust */
}

.schedule-list li {
    color: #555555 !important;
}

.schedule-list li strong {
    color: #5b7086 !important;
}

.schedule-list li::before {
    color: var(--color-accent) !important;
    /* gold */
}

/* --- Prefooter Zombie panel --- */
.prefooter-section {
    color: #ffffff !important;
    border-top: none !important;
}

.prefooter-section h2 {
    color: #ffffff !important;
}

.prefooter-section p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* --- Main Footer bottom bar --- */
footer {
    background: #5b7086 !important;
    /* Dark Navy Blue */
    color: #ffffff !important;
    border-top: none !important;
}

footer h4 {
    color: #ffffff !important;
}

footer a {
    color: rgba(255, 255, 255, 0.75) !important;
}

footer a:hover {
    color: #ffffff !important;
}

.footer-bottom {
    background: #b66a71 !important;
    /* Dark Crimson Red */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 1rem 0 !important;
    border-top: none !important;
    color: #ffffff !important;
    overflow: hidden;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 30s linear infinite;
}

.ticker-content span {
    font-size: 0.9rem;
    color: #ffffff !important;
}

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

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* --- Contact Us Page Section --- */
.contact-section {
    background-color: #ffffff !important;
}

.contact-section h2 {
    color: #5b7086 !important;
}

.contact-section p {
    color: #555555 !important;
}

.contact-section strong {
    color: #333333 !important;
}

/* --- Blog Post Card / List page light overrides --- */
.blog-grid .post-card {
    background: #ffffff !important;
    border: 1.5px solid rgba(15, 44, 89, 0.15) !important;
    box-shadow: none !important;
}

.blog-grid .post-card-title {
    color: #5b7086 !important;
}

.blog-grid .post-card-title a:hover {
    color: var(--color-teal) !important;
}

.blog-grid .post-excerpt {
    color: #666666 !important;
}

.blog-grid .post-read-more {
    color: var(--color-teal) !important;
}

.blog-grid .filter-chip {
    background: #f7eee5 !important;
    color: #5b7086 !important;
    border: 1px solid rgba(15, 44, 89, 0.15) !important;
}

.blog-grid .filter-chip.active,
.blog-grid .filter-chip:hover {
    background: #5b7086 !important;
    color: #ffffff !important;
}

/* --- Single Post Detail Page Light Theme Overrides --- */
.post-detail-container {
    background-color: #ffffff !important;
}

.post-detail-body {
    color: #333333 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

.post-detail-body h2,
.post-detail-body h3,
.post-detail-body h4 {
    color: #5b7086 !important;
}

.post-detail-body blockquote {
    background: #f7eee5 !important;
    border-left: 4px solid var(--color-teal) !important;
    color: #555555 !important;
}

.post-detail-body table {
    border: 1px solid rgba(15, 44, 89, 0.15) !important;
}

.post-detail-body th,
.post-detail-body td {
    border: 1px solid rgba(15, 44, 89, 0.15) !important;
    color: #333333 !important;
}

.post-detail-body th {
    background: #f7eee5 !important;
    color: #5b7086 !important;
}

/* --- Dynamic Checkpoint Sheets --- */
.activity-badge {
    background: #f9e0e2 !important;
    color: var(--color-teal) !important;
    border: 1px solid rgba(15, 44, 89, 0.15) !important;
}

.activity-instructions {
    background: #f7eee5 !important;
    border: 1.5px solid rgba(15, 44, 89, 0.15) !important;
    box-shadow: none !important;
}

.activity-instructions h3 {
    color: #5b7086 !important;
    border-bottom: 1.5px solid rgba(15, 44, 89, 0.15) !important;
}

.activity-instructions li {
    color: #333333 !important;
}

.activity-instructions li::before {
    color: var(--color-teal) !important;
}