        /* ========================================
           SEAT AVAILABILITY - COLOR PALETTE
           "Opportunity Alert" Theme
           Deep Navy + Coral Urgency + Lime Available
           ======================================== */
        :root {
            --sa-deep: #1a2744;
            --sa-navy: #2c3e5a;
            --sa-slate: #475569;
            --sa-coral: #e85d4c;
            --sa-coral-light: #f47a6c;
            --sa-coral-soft: rgba(232, 93, 76, 0.1);
            --sa-lime: #22c55e;
            --sa-lime-light: #4ade80;
            --sa-lime-soft: rgba(34, 197, 94, 0.1);
            --sa-amber: #f59e0b;
            --sa-amber-light: #fbbf24;
            --sa-amber-soft: rgba(245, 158, 11, 0.1);
            --sa-purple: #8b5cf6;
            --sa-cream: #fafbfc;
            --sa-stone: #f1f5f9;
            --sa-warm-white: #fffcfa;
            --sa-text: #1e293b;
            --sa-text-light: #64748b;
            --sa-border: rgba(26, 39, 68, 0.1);
            --sa-gradient-hero: linear-gradient(135deg, #1a2744 0%, #2c3e5a 40%, #3d5068 70%, #4a6080 100%);
            --sa-gradient-coral: linear-gradient(135deg, #e85d4c 0%, #f47a6c 100%);
            --sa-gradient-lime: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
            --sa-gradient-amber: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
        }

        /* ========================================
           HERO SECTION - SEAT AVAILABILITY
           ======================================== */
        .sa-hero {
            position: relative;
            min-height: 640px;
            background: var(--sa-gradient-hero);
            padding: 140px 60px 80px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .sa-hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, rgba(232, 93, 76, 0.15) 0%, transparent 60%);
            pointer-events: none;
            animation: saPulse 10s ease-in-out infinite;
        }
        .sa-hero::after {
            content: '';
            position: absolute;
            bottom: -25%;
            left: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }
        @keyframes saPulse {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.08); opacity: 0.25; }
        }
        .sa-hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Floating seat icons decoration */
        .sa-hero-seats {
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        .sa-seat-icon {
            position: absolute;
            opacity: 0.08;
            color: #fff;
        }
        .sa-seat-icon svg {
            width: 100%;
            height: 100%;
        }
        .sa-seat-icon.s1 { top: 12%; right: 20%; width: 80px; height: 80px; }
        .sa-seat-icon.s2 { top: 35%; right: 8%; width: 60px; height: 60px; opacity: 0.06; }
        .sa-seat-icon.s3 { top: 55%; right: 25%; width: 100px; height: 100px; opacity: 0.05; }
        .sa-seat-icon.s4 { top: 75%; right: 12%; width: 50px; height: 50px; opacity: 0.07; }
        .sa-seat-icon.s5 { top: 20%; right: 35%; width: 40px; height: 40px; opacity: 0.04; }

        .sa-hero-container {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 60px;
            align-items: center;
        }
        .sa-hero-content {
            max-width: 700px;
        }
        .sa-hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding: 8px 16px 8px 10px;
            background: rgba(255,255,255,0.08);
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .sa-hero-eyebrow-pulse {
            width: 10px;
            height: 10px;
            background: var(--sa-lime);
            border-radius: 50%;
            animation: livePulse 2s ease-in-out infinite;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
        }
        @keyframes livePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
            50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
        }
        .sa-hero-eyebrow span {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        .sa-hero-title {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
            margin: 0 0 24px;
        }
        .sa-hero-title .accent {
            background: var(--sa-gradient-coral);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .sa-hero-subtitle {
            font-family: var(--font-body);
            font-size: 1.15rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin: 0 0 32px;
            max-width: 580px;
        }
        .sa-hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .sa-hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .sa-hero-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        .sa-hero-btn.primary {
            background: var(--sa-gradient-coral);
            color: #fff;
            border: none;
            box-shadow: 0 4px 20px rgba(232, 93, 76, 0.3);
        }
        .sa-hero-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(232, 93, 76, 0.4);
        }
        .sa-hero-btn.primary:hover svg {
            transform: translateX(3px);
        }
        .sa-hero-btn.secondary {
            background: rgba(255,255,255,0.1);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .sa-hero-btn.secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
        }

        /* Hero Stats Panel */
        .sa-hero-stats {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sa-hero-stats-header {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .sa-hero-stats-header svg {
            width: 24px;
            height: 24px;
            stroke: var(--sa-coral-light);
        }
        .sa-hero-stats-header span {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
        }
        .sa-stat-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: rgba(255,255,255,0.03);
            border-radius: 12px;
            transition: background 0.3s ease;
        }
        .sa-stat-item:hover {
            background: rgba(255,255,255,0.06);
        }
        .sa-stat-indicator {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .sa-stat-indicator svg {
            width: 24px;
            height: 24px;
        }
        .sa-stat-indicator.open {
            background: var(--sa-lime-soft);
        }
        .sa-stat-indicator.open svg {
            stroke: var(--sa-lime);
        }
        .sa-stat-indicator.limited {
            background: var(--sa-amber-soft);
        }
        .sa-stat-indicator.limited svg {
            stroke: var(--sa-amber);
        }
        .sa-stat-indicator.waitlist {
            background: rgba(139, 92, 246, 0.15);
        }
        .sa-stat-indicator.waitlist svg {
            stroke: var(--sa-purple);
        }
        .sa-stat-indicator.closed {
            background: var(--sa-coral-soft);
        }
        .sa-stat-indicator.closed svg {
            stroke: var(--sa-coral);
        }
        .sa-stat-info {
            flex: 1;
        }
        .sa-stat-label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }
        .sa-stat-value {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }
        .sa-stat-value span {
            font-size: 0.85rem;
            font-weight: 500;
            color: rgba(255,255,255,0.5);
            margin-left: 4px;
        }
        .sa-hero-stats-footer {
            padding-top: 16px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }
        .sa-hero-stats-footer span {
            font-family: var(--font-body);
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
        }
        .sa-hero-stats-footer strong {
            color: var(--sa-lime-light);
            font-weight: 600;
        }

        /* Hero Responsive */
        @media (max-width: 1024px) {
            .sa-hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .sa-hero-stats {
                max-width: 500px;
            }
            .sa-hero-seats {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .sa-hero {
                padding: 120px 24px 60px;
                min-height: auto;
            }
            .sa-hero-title {
                font-size: 2.2rem;
            }
            .sa-hero-subtitle {
                font-size: 1rem;
            }
            .sa-hero-actions {
                flex-direction: column;
            }
            .sa-hero-btn {
                justify-content: center;
            }
            .sa-hero-stats {
                padding: 24px;
            }
            .sa-stat-item {
                padding: 12px;
            }
            .sa-stat-value {
                font-size: 1.25rem;
            }
        }

        /* ========================================
           SECTION 1 - HOW SEAT AVAILABILITY WORKS
           ======================================== */
        .sa-how-it-works {
            padding: 100px 60px;
            background: linear-gradient(135deg, #fefefe 0%, var(--sa-cream) 50%, #fff9f7 100%);
            position: relative;
            overflow: hidden;
        }
        .sa-how-it-works::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(232, 93, 76, 0.04) 0%, transparent 70%);
            border-radius: 50%;
        }
        .sa-how-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .sa-how-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .sa-how-content {
            padding-right: 20px;
        }
        .sa-section-header {
            text-align: left;
            margin-bottom: 36px;
        }
        .sa-section-header.centered {
            text-align: center;
        }
        .sa-section-header.centered .sa-section-subtitle {
            margin-left: auto;
            margin-right: auto;
        }
        .sa-section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            background: var(--sa-coral-soft);
            border-radius: 50px;
            margin-bottom: 20px;
        }
        .sa-section-eyebrow svg {
            width: 16px;
            height: 16px;
            stroke: var(--sa-coral);
        }
        .sa-section-eyebrow span {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--sa-coral);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .sa-section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--sa-deep);
            margin: 0 0 16px;
            line-height: 1.2;
        }
        .sa-section-subtitle {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: var(--sa-text-light);
            max-width: 650px;
            line-height: 1.7;
        }
        /* Accordion Styles */
        .sa-accordion {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .sa-accordion-item {
            background: #fff;
            border-radius: 16px;
            border: 1px solid var(--sa-border);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 12px rgba(26, 39, 68, 0.04);
        }
        .sa-accordion-item:hover {
            border-color: rgba(232, 93, 76, 0.3);
            box-shadow: 0 8px 30px rgba(26, 39, 68, 0.08);
        }
        .sa-accordion-item.active {
            border-color: var(--sa-coral);
            box-shadow: 0 12px 40px rgba(232, 93, 76, 0.12);
        }
        .sa-accordion-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .sa-accordion-item.active .sa-accordion-header {
            background: linear-gradient(135deg, rgba(232, 93, 76, 0.03) 0%, rgba(244, 122, 108, 0.02) 100%);
        }
        .sa-step-number {
            width: 44px;
            height: 44px;
            min-width: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        .sa-accordion-item:nth-child(1) .sa-step-number {
            background: var(--sa-lime-soft);
            color: var(--sa-lime);
        }
        .sa-accordion-item:nth-child(2) .sa-step-number {
            background: var(--sa-amber-soft);
            color: var(--sa-amber);
        }
        .sa-accordion-item:nth-child(3) .sa-step-number {
            background: rgba(139, 92, 246, 0.1);
            color: var(--sa-purple);
        }
        .sa-accordion-title-wrap {
            flex: 1;
        }
        .sa-step-title {
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--sa-deep);
            margin: 0;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        .sa-accordion-item.active .sa-step-title {
            color: var(--sa-coral);
        }
        .sa-accordion-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 50%;
            background: var(--sa-stone);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }
        .sa-accordion-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--sa-text-light);
            transition: all 0.4s ease;
        }
        .sa-accordion-item.active .sa-accordion-icon {
            background: var(--sa-coral);
            transform: rotate(180deg);
        }
        .sa-accordion-item.active .sa-accordion-icon svg {
            stroke: #fff;
        }
        .sa-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .sa-accordion-item.active .sa-accordion-body {
            max-height: 300px;
        }
        .sa-accordion-content {
            padding: 0 24px 24px 84px;
        }
        .sa-step-desc {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--sa-text-light);
            line-height: 1.8;
            margin: 0;
        }
        .sa-how-cta {
            margin-top: 32px;
        }
        /* Image Side */
        .sa-how-image {
            position: relative;
        }
        .sa-how-image-wrap {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(26, 39, 68, 0.15);
        }
        .sa-how-image-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(26, 39, 68, 0.4) 100%);
            z-index: 1;
        }
        .sa-how-image-wrap img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }
        .sa-how-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            z-index: 2;
        }
        .sa-how-image-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .sa-how-image-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            border-radius: 14px;
            background: var(--sa-gradient-coral);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sa-how-image-icon svg {
            width: 28px;
            height: 28px;
            stroke: #fff;
        }
        .sa-how-image-text h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            color: var(--sa-deep);
            margin: 0 0 4px;
        }
        .sa-how-image-text p {
            font-family: var(--font-body);
            font-size: 0.85rem;
            color: var(--sa-text-light);
            margin: 0;
        }
        /* Floating Decorations */
        .sa-how-float-1 {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: var(--sa-gradient-coral);
            border-radius: 20px;
            transform: rotate(15deg);
            opacity: 0.1;
        }
        .sa-how-float-2 {
            position: absolute;
            bottom: 60px;
            left: -30px;
            width: 60px;
            height: 60px;
            background: var(--sa-lime);
            border-radius: 50%;
            opacity: 0.15;
        }
        .sa-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .sa-btn svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        .sa-btn-primary {
            background: var(--sa-gradient-coral);
            color: #fff;
            box-shadow: 0 6px 25px rgba(232, 93, 76, 0.3);
        }
        .sa-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(232, 93, 76, 0.4);
            color: #fff;
        }
        .sa-btn-primary:hover svg {
            transform: translateX(4px);
        }
        .sa-btn-secondary {
            background: #fff;
            color: var(--sa-deep);
            border: 2px solid var(--sa-border);
        }
        .sa-btn-secondary:hover {
            border-color: var(--sa-coral);
            color: var(--sa-coral);
        }
        @media (max-width: 1024px) {
            .sa-how-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .sa-how-content {
                padding-right: 0;
                order: 2;
            }
            .sa-how-image {
                order: 1;
            }
            .sa-section-header {
                text-align: center;
            }
            .sa-how-cta {
                text-align: center;
            }
        }
        @media (max-width: 768px) {
            .sa-how-it-works {
                padding: 60px 24px;
            }
            .sa-section-title {
                font-size: 1.8rem;
            }
            .sa-how-image-wrap img {
                height: 350px;
            }
            .sa-accordion-content {
                padding-left: 24px;
            }
        }

        /* ========================================
           SECTION 2 - PROGRAM AVAILABILITY DASHBOARD
           ======================================== */
        .sa-dashboard {
            padding: 100px 60px;
            background: #fff;
        }
        .sa-dashboard-container {
            max-width: 1280px;
            margin: 0 auto;
        }
        /* Filter Bar */
        .sa-filter-bar {
            background: var(--sa-stone);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
            border: 1px solid var(--sa-border);
        }
        .sa-filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: flex-end;
        }
        .sa-filter-group {
            flex: 1;
            min-width: 160px;
        }
        .sa-filter-group label {
            display: block;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--sa-text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        .sa-filter-select {
            width: 100%;
            padding: 12px 16px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--sa-text);
            background: #fff;
            border: 1px solid var(--sa-border);
            border-radius: 10px;
            appearance: none;
            cursor: pointer;
            transition: all 0.3s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
        }
        .sa-filter-select:hover {
            border-color: var(--sa-coral);
        }
        .sa-filter-select:focus {
            outline: none;
            border-color: var(--sa-coral);
            box-shadow: 0 0 0 3px var(--sa-coral-soft);
        }
        .sa-filter-actions {
            display: flex;
            gap: 12px;
        }
        .sa-filter-btn {
            padding: 12px 24px;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .sa-filter-btn svg {
            width: 16px;
            height: 16px;
        }
        .sa-filter-btn.apply {
            background: var(--sa-deep);
            color: #fff;
        }
        .sa-filter-btn.apply:hover {
            background: var(--sa-navy);
        }
        .sa-filter-btn.reset {
            background: transparent;
            color: var(--sa-text-light);
            border: 1px solid var(--sa-border);
        }
        .sa-filter-btn.reset:hover {
            border-color: var(--sa-coral);
            color: var(--sa-coral);
        }
        /* Results Summary */
        .sa-results-summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding: 0 4px;
        }
        .sa-results-count {
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--sa-text-light);
        }
        .sa-results-count strong {
            color: var(--sa-deep);
            font-weight: 600;
        }
        .sa-view-toggle {
            display: flex;
            gap: 8px;
        }
        .sa-view-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--sa-border);
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .sa-view-btn svg {
            width: 18px;
            height: 18px;
            stroke: var(--sa-text-light);
        }
        .sa-view-btn.active,
        .sa-view-btn:hover {
            background: var(--sa-deep);
            border-color: var(--sa-deep);
        }
        .sa-view-btn.active svg,
        .sa-view-btn:hover svg {
            stroke: #fff;
        }
        /* Programs Table */
        .sa-programs-table {
            background: #fff;
            border-radius: 16px;
            border: 1px solid var(--sa-border);
            overflow: hidden;
        }
        .sa-table-header {
            display: grid;
            grid-template-columns: 2fr 0.8fr 1fr 1fr 1fr 0.8fr 120px;
            gap: 16px;
            padding: 16px 24px;
            background: var(--sa-stone);
            border-bottom: 1px solid var(--sa-border);
        }
        .sa-table-header span {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--sa-text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .sa-table-row {
            display: grid;
            grid-template-columns: 2fr 0.8fr 1fr 1fr 1fr 0.8fr 120px;
            gap: 16px;
            padding: 20px 24px;
            align-items: center;
            border-bottom: 1px solid var(--sa-border);
            transition: all 0.3s ease;
        }
        .sa-table-row:last-child {
            border-bottom: none;
        }
        .sa-table-row:hover {
            background: rgba(232, 93, 76, 0.02);
        }
        .sa-program-name {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--sa-deep);
        }
        .sa-program-cell {
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--sa-text);
        }
        .sa-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .sa-status-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }
        .sa-status-badge.open {
            background: var(--sa-lime-soft);
            color: #16a34a;
        }
        .sa-status-badge.open .dot {
            background: var(--sa-lime);
        }
        .sa-status-badge.limited {
            background: var(--sa-amber-soft);
            color: #d97706;
        }
        .sa-status-badge.limited .dot {
            background: var(--sa-amber);
        }
        .sa-status-badge.waitlist {
            background: rgba(249, 115, 22, 0.1);
            color: #ea580c;
        }
        .sa-status-badge.waitlist .dot {
            background: #f97316;
        }
        .sa-status-badge.closed {
            background: rgba(100, 116, 139, 0.1);
            color: var(--sa-slate);
        }
        .sa-status-badge.closed .dot {
            background: var(--sa-slate);
        }
        .sa-status-badge.rolling {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }
        .sa-status-badge.rolling .dot {
            background: #3b82f6;
        }
        .sa-view-program {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--sa-coral);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .sa-view-program svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .sa-view-program:hover {
            color: var(--sa-coral-light);
        }
        .sa-view-program:hover svg {
            transform: translateX(3px);
        }
        /* Pagination */
        .sa-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 32px;
        }
        .sa-page-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 1px solid var(--sa-border);
            background: #fff;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: var(--sa-text);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sa-page-btn:hover,
        .sa-page-btn.active {
            background: var(--sa-deep);
            border-color: var(--sa-deep);
            color: #fff;
        }
        .sa-page-btn svg {
            width: 16px;
            height: 16px;
        }
        @media (max-width: 1024px) {
            .sa-table-header {
                display: none;
            }
            .sa-table-row {
                display: flex;
                flex-direction: column;
                gap: 12px;
                padding: 20px;
            }
            .sa-program-name {
                font-size: 1.05rem;
            }
            .sa-program-cell {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 8px 0;
                border-bottom: 1px solid var(--sa-border);
            }
            .sa-program-cell:last-child {
                border-bottom: none;
                justify-content: flex-end;
                padding-top: 12px;
            }
            .sa-program-cell::before {
                content: attr(data-label) ": ";
                font-weight: 600;
                color: var(--sa-text-light);
                font-size: 0.75rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                flex-shrink: 0;
            }
            .sa-program-cell:last-child::before {
                content: none;
            }
        }
        @media (max-width: 768px) {
            .sa-dashboard {
                padding: 60px 24px;
            }
            .sa-filter-row {
                flex-direction: column;
            }
            .sa-filter-group {
                width: 100%;
            }
            .sa-filter-actions {
                width: 100%;
                justify-content: stretch;
            }
            .sa-filter-btn {
                flex: 1;
                justify-content: center;
            }
        }

        /* ========================================
           SECTION 4 - PROGRAM CLOSED GUIDANCE
           ======================================== */
        .sa-closed-guidance {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--sa-cream) 0%, #fff 100%);
        }
        .sa-closed-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .sa-closed-box {
            background: #fff;
            border-radius: 24px;
            padding: 60px;
            border: 1px solid var(--sa-border);
            box-shadow: 0 20px 60px rgba(26, 39, 68, 0.06);
            position: relative;
            overflow: hidden;
        }
        .sa-closed-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--sa-gradient-amber);
        }
        .sa-closed-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .sa-closed-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--sa-amber-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        .sa-closed-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--sa-amber);
        }
        .sa-closed-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--sa-deep);
            margin: 0 0 16px;
        }
        .sa-closed-desc {
            font-family: var(--font-body);
            font-size: 1.1rem;
            color: var(--sa-text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .sa-options-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 48px;
        }
        .sa-option-card {
            background: var(--sa-stone);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .sa-option-card:hover {
            background: #fff;
            border-color: var(--sa-coral);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(232, 93, 76, 0.1);
        }
        .sa-option-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: all 0.3s ease;
        }
        .sa-option-card:hover .sa-option-icon {
            background: var(--sa-coral-soft);
        }
        .sa-option-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--sa-deep);
            transition: all 0.3s ease;
        }
        .sa-option-card:hover .sa-option-icon svg {
            stroke: var(--sa-coral);
        }
        .sa-option-title {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--sa-deep);
            margin: 0;
            line-height: 1.4;
        }
        .sa-closed-cta {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--sa-border);
        }
        .sa-closed-cta p {
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--sa-text-light);
            margin: 0 0 20px;
        }
        .sa-closed-cta p strong {
            color: var(--sa-deep);
        }
        .sa-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        @media (max-width: 900px) {
            .sa-options-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .sa-closed-guidance {
                padding: 60px 24px;
            }
            .sa-closed-box {
                padding: 40px 24px;
            }
            .sa-options-grid {
                grid-template-columns: 1fr;
            }
            .sa-closed-title {
                font-size: 1.5rem;
            }
        }

        /* ========================================
           PAGE-SPECIFIC STYLES
           Add custom styles for this page here
           ======================================== */

        /* ========================================
           SECTION 5 - UNDERSTANDING LATE ADMISSIONS
           ======================================== */
        .sa-late-admissions {
            padding: 100px 60px;
            background: #fff;
        }
        .sa-late-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .sa-late-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .sa-late-left {
            background: linear-gradient(135deg, var(--sa-stone) 0%, #fff 100%);
            border-radius: 24px;
            padding: 48px;
            border: 1px solid var(--sa-border);
        }
        .sa-late-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--sa-amber-soft);
            border-radius: 50px;
            margin-bottom: 20px;
        }
        .sa-late-eyebrow svg {
            width: 14px;
            height: 14px;
            stroke: var(--sa-amber);
        }
        .sa-late-eyebrow span {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            color: #b45309;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .sa-late-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            color: var(--sa-deep);
            margin: 0 0 20px;
            line-height: 1.3;
        }
        .sa-late-intro {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: var(--sa-text-light);
            line-height: 1.8;
            margin: 0 0 28px;
        }
        .sa-late-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .sa-late-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--sa-text);
            line-height: 1.6;
        }
        .sa-late-list li svg {
            width: 20px;
            height: 20px;
            min-width: 20px;
            stroke: var(--sa-lime);
            margin-top: 2px;
        }
        .sa-late-right {
            background: var(--sa-deep);
            border-radius: 24px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }
        .sa-late-right::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        .sa-notes-title {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .sa-notes-title svg {
            width: 20px;
            height: 20px;
            stroke: var(--sa-amber);
        }
        .sa-notes-list {
            list-style: none;
            padding: 0;
            margin: 0 0 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .sa-notes-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.85);
            line-height: 1.6;
        }
        .sa-notes-list li .note-icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sa-notes-list li svg {
            width: 14px;
            height: 14px;
            stroke: var(--sa-amber);
        }
        .sa-late-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--sa-gradient-amber);
            color: #fff;
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
        }
        .sa-late-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
            color: #fff;
        }
        .sa-late-cta-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .sa-late-cta-btn:hover svg {
            transform: translateX(4px);
        }
        @media (max-width: 900px) {
            .sa-late-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }
        @media (max-width: 768px) {
            .sa-late-admissions {
                padding: 60px 24px;
            }
            .sa-late-left, .sa-late-right {
                padding: 32px 24px;
            }
            .sa-late-title {
                font-size: 1.6rem;
            }
        }

        /* ========================================
           SECTION 6 - ROLLING INTAKE PROGRAMS
           ======================================== */
        .sa-rolling {
            padding: 100px 60px;
            background: linear-gradient(180deg, var(--sa-cream) 0%, #fff 100%);
        }
        .sa-rolling-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .sa-rolling-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .sa-rolling-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 18px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50px;
            margin-bottom: 20px;
        }
        .sa-rolling-eyebrow svg {
            width: 16px;
            height: 16px;
            stroke: #3b82f6;
        }
        .sa-rolling-eyebrow span {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            color: #3b82f6;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .sa-rolling-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--sa-deep);
            margin: 0 0 16px;
            line-height: 1.3;
        }
        .sa-rolling-subtitle {
            font-family: var(--font-body);
            font-size: 1.05rem;
            color: var(--sa-text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }
        .sa-rolling-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .sa-rolling-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px;
            border: 1px solid var(--sa-border);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .sa-rolling-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .sa-rolling-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(26, 39, 68, 0.1);
            border-color: rgba(59, 130, 246, 0.3);
        }
        .sa-rolling-card:hover::before {
            opacity: 1;
        }
        .sa-rolling-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50px;
            margin-bottom: 20px;
        }
        .sa-rolling-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #3b82f6;
            animation: pulse 2s infinite;
        }
        .sa-rolling-badge span {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 700;
            color: #3b82f6;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .sa-rolling-name {
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--sa-deep);
            margin: 0 0 16px;
            line-height: 1.4;
        }
        .sa-rolling-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
        }
        .sa-rolling-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-body);
            font-size: 0.85rem;
            color: var(--sa-text-light);
        }
        .sa-rolling-meta-item svg {
            width: 16px;
            height: 16px;
            stroke: var(--sa-text-light);
        }
        .sa-rolling-meta-item strong {
            color: var(--sa-text);
            font-weight: 600;
        }
        .sa-rolling-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            color: #3b82f6;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .sa-rolling-cta svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }
        .sa-rolling-cta:hover {
            color: var(--sa-coral);
        }
        .sa-rolling-cta:hover svg {
            transform: translateX(4px);
        }
        @media (max-width: 1024px) {
            .sa-rolling-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .sa-rolling {
                padding: 60px 24px;
            }
            .sa-rolling-grid {
                grid-template-columns: 1fr;
            }
            .sa-rolling-title {
                font-size: 1.8rem;
            }
        }

        /* ========================================
           SECTION 7 - FINAL CTA
           ======================================== */
        .sa-final-cta {
            padding: 100px 60px;
            background: var(--sa-deep);
            position: relative;
            overflow: hidden;
        }
        .sa-final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(232, 93, 76, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
        }
        .sa-final-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .sa-final-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
        }
        .sa-final-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--sa-coral);
        }
        .sa-final-title {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 20px;
            line-height: 1.2;
        }
        .sa-final-title span {
            background: var(--sa-gradient-coral);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .sa-final-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .sa-final-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .sa-final-btn svg {
            width: 18px;
            height: 18px;
        }
        .sa-final-btn.primary {
            background: var(--sa-gradient-coral);
            color: #fff;
            box-shadow: 0 8px 30px rgba(232, 93, 76, 0.4);
        }
        .sa-final-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(232, 93, 76, 0.5);
            color: #fff;
        }
        .sa-final-btn.secondary {
            background: rgba(255,255,255,0.1);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .sa-final-btn.secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
            color: #fff;
        }
        .sa-final-btn.tertiary {
            background: transparent;
            color: rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.15);
        }
        .sa-final-btn.tertiary:hover {
            color: #fff;
            border-color: rgba(255,255,255,0.3);
        }
        .sa-final-note {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            padding: 12px 24px;
            background: rgba(255,255,255,0.05);
            border-radius: 50px;
        }
        .sa-final-note svg {
            width: 16px;
            height: 16px;
            stroke: var(--sa-amber);
        }
        @media (max-width: 768px) {
            .sa-final-cta {
                padding: 60px 24px;
            }
            .sa-final-title {
                font-size: 2rem;
            }
            .sa-final-buttons {
                flex-direction: column;
                align-items: center;
            }
            .sa-final-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }
