 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:ital,wght@0,600;0,700;1,600&display=swap');
 
    * { box-sizing: border-box; }
 
    .ac-page {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: #1e2d3d;
    }
 
    /* ══════════════════════════════
       HERO / BANNER
    ══════════════════════════════ */
    .ac-hero {
        position: relative;
        background: #0d2b55;
        min-height: 420px;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
    }
 
    .ac-hero-bg {
        position: absolute;
        inset: 0;
        background-image: url('{{ $reviewCenter->banner_image ? asset("storage/" . $reviewCenter->banner_image) : asset("landing/img/default-banner.jpg") }}');
        background-size: cover;
        background-position: center;
        opacity: 0.25;
    }
 
    .ac-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #0d2b55 40%, transparent 100%);
    }
 
    .ac-hero-content {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: 0 auto;
        width: 100%;
        padding: 60px 40px 48px;
    }
 
    .ac-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.2);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 20px;
        margin-bottom: 16px;
    }
 
    .ac-hero h1 {
        font-family: 'Fraunces', serif;
        font-size: clamp(28px, 4vw, 48px);
        color: #fff;
        margin: 0 0 16px;
        line-height: 1.2;
    }
 
    .ac-hero-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 28px;
    }
 
    .ac-hero-meta span {
        display: flex;
        align-items: center;
        gap: 7px;
        color: rgba(255,255,255,0.75);
        font-size: 13px;
    }
 
    .ac-hero-meta i { color: #4ade80; }
 
    .ac-hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
 
    .btn-enroll {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #22c55e;
        color: #fff;
        font-weight: 700;
        font-size: 14px;
        padding: 13px 28px;
        border-radius: 10px;
        text-decoration: none;
        transition: background 0.2s, transform 0.1s;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .btn-enroll:hover { background: #16a34a; transform: translateY(-1px); }
 
    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: #fff;
        font-weight: 600;
        font-size: 14px;
        padding: 13px 28px;
        border-radius: 10px;
        border: 1.5px solid rgba(255,255,255,0.35);
        text-decoration: none;
        transition: border-color 0.2s, background 0.2s;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
 
    /* ══════════════════════════════
       STATS BAR
    ══════════════════════════════ */
    .ac-stats {
        background: #fff;
        border-bottom: 1px solid #edf0f4;
        padding: 0 40px;
    }
 
    .ac-stats-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }
 
    .ac-stat {
        flex: 1;
        min-width: 140px;
        padding: 22px 28px;
        border-right: 1px solid #edf0f4;
        text-align: center;
    }
    .ac-stat:last-child { border-right: none; }
 
    .ac-stat .s-val {
        font-family: 'Fraunces', serif;
        font-size: 26px;
        font-weight: 700;
        color: #0d2b55;
        display: block;
    }
 
    .ac-stat .s-lbl {
        font-size: 12px;
        color: #8a97aa;
        margin-top: 2px;
    }
 
    /* ══════════════════════════════
       MAIN CONTENT LAYOUT
    ══════════════════════════════ */
    .ac-body {
        max-width: 1100px;
        margin: 0 auto;
        padding: 56px 40px 80px;
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 48px;
        align-items: start;
    }
 
    /* ══════════════════════════════
       ABOUT SECTION
    ══════════════════════════════ */
    .section-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #22c55e;
        margin-bottom: 12px;
    }
 
    .section-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }
 
    .section-title {
        font-family: 'Fraunces', serif;
        font-size: 28px;
        color: #0d2b55;
        margin: 0 0 16px;
        line-height: 1.3;
    }
 
    .section-body {
        font-size: 15px;
        color: #4a5568;
        line-height: 1.8;
        margin-bottom: 32px;
    }
 
    /* ══════════════════════════════
       GALLERY
    ══════════════════════════════ */
    .ac-gallery {
        margin-top: 40px;
    }
 
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 200px 200px;
        gap: 10px;
        border-radius: 16px;
        overflow: hidden;
    }
 
    .gallery-grid .g-item {
        overflow: hidden;
        position: relative;
        background: #cbd5e0;
    }
 
    .gallery-grid .g-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }
 
    .gallery-grid .g-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
 
    .gallery-grid .g-item:hover img { transform: scale(1.05); }
 
    .gallery-grid .g-item .g-overlay {
        position: absolute;
        inset: 0;
        background: rgba(13,43,85,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }
 
    .gallery-grid .g-item:hover .g-overlay { opacity: 1; }
    .gallery-grid .g-item .g-overlay i { color: #fff; font-size: 24px; }
 
    /* placeholder when no images */
    .gallery-placeholder {
        background: #f0f4f8;
        border: 2px dashed #cbd5e0;
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        color: #a0aec0;
        font-size: 14px;
    }
 
    /* ══════════════════════════════
       SIDEBAR
    ══════════════════════════════ */
    .ac-sidebar { display: flex; flex-direction: column; gap: 20px; }
 
    .sidebar-card {
        background: #fff;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.06);
        border: 1px solid #edf0f4;
    }
 
    .sidebar-card h4 {
        font-family: 'Fraunces', serif;
        font-size: 17px;
        color: #0d2b55;
        margin: 0 0 18px;
        padding-bottom: 12px;
        border-bottom: 1px solid #edf0f4;
    }
 
    /* Enrollment CTA card */
    .enroll-card {
        background: linear-gradient(135deg, #0d2b55 0%, #1a4480 100%);
        border-radius: 16px;
        padding: 28px 24px;
        color: #fff;
        text-align: center;
    }
 
    .enroll-card .price {
        font-family: 'Fraunces', serif;
        font-size: 36px;
        font-weight: 700;
        color: #4ade80;
        display: block;
        margin-bottom: 4px;
    }
 
    .enroll-card .price-note {
        font-size: 12px;
        color: rgba(255,255,255,0.5);
        margin-bottom: 20px;
        display: block;
    }
 
    .enroll-card .slots-bar {
        background: rgba(255,255,255,0.1);
        border-radius: 20px;
        height: 8px;
        margin-bottom: 8px;
        overflow: hidden;
    }
 
    .enroll-card .slots-fill {
    height: 100%;
    background: #4ade80;
    border-radius: 20px;
    transition: width 0.5s ease-in-out; /* Smoothly animates the bar */
}
 
    .enroll-card .slots-text {
        font-size: 12px;
        color: rgba(255,255,255,0.6);
        margin-bottom: 22px;
        display: block;
    }
 
    .enroll-card .btn-enroll-lg {
        display: block;
        background: #22c55e;
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        padding: 14px;
        border-radius: 10px;
        text-decoration: none;
        transition: background 0.2s;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .enroll-card .btn-enroll-lg:hover { background: #16a34a; }
 
    /* Contact card */
    .contact-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }
    .contact-row:last-child { margin-bottom: 0; }
 
    .contact-row .c-icon {
        width: 36px; height: 36px;
        background: #eef2f9;
        border-radius: 8px;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        color: #0d2b55;
        font-size: 14px;
    }
 
    .contact-row .c-label {
        font-size: 11px;
        color: #a0aec0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }
 
    .contact-row .c-value {
        font-size: 13px;
        font-weight: 600;
        color: #2d3748;
    }
 
    /* Schedule card */
    .sched-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #f4f6f9;
        font-size: 13px;
    }
    .sched-row:last-child { border-bottom: none; }
    .sched-row .sched-day { font-weight: 600; color: #0d2b55; }
    .sched-row .sched-time { color: #8a97aa; }
 
    @media (max-width: 900px) {
        .ac-body { grid-template-columns: 1fr; }
        .ac-hero-content { padding: 40px 20px 36px; }
        .gallery-grid { grid-template-rows: 160px 160px; }
        .ac-stats { padding: 0 20px; }
    }
 
    @media (max-width: 600px) {
        .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
        .gallery-grid .g-item:first-child { grid-column: span 2; }
        .ac-hero-actions { flex-direction: column; }
        .btn-enroll, .btn-outline { text-align: center; justify-content: center; }
    }