:root {
    --bg-dark: #f8f2e5;
    --bg-mid: #fffaf0;
    --text-light: #2e2416;
    --text-soft: #3f2f15;
    --gold-1: #b78a2f;
    --gold-2: #e8c46f;
    --gold-3: #7a5a1d;
    --accent: linear-gradient(135deg, #b78a2f 0%, #e8c46f 55%, #f2ddb0 100%);
    --card-bg: rgba(255, 255, 255, 0.72);
    --border-soft: rgba(122, 90, 29, 0.22);
    --shadow: 0 16px 35px rgba(98, 76, 34, 0.16);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-light);
    background: radial-gradient(circle at top right, rgba(200, 155, 60, 0.22), transparent 44%),
                radial-gradient(circle at bottom left, rgba(200, 155, 60, 0.14), transparent 38%),
                var(--bg-dark);
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    flex-direction: column;
}

main p,
main li {
    color: var(--text-soft);
}

main {
    flex: 1 0 auto;
}

.site-bg-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 75%, transparent 75%);
    background-size: 30px 30px;
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background:
        linear-gradient(118deg, rgba(36, 24, 10, 0.97) 0%, rgba(62, 41, 14, 0.98) 22%, rgba(111, 78, 23, 0.96) 52%, rgba(58, 36, 12, 0.98) 78%, rgba(18, 11, 5, 0.99) 100%);
    border-bottom: 1px solid rgba(224, 188, 100, 0.16);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 20px;
}

.brand {
    text-decoration: none;
    color: #fff2c9;
    display: flex;
    flex-direction: column;
}

.brand-main {
    font-family: "Cinzel", serif;
    font-size: 1.82rem;
    font-weight: 800;
    color: #fff6de;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.brand-sub {
    font-size: 0.92rem;
    color: #f4d889;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 231, 164, 0.65);
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 8px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: #ffe7a4;
}

.nav-cta-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.main-nav > ul > li.mobile-auth-actions {
    display: none;
}

.nav-cta-btn {
    border-radius: 999px;
    padding: 9px 14px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: 0.22s ease;
    border: 1px solid rgba(255, 226, 146, 0.35);
}

.nav-cta-btn.ghost {
    color: #ffeebd;
    background: rgba(255, 247, 222, 0.08);
}

.nav-cta-btn.ghost:hover {
    background: rgba(255, 247, 222, 0.16);
    color: #fff9e7;
}

.nav-cta-btn.solid {
    color: #2c1704;
    background: linear-gradient(135deg, rgba(224, 178, 72, 0.96), rgba(247, 220, 146, 0.98));
    border-color: rgba(119, 78, 13, 0.35);
}

.nav-cta-btn.solid:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.panel-choice-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.panel-choice-modal.open {
    display: block;
}

.panel-choice-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 4, 1, 0.72);
    backdrop-filter: blur(6px);
}

.panel-choice-dialog {
    position: relative;
    width: min(980px, 94vw);
    margin: min(10vh, 72px) auto;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(255, 224, 144, 0.18);
    background:
        radial-gradient(circle at 10% 15%, rgba(234, 196, 98, 0.16), transparent 38%),
        radial-gradient(circle at 86% 76%, rgba(166, 101, 22, 0.2), transparent 40%),
        linear-gradient(135deg, rgba(35, 20, 4, 0.96), rgba(16, 8, 1, 0.98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
    color: #f6e2ad;
}

.panel-choice-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 224, 144, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #ffe9b3;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.panel-choice-chip {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 223, 148, 0.24);
    background: rgba(255, 220, 140, 0.08);
    color: #ffe8b2;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.panel-choice-dialog h2 {
    margin: 12px 0 6px;
    font-family: "Cinzel", serif;
    color: #fff2c8;
}

.panel-choice-dialog > p {
    margin: 0 0 14px;
    color: #efdcb0;
}

.panel-choice-actions {
    margin-top: 6px;
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(223, 186, 101, 0.35);
    background: rgba(10, 6, 3, 0.4);
}

.panel-choice-toggle {
    border: 0;
    border-radius: 999px;
    padding: 8px 16px;
    background: transparent;
    color: rgba(255, 240, 205, 0.75);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: 0.2s ease;
}

.panel-choice-toggle.is-active {
    background: linear-gradient(135deg, rgba(225, 182, 79, 0.95), rgba(247, 225, 161, 0.98));
    color: #2a1704;
    box-shadow: 0 10px 20px rgba(98, 76, 34, 0.25);
}

.panel-choice-toggle:hover {
    color: #fff4d5;
}

.panel-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.panel-choice-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    padding: 16px;
    min-height: 190px;
    border: 1px solid rgba(255, 224, 144, 0.12);
    color: #f8e6bc;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.panel-choice-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 224, 144, 0.26);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.panel-choice-card.film {
    background: linear-gradient(150deg, rgba(179, 96, 20, 0.22), rgba(45, 22, 4, 0.78));
}

.panel-choice-card.dance {
    background: linear-gradient(150deg, rgba(149, 109, 24, 0.2), rgba(34, 21, 5, 0.8));
}

.panel-choice-card.music {
    background: linear-gradient(150deg, rgba(118, 79, 18, 0.24), rgba(28, 16, 4, 0.82));
}

.panel-choice-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 224, 144, 0.12);
    font-size: 1.2rem;
}

.panel-choice-card h3 {
    margin: 12px 0 8px;
    font-family: "Cinzel", serif;
    color: #fff1c6;
    font-size: 1.1rem;
}

.panel-choice-card p {
    margin: 0;
    color: #e8d6ae;
    line-height: 1.45;
    font-size: 0.92rem;
}

.panel-choice-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #2a1704 !important;
    background: linear-gradient(135deg, rgba(225, 182, 79, 0.95), rgba(247, 225, 161, 0.98));
    font-weight: 800;
    text-shadow: none;
}

body.panel-modal-open {
    overflow: hidden;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav > ul {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-nav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav .dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-nav .dropdown > a::after {
    content: "▾";
    font-size: 0.9em;
    line-height: 1;
    opacity: 0.75;
    transform: translateY(-1px);
}

.dropdown-menu {
    list-style: none;
}

.main-nav a {
    color: #fff4d2;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 240, 195, 0.18);
    color: #fffbe9;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translate(-50%, 6px);
    min-width: 250px;
    width: max-content;
    max-width: 320px;
    background: #fffaf0;
    border: 1px solid rgba(183, 138, 47, 0.35);
    border-radius: 10px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    box-shadow: var(--shadow);
    z-index: 1200;
}

.dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu li a {
    display: block;
    white-space: nowrap;
    padding: 9px 12px;
    border-radius: 8px;
    color: #3a2407;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(232, 196, 111, 0.28);
    color: #241402;
}

.hero {
    min-height: 82vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.hero-slider,
.hero-slider .slide {
    position: absolute;
    inset: 0;
}

.hero-slider .slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-slider .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(20, 11, 2, 0.78) 12%, rgba(44, 28, 6, 0.56) 46%, rgba(120, 83, 18, 0.35) 100%);
}

.hero-slider .slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 205, 98, 0.25), transparent 38%),
        radial-gradient(circle at 86% 76%, rgba(255, 173, 55, 0.22), transparent 34%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 213, 130, 0.75);
    background: rgba(0, 0, 0, 0.28);
    color: #ffd88d;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-nav-btn:hover {
    transform: translateY(-1px);
    background: rgba(0, 0, 0, 0.42);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.active {
    width: 24px;
    background: #ffe2a6;
}

.hero-content h1 {
    font-family: "Cinzel", serif;
    max-width: 760px;
    line-height: 1.2;
    font-size: clamp(1.8rem, 3.3vw, 3.3rem);
    margin-bottom: 14px;
    color: #fff6de;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

.hero-content p {
    max-width: 620px;
    color: #ffefc8;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.7;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gold {
    text-decoration: none;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--accent);
    color: #38270d;
    font-weight: 700;
    border: 1px solid rgba(122, 90, 29, 0.35);
    box-shadow: 0 10px 20px rgba(98, 76, 34, 0.2);
    transition: transform 0.2s ease;
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn-hero-secondary {
    text-decoration: none;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(183, 138, 47, 0.5);
    color: #5a3b10;
    font-weight: 700;
    background: rgba(255, 246, 223, 0.86);
    transition: 0.2s ease;
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.45);
}

.split-section {
    padding: 80px 0;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.split-image img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
}

.split-text h2 {
    font-family: "Cinzel", serif;
    font-size: 2rem;
}

.split-text p {
    color: var(--text-soft);
}

.highlight-points {
    padding-left: 18px;
}

.highlight-points li {
    margin: 10px 0;
}

.hero.hero-full {
    min-height: 100vh;
}

.home-stats {
    margin-top: -46px;
    position: relative;
    z-index: 3;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(247, 228, 180, 0.72));
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card h3 {
    margin: 0;
    font-family: "Cinzel", serif;
    font-size: 2rem;
    color: var(--gold-1);
}

.stat-card p {
    margin: 8px 0 0;
    color: var(--text-soft);
}

.home-section {
    padding: 84px 0;
}

.home-section {
    position: relative;
    background: radial-gradient(circle at 84% 18%, rgba(255, 207, 126, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(10, 6, 3, 0.88), rgba(6, 3, 2, 0.98));
    border-top: 1px solid rgba(223, 176, 86, 0.18);
    border-bottom: 1px solid rgba(223, 176, 86, 0.14);
    overflow: hidden;
}

.home-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 214, 138, 0.16), transparent 32%),
        radial-gradient(circle at 90% 72%, rgba(243, 181, 92, 0.12), transparent 35%);
    opacity: 0.6;
}

.home-section .container {
    position: relative;
    z-index: 1;
}

.home-section.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.home-section.container > * {
    width: min(1320px, 94%);
    margin-left: auto;
    margin-right: auto;
}

.home-section .container,
.home-stats .container,
.live-slider-section .container,
.home-cta .container,
.home-hero-middle .container {
    width: min(1320px, 94%);
}

@media (max-width: 960px) {
    .home-section .container,
    .home-stats .container,
    .live-slider-section .container,
    .home-cta .container,
    .home-hero-middle .container {
        width: min(1320px, 92%);
    }

    .home-section .section-heading-inline {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .home-section .section-heading-inline .section-heading-main,
    .home-section .section-heading-inline .gallery-view-all {
        grid-column: 1;
        justify-self: center;
    }

    .home-section .section-heading-inline::before {
        display: none;
    }
}

.home-section.soft-bg {
    background:
        radial-gradient(circle at 70% 22%, rgba(236, 169, 74, 0.18), transparent 40%),
        linear-gradient(160deg, rgba(12, 7, 4, 0.96), rgba(7, 4, 2, 0.98));
}

.home-section .section-heading {
    text-align: center;
    margin-bottom: 32px;
}

.home-section .section-heading-inline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.home-section .section-heading-inline .section-heading-main {
    grid-column: 2;
    text-align: center;
    justify-self: center;
}

.home-section .section-heading-inline .section-heading-main p {
    margin-left: auto;
    margin-right: auto;
}

.home-section .section-heading-inline .gallery-view-all {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
}

.home-section .section-heading-inline::before {
    content: "";
    grid-column: 1;
}

.home-section .section-heading h2 {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.home-section .section-heading h2::before,
.home-section .section-heading h2::after {
    content: "";
    width: clamp(34px, 6vw, 70px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 194, 97, 0.95), transparent);
}

.home-section .section-heading p {
    max-width: 720px;
    margin: 10px auto 0;
}

.home-section .feature-card,
.home-section .program-card,
.home-section .pillar-card,
.home-section .event-card,
.home-section .testimonial-card,
.home-section .timeline-step,
.home-section .faq-item,
.home-section .frontend-gallery-card,
.home-section .stat-card {
    border: 1px solid rgba(215, 154, 61, 0.28);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(10, 6, 3, 0.94));
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.home-section .feature-card:hover,
.home-section .program-card:hover,
.home-section .pillar-card:hover,
.home-section .event-card:hover,
.home-section .timeline-step:hover,
.home-section .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(224, 188, 100, 0.12) inset;
}

.home-section .frontend-gallery-card img {
    border-bottom: 1px solid rgba(216, 154, 61, 0.22);
}
.frontend-gallery-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    background:#f7f1e6;
    display:block;
    border-bottom:0;
}
.frontend-gallery-card{
    height:auto;
    padding:0;
    overflow:hidden;
}
.frontend-gallery-grid{
    grid-auto-rows:auto;
    align-items:stretch;
}
.frontend-gallery-card{
    height:auto !important;
    min-height:0 !important;
    aspect-ratio:auto !important;
}
.frontend-gallery-card img{
    height:240px !important;
    max-height:240px !important;
    object-fit:cover !important;
    aspect-ratio:auto !important;
}
.frontend-gallery-grid{
    grid-auto-rows:unset !important;
    align-items:start !important;
}
.frontend-gallery-card{
    align-self:start !important;
    padding:0 !important;
    line-height:0 !important;
    display:block !important;
}
.frontend-gallery-card img{
    margin:0 !important;
}
.frontend-gallery-content{
    padding:10px 12px;
    border-top:1px solid rgba(216, 154, 61, 0.22);
}
.frontend-gallery-content:empty{
    display:none;
}
.frontend-gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(12,8,4,.72);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:2000;
    padding:20px;
}
.frontend-gallery-modal.open{display:flex}
.frontend-gallery-modal-card{
    position:relative;
    width:min(980px, 100%);
    max-height:90vh;
    background:#fff9ee;
    border-radius:18px;
    border:1px solid rgba(180,140,60,.22);
    padding:14px 16px 18px;
    box-shadow:0 24px 48px rgba(18,10,4,.42);
    display:grid;
    grid-template-rows:auto 1fr auto;
    gap:10px;
}
.frontend-gallery-modal-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}
.frontend-gallery-modal-title{
    font-weight:800;
    color:#3a2507;
}
.frontend-gallery-modal-close{
    width:36px;
    height:36px;
    border-radius:10px;
    border:1px solid rgba(120,82,24,.22);
    background:#f8e7c3;
    font-size:1.4rem;
    line-height:1;
    cursor:pointer;
}
.frontend-gallery-modal-image{
    width:100%;
    height:100%;
    max-height:64vh;
    object-fit:contain;
    background:#f7f1e6;
    border-radius:12px;
}
.frontend-gallery-modal-meta{
    color:#5a3a12;
    font-size:.9rem;
}
.frontend-gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border-radius:999px;
    border:1px solid rgba(120,82,24,.25);
    background:#fff3d8;
    color:#4a2c0a;
    font-size:1.6rem;
    font-weight:800;
    cursor:pointer;
    display:grid;
    place-items:center;
}
.frontend-gallery-nav.prev{left:10px}
.frontend-gallery-nav.next{right:10px}

@media (max-width: 700px){
    .frontend-gallery-modal-card{
        padding:12px;
    }
    .frontend-gallery-nav{
        width:38px;
        height:38px;
    }
}

.home-section .stat-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(12, 7, 4, 0.88));
}

.home-section .faq-item summary {
    color: #f1d49d;
}

.home-section .faq-item p {
    color: rgba(243, 227, 196, 0.9);
}

.home-stats.home-stats-middle {
    margin-top: -28px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.live-slider-section {
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(236, 169, 74, 0.2), transparent 40%),
        linear-gradient(165deg, rgba(12, 7, 4, 0.95), rgba(6, 3, 2, 0.98));
    border-top: 1px solid rgba(215, 154, 61, 0.2);
    border-bottom: 1px solid rgba(215, 154, 61, 0.2);
}

.live-slider-section .section-heading {
    text-align: center;
}

.live-slider-section .section-heading p {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.live-slider-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(255, 224, 150, 0.95) 0 1px, transparent 2px) 12% 18% / 140px 140px no-repeat,
        radial-gradient(circle, rgba(255, 210, 128, 0.85) 0 1.1px, transparent 2px) 84% 72% / 160px 160px no-repeat;
    opacity: 0.45;
}

.home-cta {
    background:
        radial-gradient(circle at 12% 18%, rgba(245, 198, 104, 0.22), transparent 38%),
        linear-gradient(160deg, rgba(14, 8, 4, 0.96), rgba(6, 3, 2, 0.98));
    border-top: 1px solid rgba(215, 154, 61, 0.22);
}
.soft-bg {
    background: linear-gradient(130deg, rgba(255, 249, 236, 0.92), rgba(241, 228, 200, 0.72));
    border-top: 1px solid rgba(183, 138, 47, 0.15);
    border-bottom: 1px solid rgba(183, 138, 47, 0.15);
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h2 {
    margin: 0 0 8px;
    font-family: "Cinzel", serif;
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
}

.section-heading p {
    margin: 0;
    color: var(--text-soft);
}

.feature-grid,
.program-grid,
.pillars-grid,
.testimonial-grid,
.event-grid {
    display: grid;
    gap: 18px;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.program-grid,
.pillars-grid,
.testimonial-grid,
.event-grid {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.program-card,
.pillar-card,
.event-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
}

/* Premium shine effects */
.feature-card,
.program-card,
.pillar-card,
.event-card,
.testimonial-card,
.timeline-step,
.content-card,
.csr-card,
.contact-form-card,
.contact-map-card,
.contact-icon-card,
.frontend-gallery-card,
.stat-card,
.cta-wrap,
.contact-intro-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.program-card::before,
.pillar-card::before,
.event-card::before,
.testimonial-card::before,
.timeline-step::before,
.content-card::before,
.csr-card::before,
.contact-form-card::before,
.contact-map-card::before,
.contact-icon-card::before,
.frontend-gallery-card::before,
.stat-card::before,
.cta-wrap::before,
.contact-intro-card::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -55%;
    width: 42%;
    height: 160%;
    background: linear-gradient(
        115deg,
        rgba(255,255,255,0) 0%,
        rgba(255,240,195,0.03) 35%,
        rgba(255,232,168,0.16) 50%,
        rgba(255,240,195,0.03) 65%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(12deg);
    pointer-events: none;
    opacity: 0;
}

.feature-card:hover::before,
.program-card:hover::before,
.pillar-card:hover::before,
.event-card:hover::before,
.testimonial-card:hover::before,
.timeline-step:hover::before,
.content-card:hover::before,
.csr-card:hover::before,
.contact-form-card:hover::before,
.contact-map-card:hover::before,
.contact-icon-card:hover::before,
.frontend-gallery-card:hover::before,
.stat-card:hover::before,
.cta-wrap:hover::before,
.contact-intro-card:hover::before {
    animation: sectionShine 1.2s ease forwards;
    opacity: 1;
}

.feature-card:hover,
.program-card:hover,
.pillar-card:hover,
.event-card:hover,
.testimonial-card:hover,
.timeline-step:hover,
.content-card:hover,
.csr-card:hover,
.contact-form-card:hover,
.contact-map-card:hover,
.contact-icon-card:hover,
.frontend-gallery-card:hover,
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.34), 0 0 0 1px rgba(224,188,100,0.08) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-badge,
.panel-choice-chip,
.about-chip {
    box-shadow: 0 0 0 rgba(224,188,100,0);
    animation: softPulseGlow 3.6s ease-in-out infinite;
}

.btn-gold,
.nav-cta-btn.solid {
    position: relative;
    overflow: hidden;
}

.btn-gold::before,
.nav-cta-btn.solid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.22) 50%, rgba(255,255,255,0) 80%);
    transform: translateX(-120%);
}

.btn-gold:hover::before,
.nav-cta-btn.solid:hover::before {
    animation: buttonShine 0.9s ease;
}

@keyframes sectionShine {
    0% { left: -55%; opacity: 0; }
    15% { opacity: 1; }
    100% { left: 120%; opacity: 0; }
}

@keyframes buttonShine {
    from { transform: translateX(-120%); }
    to { transform: translateX(120%); }
}

@keyframes softPulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(224,188,100,0), 0 0 0 rgba(224,188,100,0);
    }
    50% {
        box-shadow: 0 0 0 1px rgba(224,188,100,0.12), 0 0 18px rgba(224,188,100,0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-card:hover::before,
    .program-card:hover::before,
    .pillar-card:hover::before,
    .event-card:hover::before,
    .testimonial-card:hover::before,
    .timeline-step:hover::before,
    .content-card:hover::before,
    .csr-card:hover::before,
    .contact-form-card:hover::before,
    .contact-map-card:hover::before,
    .contact-icon-card:hover::before,
    .frontend-gallery-card:hover::before,
    .stat-card:hover::before,
    .cta-wrap:hover::before,
    .contact-intro-card:hover::before,
    .btn-gold:hover::before,
    .nav-cta-btn.solid:hover::before {
        animation: none;
        opacity: 0;
    }
    .hero-badge,
    .panel-choice-chip,
    .about-chip {
        animation: none;
    }
}

/* Tiny star sparkle effect */
.hero,
.cta-wrap,
.contact-intro-card {
    position: relative;
    isolation: isolate;
}

.hero::after,
.cta-wrap::after,
.contact-intro-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.45;
    background:
        radial-gradient(circle, rgba(255, 235, 173, 0.95) 0 1px, transparent 1.8px) 12% 20% / 120px 120px no-repeat,
        radial-gradient(circle, rgba(255, 220, 138, 0.9) 0 1.2px, transparent 2px) 78% 24% / 140px 140px no-repeat,
        radial-gradient(circle, rgba(255, 243, 204, 0.9) 0 1px, transparent 1.8px) 26% 74% / 110px 110px no-repeat,
        radial-gradient(circle, rgba(255, 224, 150, 0.85) 0 1.1px, transparent 2px) 88% 78% / 150px 150px no-repeat;
    animation: tinyTwinkle 5.6s ease-in-out infinite;
}

.hero::after {
    opacity: 0.55;
}

@keyframes tinyTwinkle {
    0%, 100% {
        opacity: 0.35;
        filter: drop-shadow(0 0 0 rgba(255, 224, 150, 0));
    }
    30% {
        opacity: 0.6;
        filter: drop-shadow(0 0 4px rgba(255, 224, 150, 0.18));
    }
    60% {
        opacity: 0.42;
        filter: drop-shadow(0 0 7px rgba(255, 235, 173, 0.2));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::after,
    .cta-wrap::after,
    .contact-intro-card::after {
        animation: none;
        opacity: 0.22;
    }
}

/* Legal pages */
.legal-page-wrap {
    padding: 36px 0 80px;
}

.legal-shell {
    display: grid;
    gap: 16px;
}

.legal-hero-card {
    background:
        radial-gradient(circle at 85% 18%, rgba(224, 188, 100, 0.12), transparent 40%),
        linear-gradient(145deg, rgba(26, 17, 8, 0.92), rgba(14, 9, 4, 0.9));
    border: 1px solid rgba(224, 188, 100, 0.14);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.legal-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(224, 188, 100, 0.2);
    background: rgba(224, 188, 100, 0.08);
    color: #ecdcb5;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.legal-hero-card h1 {
    margin: 10px 0 8px;
    font-family: "Cinzel", serif;
    color: #f6ead1;
    font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.legal-hero-card p {
    margin: 0;
    color: #d8c39a;
    line-height: 1.6;
}

.legal-side-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 16px;
}

.legal-content-card {
    background: linear-gradient(145deg, rgba(24, 16, 8, 0.88), rgba(14, 9, 4, 0.86));
    border: 1px solid rgba(224, 188, 100, 0.12);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.legal-section {
    padding: 14px 0;
    border-bottom: 1px dashed rgba(224, 188, 100, 0.1);
}

.legal-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 8px;
    font-family: "Cinzel", serif;
    color: #f3e5c5;
    font-size: 1.08rem;
}

.legal-section p,
.legal-section li {
    color: #d6c39f;
    line-height: 1.65;
}

.legal-section ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.legal-note-card {
    background: rgba(224, 188, 100, 0.06);
    border: 1px solid rgba(224, 188, 100, 0.12);
    border-radius: 14px;
    padding: 16px;
}

.legal-note-card h3 {
    margin: 0 0 8px;
    font-family: "Cinzel", serif;
    color: #f2e3bf;
    font-size: 1rem;
}

.legal-note-card p,
.legal-note-card li {
    color: #d6c39f;
    line-height: 1.55;
}

.legal-note-card ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

@media (max-width: 960px) {
    .legal-side-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card h3,
.program-card h3,
.pillar-card h3,
.event-card h3 {
    margin: 0 0 10px;
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
}

.feature-card p,
.program-card p,
.pillar-card p,
.event-card p {
    margin: 0;
    color: var(--text-soft);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.timeline-step {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(244, 230, 191, 0.72));
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.timeline-step span {
    display: inline-block;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    color: var(--gold-3);
    margin-bottom: 6px;
}

.timeline-step h3 {
    margin: 0 0 8px;
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
}

.timeline-step p {
    margin: 0;
    color: var(--text-soft);
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 210px);
    gap: 14px;
}

.mosaic-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
}

.mosaic-grid img:first-child {
    grid-row: 1 / span 2;
}

.live-slider-section {
    padding: 84px 0;
    background: linear-gradient(125deg, rgba(255, 248, 229, 0.95), rgba(243, 225, 179, 0.75));
    border-top: 1px solid rgba(183, 138, 47, 0.2);
    border-bottom: 1px solid rgba(183, 138, 47, 0.2);
}

.live-slider-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.live-slider {
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(183, 138, 47, 0.25);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);
}

