
            /* ===== HERO ===== */
.new-here-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1519750157634-b6d493a0f77c?w=1600&q=80') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.new-here-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.new-here-hero .container { position: relative; z-index: 2; }
.new-here-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: white;
}
.new-here-hero p {
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 2rem;
    opacity: 0.92;
    line-height: 1.7;
    color: white;
}
.hero-btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-btn-group .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s;
}
.hero-btn-group .btn-outline-light:hover {
    background: #fff;
    color: #222;
}
.hero-btn-group .btn-primary-green {
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
}

/* ===== YOU BELONG HERE ===== */
.belong-section { background: #faf8f4; }
.belong-section .section-label { color: var(--clr-primary); text-transform: uppercase; font-weight: 700; font-size: 0.85rem; letter-spacing: 2px; }

/* ===== EXPERIENCE CARDS ===== */
.experience-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.experience-card .icon-wrap {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--clr-primary-lighter, #f0ebe2);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    color: var(--clr-primary, #5c6d3f);
}
.experience-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.experience-card p { font-size: 0.95rem; color: #666; margin-bottom: 0; }

/* ===== JOIN US ===== */
.join-us-section { background: #fff; }
.join-us-section .schedule-item {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}
.join-us-section .schedule-item strong { font-weight: 700; }
.join-us-section .schedule-item span { color: #777; }
.join-us-section .location-text { color: var(--clr-primary, #5c6d3f); font-weight: 600; font-size: 1rem; }

/* ===== PLAN VISIT FORM ===== */
.plan-visit-section { background: var(--clr-primary-lighter, #f5f1ea); }
.plan-visit-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    max-width: 650px;
    margin: 0 auto;
}
.plan-visit-card h3 { font-weight: 700; margin-bottom: 1rem; }
.plan-visit-card .checklist { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.plan-visit-card .checklist li { padding: 0.3rem 0; color: #555; font-size: 0.95rem; }
.plan-visit-card .checklist li i { color: var(--clr-primary, #5c6d3f); margin-right: 8px; }

/* ===== WATCH LIVE ===== */
.watch-live-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=1600&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.watch-live-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.watch-live-section .container { position: relative; z-index: 2; }
.watch-live-section h2 { font-weight: 800; }
.watch-live-section p { opacity: 0.9; max-width: 500px; margin: 0 auto 1.5rem; }

/* ===== FAQ CLEAN ===== */
.faq-clean .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}
.faq-clean .accordion-button {
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    background: #fff;
}
.faq-clean .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--clr-primary, #5c6d3f);
    box-shadow: none;
}
.faq-clean .accordion-body { padding: 0 1.5rem 1.2rem; color: #555; line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta-section {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.final-cta-section h2 { font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.final-cta-section p { opacity: 0.85; max-width: 500px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ===== FADE-IN ANIMATION ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.new-here-hero .container { animation: fadeInUp 1s ease-out; }        