/* ─── DESIGN TOKENS ─────────────────────────────────── */
        :root {
            --brand: #8327D2;
            --brand-dark: #6A1FB0;
            --brand-deep: #510F92;
            --brand-light: #9F45E8;
            --brand-pale: #F3EAFD;
            --brand-soft: #EAD8FA;
            --brand-mid: #C598F0;
            --surface: #FFFFFF;
            --canvas: #F9F7FD;
            --canvas-alt: #F2EEF9;
            --border: #E6DFF5;
            --border-soft: #EDE8F6;
            --ink-900: #0F0B1A;
            --ink-700: #2D2240;
            --ink-500: #5E4D78;
            --ink-400: #8474A0;
            --ink-300: #B0A2C8;
            --ink-200: #D7CEED;
            --ink-100: #EDE8F6;
            --success: #12B76A;
            --warning: #F79009;
            --danger: #F04438;
            --ff-heading: 'Sora', sans-serif;
            --ff-body: 'DM Sans', sans-serif;
            --r-sm: 8px;
            --r-md: 12px;
            --r-lg: 16px;
            --r-xl: 24px;
            --r-full: 999px;
            --shadow-xs: 0 1px 2px rgba(131, 39, 210, .06);
            --shadow-sm: 0 2px 8px rgba(131, 39, 210, .08), 0 1px 2px rgba(0, 0, 0, .04);
            --shadow-md: 0 4px 20px rgba(131, 39, 210, .12), 0 2px 6px rgba(0, 0, 0, .05);
            --shadow-lg: 0 12px 48px rgba(131, 39, 210, .16), 0 4px 12px rgba(0, 0, 0, .06);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px
        }

        body {
            font-family: var(--ff-body);
            background: var(--canvas);
            color: var(--ink-700);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased
        }

        a {
            text-decoration: none;
            color: inherit
        }

        img {
            display: block;
            max-width: 100%
        }

        ul {
            list-style: none
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit
        }

        ::-webkit-scrollbar {
            width: 5px;
            height: 5px
        }

        ::-webkit-scrollbar-track {
            background: transparent
        }

        ::-webkit-scrollbar-thumb {
            background: var(--ink-200);
            border-radius: 99px
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--brand-mid)
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--ff-heading);
            color: var(--ink-900);
            letter-spacing: -.025em;
            line-height: 1.2
        }

        p {
            color: var(--ink-500);
            line-height: 1.7
        }

        em {
            font-style: normal;
            background: linear-gradient(135deg, var(--brand), var(--brand-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .label {
            font-family: var(--ff-heading);
            font-size: .6875rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--brand)
        }

        .container {
            /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 4rem); */
            max-width: 1600px;
            margin-inline: auto;
            padding: 0 100px 0 100px;
        }

        @media (max-width: 560px) {
            .container {
                /* max-width: 1200px; */
                margin-inline: auto;
                /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
                padding: 0 20px 0 20px;
            }
        }

        /* ── CARD base ── */
        .card {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            overflow: hidden
        }

        .card-body {
            padding: 1.5rem
        }

        .card-head {
            padding: 1.125rem 1.5rem;
            border-bottom: 1.5px solid var(--border-soft);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem
        }

        .card-title {
            font-family: var(--ff-heading);
            font-size: .9375rem;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -.015em
        }

        /* ── BTN ── */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .45rem;
            padding: .65rem 1.25rem;
            border-radius: var(--r-md);
            font-family: var(--ff-heading);
            font-size: .85rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all .2s ease
        }

        .btn-primary {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 3px 14px rgba(131, 39, 210, .3)
        }

        .btn-primary:hover {
            background: var(--brand-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(131, 39, 210, .38)
        }

        .btn-outline {
            background: transparent;
            color: var(--ink-700);
            border: 1.5px solid var(--border)
        }

        .btn-outline:hover {
            border-color: var(--brand-mid);
            color: var(--brand);
            background: var(--brand-pale)
        }

        .btn-ghost {
            background: transparent;
            color: var(--brand);
            border: none;
            padding-inline: 0;
            font-family: var(--ff-heading);
            font-size: .8125rem;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: .3rem;
            transition: gap .18s
        }

        .btn-ghost:hover {
            gap: .5rem
        }

        .btn-sm {
            padding: .45rem .875rem;
            font-size: .78rem
        }

        /* ── INPUT ── */
        .form-input {
            width: 100%;
            padding: .65rem .875rem;
            border-radius: var(--r-md);
            border: 1.5px solid var(--border);
            background: var(--surface);
            font-size: .875rem;
            color: var(--ink-700);
            outline: none;
            transition: border-color .18s, box-shadow .18s
        }

        .form-input::placeholder {
            color: var(--ink-300)
        }

        .form-input:focus {
            border-color: var(--brand-mid);
            box-shadow: 0 0 0 3px rgba(131, 39, 210, .1)
        }

        .form-label {
            display: block;
            font-family: var(--ff-heading);
            font-size: .71875rem;
            font-weight: 700;
            color: var(--ink-500);
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: .375rem
        }

        .form-group {
            margin-bottom: 1rem
        }

        /* ── TAG / BADGE ── */
        .tag {
            display: inline-flex;
            align-items: center;
            gap: .275rem;
            padding: .225rem .65rem;
            border-radius: var(--r-full);
            font-family: var(--ff-heading);
            font-size: .6875rem;
            font-weight: 700;
            letter-spacing: .04em
        }

        .tag-brand {
            background: var(--brand-pale);
            color: var(--brand-dark);
            border: 1px solid var(--brand-soft)
        }

        .tag-success {
            background: rgba(18, 183, 106, .1);
            color: #0b8a50;
            border: 1px solid rgba(18, 183, 106, .22)
        }

        .tag-warn {
            background: rgba(247, 144, 9, .1);
            color: #b56a04;
            border: 1px solid rgba(247, 144, 9, .22)
        }

        .tag-neutral {
            background: var(--canvas-alt);
            color: var(--ink-500);
            border: 1px solid var(--border)
        }

        /* ══════════════════════════════════════════════
       PAGE WRAPPER
    ══════════════════════════════════════════════ */
        .detail-page {
            padding: 2rem 0 5rem
        }

        /* ── Views ── */
        #view-main {
            display: block
        }

        #view-photos {
            display: none
        }

        /* ══════════════════════════════════════════════
       HERO HEADER
    ══════════════════════════════════════════════ */
        .school-hero {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            padding: 1.75rem 2rem;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .school-hero::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -60px;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(131, 39, 210, .07), transparent 65%);
            pointer-events: none;
        }

        .school-logo-wrap {
            width: 140px;
            height: 140px;
            border-radius: var(--r-lg);
            border: 2px solid var(--border-soft);
            background: linear-gradient(135deg, var(--brand-pale), var(--canvas-alt));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: var(--ff-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand);
            letter-spacing: -.03em;
        }

        .school-hero-info {
            flex: 1;
            min-width: 0
        }

        .school-hero-name {
            font-family: var(--ff-heading);
            font-size: clamp(1.25rem, 2.5vw, 1.625rem);
            font-weight: 800;
            color: var(--ink-900);
            letter-spacing: -.025em;
            margin-bottom: .3rem;
            line-height: 1.2;
        }

        .school-hero-loc {
            display: flex;
            align-items: center;
            gap: .375rem;
            font-size: .875rem;
            color: var(--ink-400);
            font-weight: 500;
            margin-bottom: .625rem;
        }

        .school-hero-loc svg {
            color: var(--brand);
            flex-shrink: 0
        }

        .school-rating-row {
            display: flex;
            align-items: center;
            gap: .875rem;
            margin-bottom: .75rem;
            flex-wrap: wrap
        }

        .rating-stars {
            display: flex;
            align-items: center;
            gap: 2px
        }

        .star-icon {
            width: 14px;
            height: 14px;
            fill: #F59E0B;
            color: #F59E0B
        }

        .star-icon.empty {
            fill: var(--border);
            color: var(--border)
        }

        .rating-num {
            font-family: var(--ff-heading);
            font-size: .875rem;
            font-weight: 700;
            color: var(--ink-900)
        }

        .rating-count {
            font-size: .78rem;
            color: var(--ink-400)
        }

        .hero-tags {
            display: flex;
            align-items: center;
            gap: .375rem;
            flex-wrap: wrap
        }

        .school-hero-actions {
            display: flex;
            flex-direction: column;
            gap: .625rem;
            flex-shrink: 0;
            align-items: flex-end
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            padding: .275rem .75rem;
            border-radius: var(--r-full);
            background: rgba(18, 183, 106, .09);
            color: #0b8a50;
            border: 1px solid rgba(18, 183, 106, .2);
            font-family: var(--ff-heading);
            font-size: .625rem;
            font-weight: 700;
            letter-spacing: .06em;
        }

        /* ══════════════════════════════════════════════
       INTERNAL NAV TABS
    ══════════════════════════════════════════════ */
        .school-tabs {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: var(--r-lg);
            padding: .375rem;
            display: flex;
            gap: .25rem;
            margin-bottom: 1.5rem;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .school-tabs::-webkit-scrollbar {
            display: none
        }

        .school-tab {
            display: inline-flex;
            align-items: center;
            gap: .375rem;
            padding: .5rem 1.0625rem;
            border-radius: var(--r-md);
            font-family: var(--ff-heading);
            font-size: .8125rem;
            font-weight: 600;
            color: var(--ink-400);
            background: transparent;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            transition: all .18s ease;
        }

        .school-tab:hover {
            color: var(--ink-700);
            background: var(--canvas)
        }

        .school-tab.active {
            background: var(--brand);
            color: #fff;
            box-shadow: 0 2px 10px rgba(131, 39, 210, .28);
        }

        /* ══════════════════════════════════════════════
       TWO-COL LAYOUT
    ══════════════════════════════════════════════ */
        .detail-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 1.5rem;
            align-items: start
        }

        .detail-main {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            max-width: 1000px;
        }

        .detail-sidebar {
            position: sticky;
            top: 1.5rem;
            right: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1.125rem
        }

        /* section divider label */
        .section-eyebrow {
            display: flex;
            align-items: center;
            gap: .625rem;
            margin-bottom: 1.125rem
        }

        .section-eyebrow .ey-line {
            width: 24px;
            height: 2.5px;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
            border-radius: 2px;
            flex-shrink: 0
        }

        /* ══════════════════════════════════════════════
       ADMISSION ENQUIRY TABLE
    ══════════════════════════════════════════════ */
        .adm-table {
            width: 100%;
            border-collapse: collapse
        }

        .adm-table th {
            background: var(--canvas-alt);
            font-family: var(--ff-heading);
            font-size: .6875rem;
            font-weight: 700;
            color: var(--ink-400);
            letter-spacing: .06em;
            text-transform: uppercase;
            padding: .625rem 1rem;
            text-align: left;
        }

        .adm-table th:first-child {
            border-radius: var(--r-sm) 0 0 var(--r-sm)
        }

        .adm-table th:last-child {
            border-radius: 0 var(--r-sm) var(--r-sm) 0
        }

        .adm-table td {
            padding: .75rem 1rem;
            border-bottom: 1px solid var(--border-soft);
            font-size: .875rem;
            color: var(--ink-700);
            vertical-align: middle
        }

        .adm-table tr:last-child td {
            border-bottom: none
        }

        .adm-table tr:hover td {
            background: var(--canvas)
        }

        .session-badge {
            display: inline-flex;
            align-items: center;
            padding: .2rem .625rem;
            border-radius: var(--r-full);
            background: rgba(247, 144, 9, .08);
            color: #b56a04;
            border: 1px solid rgba(247, 144, 9, .2);
            font-family: var(--ff-heading);
            font-size: .6875rem;
            font-weight: 700;
        }

        /* ══════════════════════════════════════════════
       PROMO BANNER
    ══════════════════════════════════════════════ */
        .promo-banner {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
            border-radius: 20px;
            padding: 1.5rem 1.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            position: relative;
            overflow: hidden;
        }

        .promo-banner::before {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
        }

        .promo-banner::after {
            content: '';
            position: absolute;
            left: -30px;
            bottom: -40px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
        }

        .promo-text {
            position: relative;
            z-index: 1
        }

        .promo-text h3 {
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: .25rem
        }

        .promo-text p {
            color: rgba(255, 255, 255, .78);
            font-size: .8375rem;
            line-height: 1.5
        }

        .btn-promo {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
            background: rgba(255, 255, 255, .18);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, .32);
            backdrop-filter: blur(8px);
            padding: .65rem 1.25rem;
            border-radius: var(--r-md);
            font-family: var(--ff-heading);
            font-size: .8125rem;
            font-weight: 600;
            cursor: pointer;
            transition: all .18s;
            display: inline-flex;
            align-items: center;
            gap: .375rem;
            white-space: nowrap;
        }

        .btn-promo:hover {
            background: rgba(255, 255, 255, .28);
            transform: translateY(-1px)
        }

        /* ══════════════════════════════════════════════
       QUICK FACTS
    ══════════════════════════════════════════════ */
        .facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: .875rem
        }

        .fact-item {
            background: var(--canvas);
            border: 1px solid var(--border-soft);
            border-radius: var(--r-lg);
            padding: 1rem;
            transition: border-color .18s, transform .22s;
        }

        .fact-item:hover {
            border-color: var(--brand-soft);
            transform: translateY(-2px)
        }

        .fact-icon {
            width: 34px;
            height: 34px;
            border-radius: var(--r-sm);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: .625rem;
            transition: background .2s, color .2s;
        }

        .fact-item:hover .fact-icon {
            background: var(--brand);
            color: #fff
        }

        .fact-label {
            font-size: .71875rem;
            font-weight: 600;
            color: var(--ink-400);
            font-family: var(--ff-heading);
            letter-spacing: .03em;
            margin-bottom: .2rem
        }

        .fact-value {
            font-family: var(--ff-heading);
            font-size: .9375rem;
            font-weight: 700;
            color: var(--ink-900);
            letter-spacing: -.015em
        }

        /* ══════════════════════════════════════════════
       FEES SECTION
    ══════════════════════════════════════════════ */
        .fee-summary-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: .875rem;
            margin-bottom: 1.25rem
        }

        .fee-summary-card {
            background: var(--canvas-alt);
            border: 1.5px solid var(--border-soft);
            border-radius: var(--r-lg);
            padding: 1rem 1.125rem;
            text-align: center;
        }

        .fee-summary-label {
            font-size: .6875rem;
            font-weight: 600;
            color: var(--ink-400);
            font-family: var(--ff-heading);
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: .25rem
        }

        .fee-summary-val {
            font-family: var(--ff-heading);
            font-size: 1.1875rem;
            font-weight: 800;
            color: var(--ink-900);
            letter-spacing: -.02em
        }

        .fee-summary-val.highlight {
            color: var(--brand)
        }

        .fee-row {
            border-bottom: 1px solid var(--border-soft);
            overflow: hidden
        }

        .fee-row:last-child {
            border-bottom: none
        }

        .fee-row-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .875rem 0;
            cursor: pointer;
            user-select: none;
        }

        .fee-row-class {
            font-family: var(--ff-heading);
            font-size: .9rem;
            font-weight: 600;
            color: var(--ink-900)
        }

        .fee-row-right {
            display: flex;
            align-items: center;
            gap: 1rem
        }

        .fee-amount {
            font-family: var(--ff-heading);
            font-size: .9375rem;
            font-weight: 700;
            color: var(--brand)
        }

        .fee-chevron {
            width: 24px;
            height: 24px;
            border-radius: var(--r-sm);
            border: 1.5px solid var(--border);
            background: var(--canvas);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink-300);
            transition: all .22s ease
        }

        .fee-row.open .fee-chevron {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            transform: rotate(180deg)
        }

        .fee-expand {
            display: none;
            padding: .5rem 0 1.125rem;
            animation: fadeIn .25s ease both
        }

        .fee-row.open .fee-expand {
            display: block
        }

        .fee-breakdown {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .5rem
        }

        .fee-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: .45rem .75rem;
            background: var(--canvas-alt);
            border-radius: var(--r-sm);
            font-size: .8125rem
        }

        .fee-line-label {
            color: var(--ink-500);
            font-weight: 500
        }

        .fee-line-val {
            font-family: var(--ff-heading);
            font-weight: 700;
            color: var(--ink-900);
            font-size: .8125rem
        }

        /* ══════════════════════════════════════════════
       DOCUMENTS
    ══════════════════════════════════════════════ */
        .docs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .625rem
        }

        .doc-item {
            display: flex;
            align-items: center;
            gap: .625rem;
            padding: .625rem .875rem;
            background: var(--canvas);
            border-radius: var(--r-md);
            border: 1px solid var(--border-soft);
            font-size: .875rem;
            color: var(--ink-700);
            font-weight: 500;
            transition: border-color .15s, background .15s
        }

        .doc-item:hover {
            border-color: var(--brand-soft);
            background: var(--brand-pale)
        }

        .doc-check {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(18, 183, 106, .12);
            color: #0b8a50;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        /* ══════════════════════════════════════════════
       PHOTOS PREVIEW
    ══════════════════════════════════════════════ */
        .photo-thumb-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: .625rem;
            margin-bottom: 1rem
        }

        .photo-thumb {
            aspect-ratio: 4/3;
            border-radius: var(--r-md);
            overflow: hidden;
            cursor: pointer;
            background: var(--canvas-alt);
            border: 1.5px solid var(--border-soft);
            position: relative;
        }

        .photo-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease
        }

        .photo-thumb:hover img {
            transform: scale(1.06)
        }

        .photo-thumb-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 11, 26, 0);
            transition: background .25s;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .photo-thumb:hover .photo-thumb-overlay {
            background: rgba(131, 39, 210, .35)
        }

        .photo-more-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 11, 26, .52);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--ff-heading);
            font-size: 1.125rem;
            font-weight: 800;
            color: #fff;
            cursor: pointer;
        }

        /* ══════════════════════════════════════════════
       LANGUAGES
    ══════════════════════════════════════════════ */
        .lang-row {
            display: flex;
            align-items: center;
            gap: .5rem;
            flex-wrap: wrap
        }

        /* ══════════════════════════════════════════════
       FACILITIES
    ══════════════════════════════════════════════ */
        .fac-cat {
            margin-bottom: 1.5rem
        }

        .fac-cat:last-child {
            margin-bottom: 0
        }

        .fac-cat-title {
            font-family: var(--ff-heading);
            font-size: .75rem;
            font-weight: 700;
            color: var(--ink-400);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: .75rem;
            display: flex;
            align-items: center;
            gap: .5rem
        }

        .fac-cat-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-soft)
        }

        .fac-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: .625rem
        }

        .fac-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .5rem;
            padding: .875rem .5rem;
            background: var(--canvas);
            border-radius: var(--r-lg);
            border: 1.5px solid var(--border-soft);
            text-align: center;
            transition: border-color .2s, transform .22s, box-shadow .22s;
            cursor: default;
        }

        .fac-item:hover {
            border-color: var(--brand-soft);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm)
        }

        .fac-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--r-md);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s, color .2s, transform .2s;
        }

        .fac-item:hover .fac-icon {
            background: var(--brand);
            color: #fff;
            transform: scale(1.08) rotate(-4deg)
        }

        .fac-name {
            font-family: var(--ff-heading);
            font-size: .6875rem;
            font-weight: 600;
            color: var(--ink-500);
            line-height: 1.3
        }

        /* ══════════════════════════════════════════════
       REVIEWS
    ══════════════════════════════════════════════ */
        .review-empty {
            padding: 2.5rem;
            text-align: center;
            background: var(--canvas-alt);
            border-radius: var(--r-xl);
            border: 1.5px dashed var(--border);
        }

        .review-empty-icon {
            width: 52px;
            height: 52px;
            border-radius: var(--r-lg);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto .875rem;
        }

        /* ══════════════════════════════════════════════
       ADDRESS / MAP
    ══════════════════════════════════════════════ */
        .map-placeholder {
            width: 100%;
            height: 180px;
            border-radius: var(--r-lg);
            overflow: hidden;
            background: var(--canvas-alt);
            border: 1.5px solid var(--border-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ink-300);
            font-size: .8125rem;
            font-weight: 500;
            position: relative;
            margin-top: 1rem;
        }

        .map-placeholder svg {
            position: absolute;
            opacity: .18
        }

        .contact-row {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            padding: .625rem 0;
            border-bottom: 1px solid var(--border-soft)
        }

        .contact-row:last-of-type {
            border-bottom: none
        }

        .contact-icon {
            width: 32px;
            height: 32px;
            border-radius: var(--r-sm);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .contact-label {
            font-size: .6875rem;
            font-weight: 700;
            font-family: var(--ff-heading);
            color: var(--ink-400);
            letter-spacing: .04em;
            text-transform: uppercase;
            margin-bottom: .125rem
        }

        .contact-val {
            font-size: .875rem;
            color: var(--ink-700);
            font-weight: 500
        }

        /* ══════════════════════════════════════════════
       RELATED SCHOOLS (horizontal scroll)
    ══════════════════════════════════════════════ */
        .horiz-scroll {
            display: flex;
            gap: 1rem;
            overflow-x: auto;
            padding-bottom: .5rem;
            scrollbar-width: none
        }

        .horiz-scroll::-webkit-scrollbar {
            display: none
        }

        .mini-school-card {
            flex-shrink: 0;
            width: 200px;
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: var(--r-lg);
            padding: 1rem;
            transition: transform .22s, box-shadow .22s, border-color .18s;
            cursor: pointer;
        }

        .mini-school-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: var(--brand-soft)
        }

        .mini-logo {
            width: 44px;
            height: 44px;
            border-radius: var(--r-md);
            background: linear-gradient(135deg, var(--brand-pale), var(--canvas-alt));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--ff-heading);
            font-size: .875rem;
            font-weight: 800;
            color: var(--brand);
            margin-bottom: .625rem;
        }

        .mini-name {
            font-family: var(--ff-heading);
            font-size: .8125rem;
            font-weight: 700;
            color: var(--ink-900);
            margin-bottom: .25rem;
            line-height: 1.3
        }

        .mini-loc {
            font-size: .75rem;
            color: var(--ink-400);
            font-weight: 500
        }

        /* ══════════════════════════════════════════════
       SIDEBAR WIDGETS
    ══════════════════════════════════════════════ */
        .widget {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            overflow: hidden
        }

        .widget-head {
            padding: .875rem 1.125rem;
            border-bottom: 1.5px solid var(--border-soft);
            background: var(--canvas-alt);
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .widget-head-icon {
            width: 28px;
            height: 28px;
            border-radius: var(--r-sm);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center
        }

        .widget-head-title {
            font-family: var(--ff-heading);
            font-size: .8125rem;
            font-weight: 700;
            color: var(--ink-900)
        }

        .widget-body {
            padding: 1.125rem
        }

        .widget-video {
            aspect-ratio: 16/9;
            background: var(--ink-900);
            border-radius: var(--r-md);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-bottom: .875rem;
            cursor: pointer;
        }

        .widget-play {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand);
            box-shadow: 0 4px 16px rgba(0, 0, 0, .24);
            transition: transform .22s, box-shadow .22s;
        }

        .widget-video:hover .widget-play {
            transform: scale(1.1);
            box-shadow: 0 6px 24px rgba(0, 0, 0, .3)
        }

        .widget-video-label {
            position: absolute;
            bottom: 8px;
            left: 8px;
            right: 8px;
            font-family: var(--ff-heading);
            font-size: .6875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .75);
            background: rgba(15, 11, 26, .55);
            backdrop-filter: blur(6px);
            border-radius: var(--r-sm);
            padding: .25rem .5rem;
        }

        .widget-photo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: .375rem;
            margin-bottom: .875rem
        }

        .widget-photo-thumb {
            aspect-ratio: 1;
            border-radius: var(--r-sm);
            overflow: hidden;
            cursor: pointer;
            background: var(--canvas-alt);
        }

        .widget-photo-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .3s;
            display: block
        }

        .widget-photo-thumb:hover img {
            transform: scale(1.1)
        }

        .points-calc {
            background: var(--canvas-alt);
            border-radius: var(--r-lg);
            padding: 1rem;
            margin-bottom: .875rem
        }

        .points-bar {
            height: 6px;
            background: var(--border);
            border-radius: 99px;
            overflow: hidden;
            margin: .5rem 0
        }

        .points-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
            border-radius: 99px;
            width: 62%;
            transition: width .6s ease
        }

        .points-row {
            display: flex;
            justify-content: space-between;
            font-size: .78rem;
            color: var(--ink-400);
            font-family: var(--ff-heading);
            font-weight: 600
        }

        .review-incentive {
            background: linear-gradient(135deg, var(--brand-pale), var(--canvas-alt));
            border-radius: var(--r-lg);
            padding: 1rem;
            text-align: center;
            margin-bottom: .875rem
        }

        .review-incentive-icon {
            font-size: 1.75rem;
            margin-bottom: .375rem
        }

        .review-incentive p {
            font-size: .8125rem;
            color: var(--ink-500);
            margin-bottom: .625rem
        }

        /* ══════════════════════════════════════════════
       PHOTOS GALLERY VIEW
    ══════════════════════════════════════════════ */
        .gallery-notice {
            background: linear-gradient(135deg, rgba(131, 39, 210, .08), rgba(159, 69, 232, .05));
            border: 1.5px solid var(--brand-soft);
            border-radius: var(--r-lg);
            padding: 1rem 1.25rem;
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: .75rem;
        }

        .gallery-notice-icon {
            width: 36px;
            height: 36px;
            border-radius: var(--r-md);
            background: var(--brand-pale);
            color: var(--brand);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .gallery-notice-text h4 {
            font-family: var(--ff-heading);
            font-size: .875rem;
            font-weight: 700;
            color: var(--ink-900);
            margin-bottom: .2rem
        }

        .gallery-notice-text p {
            font-size: .8125rem;
            color: var(--ink-500)
        }

        .gallery-cats {
            display: flex;
            gap: .5rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem
        }

        .gallery-cat-btn {
            padding: .375rem .875rem;
            border-radius: var(--r-full);
            font-family: var(--ff-heading);
            font-size: .75rem;
            font-weight: 600;
            background: var(--surface);
            border: 1.5px solid var(--border);
            color: var(--ink-500);
            cursor: pointer;
            transition: all .15s
        }

        .gallery-cat-btn:hover {
            border-color: var(--brand-mid);
            color: var(--brand);
            background: var(--brand-pale)
        }

        .gallery-cat-btn.active {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand)
        }

        .gallery-section {
            margin-bottom: 2.5rem
        }

        .gallery-section-title {
            font-family: var(--ff-heading);
            font-size: .875rem;
            font-weight: 700;
            color: var(--ink-700);
            margin-bottom: .875rem;
            display: flex;
            align-items: center;
            gap: .5rem
        }

        .gallery-section-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border-soft)
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: .75rem
        }

        .gallery-img {
            aspect-ratio: 4/3;
            border-radius: var(--r-md);
            overflow: hidden;
            background: var(--canvas-alt);
            cursor: pointer;
            border: 1.5px solid var(--border-soft);
            position: relative;
        }

        .gallery-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .35s ease;
            display: block
        }

        .gallery-img:hover img {
            transform: scale(1.06)
        }

        .gallery-img-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 11, 26, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .25s;
            color: #fff;
        }

        .gallery-img:hover .gallery-img-overlay {
            background: rgba(131, 39, 210, .38)
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(15, 11, 26, .9);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(12px);
        }

        .lightbox.open {
            display: flex
        }

        .lightbox-img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: var(--r-lg);
            object-fit: contain;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .5)
        }

        .lightbox-close {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .12);
            border: 1.5px solid rgba(255, 255, 255, .2);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .18s
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, .22)
        }

        /* ══════════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════════ */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(8px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes fadeSlide {
            from {
                opacity: 0;
                transform: translateY(18px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1)
        }

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

        /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
        @media(max-width:960px) {
            .detail-body {
                grid-template-columns: 1fr
            }

            .detail-sidebar {
                position: static
            }

            .fac-grid {
                grid-template-columns: repeat(3, 1fr)
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr)
            }
        }

        @media(max-width:640px) {
            .school-hero {
                flex-direction: column
            }

            .school-hero-actions {
                flex-direction: row;
                flex-wrap: wrap;
                width: 100%
            }

            .facts-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .fee-summary-row {
                grid-template-columns: 1fr
            }

            .docs-grid {
                grid-template-columns: 1fr
            }

            .fac-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .photo-thumb-row {
                grid-template-columns: repeat(2, 1fr)
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .fee-breakdown {
                grid-template-columns: 1fr
            }
        }