.live-track {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 16px;
    will-change: transform;
}

.live-track img {
    flex: 0 0 340px;
    width: 340px;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(183, 138, 47, 0.28);
    box-shadow: var(--shadow);
}

.live-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(122, 90, 29, 0.42);
    background: linear-gradient(130deg, rgba(255, 246, 216, 0.98), rgba(227, 188, 95, 0.94));
    color: #4e3308;
    font-size: 1.15rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.live-nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(98, 76, 34, 0.22);
}

.live-moments-section {
    scroll-margin-top: 110px;
}

.live-moments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.live-moment-card,
.live-moments-empty {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(224, 188, 100, 0.18);
    background:
        radial-gradient(circle at top right, rgba(229, 169, 70, 0.16), transparent 30%),
        linear-gradient(160deg, rgba(20, 11, 5, 0.96), rgba(9, 5, 3, 0.96));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.live-moments-empty {
    padding: 32px 28px;
    text-align: center;
}

.live-moment-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 0;
}

.live-moment-panel-pill,
.live-moment-date,
.live-moment-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(224, 188, 100, 0.18);
    background: rgba(255, 240, 205, 0.06);
    color: #f6deb0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.live-moment-panel-pill.panel-film {
    background: rgba(207, 129, 49, 0.18);
}

.live-moment-panel-pill.panel-dance {
    background: rgba(184, 145, 53, 0.18);
}

.live-moment-panel-pill.panel-music {
    background: rgba(160, 118, 39, 0.18);
}

.live-moment-media {
    position: relative;
    margin: 16px 18px 0;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    min-height: 240px;
}

.live-moment-track {
    position: relative;
}

.live-moment-slide {
    display: none;
}

.live-moment-slide.is-active {
    display: block;
}

.live-moment-slide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.live-moment-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 231, 164, 0.45);
    background: rgba(7, 4, 2, 0.6);
    color: #fff2c9;
    cursor: pointer;
    z-index: 1;
}

.live-moment-arrow.prev {
    left: 12px;
}

.live-moment-arrow.next {
    right: 12px;
}

.live-moment-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.live-moment-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 246, 223, 0.5);
    cursor: pointer;
    transition: 0.2s ease;
}

.live-moment-dot.is-active {
    width: 26px;
    background: #f3cc83;
}

.live-moment-body {
    padding: 18px 20px 22px;
}

.live-moment-user {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
}

.live-moment-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(236, 193, 102, 0.34);
    background: rgba(255, 255, 255, 0.14);
}

.live-moment-user h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
}

.live-moment-user p {
    margin: 6px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    color: #f1dfbb;
}

.live-moment-user p span {
    color: #d8b474;
    font-size: 0.88rem;
}

.live-moment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.live-moment-text {
    margin: 16px 0 0;
    color: #eadab8;
    line-height: 1.72;
    font-size: 0.96rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: calc(1.72em * 2);
}

.live-moment-view-more {
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f1c87b;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.live-moment-view-more:hover {
    color: #ffdf9d;
}

.live-moment-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2400;
    padding: 20px;
}

.live-moment-modal.open {
    display: flex;
}

.live-moment-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 4, 2, 0.78);
    backdrop-filter: blur(6px);
}

.live-moment-modal-card {
    position: relative;
    width: min(720px, 100%);
    max-height: 88vh;
    overflow: auto;
    border-radius: 22px;
    border: 1px solid rgba(224, 188, 100, 0.2);
    background:
        radial-gradient(circle at top right, rgba(229, 169, 70, 0.16), transparent 30%),
        linear-gradient(160deg, rgba(20, 11, 5, 0.98), rgba(9, 5, 3, 0.98));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    padding: 24px;
    z-index: 1;
}

.live-moment-modal-gallery {
    position: relative;
    margin-top: 16px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    min-height: 320px;
}

.live-moment-modal-gallery.is-hidden {
    display: none;
}

.live-moment-modal-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.live-moment-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 231, 164, 0.45);
    background: rgba(7, 4, 2, 0.6);
    color: #fff2c9;
    cursor: pointer;
    z-index: 1;
}

.live-moment-modal-nav.prev {
    left: 14px;
}

.live-moment-modal-nav.next {
    right: 14px;
}

.live-moment-modal-pagination {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 231, 164, 0.22);
    background: rgba(7, 4, 2, 0.55);
    color: #fff1c6;
    font-size: 0.78rem;
    font-weight: 800;
    z-index: 1;
}

.live-moment-modal-pagination.is-hidden {
    display: none;
}

.live-moment-modal-nav.is-hidden {
    display: none;
}

.live-moment-modal-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.live-moment-modal-dots.is-hidden {
    display: none;
}

.live-moment-modal-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 246, 223, 0.5);
    cursor: pointer;
    transition: 0.2s ease;
}

.live-moment-modal-dot.is-active {
    width: 26px;
    background: #f3cc83;
}

.live-moment-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 231, 164, 0.32);
    background: rgba(255, 255, 255, 0.06);
    color: #fff1c6;
    font-size: 1.4rem;
    cursor: pointer;
}

.live-moment-modal-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 44px;
}

.live-moment-modal-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(224, 188, 100, 0.18);
    background: rgba(255, 240, 205, 0.06);
    color: #f6deb0;
    font-size: 0.8rem;
    font-weight: 800;
}

.live-moment-modal-card h3 {
    margin: 18px 0 8px;
    font-size: 1.4rem;
}

.live-moment-modal-user {
    margin: 0 0 16px;
    color: #dfbe83;
    font-weight: 700;
}

.live-moment-modal-text {
    color: #eadab8;
    line-height: 1.8;
    white-space: pre-line;
}

@media (max-width: 640px) {
    .live-moment-modal-gallery {
        min-height: 240px;
    }

    .live-moment-modal-image {
        height: 240px;
    }

    .live-moment-modal-nav {
        width: 36px;
        height: 36px;
    }
}

.live-moments-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.live-moments-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(224, 188, 100, 0.2);
    background: rgba(255, 248, 232, 0.06);
    color: #f5ddb0;
    font-weight: 800;
}

.live-moments-pagination a.is-active,
.live-moments-pagination a:hover {
    background: linear-gradient(135deg, rgba(224, 178, 72, 0.96), rgba(247, 220, 146, 0.98));
    color: #2c1704;
}

.testimonial-card {
    margin: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.testimonial-card p {
    margin: 0 0 12px;
    color: var(--text-soft);
    line-height: 1.65;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 700;
    color: var(--gold-3);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    padding: 14px 16px;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: #3d2c13;
}

.faq-item p {
    color: var(--text-soft);
    margin: 10px 0 0;
}

.home-cta {
    padding: 90px 0;
}

.cta-wrap {
    text-align: center;
    background: linear-gradient(120deg, rgba(255, 215, 138, 0.88) 0%, rgba(255, 171, 92, 0.82) 52%, rgba(255, 236, 192, 0.9)
        100%);
    border-radius: 20px;
    border: 1px solid rgba(183, 138, 47, 0.35);
    padding: 42px 24px;
    box-shadow: var(--shadow);
}

.cta-wrap h2 {
    margin: 0 0 10px;
    font-family: "Cinzel", serif;
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
}

.cta-wrap p {
    margin: 0 0 22px;
    color: var(--text-soft);
}

.page-banner {
    padding: 90px 0 50px;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.25), rgba(200, 155, 60, 0.06));
    border-bottom: 1px solid rgba(183, 138, 47, 0.24);
}

.page-banner h1 {
    font-family: "Cinzel", serif;
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.page-banner p {
    margin: 0;
    color: var(--text-soft);
}

.dual-card-section,
.csr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 55px 0 80px;
}

.about-switch {
    display: flex;
    gap: 10px;
    padding: 26px 0 10px;
    flex-wrap: wrap;
}

.about-switch-btn {
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(183, 138, 47, 0.35);
    color: #51380e;
    background: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    transition: 0.2s ease;
}

.about-switch-btn.active,
.about-switch-btn:hover {
    background: linear-gradient(140deg, rgba(183, 138, 47, 0.9), rgba(232, 196, 111, 0.95));
    color: #fff9ea;
}

.about-showcase {
    display: grid;
    gap: 18px;
    padding: 12px 0 80px;
}

.about-panel {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(183, 138, 47, 0.28);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.86), rgba(247, 233, 198, 0.8));
    box-shadow: var(--shadow);
    opacity: 0.62;
    transform: scale(0.99);
    transition: 0.25s ease;
}

.about-panel.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(183, 138, 47, 0.5);
}

.about-panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.about-panel-content {
    padding: 28px;
}

.about-chip {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(183, 138, 47, 0.15);
    border: 1px solid rgba(183, 138, 47, 0.25);
    color: #6a4b16;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.about-panel-content h2 {
    margin: 0 0 10px;
    font-family: "Cinzel", serif;
}

.about-panel-content p {
    color: var(--text-soft);
}

.about-panel-content ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.about-panel-content li {
    margin: 8px 0;
    color: #5e5038;
}

.content-card,
.csr-card,
.service-detail,
.contact-info,
.contact-map {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.content-card h2,
.csr-card h2 {
    font-family: "Cinzel", serif;
    margin-top: 0;
}

.content-card p,
.csr-card p {
    color: var(--text-soft);
}

.content-card img {
    width: 100%;
    margin-top: 14px;
    border-radius: 12px;
}

.services-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 22px;
    padding: 55px 0;
}

.service-list {
    display: grid;
    gap: 10px;
}

.service-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(183, 138, 47, 0.24);
    color: var(--text-light);
    text-align: left;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.service-item:hover,
.service-item.active {
    background: rgba(232, 196, 111, 0.35);
    transform: translateX(5px);
}

.detail-panel {
    display: none;
    min-height: 215px;
}

.detail-panel.active {
    display: block;
}

.detail-panel h2 {
    font-family: "Cinzel", serif;
    margin-top: 0;
}

.detail-panel p {
    color: var(--text-soft);
    line-height: 1.7;
}

.service-slider-section {
    padding: 0 0 80px;
}

.service-slider-section h2 {
    font-family: "Cinzel", serif;
    margin-bottom: 16px;
}

.service-slider {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
}

.service-track {
    display: flex;
    width: max-content;
    animation: moveGallery 22s linear infinite;
}

.service-track img {
    width: 320px;
    height: 220px;
    object-fit: cover;
}

@keyframes moveGallery {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 22px;
    padding: 55px 0 80px;
}

.contact-map iframe {
    width: 100%;
    min-height: 340px;
    border: 0;
    border-radius: 12px;
}

.contact-showcase {
    padding: 44px 0 16px;
}

