/* 
 * The BrightPath Foundation - Homepage Stylesheet
 */

#bp-mission-section {
        background: #FAF8F5;
        padding: 100px 20px;
        overflow: hidden;
        position: relative;
    }
    .bp-mission-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }
    .bp-mission-label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 700;
        color: #E86F2A;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }
    .bp-mission-title {
        font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
        font-size: 35px;
        font-weight: 700;
        color: #085536;
        line-height: 1.2;
        letter-spacing: -0.02em;
        margin: 0 0 28px;
    }
    .bp-mission-body {
        font-family: 'Inter', sans-serif;
        font-size: 17px;
        line-height: 1.75;
        color: #404942;
        margin: 0 0 24px;
    }
    .bp-mission-tagline {
        font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
        font-size: 17px;
        font-style: italic;
        font-weight: 600;
        color: #085536;
        margin: 0 0 32px;
    }
    .bp-mission-divider {
        border: none;
        border-top: 1px solid rgba(112,121,114,0.2);
        margin: 32px 0;
    }
    .bp-mission-footer-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
    }
    .bp-mission-founder-name {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #171b27;
        margin: 0;
        line-height: 1.3;
    }
    .bp-mission-founder-title {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #707972;
        margin: 2px 0 0;
        letter-spacing: 0.01em;
    }
    .bp-mission-learn-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #085536;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 13px 26px;
        border-radius: 0px;
        text-decoration: none;
        transition: background 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }
    .bp-mission-learn-btn:hover {
        background: #E86F2A;
        color: #ffffff;
        transform: translateY(-1px);
    }
    .bp-mission-learn-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s ease;
    }
    .bp-mission-learn-btn:hover svg {
        transform: translateX(3px);
    }
    /* Right Graphic */
    .bp-mission-graphic {
        position: relative;
        display: flex;
        justify-content: center;
    }
    .bp-mission-decor {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        pointer-events: none;
        opacity: 0.15;
        z-index: 0;
    }
    .bp-mission-card {
        background: #ffffff;
        border: 2px solid rgba(112,121,114,0.15);
        border-radius: 12px;
        padding: 8px;
        box-shadow: 0 24px 48px -12px rgba(8,85,54,0.1);
        position: relative;
        z-index: 1;
        max-width: 420px;
        width: 100%;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .bp-mission-card:hover {
        transform: scale(1.012);
        box-shadow: 0 32px 64px -12px rgba(8,85,54,0.15);
    }
    .bp-mission-card-accent {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 96px;
        height: 3px;
        background: #C5A059;
        border-radius: 0 0 6px 6px;
    }
    .bp-mission-card-img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }
    .bp-mission-card-footer {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4px 4px 8px;
    }
    .bp-mission-card-caption-text {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: #707972;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
    /* Animations */
    @@keyframes bp-fadein-left {
        from { opacity: 0; transform: translateX(-24px); }
        to   { opacity: 1; transform: translateX(0); }
    }
    @@keyframes bp-fadein-right {
        from { opacity: 0; transform: translateX(24px); }
        to   { opacity: 1; transform: translateX(0); }
    }
    .bp-mission-content-col { animation: bp-fadein-left 0.7s ease both; }
    .bp-mission-graphic     { animation: bp-fadein-right 1s ease 0.2s both; }
    /* Responsive */
    @@media (max-width: 900px) {
        .bp-mission-inner { grid-template-columns: 1fr; gap: 50px; }
        .bp-mission-graphic { justify-content: center; }
        .bp-mission-title { font-size: 32px; }
    }
    @@media (max-width: 600px) {
        #bp-mission-section { padding: 60px 16px; }
        .bp-mission-title { font-size: 26px; }
        .bp-mission-body { font-size: 15px; }
        .bp-mission-tagline { font-size: 15px; }
        .bp-mission-card { padding: 16px 16px 12px; }
        .bp-mission-footer-row { flex-direction: column; align-items: flex-start; }
    }

#bp-stats-section {
        background: #0a0f1a;
        color: #fff;
        font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
        padding: 80px 20px;
        overflow: hidden;
        position: relative;
    }
    #bp-stats-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, #085536 0%, #e86f2a 50%, #085536 100%);
    }
    .bp-stats-inner { max-width: 1200px; margin: 0 auto; width: 100%; box-sizing: border-box; }
    .bp-stats-header { text-align: left; margin-bottom: 55px; }
    .bp-stats-header .bp-stats-label { font-size: 12px; font-weight: 700; color: #e86f2a; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px; }
    .bp-stats-header h2 { font-size: 36px; font-weight: 800; color: #fff; margin: 0 0 14px; line-height: 1.2; }
    .bp-stats-header h2 span { color: #e86f2a; }
    .bp-stats-header p { font-size: 16px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.7; }
    .bp-counter-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 40px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
    .bp-counter-cell { padding: 35px 25px; text-align: center; border-right: 1px solid rgba(255,255,255,0.07); transition: background .3s; }
    .bp-counter-cell:last-child { border-right: none; }
    .bp-counter-cell:hover { background: rgba(8,85,54,0.2); }
    .bp-counter-cell .cc-num { font-size: 42px; font-weight: 800; color: #f59e0b; line-height: 1; margin-bottom: 6px; display: block; }
    .bp-counter-cell.orange .cc-num { color: #e86f2a; }
    .bp-counter-cell .cc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgb(255,255,255); margin-bottom: 4px; }
    .bp-counter-cell .cc-sub { font-size: 13px; color: rgba(255,255,255,0.85); }
    .bp-maps-risk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; width: 100%; box-sizing: border-box; }
    .bp-map-block { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 20px 20px 30px; position: relative; min-width: 0; overflow: hidden; box-sizing: border-box; }
    .bp-map-block h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.9); margin: 0 0 4px; }
    .bp-map-block .bm-hero-num { font-size: 28px; font-weight: 800; color: #f59e0b; margin-bottom: 12px; line-height: 1; }
    .bp-map-block .bm-hero-num span { font-size: 13px; color: rgba(255,255,255,0.9); font-weight: 400; }
    .bp-jsvmap-container { width: 100%; height: 270px; position: relative; }
    .bp-map-hint { position: absolute; bottom: 10px; left: 20px; font-size: 11px; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; pointer-events: none; }
    .jvm-zoom-btn { background-color: #e86f2a; color: white; border: none; display: flex; align-items: center; justify-content: center; }
    .jvm-zoom-btn:hover { background-color: #085536; }
    .jvm-tooltip { background-color: #051a0e; border: 1px solid #e86f2a; color: #fff; font-size: 13px; padding: 10px 14px; border-radius: 4px; font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif; box-shadow: 0 4px 14px rgba(0,0,0,0.5); }
    .jvm-tooltip strong { color: #ffe066; display: block; font-size: 14px; margin-bottom: 4px; }
    .jvm-region { fill: #e86f2a; stroke: #0a0f1a; stroke-width: 0.5; transition: fill .2s; }
    .jvm-region:hover { fill: #085536 !important; }
    .bp-risk-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 30px; }
    .bp-risk-pill { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.8); padding: 25px 20px; text-align: center; transition: background .3s; }
    .bp-risk-pill:hover { background: rgba(8,85,54,0.2); }
    .bp-risk-pill .rp-num { font-size: 36px; font-weight: 800; color: #e86f2a; line-height: 1; display: block; margin-bottom: 6px; }
    .bp-risk-pill .rp-num.green { color: #4caf7d; }
    .bp-risk-pill .rp-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.9); }
    .bp-risk-pill .rp-desc { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
    .bp-prev-row { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; border-top: 1px solid rgba(255,255,255,0.8); padding-top: 30px; }
    .bp-prev-items { display: flex; gap: 15px; flex-wrap: wrap; }
    .bp-prev-item { display: flex; align-items: center; gap: 10px; background: #fff; border: 2px solid #085536; padding: 14px 20px; border-radius: 0px; box-shadow: 0 4px 10px rgba(0,0,0,0.25); transition: transform .2s, box-shadow .2s; }
    .bp-prev-item:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.35); }
    .bp-prev-item svg { width: 22px; height: 22px; stroke: #085536; flex-shrink: 0; fill: none; }
    .bp-prev-item span { font-size: 13px; font-weight: 700; color: #085536; }
    .bp-stats-cta-btn { display: inline-block; background: #e86f2a; color: #fff; font-size: 13px; font-weight: 700; padding: 14px 28px; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: background .3s; white-space: nowrap; border-radius: 0px; }
    .bp-stats-cta-btn:hover { background: #e86f2a; opacity: 0.9; color: #fff; }
    .bp-download-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #085536; color: #ffffff; font-size: 14px; font-weight: 700; padding: 15px 30px; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; border-radius: 0px; border: 2px solid #085536; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); margin-top: 20px;}
    .bp-download-btn i { font-size: 18px; transition: transform 0.3s ease; }
    .bp-download-btn:hover { background: #085536; opacity: 0.9; color: #ffffff; }
    .bp-download-btn:hover i { animation: bounce-down 1s infinite; }
    @@keyframes bounce-down { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
    .bp-stats-source { font-size: 14px; color: #e0dede; text-align: center; margin-top: 40px; }
    @@media (max-width: 980px) {
        .bp-counter-row, .bp-risk-row { grid-template-columns: 1fr 1fr; }
        .bp-maps-risk-row { grid-template-columns: 1fr; gap: 15px; margin-bottom: 15px; }
        .bp-prev-row { grid-template-columns: 1fr; }
        .bp-stats-header h2 { font-size: 28px; }
        .bp-map-block { padding: 16px 16px 0; }
        .bp-map-block .bm-hero-num { font-size: 24px; margin-bottom: 10px; }
    }
    @@media (max-width: 600px) {
        #bp-stats-section { padding: 40px 12px; }
        .bp-counter-cell .cc-num { font-size: 30px; }
        .bp-counter-row, .bp-risk-row { grid-template-columns: 1fr 1fr; }
        .bp-map-block { padding: 14px 12px 0; }
        .bp-map-block h3 { font-size: 11px; }
        .bp-map-block .bm-hero-num { font-size: 20px; margin-bottom: 8px; }
        .bp-jsvmap-container { height: 220px; }
        .bp-maps-risk-row { gap: 12px; margin-bottom: 12px; }
        .bp-stats-header { margin-bottom: 30px; }
        .bp-stats-header h2 { font-size: 22px; }
        .bp-stats-header p { font-size: 14px; }
    }
    @@media (max-width: 400px) {
        .bp-jsvmap-container { height: 180px; }
        .bp-map-block .bm-hero-num { font-size: 17px; }
        .bp-risk-pill .rp-num { font-size: 28px; }
        .bp-map-hint { font-size: 9px; }
    }

/* ── REVAMPED WORKSHOPS, EVENTS & CLINICS ── */
                .wec-section { max-width: 1200px; margin: 0 auto; padding: 80px 20px; font-family: 'Plus Jakarta Sans', sans-serif; }

                /* Featured Banner */
                .wec-featured {
                    position: relative; border-radius: 20px; overflow: hidden;
                    background: linear-gradient(135deg, #060b09 0%, #064028 60%, #085536 100%);
                    margin-bottom: 60px; min-height: 420px; display: grid;
                    grid-template-columns: 1fr 1fr; align-items: center;
                }
                .wec-featured::before {
                    content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px;
                    background: radial-gradient(circle, rgba(232,111,42,0.12) 0%, transparent 70%);
                    pointer-events: none;
                }
                .wec-featured-text { padding: 50px 50px 50px 55px; position: relative; z-index: 2; }
                .wec-featured-badge {
                    display: inline-flex; align-items: center; gap: 8px;
                    background: rgba(232,111,42,0.15); border: 1px solid rgba(232,111,42,0.3);
                    color: #e86f2a; font-size: 11px; font-weight: 700; text-transform: uppercase;
                    letter-spacing: 1.5px; padding: 6px 16px; border-radius: 30px; margin-bottom: 20px;
                }
                .wec-featured-badge::before {
                    content: ''; display: block; width: 6px; height: 6px;
                    background: #e86f2a; border-radius: 50%; box-shadow: 0 0 8px #e86f2a;
                }
                .wec-featured-text h2 {
                    font-size: 34px; font-weight: 800; color: #fff !important;
                    margin: 0 0 14px; line-height: 1.2; letter-spacing: -0.5px;
                }
                .wec-featured-text > p {
                    font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; margin: 0 0 28px;
                }
                .wec-feat-meta {
                    list-style: none; padding: 20px; margin: 0 0 28px;
                    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
                    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
                    border-radius: 12px;
                }
                .wec-feat-meta li {
                    font-size: 14px; color: #fff; display: flex; flex-direction: column; gap: 3px;
                }
                .wec-feat-meta li span {
                    color: #e86f2a; font-size: 10px; text-transform: uppercase;
                    letter-spacing: 1px; font-weight: 700;
                }
                .wec-feat-btn {
                    display: inline-flex; align-items: center; gap: 8px;
                    background: #e86f2a; color: #fff !important; padding: 14px 32px;
                    border: none; border-radius: 8px; font-size: 14px; font-weight: 700;
                    text-decoration: none; cursor: pointer; transition: all 0.3s;
                    text-transform: uppercase; letter-spacing: 0.5px;
                }
                .wec-feat-btn:hover { background: #c95e22; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(232,111,42,0.3); }
                .wec-featured-img {
                    position: relative; height: 100%; overflow: hidden;
                }
                .wec-featured-img img {
                    width: 100%; height: 100%; object-fit: cover; min-height: 420px;
                    transition: transform 0.6s ease;
                }
                .wec-featured:hover .wec-featured-img img { transform: scale(1.04); }

                /* Section Header */
                .wec-head { text-align: center; margin-bottom: 45px; }
                .wec-head-label {
                    font-size: 12px; font-weight: 700; color: #e86f2a;
                    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
                }
                .wec-head h2 {
                    font-size: 32px; font-weight: 800; color: #085536;
                    margin: 0 0 10px; line-height: 1.25;
                }
                .wec-head p { font-size: 15px; color: #6b6b60; max-width: 550px; margin: 0 auto; line-height: 1.6; }

                /* Modern Cards Grid */
                .wec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
                .wec-card {
                    background: #fff; border-radius: 16px; overflow: hidden;
                    box-shadow: 0 8px 30px rgba(0,0,0,0.05); border: 1px solid #eef2ef;
                    transition: transform 0.35s ease, box-shadow 0.35s ease;
                    display: flex; flex-direction: column; text-decoration: none; color: inherit;
                }
                .wec-card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 20px 50px rgba(8,85,54,0.1);
                    border-color: #d0e0d8;
                }
                .wec-card-img {
                    position: relative; height: 200px; overflow: hidden;
                }
                .wec-card-img img {
                    width: 100%; height: 100%; object-fit: cover;
                    transition: transform 0.5s ease;
                }
                .wec-card:hover .wec-card-img img { transform: scale(1.08); }
                .wec-card-cat {
                    position: absolute; top: 14px; left: 14px;
                    background: rgba(232,111,42,0.92); color: #fff;
                    font-size: 9px; font-weight: 800; text-transform: uppercase;
                    letter-spacing: 1.2px; padding: 5px 12px; border-radius: 20px;
                    backdrop-filter: blur(4px);
                }
                .wec-card-body { padding: 22px 22px 20px; flex-grow: 1; display: flex; flex-direction: column; }
                .wec-card-body h3 {
                    font-size: 17px; font-weight: 800; color: #085536;
                    margin: 0 0 10px; line-height: 1.3;
                }
                .wec-card-body > p {
                    font-size: 13px; color: #5a5a50; line-height: 1.65;
                    margin: 0 0 16px; flex-grow: 1;
                }
                .wec-card-meta {
                    display: flex; flex-direction: column; gap: 6px;
                    padding-top: 14px; border-top: 1px solid #f0f5f2;
                    margin-bottom: 16px;
                }
                .wec-card-meta-item {
                    display: flex; align-items: center; gap: 8px;
                    font-size: 12px; color: #6b6b60;
                }
                .wec-card-meta-item svg { width: 14px; height: 14px; stroke: #e86f2a; flex-shrink: 0; }
                .wec-card-btn {
                    display: block; width: 100%; text-align: center; padding: 11px 0;
                    background: #085536; color: #fff !important; border: none; border-radius: 8px;
                    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
                    cursor: pointer; transition: all 0.3s; text-decoration: none;
                }
                .wec-card-btn:hover { background: #e86f2a; }

                /* View All */
                .wec-viewall { text-align: center; }
                .wec-viewall-btn {
                    display: inline-flex; align-items: center; gap: 8px;
                    padding: 14px 36px; background: transparent; color: #085536;
                    border: 2px solid rgba(8,85,54,0.25); border-radius: 8px;
                    font-size: 14px; font-weight: 700; text-decoration: none;
                    text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s;
                }
                .wec-viewall-btn:hover { border-color: #085536; background: rgba(8,85,54,0.04); transform: translateY(-2px); }

                /* CALENDLY MODAL */
                .bp-modal-overlay {display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.8);z-index:999999;align-items:center;justify-content:center;backdrop-filter:blur(4px);}
                .bp-modal {background:#fff;width:100%;max-width:800px;height:90vh;max-height:800px;border-radius:12px;overflow:hidden;display:flex;flex-direction:column;box-shadow:0 25px 50px rgba(0,0,0,0.5);animation:modalFadeIn 0.3s ease;}
                .bp-modal-header {padding:20px 24px;background:#085536;color:#fff;display:flex;justify-content:space-between;align-items:center;}
                .bp-modal-header h3 {margin:0;font-size:18px;font-weight:700;}
                .bp-modal-close {background:none;border:none;color:#fff;font-size:28px;cursor:pointer;line-height:1;opacity:0.7;transition:opacity 0.2s;}
                .bp-modal-close:hover {opacity:1;}
                .bp-modal-body {flex:1;position:relative;background:#f5fbf8;}
                @@keyframes modalFadeIn { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }

                @@media (max-width: 1100px) { .wec-grid { grid-template-columns: repeat(2, 1fr); } }
                @@media (max-width: 980px) {
                    .wec-featured { grid-template-columns: 1fr; }
                    .wec-featured-img img { min-height: 280px; }
                }
                @@media (max-width: 640px) {
                    .wec-grid { grid-template-columns: 1fr; }
                    .wec-featured-text { padding: 30px 24px; }
                    .wec-featured-text h2 { font-size: 26px; }
                    .wec-feat-meta { grid-template-columns: 1fr; }
                    .wec-feat-btn { width: 100%; text-align: center; justify-content: center; }
                }

/* ── TAI CHI CORNER SHARED ── */
                .tc-corner-section {
                    background: #f7f5ef;
                    padding: 90px 20px 80px;
                    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
                }
                .tc-corner-inner { max-width: 1280px; margin: 0 auto; }
                .tc-corner-head { text-align: center; margin-bottom: 55px; }
                .tc-corner-label {
                    font-size: 11px; font-weight: 800; color: #e86f2a;
                    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px;
                }
                .tc-corner-head h2 {
                    font-size: 38px; font-weight: 800; color: #085536;
                    margin: 0 0 14px; line-height: 1.15;
                    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
                }
                .tc-corner-head p { font-size: 16px; color: #6b6b60; margin: 0 auto; line-height: 1.65; max-width: 600px; }

                /* ── FEATURED ROW ── */
                .tc-featured-row {
                    display: grid;
                    grid-template-columns: 32% 68%;
                    gap: 0;
                    background: #ffffff;
                    border: 1px solid #e3e0d6;
                    border-radius: 14px;
                    overflow: hidden;
                    margin: 0 auto 36px;
                    max-width: 1100px;
                    box-shadow: 0 6px 28px rgba(8,85,54,0.07);
                    position: relative;
                }
                .tc-featured-row:hover .tc-featured-logo {
                    opacity: 1;
                    transform: scale(1.05);
                }
                .tc-featured-img-wrap {
                    position: relative;
                    overflow: hidden;
                }
                .tc-featured-img-wrap img {
                    width: 100%; height: 100%; object-fit: cover; object-position: top center;
                    display: block;
                    transition: transform 0.5s ease;
                }
                .tc-featured-row:hover .tc-featured-img-wrap img { transform: scale(1.04); }
                .tc-featured-badge-wrap {
                    position: absolute; bottom: 18px; left: 18px; display: flex; gap: 8px;
                }
                .tc-badge {
                    font-size: 10px; font-weight: 800; text-transform: uppercase;
                    letter-spacing: 1.2px; padding: 5px 12px;
                    background: rgba(8,85,54,0.85); color: #fff; border-radius: 3px;
                }
                .tc-badge.orange { background: rgba(232,111,42,0.9); }
                .tc-featured-content {
                    padding: 38px 40px 36px;
                    display: flex; flex-direction: column; justify-content: space-between;
                    position: relative; overflow: hidden;
                }
                .tc-featured-logo {
                    position: absolute; bottom: 20px; right: 20px;
                    width: 100px; height: 100px; object-fit: contain;
                    opacity: 0.3; pointer-events: none;
                    transition: opacity 0.4s ease, transform 0.4s ease;
                    transform: scale(1);
                }
                .tc-featured-cat {
                    display: inline-block; font-size: 10px; font-weight: 800;
                    text-transform: uppercase; letter-spacing: 1.5px;
                    color: #7d0e12; background: rgba(125,14,18,0.08);
                    padding: 4px 12px; border-radius: 3px; margin-bottom: 14px;
                    align-self: flex-start;
                }
                .tc-featured-content h3 {
                    font-size: 22px; font-weight: 800; color: #085536;
                    margin: 0 0 14px; line-height: 1.3;
                    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
                }
                .tc-featured-content p {
                    font-size: 14px; color: #5a5a50; line-height: 1.75;
                    margin: 0 0 28px; flex-grow: 1;
                }
                .tc-featured-meta {
                    font-size: 12px; color: #9a9a8a; margin-bottom: 22px;
                    display: flex; gap: 16px; align-items: center;
                }
                .tc-featured-meta span { display: flex; align-items: center; gap: 5px; }

                /* ── STANDARD CARD GRID ── */
                .tc-cards-grid {
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    gap: 24px;
                    margin-bottom: 48px;
                }
                .tc-card {
                    background: #ffffff;
                    border: 1px solid #e3e0d6;
                    border-radius: 12px;
                    overflow: hidden;
                    display: flex; flex-direction: column;
                    box-shadow: 0 4px 18px rgba(8,85,54,0.05);
                    transition: transform 0.32s ease, box-shadow 0.32s ease;
                    position: relative;
                }
                .tc-card:hover {
                    transform: translateY(-6px);
                    box-shadow: 0 14px 36px rgba(8,85,54,0.11);
                }
                /* image area */
                .tc-card-img-wrap {
                    position: relative; overflow: hidden; height: 190px;
                }
                .tc-card-img-wrap img {
                    width: 100%; height: 100%; object-fit: cover; display: block;
                    transition: transform 0.5s ease;
                }
                .tc-card:hover .tc-card-img-wrap img { transform: scale(1.07); }
                /* logo watermark */
                .tc-card-logo-watermark {
                    position: absolute; bottom: -10px; right: -10px;
                    width: 80px; height: 80px; object-fit: contain;
                    opacity: 0.08; pointer-events: none;
                    transition: opacity 0.35s ease, transform 0.35s ease;
                    transform: scale(1);
                }
                .tc-card:hover .tc-card-logo-watermark {
                    opacity: 0.18;
                    transform: scale(1.15);
                }
                /* card body */
                .tc-card-body { padding: 24px 24px 22px; display: flex; flex-direction: column; flex-grow: 1; }
                .tc-card-cat {
                    display: inline-block; font-size: 9px; font-weight: 800;
                    text-transform: uppercase; letter-spacing: 1.4px;
                    color: #e86f2a; background: rgba(232,111,42,0.09);
                    padding: 3px 10px; border-radius: 30px; margin-bottom: 12px;
                    align-self: flex-start;
                }
                .tc-card h3 {
                    font-size: 16px; font-weight: 800; color: #1c1c16;
                    margin: 0 0 10px; line-height: 1.35;
                    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
                }
                .tc-card p {
                    font-size: 13px; color: #6b6b60; line-height: 1.75;
                    margin: 0 0 20px; flex-grow: 1;
                }
                .tc-card-footer {
                    display: flex; justify-content: space-between; align-items: center;
                    border-top: 1px solid #f0ede6; padding-top: 14px; margin-top: auto;
                }
                .tc-read-link {
                    display: inline-flex; align-items: center; gap: 5px;
                    color: #085536; font-size: 12px; font-weight: 700;
                    text-decoration: none;
                    transition: color 0.2s;
                }
                .tc-read-link:hover { color: #e86f2a; }
                .tc-read-link::after { content: '→'; transition: transform 0.2s; }
                .tc-read-link:hover::after { transform: translateX(3px); }
                .tc-read-time { font-size: 11px; color: #9a9a8a; }

                /* ── CTA ── */
                .tc-corner-cta { text-align: center; }
                .tc-view-btn {
                    display: inline-block; background: transparent; color: #085536;
                    font-size: 14px; font-weight: 700; padding: 14px 40px;
                    text-decoration: none; letter-spacing: 0.5px;
                    border: 2px solid #085536; border-radius: 0;
                    transition: background 0.3s, color 0.3s;
                    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
                }
                .tc-view-btn:hover { background: #085536; color: #ffffff; }

                @@media (max-width: 1100px) {
                    .tc-cards-grid { grid-template-columns: repeat(2, 1fr); }
                }
                @@media (max-width: 980px) {
                    .tc-featured-row { grid-template-columns: 1fr; }
                    .tc-featured-img-wrap img { min-height: 220px; }
                    .tc-corner-head h2 { font-size: 28px; }
                }
                @@media (max-width: 640px) {
                    .tc-corner-section { padding: 55px 16px 50px; }
                    .tc-corner-head h2 { font-size: 24px; }
                    .tc-cards-grid { grid-template-columns: 1fr; }
                    .tc-view-btn { width: 100%; text-align: center; box-sizing: border-box; }
                    .tc-featured-content { padding: 28px 24px 26px; }
                }

/* ── Johanna Gaston Wellness Corner ── */
                    .jg-section { background: #fafcfb; padding: 80px 0; }
                    .jg-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

                    .jg-head { text-align: center; margin-bottom: 50px; }
                    .jg-head-label {
                        font-size: 11px; font-weight: 800; text-transform: uppercase;
                        letter-spacing: 2.5px; color: #e86f2a; margin-bottom: 10px;
                    }
                    .jg-head h2 {
                        font-size: 36px; font-weight: 800; color: #085536;
                        margin: 8px 0 12px; font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
                    }
                    .jg-head p { font-size: 16px; color: #5a5a50; max-width: 600px; margin: 0 auto; line-height: 1.7; }

                    /* Profile Row */
                    .jg-profile {
                        display: grid; grid-template-columns: 420px 1fr;
                        background: #fff; border-radius: 16px; overflow: hidden;
                        box-shadow: 0 20px 60px rgba(0,0,0,0.08); margin-bottom: 50px;
                        transition: box-shadow 0.4s ease;
                    }
                    .jg-profile:hover { box-shadow: 0 25px 70px rgba(0,0,0,0.12); }
                    .jg-profile-img { position: relative; overflow: hidden; }
                    .jg-profile-img img {
                        width: 100%; height: 100%; object-fit: cover; object-position: top center;
                        transition: transform 0.6s ease;
                    }
                    .jg-profile:hover .jg-profile-img img { transform: scale(1.04); }
                    .jg-profile-body {
                        padding: 40px 44px 36px; display: flex; flex-direction: column; position: relative;
                    }
                    .jg-profile-cat {
                        display: inline-block; font-size: 10px; font-weight: 800;
                        text-transform: uppercase; letter-spacing: 2px; color: #e86f2a; margin-bottom: 12px;
                    }
                    .jg-profile-body h3 {
                        font-size: 28px; font-weight: 800; color: #1c1c16;
                        margin-bottom: 16px; line-height: 1.3; font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
                    }
                    .jg-profile-body > div p {
                        font-size: 15px; color: #4a4a40; line-height: 1.75; margin-bottom: 20px;
                    }
                    .jg-watermark {
                        position: absolute; bottom: 20px; right: 20px; width: 50px;
                        opacity: 0.12; transition: opacity 0.3s;
                    }
                    .jg-profile:hover .jg-watermark { opacity: 0.25; }

                    /* Subscribe Box */
                    .jg-sub-box {
                        background: linear-gradient(135deg, #f0faf5 0%, #fef8f4 100%);
                        border-radius: 10px; padding: 20px 24px; margin-top: 14px;
                        border: 1px solid rgba(8,85,54,0.1);
                    }
                    .jg-sub-box h4 { font-size: 14px; font-weight: 700; color: #085536; margin: 0 0 10px; }
                    .jg-sub-form { display: flex; gap: 8px; }
                    .jg-sub-form input[type="email"] {
                        flex: 1; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 6px;
                        font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s;
                    }
                    .jg-sub-form input[type="email"]:focus { border-color: #085536; }
                    .jg-sub-form button {
                        padding: 10px 20px; background: #e86f2a; color: #fff; border: none;
                        border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer;
                        transition: background 0.2s, transform 0.2s; white-space: nowrap;
                    }
                    .jg-sub-form button:hover { background: #c95e22; transform: translateY(-1px); }

                    /* CTA Buttons */
                    .jg-cta-row { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
                    .jg-btn {
                        display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
                        border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none;
                        text-transform: uppercase; letter-spacing: 0.8px; transition: all 0.3s ease;
                    }
                    .jg-btn-primary { background: #085536; color: #fff !important; }
                    .jg-btn-primary:hover { background: #0d6b44; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8,85,54,0.3); }
                    .jg-btn-secondary { background: transparent; color: #085536 !important; border: 2px solid rgba(8,85,54,0.3); }
                    .jg-btn-secondary:hover { border-color: #085536; background: rgba(8,85,54,0.04); transform: translateY(-2px); }

                    /* Event Card */
                    .jg-evt { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.06); border: 1px solid #e8ece9; }
                    .jg-evt-head {
                        background: linear-gradient(135deg, #085536, #0d6b44); padding: 22px 32px;
                        display: flex; justify-content: space-between; align-items: center;
                    }
                    .jg-evt-head-left { display: flex; align-items: center; gap: 12px; }
                    .jg-evt-badge {
                        background: #e86f2a; color: #fff; font-size: 10px; font-weight: 800;
                        text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 14px; border-radius: 20px;
                    }
                    .jg-evt-head h4 { color: #fff; font-size: 16px; font-weight: 700; margin: 0; font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif; }
                    .jg-evt-head-right a { color: rgba(255,255,255,0.7); font-size: 12px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
                    .jg-evt-head-right a:hover { color: #fff; }
                    .jg-evt-body { padding: 32px; }
                    .jg-evt-title { font-size: 24px; font-weight: 800; color: #1c1c16; margin: 0 0 12px; font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif; }
                    .jg-evt-desc { font-size: 15px; color: #5a5a50; line-height: 1.7; margin-bottom: 24px; max-width: 700px; }
                    .jg-evt-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
                    .jg-evt-mi { display: flex; align-items: flex-start; gap: 10px; }
                    .jg-evt-icon {
                        width: 36px; height: 36px; background: linear-gradient(135deg, #f0faf5, #e8f5ee);
                        border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
                    }
                    .jg-evt-icon svg { width: 16px; height: 16px; stroke: #085536; }
                    .jg-evt-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9a9a8a; margin-bottom: 2px; }
                    .jg-evt-val { font-size: 14px; font-weight: 600; color: #1c1c16; }

                    @@media (max-width: 980px) {
                        .jg-profile { grid-template-columns: 1fr; }
                        .jg-profile-img img { min-height: 280px; }
                        .jg-profile-body { padding: 28px 24px 26px; }
                        .jg-head h2 { font-size: 28px; }
                        .jg-evt-meta { grid-template-columns: repeat(2, 1fr); }
                    }
                    @@media (max-width: 640px) {
                        .jg-sub-form { flex-direction: column; }
                        .jg-cta-row { flex-direction: column; }
                        .jg-btn { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; }
                        .jg-evt-meta { grid-template-columns: 1fr; }
                    }

.hp-faq-section {
        padding: 40px 0; /* Reduced padding */
        background-color: #fff;
    }
    .hp-faq-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 24px;
        font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
    }
    .hp-faq-header {
        text-align: center;
        margin-bottom: 30px; /* Reduced margin */
    }
    .hp-faq-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #e86f2a;
        margin-bottom: 8px; /* Reduced margin */
    }
    .hp-faq-title {
        font-size: 28px;
        font-weight: 800;
        color: #085536;
        margin: 0 0 12px;
        line-height: 1.2;
    }
    
    /* Layout Update for Independent Columns */
    .hp-faq-grid {
        display: flex;
        gap: 24px;
        align-items: flex-start; /* Ensures columns don't stretch each other */
    }
    .hp-faq-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hp-faq-item {
        background: #ffffff;
        border: 1px solid #e2dfd8;
        padding: 8px 16px; /* Reduced padding */
        align-self: stretch;
        border-radius: 0; /* Square design */
    }
    .hp-faq-q {
        padding: 12px 0; /* Reduced padding */
        font-size: 15px;
        font-weight: 700;
        color: #085536;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    /* Icon Updates */
    .hp-faq-icon {
        width: 26px;
        height: 26px;
        background: #e86f2a;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s, background 0.2s, color 0.2s;
        font-size: 18px;
        line-height: 1;
        flex-shrink: 0;
        font-weight: 400;
        border-radius: 50%;
    }
    .hp-faq-item.active .hp-faq-icon {
        background: transparent;
        color: #e86f2a;
        transform: rotate(0deg);
    }
    
    .hp-faq-a {
        display: none;
        padding-bottom: 12px; /* Reduced padding */
        font-size: 14px;
        color: #5a6b7c;
        line-height: 1.65;
    }
    
    @@media (max-width: 680px) {
        .hp-faq-grid {
            flex-direction: column;
        }
    }

.bp-testimonials-section {
                        background-color: #faf8f5;
                        padding: 80px 0;
                        text-align: center;
                        overflow: hidden;
                    }
                    .bp-testimonials-header h2 {
                        color: #085536;
                        font-size: clamp(28px, 5vw, 42px);
                        font-weight: 800;
                        margin-bottom: 15px;
                    }
                    .bp-testimonials-header p {
                        color: #4a5568;
                        font-size: 18px;
                        max-width: 600px;
                        margin: 0 auto 50px;
                        line-height: 1.6;
                        text-align: center !important;
                    }
                    .bp-testimonials-track-wrap {
                        width: 100%;
                        overflow: hidden;
                        position: relative;
                        padding: 20px 0;
                    }
                    .bp-testimonials-track-wrap::before,
                    .bp-testimonials-track-wrap::after {
                        content: '';
                        position: absolute;
                        top: 0; bottom: 0;
                        width: 100px;
                        z-index: 2;
                        pointer-events: none;
                    }
                    .bp-testimonials-track-wrap::before { left: 0; background: linear-gradient(to right, #faf8f5, transparent); }
                    .bp-testimonials-track-wrap::after  { right: 0; background: linear-gradient(to left, #faf8f5, transparent); }
                    
                    .bp-testimonials-track {
                        display: flex;
                        gap: 30px;
                        width: max-content;
                        animation: bp-testi-ticker 35s linear infinite;
                    }
                    .bp-testimonials-track:hover {
                        animation-play-state: paused;
                    }
                    @@keyframes bp-testi-ticker {
                        from { transform: translateX(0); }
                        to   { transform: translateX(-50%); }
                    }
                    
                    .bp-testi-card {
                        background: #fff;
                        width: 350px;
                        border-radius: 20px;
                        padding: 30px;
                        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
                        border-top: 4px solid #085536;
                        flex-shrink: 0;
                        text-align: left;
                        display: flex;
                        flex-direction: column;
                        gap: 20px;
                        transition: transform 0.3s ease, border-color 0.3s ease;
                    }
                    .bp-testi-card:nth-child(even) {
                        border-top-color: #e86f2a;
                    }
                    .bp-testi-card:hover {
                        transform: translateY(-5px);
                    }
                    
                    .bp-testi-author-row {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                    }
                    .bp-testi-avatar {
                        width: 60px;
                        height: 60px;
                        border-radius: 50%;
                        object-fit: cover;
                    }
                    .bp-testi-author-info {
                        flex: 1;
                    }
                    .bp-testi-stars {
                        color: #e86f2a;
                        font-size: 14px;
                        margin-bottom: 5px;
                    }
                    .bp-testi-name {
                        color: #085536;
                        font-size: 16px;
                        font-weight: 700;
                        margin: 0 !important;
                        padding: 0 !important;
                        line-height: 1.2 !important;
                    }
                    .bp-testi-role {
                        color: #555;
                        font-size: 13px;
                        margin: 4px 0 0 0 !important;
                        padding: 0 !important;
                        line-height: 1.2 !important;
                    }
                    .bp-testi-text {
                        font-size: 15px;
                        color: #333;
                        font-style: italic;
                        line-height: 1.6;
                        margin: 0 !important;
                        flex-grow: 1;
                        text-align: left !important;
                    }
                    .bp-testi-badge {
                        display: inline-block;
                        background: #eee;
                        color: #444;
                        font-size: 12px;
                        font-weight: 600;
                        padding: 6px 15px;
                        border-radius: 20px;
                        align-self: flex-start;
                    }
                    .bp-testi-more {
                        margin-top: 40px;
                    }
                    .bp-testi-more-btn {
                        display: inline-block;
                        background: transparent;
                        color: #085536;
                        font-weight: 700;
                        text-decoration: none;
                        border: 2px solid #085536;
                        padding: 10px 24px;
                        border-radius: 0;
                        transition: all 0.3s;
                    }
                    .bp-testi-more-btn:hover {
                        background: #085536;
                        color: #fff;
                    }
                    
                    @@media (max-width: 1024px) {
                        .bp-testi-card { width: 320px; }
                    }
                    @@media (max-width: 768px) {
                        .bp-testi-card { width: 280px; }
                        .bp-testimonials-track-wrap::before, .bp-testimonials-track-wrap::after { width: 30px; }
                    }