.contact-intro-card {
    background: linear-gradient(130deg, rgba(255, 250, 236, 0.95), rgba(236, 203, 123, 0.76));
    border: 1px solid rgba(122, 90, 29, 0.28);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.contact-intro-card h2 {
    margin: 0 0 10px;
    font-family: "Cinzel", serif;
}

.contact-intro-card p {
    margin: 0;
    color: #4e3d25;
}

.contact-quick-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-outline {
    text-decoration: none;
    display: inline-block;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid rgba(94, 66, 18, 0.45);
    color: #3f2a09;
    font-weight: 700;
    background: rgba(255, 248, 227, 0.74);
}

.contact-icon-grid {
    padding: 20px 0 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-icon-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.icon-shell {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(130deg, rgba(230, 189, 94, 0.9), rgba(255, 242, 204, 0.95));
    border: 1px solid rgba(122, 90, 29, 0.35);
}

.icon-shell svg {
    width: 22px;
    height: 22px;
    fill: #4b3109;
}

.contact-icon-card h3 {
    margin: 12px 0 8px;
    font-family: "Cinzel", serif;
    font-size: 1.1rem;
}

.contact-icon-card p {
    margin: 0;
    color: #534225;
}

.contact-icon-card a {
    color: #3f2a09;
    text-decoration: none;
    font-weight: 700;
}

.contact-main-grid {
    padding: 12px 0 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 18px;
}

.contact-form-card,
.contact-map-card {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.contact-form-card h2,
.contact-map-card h2 {
    margin: 0 0 14px;
    font-family: "Cinzel", serif;
}

.contact-map-card p {
    margin: 0 0 6px;
    color: #56462c;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-weight: 700;
    color: #3f2d0f;
    font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(122, 90, 29, 0.3);
    border-radius: 10px;
    padding: 11px 12px;
    background: #fffdf6;
    color: #2f230f;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(183, 138, 47, 0.3);
    border-color: rgba(122, 90, 29, 0.55);
}

.floating-tools {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1100;
}

.whatsapp-float,
.translate-float {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    display: grid;
    place-items: center;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float {
    background: linear-gradient(145deg, #17b15f, #28d468);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.translate-float {
    background: linear-gradient(145deg, #b78a2f, #e8c46f);
    box-shadow: 0 10px 20px rgba(98, 76, 34, 0.25);
}

.whatsapp-float svg,
.translate-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.translate-float-wrap {
    position: relative;
}

.translate-panel {
    position: absolute;
    right: 62px;
    bottom: 4px;
    background: #fffaf0;
    border: 1px solid rgba(183, 138, 47, 0.35);
    border-radius: 10px;
    padding: 10px;
    box-shadow: var(--shadow);
    min-width: 165px;
    display: none;
}

.translate-panel.open {
    display: block;
}

.translate-panel label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: var(--text-soft);
}

.translate-panel select {
    width: 100%;
    border: 1px solid rgba(183, 138, 47, 0.4);
    border-radius: 6px;
    background: #fffdf6;
    color: #3f2f15;
    padding: 6px 8px;
}

.chat-widget {
    position: relative;
}

.chat-launcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(224, 188, 100, 0.35);
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(232, 196, 111, 0.95), rgba(247, 225, 161, 0.98));
    color: #2b1a07;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
    text-shadow: none;
}

.chat-launcher-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(36, 22, 7, 0.16);
    border: 1px solid rgba(110, 74, 20, 0.3);
    color: #2b1a07;
}

.chat-launcher-text {
    color: #2b1a07 !important;
}

.chat-launcher-icon svg {
    width: 16px;
    height: 16px;
    fill: #2b1a07;
}

.chat-launcher-badge {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #e04a4a;
    display: none;
    box-shadow: 0 0 0 2px rgba(255, 229, 178, 0.8);
}

.chat-launcher-badge.show {
    display: inline-block;
}

.chat-panel {
    position: absolute;
    right: 0;
    bottom: 58px;
    width: min(340px, 88vw);
    background: linear-gradient(160deg, rgba(14, 8, 4, 0.98), rgba(8, 4, 2, 0.98));
    border: 1px solid rgba(224, 188, 100, 0.22);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    pointer-events: none;
    transition: 0.2s ease;
}

.chat-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(224, 188, 100, 0.14);
    background: linear-gradient(150deg, rgba(24, 15, 7, 0.98), rgba(12, 7, 4, 0.98));
}

.chat-panel-header strong {
    display: block;
    color: #f7e2b6;
    font-size: 0.95rem;
}

.chat-panel-header span {
    display: block;
    color: rgba(242, 222, 178, 0.78);
    font-size: 0.78rem;
    margin-top: 2px;
}

.chat-panel-close {
    background: transparent;
    border: 1px solid rgba(224, 188, 100, 0.2);
    color: #f9e6bd;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.chat-panel-body {
    padding: 12px;
    display: grid;
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    border: 1px solid rgba(224, 188, 100, 0.18);
    background: rgba(23, 15, 7, 0.9);
    color: #f4e2ba;
}

.chat-bubble.guest {
    margin-left: auto;
    background: linear-gradient(135deg, rgba(232, 196, 111, 0.92), rgba(247, 225, 161, 0.98));
    color: #2a1704;
    border-color: rgba(122, 90, 29, 0.35);
}

.chat-bubble .chat-time {
    display: block;
    font-size: 0.72rem;
    margin-top: 6px;
    opacity: 0.85;
    color: rgba(244, 226, 186, 0.8);
}

.chat-bubble.guest .chat-time {
    color: #1f1206 !important;
    opacity: 1 !important;
    font-weight: 800;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.chat-panel-form {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(224, 188, 100, 0.12);
    background: rgba(12, 7, 4, 0.98);
    width: 100%;
    box-sizing: border-box;
}

.chat-guest-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.chat-panel-message-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: stretch;
    width: 100%;
}

.chat-panel-message-row > * {
    min-width: 0;
}

.chat-panel-form input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(224, 188, 100, 0.25);
    border-radius: 10px;
    padding: 10px;
    background: rgba(16, 10, 5, 0.92);
    color: #f2e3bf;
    font: inherit;
}

.chat-panel-form input::placeholder {
    color: rgba(242, 227, 191, 0.7);
}

.chat-form-note {
    font-size: 0.74rem;
    line-height: 1.35;
    color: rgba(242, 222, 178, 0.78);
}

.chat-form-note.error {
    color: #ff8f8f;
}

.chat-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(122, 90, 29, 0.35);
    background: linear-gradient(135deg, rgba(232, 196, 111, 0.95), rgba(247, 225, 161, 0.98));
    color: #2a1704;
    font-weight: 800;
    padding: 0 16px;
    cursor: pointer;
    min-height: 42px;
    white-space: nowrap;
    align-self: stretch;
}

@media (max-width: 420px) {
    .chat-panel-message-row {
        grid-template-columns: 1fr;
    }

    .chat-send-btn {
        width: 100%;
    }
}

.google-translate-host {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skiptranslate iframe,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.site-footer {
    background:
        linear-gradient(122deg, rgba(14, 9, 4, 0.99) 0%, rgba(42, 28, 10, 0.98) 26%, rgba(90, 63, 19, 0.95) 54%, rgba(38, 24, 9, 0.98) 78%, rgba(11, 7, 3, 0.99) 100%);
    border-top: 1px solid rgba(224, 188, 100, 0.14);
    box-shadow: inset 0 1px 0 rgba(224, 188, 100, 0.05);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 40px 0 20px;
    align-items: start;
}

.site-footer h3,
.site-footer h4 {
    font-family: "Cinzel", serif;
    color: #fff2cc;
    margin-top: 0;
}

.site-footer p,
.site-footer li a {
    color: #f7e5b2;
    text-decoration: none;
}

.site-footer li a:hover {
    color: #fff9e6;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin: 8px 0;
}

.site-footer .footer-grid > div { min-width: 0; }
.site-footer .footer-grid h3,
.site-footer .footer-grid h4 { margin-bottom: 10px; }
.site-footer .footer-grid p,
.site-footer .footer-grid li a { line-height: 1.55; }

.footer-bottom {
    border-top: 1px solid rgba(255, 223, 148, 0.12);
    text-align: center;
    padding: 14px 0;
    font-size: 0.9rem;
    color: #f3dfaa;
    background: rgba(5, 3, 1, 0.34);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        right: 4%;
        top: calc(100% + 8px);
        width: min(340px, 92vw);
        flex-direction: column;
        align-items: stretch;
        background: #fffaf0;
        border: 1px solid rgba(183, 138, 47, 0.3);
        border-radius: 12px;
        padding: 12px;
        display: none;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > ul {
        flex-direction: column;
        gap: 2px;
        align-items: stretch;
    }

    .main-nav > ul > li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        color: #3a2407;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: rgba(183, 138, 47, 0.14);
        color: #241402;
    }

    .main-nav .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-cta-actions {
        display: none;
    }

    .nav-cta-btn {
        padding: 8px 12px;
        font-size: 0.88rem;
    }

    .main-nav > ul > li.mobile-auth-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(183, 138, 47, 0.18);
    }

    .mobile-auth-actions .nav-cta-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .mobile-auth-actions .nav-cta-btn.ghost {
        color: #3a2407;
        background: rgba(183, 138, 47, 0.12);
        border-color: rgba(122, 90, 29, 0.28);
    }

    .mobile-auth-actions .nav-cta-btn.ghost:hover {
        color: #241402;
        background: rgba(183, 138, 47, 0.18);
    }

    .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none !important;
        transition: none;
        margin-top: 6px;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        box-shadow: none;
    }

    .dropdown.open > .dropdown-menu {
        display: block;
    }

    .panel-choice-dialog {
        margin: 4vh auto;
        padding: 18px;
    }

    .panel-choice-grid {
        grid-template-columns: 1fr;
    }

    .split-section,
    .dual-card-section,
    .csr-grid,
    .services-layout,
    .contact-layout,
    .contact-icon-grid,
    .contact-main-grid,
    .footer-grid,
    .stat-grid,
    .feature-grid,
    .program-grid,
    .pillars-grid,
    .timeline,
    .testimonial-grid,
    .event-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 72vh;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-controls {
        bottom: 18px;
    }

    .hero-nav-btn {
        width: 38px;
        height: 38px;
    }

    .home-stats {
        margin-top: -18px;
    }

    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .mosaic-grid img:first-child {
        grid-row: auto;
    }

    .live-slider-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .live-nav-btn {
        display: none;
    }

    .live-track img {
        flex: 0 0 280px;
        width: 280px;
        height: 180px;
    }

    .live-moments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nav-cta-actions {
        display: none;
    }

    .nav-cta-btn {
        padding: 7px 10px;
        font-size: 0.82rem;
    }

    .panel-choice-dialog h2 {
        font-size: 1.25rem;
        padding-right: 36px;
    }

    .panel-choice-card {
        min-height: 0;
    }
}
@media (max-width: 960px) { .about-panel { grid-template-columns: 1fr; } }

.frontend-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-gallery-slider {
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.48);
}

.home-gallery-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.home-gallery-track {
    display: flex;
    gap: 16px;
    padding: 16px;
    will-change: transform;
}

.home-gallery-track .frontend-gallery-card {
    flex: 0 0 calc((100% - 32px) / 3);
}

.gallery-view-all {
    margin-top: 0;
    white-space: nowrap;
}

.section-heading-inline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.section-heading-main {
    min-width: 0;
}

.frontend-gallery-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.frontend-gallery-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.frontend-gallery-content {
    padding: 14px;
}

.frontend-gallery-content h3 {
    margin: 0 0 8px;
    font-family: "Cinzel", serif;
    font-size: 1.05rem;
}

.frontend-gallery-content p {
    margin: 0;
    color: var(--text-soft);
}

.frontend-pagination {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.frontend-pagination a {
    display: inline-block;
    min-width: 36px;
    text-align: center;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #3f2a09;
    border: 1px solid rgba(122, 90, 29, 0.3);
    background: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.frontend-pagination a.active {
    background: var(--accent);
}

.admin-alert,
.admin-success {
    margin: 0 0 12px;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid transparent;
}

.admin-alert {
    background: rgba(180, 46, 46, 0.12);
    border-color: rgba(152, 38, 38, 0.35);
    color: #742121;
}

.admin-success {
    background: rgba(31, 142, 67, 0.12);
    border-color: rgba(31, 113, 54, 0.34);
    color: #1d6b32;
}

@media (max-width: 960px) {
    .frontend-gallery-grid {
        grid-template-columns: 1fr;
    }

    .home-gallery-track .frontend-gallery-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .home-gallery-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-gallery-wrap .live-nav-btn {
        display: none;
    }

    .section-heading-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .home-gallery-track .frontend-gallery-card {
        flex: 0 0 100%;
    }

    .live-moments-grid {
        grid-template-columns: 1fr;
    }

    .live-moment-card-top,
    .live-moment-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .live-moment-media {
        margin-left: 16px;
        margin-right: 16px;
        min-height: 220px;
    }

    .live-moment-slide img {
        height: 220px;
    }

    .live-moment-arrow {
        width: 36px;
        height: 36px;
    }
}

/* Global Dark Premium Theme Refresh */
:root {
    --bg-dark: #0f0a05;
    --bg-mid: #171008;
    --text-light: #f6ead1;
    --text-soft: #d8c39a;
    --gold-1: #b8872a;
    --gold-2: #e4c06c;
    --gold-3: #6e4a14;
    --accent: linear-gradient(135deg, #9e6d1c 0%, #d8ad50 48%, #f2d89a 100%);
    --card-bg: rgba(24, 16, 8, 0.78);
    --border-soft: rgba(224, 188, 100, 0.18);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

body {
    background:
        radial-gradient(circle at 85% 10%, rgba(212, 163, 64, 0.12), transparent 36%),
        radial-gradient(circle at 12% 90%, rgba(212, 163, 64, 0.08), transparent 38%),
        #0f0a05;
    color: var(--text-light);
}

main p,
main li,
.section-heading p,
.page-banner p,
.split-text p,
.feature-card p,
.program-card p,
.pillar-card p,
.event-card p,
.timeline-step p,
.testimonial-card p,
.content-card p,
.csr-card p,
.detail-panel p,
.contact-map-card p,
.frontend-gallery-content p {
    color: var(--text-soft);
}

.soft-bg,
.live-slider-section {
    background: linear-gradient(130deg, rgba(20, 13, 6, 0.94), rgba(34, 24, 12, 0.9));
    border-top-color: rgba(224, 188, 100, 0.12);
    border-bottom-color: rgba(224, 188, 100, 0.12);
}

.feature-card,
.program-card,
.pillar-card,
.event-card,
.testimonial-card,
.timeline-step,
.content-card,
.csr-card,
.service-detail,
.contact-info,
.contact-map,
.contact-form-card,
.contact-map-card,
.contact-icon-card,
.frontend-gallery-card,
.stat-card,
.faq-item {
    background: linear-gradient(150deg, rgba(25, 17, 8, 0.9), rgba(17, 11, 5, 0.86));
    border-color: rgba(224, 188, 100, 0.14);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.feature-card h3,
.program-card h3,
.pillar-card h3,
.event-card h3,
.section-heading h2,
.split-text h2,
.timeline-step h3,
.content-card h2,
.csr-card h2,
.detail-panel h2,
.contact-intro-card h2,
.contact-form-card h2,
.contact-map-card h2,
.frontend-gallery-content h3,
.faq-item summary,
.page-banner h1 {
    color: #f6ead1;
}

.stat-card h3,
.timeline-step span,
.testimonial-card cite,
.about-chip,
.contact-icon-card a {
    color: #e4c06c;
}

.stat-card p,
.timeline-step p,
.contact-icon-card p,
.contact-intro-card p {
    color: #d8c39a;
}

.contact-intro-card,
.cta-wrap {
    background:
        radial-gradient(circle at 15% 18%, rgba(224, 188, 100, 0.14), transparent 40%),
        linear-gradient(135deg, rgba(28, 18, 9, 0.95), rgba(16, 10, 5, 0.92));
    border-color: rgba(224, 188, 100, 0.18);
}

.btn-hero-secondary,
.btn-outline,
.about-switch-btn,
.service-item,
.frontend-pagination a {
    background: rgba(25, 17, 8, 0.84);
    color: #f2e3bf;
    border-color: rgba(224, 188, 100, 0.22);
}

.btn-hero-secondary:hover,
.btn-outline:hover,
.about-switch-btn:hover,
.about-switch-btn.active,
.service-item:hover,
.service-item.active,
.frontend-pagination a.active {
    background: linear-gradient(135deg, rgba(160, 112, 31, 0.92), rgba(224, 188, 100, 0.9));
    color: #1f1307;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.translate-panel,
.translate-panel select {
    background: rgba(20, 13, 6, 0.92);
    color: #f2e3bf;
    border-color: rgba(224, 188, 100, 0.22);
}

.contact-form label,
.translate-panel label {
    color: #eddcb3;
}

.dropdown-menu,
.main-nav {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.dropdown-menu {
    background: #171008;
    border-color: rgba(224, 188, 100, 0.18);
}

.dropdown-menu li a {
    color: #f2e3bf;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(224, 188, 100, 0.14);
    color: #fff3d4;
}

.main-nav a:hover,
.main-nav a.active {
    box-shadow: inset 0 0 0 1px rgba(224, 188, 100, 0.1), 0 0 18px rgba(224, 188, 100, 0.08);
}

.hero::before {
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 205, 98, 0.18), transparent 38%),
        radial-gradient(circle at 86% 76%, rgba(255, 173, 55, 0.14), transparent 34%);
}

@media (max-width: 960px) {
    .main-nav {
        background: #171008;
        border-color: rgba(224, 188, 100, 0.2);
    }
    .main-nav a {
        color: #f2e3bf;
    }
    .main-nav a:hover,
    .main-nav a.active {
        color: #fff3d4;
        background: rgba(224, 188, 100, 0.12);
    }
    .mobile-auth-actions .nav-cta-btn.ghost {
        background: rgba(224, 188, 100, 0.12);
        color: #f2e3bf;
        border-color: rgba(224, 188, 100, 0.2);
    }
}

/* Home page cinematic sparkle polish */
.home-hero-cinematic {
    isolation: isolate;
}

.home-hero-cinematic .hero-content {
    padding: 20px 0 84px;
}

.hero-cinema-lights,
.hero-sparkle-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-cinema-lights .beam {
    --beam-x: 0%;
    --beam-rotate: -10deg;
    position: absolute;
    top: -14%;
    width: 34vw;
    height: 128%;
    opacity: 0.16;
    filter: blur(6px);
    background: linear-gradient(
        180deg,
        rgba(255, 235, 180, 0) 0%,
        rgba(255, 214, 128, 0.5) 28%,
        rgba(255, 193, 79, 0.12) 72%,
        rgba(255, 193, 79, 0) 100%
    );
    clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
    transform-origin: top center;
    animation: cinemaBeamDrift 12s ease-in-out infinite;
}

.hero-cinema-lights .beam-left {
    left: -2%;
    --beam-rotate: -13deg;
    animation-delay: -2.8s;
}

.hero-cinema-lights .beam-right {
    right: -4%;
    --beam-rotate: 14deg;
    animation-delay: -5.2s;
}

.hero-cinema-lights .beam-center {
    left: 50%;
    width: 26vw;
    opacity: 0.12;
    --beam-x: -50%;
    --beam-rotate: 1deg;
    animation-duration: 10s;
    animation-delay: -1.4s;
}

.hero-sparkle-field span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: calc(8px * var(--s));
    height: calc(8px * var(--s));
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 245, 214, 0.95) 0 35%, rgba(255, 219, 136, 0.7) 36%, rgba(255, 219, 136, 0) 72%);
    opacity: 0.65;
    transform: translateZ(0);
    animation:
        heroSparklePulse calc(3.2s + var(--s) * 1.2s) ease-in-out infinite,
        heroSparkleFloat calc(6.5s + var(--s) * 2s) ease-in-out infinite;
    animation-delay: var(--d), calc(var(--d) * -1);
    box-shadow: 0 0 10px rgba(255, 224, 150, 0.22);
}

.hero-sparkle-field span::before,
.hero-sparkle-field span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(16px * var(--s));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 234, 184, 0.9), transparent);
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.hero-sparkle-field span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.home-hero-cinematic .hero-content h1 {
    position: relative;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.38), 0 0 24px rgba(255, 215, 120, 0.12);
}

.home-hero-cinematic .hero-content h1::after {
    content: "";
    position: absolute;
    left: -8%;
    top: 8%;
    width: 44%;
    height: 76%;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 8%, rgba(255, 241, 207, 0.26) 46%, rgba(255, 255, 255, 0) 82%);
    transform: skewX(-18deg) translateX(-180%);
    filter: blur(0.5px);
    animation: heroTitleSweep 7.2s ease-in-out infinite;
    pointer-events: none;
}

.home-hero-cinematic .hero-badge {
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 0 1px rgba(255, 226, 158, 0.08), 0 0 22px rgba(255, 205, 98, 0.1);
}

.home-hero-cinematic .hero-nav-btn,
.home-hero-cinematic .hero-dot.active {
    box-shadow: 0 0 18px rgba(255, 205, 98, 0.18);
}

.home-section .section-heading h2,
.home-cta .cta-wrap h2 {
    position: relative;
    display: inline-block;
}

.home-section .section-heading h2::after,
.home-cta .cta-wrap h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 215, 120, 0), rgba(255, 215, 120, 0.9), rgba(255, 215, 120, 0));
    transform-origin: center;
    animation: headingGlowLine 3.8s ease-in-out infinite;
    opacity: 0.7;
}

.home-stats .stat-card,
.home-section .feature-card,
.home-section .program-card,
.home-section .pillar-card,
.home-section .testimonial-card,
.home-section .event-card,
.home-section .timeline-step,
.home-section .frontend-gallery-card,
.home-cta .cta-wrap {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-stats .stat-card::after,
.home-section .feature-card::after,
.home-section .program-card::after,
.home-section .pillar-card::after,
.home-section .testimonial-card::after,
.home-section .event-card::after,
.home-section .timeline-step::after,
.home-section .frontend-gallery-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 231, 173, 0.05);
    opacity: 0.75;
    pointer-events: none;
}

.home-stats .stat-card:hover,
.home-section .feature-card:hover,
.home-section .program-card:hover,
.home-section .pillar-card:hover,
.home-section .testimonial-card:hover,
.home-section .event-card:hover,
.home-section .timeline-step:hover,
.home-section .frontend-gallery-card:hover,
.home-cta .cta-wrap:hover {
    border-color: rgba(255, 219, 136, 0.2);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 219, 136, 0.08) inset, 0 0 20px rgba(255, 205, 98, 0.08);
}

.home-section.soft-bg,
.live-slider-section {
    position: relative;
    overflow: clip;
}

.home-section.soft-bg::before,
.live-slider-section::before {
    content: "";
    position: absolute;
    inset: -20% -10%;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 212, 112, 0.08), transparent 30%),
        radial-gradient(circle at 82% 72%, rgba(255, 193, 79, 0.07), transparent 28%),
        radial-gradient(circle at 60% 16%, rgba(255, 235, 185, 0.05), transparent 24%);
    animation: ambientGoldShift 16s ease-in-out infinite;
}

@keyframes cinemaBeamDrift {
    0%, 100% {
        opacity: 0.1;
        transform: translateX(var(--beam-x)) rotate(var(--beam-rotate)) translateY(-1.2%) scaleY(1);
    }
    35% {
        opacity: 0.2;
        transform: translateX(var(--beam-x)) rotate(calc(var(--beam-rotate) + 5deg)) translateY(0.8%) scaleY(1.04);
    }
    70% {
        opacity: 0.14;
        transform: translateX(var(--beam-x)) rotate(calc(var(--beam-rotate) - 3deg)) translateY(-0.4%) scaleY(0.98);
    }
}

@keyframes heroSparklePulse {
    0%, 100% {
        opacity: 0.35;
        transform: scale(0.86);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.12);
    }
}

@keyframes heroSparkleFloat {
    0%, 100% { translate: 0 0; }
    30% { translate: 2px -5px; }
    65% { translate: -3px 4px; }
}

@keyframes heroTitleSweep {
    0%, 22%, 100% { transform: skewX(-18deg) translateX(-180%); opacity: 0; }
    28% { opacity: 0.45; }
    42% { transform: skewX(-18deg) translateX(280%); opacity: 0; }
}

@keyframes headingGlowLine {
    0%, 100% {
        opacity: 0.35;
        transform: scaleX(0.72);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1);
    }
}

@keyframes ambientGoldShift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
    50% { transform: translate3d(0, -8px, 0) scale(1.03); opacity: 1; }
}

@media (max-width: 960px) {
    .hero-cinema-lights .beam {
        width: 52vw;
        opacity: 0.11;
    }

    .hero-cinema-lights .beam-center {
        width: 38vw;
    }

    .hero-sparkle-field span {
        opacity: 0.5;
    }

    .home-hero-cinematic .hero-content {
        padding-bottom: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cinema-lights .beam,
    .hero-sparkle-field span,
    .home-hero-cinematic .hero-content h1::after,
    .home-section .section-heading h2::after,
    .home-cta .cta-wrap h2::after,
    .home-section.soft-bg::before,
    .live-slider-section::before {
        animation: none;
    }

    .hero-sparkle-field span {
        opacity: 0.25;
    }

    .home-hero-cinematic .hero-content h1::after {
        display: none;
    }
}

/* Reference-inspired full-site gold/black redesign */
:root {
    --bg-dark: #070403;
    --bg-mid: #100906;
    --text-light: #f6e4be;
    --text-soft: #ebd4a6;
    --gold-1: #b9772f;
    --gold-2: #e0a94e;
    --gold-3: #6c4214;
    --accent: linear-gradient(135deg, #8c531c 0%, #cf8d34 52%, #f0c56f 100%);
    --card-bg: rgba(17, 10, 6, 0.9);
    --border-soft: rgba(234, 169, 76, 0.24);
    --shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

body {
    background:
        radial-gradient(circle at 16% 14%, rgba(235, 157, 52, 0.11), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 188, 84, 0.08), transparent 30%),
        radial-gradient(circle at 70% 78%, rgba(210, 122, 32, 0.06), transparent 34%),
        #070403;
    color: var(--text-light);
}

.site-bg-overlay {
    opacity: 0.06;
    background-image:
        linear-gradient(90deg, rgba(255, 215, 140, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 215, 140, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
}

main p,
main li,
.section-heading p,
.split-text p,
.feature-card p,
.program-card p,
.pillar-card p,
.event-card p,
.timeline-step p,
.testimonial-card p,
.faq-item p,
.detail-panel p,
.content-card p,
.csr-card p,
.contact-map-card p,
.frontend-gallery-content p {
    color: #f1dcaf;
}

.site-header {
    background:
        linear-gradient(180deg, rgba(4, 2, 1, 0.98), rgba(9, 5, 3, 0.94)),
        radial-gradient(circle at 50% -30%, rgba(245, 187, 91, 0.1), transparent 70%);
    border-bottom: 1px solid rgba(232, 166, 74, 0.28);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), inset 0 -1px 0 rgba(255, 219, 145, 0.06);
}

.brand-main {
    color: #f2c982;
    text-shadow: 0 0 18px rgba(232, 166, 74, 0.14);
}

.brand-sub {
    color: #f6dfb2;
    opacity: 0.94;
}

.main-nav a {
    color: #f7e2b6;
    font-weight: 800;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(232, 166, 74, 0.12);
    color: #ffefcf;
    box-shadow: inset 0 -2px 0 rgba(232, 166, 74, 0.65);
}

.nav-cta-btn.solid,
.btn-gold {
    color: #170c05;
    border-color: rgba(255, 226, 163, 0.18);
    box-shadow: 0 10px 22px rgba(185, 110, 29, 0.2), inset 0 1px 0 rgba(255, 237, 191, 0.35);
}

.btn-gold-alt {
    background: linear-gradient(135deg, #7f4b1a 0%, #bd7a2f 55%, #e5ae58 100%);
    color: #fff1cf;
    border-color: rgba(240, 197, 111, 0.32);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 226, 173, 0.2);
}

.btn-hero-secondary {
    color: #ffedc7;
    background: rgba(20, 11, 6, 0.68);
    border-color: rgba(238, 176, 84, 0.4);
    box-shadow: inset 0 0 0 1px rgba(255, 221, 155, 0.05);
}

.btn-hero-secondary:hover {
    background: rgba(31, 17, 9, 0.86);
    color: #fff4d8;
    border-color: rgba(247, 195, 112, 0.62);
}

.hero.hero-full {
    min-height: 96vh;
}

.home-hero-cinematic .hero-slider .slide::after {
    background:
        linear-gradient(180deg, rgba(3, 2, 1, 0.75) 0%, rgba(10, 6, 3, 0.5) 22%, rgba(24, 14, 7, 0.26) 55%, rgba(8, 4, 2, 0.82) 100%),
        radial-gradient(circle at 50% 35%, rgba(255, 175, 66, 0.12), transparent 38%);
}

.home-hero-cinematic::before {
    background:
        radial-gradient(circle at 12% 26%, rgba(255, 185, 72, 0.18), transparent 36%),
        radial-gradient(circle at 82% 20%, rgba(255, 208, 120, 0.16), transparent 34%),
        radial-gradient(circle at 48% 74%, rgba(255, 130, 34, 0.12), transparent 40%);
}

.home-hero-cinematic .hero-content {
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero-content-shell {
    width: min(900px, 100%);
    margin: 0 auto 16px;
    padding: 26px 24px 18px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(10, 5, 3, 0.78), rgba(7, 4, 2, 0.58)),
        radial-gradient(circle at 50% 0%, rgba(236, 170, 76, 0.12), transparent 70%);
    border: 1px solid rgba(234, 169, 76, 0.24);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 224, 161, 0.08);
    backdrop-filter: blur(4px);
}

.home-hero-cinematic .hero-badge {
    background: rgba(16, 8, 4, 0.72);
    color: #f5c879;
    border-color: rgba(245, 200, 121, 0.48);
    font-size: 0.74rem;
    letter-spacing: 0.07em;
}

.home-hero-cinematic .hero-content h1 {
    max-width: 860px;
    margin: 10px auto 10px;
    color: #f9e8c3;
    font-family: "Cinzel", serif;
    font-style: italic;
    font-weight: 700;
    line-height: 1.15;
    font-size: clamp(2rem, 4.4vw, 3.95rem);
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.52), 0 0 26px rgba(222, 149, 50, 0.12);
}

.hero-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px auto 12px;
}

.hero-title-divider::before,
.hero-title-divider::after {
    content: "";
    width: min(140px, 22vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 200, 123, 0.82), transparent);
}

.hero-title-divider span {
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    border-radius: 2px;
    border: 1px solid rgba(246, 200, 123, 0.68);
    background: radial-gradient(circle at 50% 40%, rgba(246, 200, 123, 0.4), rgba(246, 200, 123, 0.05));
    box-shadow: 0 0 12px rgba(246, 200, 123, 0.12);
}

.home-hero-cinematic .hero-content p {
    max-width: 760px;
    margin: 0 auto;
    color: #f7e4bc;
    font-size: 1.06rem;
    line-height: 1.7;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.home-hero-cinematic .hero-actions {
    justify-content: center;
    gap: 14px;
}

.home-hero-cinematic .hero-actions a {
    min-width: 172px;
    text-align: center;
    font-weight: 800;
}

.hero-controls {
    bottom: 18px;
}

.hero-nav-btn {
    background: rgba(12, 7, 4, 0.56);
    border-color: rgba(255, 220, 153, 0.45);
    color: #fbe8bf;
}

.hero-dot {
    background: rgba(255, 219, 145, 0.32);
}

.hero-dot.active {
    background: linear-gradient(90deg, #c58131, #f2c56f);
    box-shadow: 0 0 10px rgba(242, 197, 111, 0.24);
}

.home-section,
.live-slider-section {
    position: relative;
}

.home-section::after,
.live-slider-section::after {
    content: "";
    display: block;
    width: min(420px, 88%);
    height: 1px;
    margin: 76px auto 0;
    background: linear-gradient(90deg, transparent, rgba(233, 168, 74, 0.55), transparent);
    opacity: 0.65;
}

.home-section:last-of-type::after,
.home-cta::after,
.live-slider-section + .home-section::after {
    opacity: 0.5;
}

.section-heading {
    position: relative;
    padding-bottom: 10px;
}

.section-heading h2 {
    color: #f7e3b9;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.section-heading p {
    color: #f0d8a8;
}

.feature-card,
.program-card,
.pillar-card,
.event-card,
.testimonial-card,
.timeline-step,
.content-card,
.csr-card,
.service-detail,
.contact-info,
.contact-map,
.contact-form-card,
.contact-map-card,
.contact-icon-card,
.frontend-gallery-card,
.stat-card,
.faq-item {
    background:
        linear-gradient(160deg, rgba(22, 12, 7, 0.95), rgba(10, 6, 4, 0.92));
    border-color: rgba(233, 168, 74, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 219, 145, 0.04);
}

.timeline-step span,
.stat-card h3,
.testimonial-card cite,
.frontend-pagination a.active,
.about-chip {
    color: #f0bd63;
}

.stat-card p,
.timeline-step p {
    color: #f0d9ac;
}

.soft-bg,
.live-slider-section {
    background:
        linear-gradient(180deg, rgba(11, 7, 4, 0.95), rgba(8, 5, 3, 0.94)),
        radial-gradient(circle at 84% 12%, rgba(237, 169, 72, 0.06), transparent 36%);
    border-top: 1px solid rgba(233, 168, 74, 0.1);
    border-bottom: 1px solid rgba(233, 168, 74, 0.1);
}

.split-image img,
.mosaic-grid img,
.live-track img,
.frontend-gallery-card img,
.service-track img {
    border: 1px solid rgba(233, 168, 74, 0.18);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
    filter: saturate(1.03) contrast(1.03) brightness(0.95);
}

.faq-item summary {
    color: #f7e3bb;
    font-weight: 700;
}

.faq-item {
    border: 1px solid rgba(233, 168, 74, 0.14);
}

.cta-wrap,
.contact-intro-card {
    background:
        radial-gradient(circle at 50% 0%, rgba(240, 185, 94, 0.14), transparent 55%),
        linear-gradient(180deg, rgba(18, 10, 6, 0.96), rgba(8, 5, 3, 0.94));
    border: 1px solid rgba(233, 168, 74, 0.2);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.4);
}

.cta-wrap h2,
.contact-intro-card h2 {
    color: #f8e8c3;
}

.cta-wrap p,
.contact-intro-card p {
    color: #f0d8a8;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.translate-panel,
.translate-panel select {
    background: rgba(13, 8, 5, 0.94);
    color: #f4e2bc;
    border-color: rgba(233, 168, 74, 0.22);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(244, 226, 188, 0.58);
}

.contact-form label,
.translate-panel label {
    color: #f2ddb0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline-color: rgba(233, 168, 74, 0.3);
    box-shadow: 0 0 0 3px rgba(233, 168, 74, 0.1);
}

.dropdown-menu {
    background: rgba(12, 7, 4, 0.98);
    border-color: rgba(233, 168, 74, 0.24);
}

.dropdown-menu li a {
    color: #f7e1b4;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(233, 168, 74, 0.12);
    color: #fff0cf;
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(5, 3, 2, 1), rgba(8, 5, 3, 0.98)),
        radial-gradient(circle at 50% 0%, rgba(233, 168, 74, 0.08), transparent 60%);
    border-top: 1px solid rgba(233, 168, 74, 0.16);
}

.site-footer h3,
.site-footer h4 {
    color: #f3cb85;
}

.site-footer p,
.site-footer li a,
.footer-bottom {
    color: #f3dfb7;
}

.footer-bottom {
    background: rgba(4, 2, 1, 0.58);
    border-top-color: rgba(233, 168, 74, 0.12);
}

@media (max-width: 960px) {
    .home-hero-cinematic .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.6rem);
    }

    .hero-content-shell {
        padding: 20px 16px 14px;
    }

    .home-hero-cinematic .hero-actions a {
        min-width: 0;
        width: 100%;
    }

    .home-hero-cinematic .hero-actions {
        width: 100%;
    }

    .main-nav {
        background: rgba(10, 6, 4, 0.98);
        border-color: rgba(233, 168, 74, 0.22);
    }
}

/* Static hero override (no top slider rotation) */
.hero-controls-static {
    display: none;
}

.home-hero-cinematic .hero-static-reference {
    background-image:
        linear-gradient(90deg, rgba(6, 3, 1, 0.94) 0%, rgba(12, 6, 3, 0.52) 24%, rgba(14, 8, 4, 0.12) 52%, rgba(11, 6, 3, 0.46) 76%, rgba(5, 3, 1, 0.9) 100%),
        radial-gradient(circle at 17% 42%, rgba(255, 157, 59, 0.15), transparent 28%),
        radial-gradient(circle at 82% 30%, rgba(255, 193, 97, 0.14), transparent 32%),
        radial-gradient(circle at 50% 18%, rgba(255, 222, 149, 0.11), transparent 30%),
        url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=80'),
        url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1200&q=80'),
        url('https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=1200&q=80');
    background-size:
        cover,
        cover,
        cover,
        cover,
        43% 100%,
        39% 100%,
        cover;
    background-position:
        center,
        center,
        center,
        center,
        left center,
        right center,
        center center;
    background-repeat: no-repeat;
}

.home-hero-cinematic .hero-static-reference::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle, rgba(255, 205, 111, 0.85) 0 4px, rgba(255, 205, 111, 0) 12px) 8% 14% / 120px 120px,
        radial-gradient(circle, rgba(255, 218, 145, 0.9) 0 5px, rgba(255, 218, 145, 0) 14px) 22% 18% / 150px 150px,
        radial-gradient(circle, rgba(255, 184, 73, 0.75) 0 4px, rgba(255, 184, 73, 0) 12px) 42% 9% / 130px 130px,
        radial-gradient(circle, rgba(255, 219, 146, 0.84) 0 5px, rgba(255, 219, 146, 0) 14px) 68% 12% / 140px 140px,
        radial-gradient(circle, rgba(255, 184, 73, 0.72) 0 4px, rgba(255, 184, 73, 0) 12px) 87% 16% / 120px 120px;
    opacity: 0.58;
    mix-blend-mode: screen;
    pointer-events: none;
    animation: heroBokehDrift 16s linear infinite;
}

@keyframes heroBokehDrift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-8px, 5px, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

@media (max-width: 960px) {
    .home-hero-cinematic .hero-static-reference {
        background-size:
            cover,
            cover,
            cover,
            cover,
            52% 100%,
            54% 100%,
            cover;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-cinematic .hero-static-reference::before {
        animation: none;
    }
}

/* Middle reference-style cinematic banner */
.reference-banner-section {
    padding: 0 0 8px;
}

.reference-banner-section .container {
    width: 100%;
    margin: 0;
}

.reference-banner {
    position: relative;
    border-radius: 0;
    border: 1px solid rgba(233, 168, 74, 0.22);
    border-left: 0;
    border-right: 0;
    background: linear-gradient(180deg, rgba(8, 5, 3, 0.98), rgba(6, 3, 2, 0.98));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.reference-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 206, 120, 0.08), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(255, 176, 69, 0.06), transparent 32%),
        radial-gradient(circle at 76% 86%, rgba(255, 206, 120, 0.05), transparent 34%);
}

.reference-banner-top {
    position: relative;
    min-height: 285px;
    aspect-ratio: 1152 / 390;
    border-bottom: 1px solid rgba(233, 168, 74, 0.18);
    overflow: hidden;
}

.reference-banner-media,
.reference-banner-overlay {
    position: absolute;
    inset: 0;
}

.reference-banner-media {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #060302;
    filter: saturate(1.04) contrast(1.05) brightness(0.84);
}

.reference-banner-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 4, 2, 0.9) 0%, rgba(11, 6, 3, 0.4) 28%, rgba(12, 6, 3, 0.2) 52%, rgba(8, 4, 2, 0.72) 100%),
        radial-gradient(circle at 16% 50%, rgba(255, 160, 59, 0.12), transparent 28%),
        radial-gradient(circle at 82% 34%, rgba(255, 204, 112, 0.14), transparent 30%);
}

.reference-banner-media::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.54;
    background:
        radial-gradient(circle, rgba(255, 215, 140, 0.92) 0 4px, rgba(255, 215, 140, 0) 12px) 8% 13% / 120px 120px,
        radial-gradient(circle, rgba(255, 190, 95, 0.82) 0 4px, rgba(255, 190, 95, 0) 12px) 25% 20% / 150px 150px,
        radial-gradient(circle, rgba(255, 215, 140, 0.88) 0 5px, rgba(255, 215, 140, 0) 14px) 43% 10% / 140px 140px,
        radial-gradient(circle, rgba(255, 190, 95, 0.8) 0 4px, rgba(255, 190, 95, 0) 12px) 71% 16% / 130px 130px,
        radial-gradient(circle, rgba(255, 215, 140, 0.86) 0 5px, rgba(255, 215, 140, 0) 14px) 89% 18% / 145px 145px;
    mix-blend-mode: screen;
    animation: heroBokehDrift 18s linear infinite;
}

.reference-banner-overlay {
    background:
        radial-gradient(circle at 50% 84%, rgba(255, 132, 39, 0.14), transparent 35%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}

.reference-banner-content {
    position: relative;
    z-index: 2;
    min-height: 285px;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 16px 14px 14px;
}

.reference-banner-content h2 {
    margin: 0;
    font-family: "Cinzel", serif;
    font-style: italic;
    font-size: clamp(1.35rem, 2.55vw, 2.35rem);
    line-height: 1.15;
    color: #fae8c4;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.48);
    max-width: 620px;
    letter-spacing: 0.01em;
}

.reference-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 6px 0 8px;
}

.reference-divider::before,
.reference-divider::after {
    content: "";
    width: min(125px, 18vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(243, 190, 101, 0.9), transparent);
}

.reference-divider span {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(243, 190, 101, 0.8);
    transform: rotate(45deg);
    border-radius: 2px;
    background: rgba(243, 190, 101, 0.08);
}

.reference-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reference-actions a {
    min-width: 132px;
    text-align: center;
    padding: 8px 12px;
    font-size: 0.84rem;
}

.reference-about-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 14px;
    border-bottom: 1px solid rgba(233, 168, 74, 0.16);
    background: linear-gradient(180deg, rgba(10, 6, 4, 0.96), rgba(7, 4, 2, 0.96));
}

.reference-about-title span {
    height: 1px;
    flex: 1 1 120px;
    max-width: 240px;
    background: linear-gradient(90deg, transparent, rgba(233, 168, 74, 0.62), transparent);
}

.reference-about-title h3 {
    margin: 0;
    font-family: "Cinzel", serif;
    color: #f3cb85;
    font-size: clamp(0.98rem, 1.65vw, 1.35rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.reference-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.55fr;
    gap: 0;
    align-items: stretch;
}

.reference-about-image {
    min-height: 180px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #070402;
    border-right: 1px solid rgba(233, 168, 74, 0.14);
    position: relative;
    filter: saturate(1.03) brightness(0.96);
}

.reference-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 4, 2, 0.04), rgba(8, 4, 2, 0.14)),
        radial-gradient(circle at 12% 16%, rgba(255, 206, 120, 0.08), transparent 28%);
}

.reference-about-content {
    position: relative;
    padding: 16px 18px 12px;
    background:
        radial-gradient(circle at 84% 70%, rgba(255, 158, 60, 0.08), transparent 30%),
        linear-gradient(160deg, rgba(12, 7, 4, 0.98), rgba(7, 4, 2, 0.98));
}

.reference-about-content h4 {
    margin: 0 0 10px;
    color: #f1c77f;
    font-family: "Cinzel", serif;
    font-style: italic;
    font-size: clamp(0.92rem, 1.35vw, 1.12rem);
    line-height: 1.32;
}

.reference-about-content p {
    margin: 0;
    color: #f3e1bb;
    line-height: 1.5;
    font-size: 0.84rem;
    max-width: 94%;
}

.reference-about-pillars {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(233, 168, 74, 0.14);
}

.reference-about-pillars > div {
    padding: 8px 6px 6px;
    text-align: center;
    color: #f0c06b;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 0.78rem;
    border-right: 1px solid rgba(233, 168, 74, 0.12);
    display: grid;
    justify-items: center;
    gap: 5px;
}

.reference-about-pillars > div:last-child {
    border-right: 0;
}

.ref-pillar-icon {
    width: 28px;
    height: 20px;
    position: relative;
    display: inline-block;
    color: #efb85b;
    filter: drop-shadow(0 0 8px rgba(239, 184, 91, 0.14));
}

.ref-pillar-film::before,
.ref-pillar-film::after {
    content: "";
    position: absolute;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.ref-pillar-film::before {
    width: 22px;
    height: 12px;
    left: 7px;
    top: 7px;
}

.ref-pillar-film::after {
    width: 8px;
    height: 8px;
    left: 1px;
    top: 9px;
    border-right: 0;
    border-radius: 3px 0 0 3px;
}

.ref-pillar-dance::before,
.ref-pillar-dance::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 999px;
}

.ref-pillar-dance::before {
    width: 7px;
    height: 7px;
    top: 2px;
    left: 15px;
    box-shadow: 1px 9px 0 -2px currentColor, -8px 14px 0 -2px currentColor, 8px 14px 0 -2px currentColor;
}

.ref-pillar-dance::after {
    width: 2px;
    height: 18px;
    top: 7px;
    left: 17px;
    transform: rotate(28deg);
    box-shadow: -8px 6px 0 0 currentColor, 7px 5px 0 0 currentColor, -10px 14px 0 0 currentColor, 11px 13px 0 0 currentColor;
}

.ref-pillar-music::before,
.ref-pillar-music::after {
    content: "";
    position: absolute;
    background: currentColor;
}

.ref-pillar-music::before {
    width: 3px;
    height: 18px;
    left: 20px;
    top: 3px;
    box-shadow: -8px 4px 0 0 currentColor;
}

.ref-pillar-music::after {
    width: 14px;
    height: 3px;
    top: 3px;
    left: 9px;
    border-radius: 999px;
    box-shadow: -8px 18px 0 0 currentColor, 6px 18px 0 0 currentColor;
}

.reference-about-pillars > div > span:last-child {
    display: block;
}

@media (max-width: 960px) {
    .reference-banner-top,
    .reference-banner-content {
        min-height: 240px;
    }

    .reference-banner-top {
        aspect-ratio: auto;
    }

    .reference-about-grid {
        grid-template-columns: 1fr;
    }

    .reference-about-image {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid rgba(233, 168, 74, 0.14);
        background-size: cover;
    }

    .reference-about-pillars {
        grid-template-columns: 1fr;
    }

    .reference-about-pillars > div {
        border-right: 0;
        border-bottom: 1px solid rgba(233, 168, 74, 0.1);
        padding: 12px 8px;
    }

    .reference-about-pillars > div:last-child {
        border-bottom: 0;
    }

    .reference-actions a {
        min-width: 0;
        width: 100%;
    }

    .reference-banner-section .container {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reference-banner-media::after {
        animation: none;
    }
}

/* Slider moved to middle section */
.home-hero-middle {
    margin-top: 24px;
}

.home-hero-middle.hero.hero-full {
    min-height: 78vh;
}

.home-hero-middle .hero-content {
    display: none;
}

.home-hero-middle .hero-controls-static {
    display: flex;
}

.home-hero-middle .hero-slider .slide::after {
    background:
        linear-gradient(180deg, rgba(10, 6, 3, 0.2) 0%, rgba(10, 6, 3, 0.22) 100%),
        linear-gradient(90deg, rgba(12, 7, 4, 0.35) 0%, rgba(12, 7, 4, 0.08) 45%, rgba(12, 7, 4, 0.3) 100%);
}

.home-stats-middle {
    margin-top: -28px;
    margin-bottom: 14px;
}

@media (max-width: 960px) {
    .home-hero-middle.hero.hero-full {
        min-height: 66vh;
    }

    .home-stats-middle {
        margin-top: -10px;
    }
}

/* Header alignment like reference */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    width: min(1280px, 96%);
    margin: 0 auto;
    padding: 18px 0;
    gap: 20px;
    align-items: center;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.brand {
    flex: 0 0 auto;
    min-width: 300px;
    display: grid;
    grid-template-columns: 48px auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    justify-content: start;
}

.brand-mark {
    grid-row: 1 / span 2;
    grid-column: 1;
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(244, 193, 105, 0.42);
    box-shadow: inset 0 0 0 1px rgba(255, 228, 168, 0.08), 0 0 18px rgba(232, 166, 74, 0.12);
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 221, 156, 0.15), transparent 55%),
        rgba(10, 6, 3, 0.55);
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px dashed rgba(244, 193, 105, 0.26);
}

.brand-mark::after {
    inset: 12px;
    border-style: solid;
    border-color: rgba(244, 193, 105, 0.34);
}

.brand-mark-ring {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(244, 193, 105, 0.55);
    transform: rotate(45deg);
}

.brand-mark-core {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #f7d28d 0%, #d8943b 72%);
    box-shadow: 0 0 10px rgba(232, 166, 74, 0.32);
}

.brand-main {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.72rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.brand-sub {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.68rem;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.main-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
    padding: 0 8px;
}

.main-nav > ul {
    width: auto;
    justify-content: flex-end;
    gap: 2px;
    flex-wrap: nowrap;
}

.main-nav > ul > li {
    flex: 0 0 auto;
}

.main-nav a {
    padding: 12px 10px;
    font-size: 0.89rem;
    line-height: 1;
    position: relative;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(242, 194, 99, 0), rgba(242, 194, 99, 0.95), rgba(242, 194, 99, 0));
    box-shadow: 0 0 10px rgba(242, 194, 99, 0.2);
}

.nav-cta-actions {
    flex: 0 0 auto;
    margin-left: 0;
    min-width: max-content;
}

.nav-cta-btn {
    padding: 12px 18px;
    font-size: 0.92rem;
    line-height: 1;
    border-radius: 12px;
}

.nav-cta-btn.ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-cta-btn.solid {
    min-width: 132px;
    font-weight: 800;
}

@media (max-width: 1380px) {
    .nav-wrap {
        width: min(1280px, 98%);
        gap: 14px;
    }

    .brand {
        min-width: 258px;
        column-gap: 10px;
    }

    .brand-main {
        font-size: 1.46rem;
    }

    .brand-sub {
        font-size: 0.6rem;
        letter-spacing: 0.03em;
    }

    .main-nav {
        padding: 0 4px;
    }

    .main-nav a {
        padding: 10px 8px;
        font-size: 0.84rem;
    }

    .nav-cta-actions {
        gap: 6px;
    }

    .nav-cta-btn {
        padding: 10px 14px;
        font-size: 0.84rem;
    }

    .nav-cta-btn.solid {
        min-width: 118px;
    }
}

@media (max-width: 1180px) {
    .brand {
        min-width: 246px;
    }

    .brand-main {
        font-size: 1.34rem;
    }

    .main-nav a {
        padding: 9px 10px;
        font-size: 0.86rem;
    }

    .nav-cta-btn.solid {
        min-width: 116px;
        padding: 8px 14px;
        font-size: 0.84rem;
    }
}

@media (max-width: 960px) {
    .nav-wrap {
        width: min(1280px, 94%);
        padding: 14px 0;
    }

    .brand {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: calc(100% - 58px);
    }

    .brand-mark {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }

    .brand-mark::before {
        inset: 4px;
    }

    .brand-mark::after {
        inset: 8px;
    }

    .brand-mark-ring {
        width: 18px;
        height: 18px;
    }

    .brand-mark-core {
        width: 6px;
        height: 6px;
    }

    .brand-main {
        font-size: 1.35rem;
    }

    .brand-sub {
        font-size: 0.62rem;
    }

    .nav-cta-actions {
        display: none;
    }
}
/* Section2 (About Chakra split section) - sample match tuning */
.reference-about-title {
  min-height: 46px;
  padding: 5px 18px 6px;
  border-top: 1px solid rgba(226, 164, 74, 0.68);
  border-bottom: 1px solid rgba(226, 164, 74, 0.42);
  background:
    linear-gradient(180deg, rgba(18, 9, 5, 0.88), rgba(8, 4, 2, 0.96));
}

.reference-about-title h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.95vw, 2rem);
  letter-spacing: 0.1em;
  color: #efd39f;
  text-shadow: 0 0 14px rgba(220, 146, 42, 0.22);
}

.reference-about-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.98fr;
  gap: 0;
  min-height: 320px;
  height: 252px;
  border: 1px solid rgba(214, 151, 61, 0.42);
  border-top: none;
  background:
    radial-gradient(circle at 84% 46%, rgba(222, 151, 55, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(12, 6, 3, 0.96), rgba(6, 3, 2, 0.98));
  overflow: hidden;
}

.reference-about-image {
  min-height: 341px;
  height: 252px;
  background-size: cover !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  border-right: 1px solid rgba(214, 151, 61, 0.32);
  position: relative;
  filter: brightness(1.02) saturate(1.06) contrast(1.03);
}

.reference-about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 3, 2, 0.02), rgba(7, 3, 2, 0.08)),
    radial-gradient(circle at 18% 12%, rgba(255, 201, 106, 0.16), transparent 28%);
  pointer-events: none;
}

.reference-about-content {
  min-height: 252px;
  height: 252px;
  padding: 16px 22px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f4ead8;
  background:
    radial-gradient(circle at 82% 44%, rgba(236, 160, 56, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(14, 7, 4, 0.72), rgba(8, 4, 2, 0.92));
}

.reference-about-content h4 {
  margin: 0 0 6px;
  font-size: clamp(1.22rem, 1.52vw, 1.62rem);
  font-weight: 700;
  line-height: 1.28;
  color: #f0c777;
  font-style: italic;
  text-shadow: 0 0 10px rgba(200, 133, 36, 0.18);
}

.reference-about-content p {
  margin: 0;
  max-width: 96%;
  font-size: 0.93rem;
  line-height: 1.46;
  color: rgba(248, 238, 221, 0.95);
}

.reference-about-pillars {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(214, 151, 61, 0.22);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.reference-about-pillars > div {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  color: #f1d4a1;
  position: relative;
}

.reference-about-pillars > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(214, 151, 61, 0.28);
}

.ref-pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.45rem;
  color: #dc9a38;
  text-shadow: 0 0 10px rgba(220, 154, 56, 0.28);
}

.reference-about-pillars span:last-child,
.reference-about-pillars strong {
  font-size: 0.82rem;
  line-height: 1.2;
  color: #edd2a1;
}

@media (max-width: 992px) {
  .reference-about-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .reference-about-image {
    min-height: 210px;
    height: 210px;
    background-position: center center !important;
    border-right: none;
    border-bottom: 1px solid rgba(214, 151, 61, 0.26);
  }

  .reference-about-content {
    min-height: auto;
    height: auto;
    padding: 16px 16px 12px;
  }

  .reference-about-content p {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .reference-about-pillars > div {
    min-height: 64px;
  }
}
/* Global cinematic gold theme + visibility overrides (site-wide) */
:root {
  --chakra-bg: #080403;
  --chakra-bg-soft: #120904;
  --chakra-panel: #130904;
  --chakra-panel-2: #1a0d05;
  --chakra-gold: #d79a3d;
  --chakra-gold-soft: #f0c97a;
  --chakra-text: #f5eddc;
  --chakra-text-soft: #e8dcc5;
  --chakra-border: rgba(215, 154, 61, 0.34);
}

html,
body {
  background: radial-gradient(circle at 80% 8%, rgba(219, 148, 50, 0.08), transparent 34%),
    radial-gradient(circle at 12% 20%, rgba(188, 118, 35, 0.06), transparent 30%),
    linear-gradient(180deg, #090403 0%, #060302 100%);
  color: var(--chakra-text);
}

body,
p,
li,
td,
th,
label,
small,
span,
.text-muted,
.text-secondary {
  color: var(--chakra-text-soft) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.page-title,
.card-title {
  color: var(--chakra-gold-soft) !important;
  text-shadow: 0 0 10px rgba(215, 154, 61, 0.1);
}

a {
  color: #f1c87b;
}

a:hover {
  color: #ffd998;
}

section,
.section,
.content-section,
.page-section {
  color: var(--chakra-text);
}

.card,
.service-card,
.feature-card,
.program-card,
.testimonial-card,
.event-card,
.info-card,
.contact-card,
.stats-card,
.about-card,
.team-card,
.gallery-card {
  background: linear-gradient(180deg, rgba(20, 10, 5, 0.94), rgba(11, 6, 3, 0.98)) !important;
  border: 1px solid var(--chakra-border) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 208, 130, 0.03);
  color: var(--chakra-text) !important;
}

.card p,
.service-card p,
.feature-card p,
.program-card p,
.testimonial-card p,
.event-card p,
.info-card p {
  color: var(--chakra-text-soft) !important;
}

.btn,
button,
input[type="submit"],
input[type="button"] {
  border-color: rgba(215, 154, 61, 0.52);
}

.btn-primary,
.btn-warning,
.theme-btn,
.cta-btn,
.enroll-btn {
  background: linear-gradient(180deg, #e0a347, #b87522) !important;
  border: 1px solid rgba(255, 218, 154, 0.35) !important;
  color: #221106 !important;
  box-shadow: 0 8px 20px rgba(183, 117, 34, 0.22);
}

.btn-outline,
.btn-outline-light,
.btn-dark,
.secondary-btn {
  background: linear-gradient(180deg, rgba(31, 14, 7, 0.88), rgba(15, 8, 4, 0.96)) !important;
  border: 1px solid rgba(215, 154, 61, 0.45) !important;
  color: #f2ddba !important;
}

input,
select,
textarea,
.form-control,
.form-select {
  background: rgba(18, 9, 4, 0.92) !important;
  border: 1px solid rgba(215, 154, 61, 0.26) !important;
  color: var(--chakra-text) !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(238, 223, 194, 0.62) !important;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus,
.form-select:focus {
  border-color: rgba(231, 174, 87, 0.7) !important;
  box-shadow: 0 0 0 0.18rem rgba(215, 154, 61, 0.15) !important;
  color: var(--chakra-text) !important;
}

table,
.table {
  color: var(--chakra-text-soft) !important;
  background: transparent;
}

.table th,
.table td {
  border-color: rgba(215, 154, 61, 0.15) !important;
}

.badge,
.tag,
.chip {
  background: rgba(215, 154, 61, 0.16) !important;
  border: 1px solid rgba(215, 154, 61, 0.28) !important;
  color: #f5d9a6 !important;
}

footer,
.site-footer {
  background: linear-gradient(180deg, rgba(12, 6, 3, 0.98), rgba(6, 3, 2, 1)) !important;
  border-top: 1px solid rgba(215, 154, 61, 0.24);
  color: var(--chakra-text-soft) !important;
}

footer a,
.site-footer a {
  color: #f0cb85 !important;
}

/* stronger visibility for common dark overlays */
.overlay-content,
.hero-content,
.banner-content,
.caption,
.content-overlay {
  color: #fff4df !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Visibility fix: light split cards used on service/about pages */
.about-panel,
.about-panel .about-panel-content {
  color: #2f2414 !important;
}

.about-panel .about-chip {
  color: #6a4b16 !important;
  background: rgba(183, 138, 47, 0.15) !important;
  border-color: rgba(183, 138, 47, 0.25) !important;
}

.about-panel .about-panel-content h2 {
  color: #7a571b !important;
  text-shadow: none !important;
}

.about-panel .about-panel-content p,
.about-panel .about-panel-content li,
.about-panel .about-panel-content span,
.about-panel .about-panel-content strong {
  color: #4f3d21 !important;
  text-shadow: none !important;
}

/* Section 2 pillar spacing fix */
.reference-about-pillars > div {
  gap: 8px;
}
.reference-about-pillars > div .ref-pillar-icon {
  margin-bottom: 2px;
}
.reference-about-pillars > div span {
  display: block;
  line-height: 1.25;
}

/* Footer typography consistency */
.site-footer .footer-grid h3,
.site-footer .footer-grid h4 {
  font-size: 1rem !important;
  line-height: 1.3;
}

.site-footer .footer-grid ul,
.site-footer .footer-grid li,
.site-footer .footer-grid p,
.site-footer .footer-grid a {
  font-size: 0.9rem !important;
}

/* Panel software mobile sidebar: no dim overlay, clean slide-in */
@media (max-width: 960px) {
  .panel-app {
    grid-template-columns: 1fr;
  }

  .panel-app-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(82vw, 320px);
    transform: translateX(-110%);
    transition: transform 0.2s ease;
    z-index: 1200;
    box-shadow: 16px 0 28px rgba(0, 0, 0, 0.35);
  }

  .panel-app-sidebar.open {
    transform: translateX(0);
    display: block;
  }

  .panel-app.sidebar-open .panel-app-main,
  .panel-app.sidebar-open .panel-app-header,
  .panel-app.sidebar-open .panel-app-content {
    filter: none !important;
    opacity: 1 !important;
  }

  .panel-app::before,
  .panel-app::after,
  body::before,
  body::after {
    display: none !important;
  }
}

/* Mobile fix: first home banner section */
@media (max-width: 600px) {
  .reference-banner-section .container {
    width: 100% !important;
  }

  .reference-banner {
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .reference-banner-top,
  .reference-banner-content {
    min-height: 290px !important;
  }

  .reference-banner-content {
    padding: 16px 12px 14px !important;
  }

  .reference-banner-content h2 {
    font-size: clamp(1.85rem, 6.8vw, 2.25rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 0.01em !important;
    margin: 0 0 8px !important;
  }

  .reference-divider {
    margin: 4px 0 10px !important;
  }

  .reference-banner-section .reference-actions {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  .reference-banner-section .reference-actions a {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 34px !important;
    padding: 7px 6px !important;
    font-size: clamp(0.7rem, 2.8vw, 0.82rem) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

/* Final mobile force: first banner 3 CTA buttons in single row */
@media only screen and (max-width: 768px) {
  body .reference-banner-section .reference-banner .reference-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    align-items: stretch !important;
  }

  body .reference-banner-section .reference-banner .reference-actions > a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 32px !important;
    padding: 6px 4px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 0.76rem !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}
