:root {
            --brand-gold: #C8A25C;
            --brand-gold-light: #D4B97A;
            --brand-gold-dark: #B08D3E;
            --brand-green: #16A34A;
            --brand-green-dark: #15803D;
            --brand-green-light: #DCFCE7;
            --text-primary: #111827;
            --text-secondary: #4B5563;
            --text-muted: #9CA3AF;
            --bg-surface: #FFFFFF;
            --bg-elevated: #F9FAFB;
            --bg-cream: #FDFBF7;
            --border-subtle: #E5E7EB;
            --border-light: #F3F4F6;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.04), 0 2px 4px -2px rgba(0,0,0,0.03);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.03);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.03);
            --shadow-brand: 0 8px 30px rgba(200,162,92,0.18);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-full: 9999px;
        }

        * { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }

        body {
            background-color: var(--bg-cream);
            color: var(--text-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #C8A25C 0%, #B08D3E 50%, #9A7A32 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent, var(--bg-cream));
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.25);
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 8px 16px;
            border-radius: var(--radius-full);
            transition: all 0.3s ease;
        }

        .hero-badge:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-1px);
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: #FFFFFF;
            text-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .hero-subtitle {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.92);
            max-width: 520px;
            font-weight: 400;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #FFFFFF;
            color: var(--text-primary);
            font-size: 1rem;
            font-weight: 700;
            padding: 18px 36px;
            border-radius: var(--radius-md);
            border: none;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .hero-cta::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(200,162,92,0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 2px 6px rgba(0,0,0,0.1);
            color: var(--text-primary);
        }

        .hero-cta:hover::after { opacity: 1; }

        .hero-cta i {
            transition: transform 0.3s ease;
        }

        .hero-cta:hover i {
            transform: translateX(3px);
        }

        .hero-image {
            border-radius: var(--radius-xl);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
        }

        /* Class Finder Card */
        .finder-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            position: relative;
            z-index: 10;
        }

        .finder-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-gold), var(--brand-gold-light), var(--brand-gold));
            border-radius: var(--radius-full);
        }

        .finder-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .finder-label .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: var(--brand-gold);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 800;
            border-radius: 50%;
        }

        .finder-select {
            width: 100%;
            padding: 14px 18px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-primary);
            background: var(--bg-elevated);
            border: 2px solid var(--border-light);
            border-radius: var(--radius-md);
            outline: none;
            transition: all 0.2s ease;
            appearance: none;
            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='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 44px;
        }

        .finder-select:focus {
            border-color: var(--brand-gold);
            background-color: var(--bg-surface);
            box-shadow: 0 0 0 4px rgba(200,162,92,0.12);
        }

        .finder-select:hover {
            border-color: var(--border-subtle);
        }

        .date-list {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--bg-surface);
        }

        .date-item {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-light);
            transition: all 0.2s ease;
            background: var(--bg-surface);
        }

        .date-item:last-child { border-bottom: none; }

        .date-item:hover {
            background: var(--bg-elevated);
        }

        .date-time {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .date-time .day { color: var(--brand-gold-dark); }
        .date-time .time { color: var(--text-muted); font-weight: 400; }

        .date-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .date-price .urgency {
            font-size: 0.8rem;
            font-weight: 600;
            color: #DC2626;
            background: #FEF2F2;
            padding: 4px 10px;
            border-radius: var(--radius-full);
        }

        .enrol-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-green);
            color: #FFFFFF;
            font-size: 0.875rem;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            border: none;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(22,163,74,0.3);
        }

        .enrol-btn:hover {
            background: var(--brand-green-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(22,163,74,0.4);
            color: #FFFFFF;
        }

        .enrol-btn i { transition: transform 0.2s ease; }
        .enrol-btn:hover i { transform: translateX(3px); }

        .load-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-surface);
            color: var(--brand-green);
            font-size: 0.9rem;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: var(--radius-md);
            border: 1.5px solid var(--border-subtle);
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .load-more-btn:hover {
            border-color: var(--brand-green);
            background: var(--brand-green-light);
            color: var(--brand-green-dark);
        }

        .custom-date-box {
            background: linear-gradient(135deg, var(--bg-elevated), #F3F4F6);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
        }

        .custom-date-input {
            padding: 10px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-primary);
            background: var(--bg-surface);
            border: 2px solid var(--border-subtle);
            border-radius: var(--radius-md);
            outline: none;
            transition: all 0.2s ease;
        }

        .custom-date-input:focus {
            border-color: var(--brand-gold);
            box-shadow: 0 0 0 4px rgba(200,162,92,0.12);
        }

        /* Also Available Section */
        .also-available {
            background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
        }

        .course-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-surface);
            color: var(--text-primary);
            font-size: 0.9rem;
            font-weight: 600;
            padding: 14px 24px;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--border-subtle);
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .course-chip:hover {
            border-color: var(--brand-gold);
            box-shadow: var(--shadow-md), var(--shadow-brand);
            transform: translateY(-2px);
            color: var(--text-primary);
        }

        .course-chip i { transition: transform 0.2s ease; }
        .course-chip:hover i { transform: translateX(3px); }

        /* Course Cards */
        .course-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 32px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-green), #22C55E);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .course-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--border-subtle);
        }

        .course-card:hover::before { opacity: 1; }

        .course-code {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--brand-green);
            letter-spacing: -0.01em;
        }

        .course-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-green);
            letter-spacing: -0.02em;
        }

        .course-price .from {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .course-duration {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
            background: var(--bg-elevated);
            padding: 6px 12px;
            border-radius: var(--radius-full);
        }

        .course-desc {
            font-size: 0.95rem;
            line-height: 1.65;
            color: var(--text-secondary);
        }

        .included-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .included-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .included-item .check-icon {
            width: 20px;
            height: 20px;
            min-width: 20px;
            background: var(--brand-green-light);
            color: var(--brand-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        /* Reviews */
        .review-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 28px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        .star-rating {
            display: flex;
            gap: 3px;
            margin-bottom: 16px;
        }

        .star-rating i {
            color: #F59E0B;
            font-size: 0.875rem;
        }

        .review-text {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--text-secondary);
            font-style: italic;
            flex-grow: 1;
        }

        .review-author {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-top: 16px;
        }

        .review-source {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        /* Guides */
        .guides-section {
            background: linear-gradient(180deg, #F9FAFB 0%, #F3F4F6 100%);
        }

        .guide-card {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 28px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .guide-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--border-subtle);
        }

        .guide-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--brand-gold-dark);
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .guide-desc {
            font-size: 0.875rem;
            line-height: 1.65;
            color: var(--text-secondary);
            flex-grow: 1;
        }

        .guide-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--brand-gold-dark);
            margin-top: 16px;
            transition: gap 0.2s ease;
        }

        .guide-card:hover .guide-link {
            gap: 10px;
        }

        /* FAQ */
        .faq-section {
            background: linear-gradient(135deg, #C8A25C 0%, #B08D3E 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-primary);
            list-style: none;
            transition: background 0.2s ease;
        }

        .faq-summary::-webkit-details-marker { display: none; }

        .faq-summary:hover {
            background: var(--bg-elevated);
        }

        .faq-chevron {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        details[open] .faq-chevron {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            line-height: 1.7;
            color: var(--text-secondary);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Locations */
        .location-card {
            display: flex;
            gap: 16px;
            height: 100%;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 24px;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .location-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--border-subtle);
        }

        .location-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
            color: #FFFFFF;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .location-name {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .location-address {
            font-size: 0.85rem;
            line-height: 1.5;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--brand-green);
            transition: gap 0.2s ease;
        }

        .location-card:hover .location-link {
            gap: 8px;
        }

        /* Other Courses */
        .other-course {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            background: var(--bg-surface);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 18px 24px;
            text-decoration: none;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
        }

        .other-course:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: var(--border-subtle);
        }

        .other-course-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .other-course i {
            color: var(--text-muted);
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .other-course:hover i {
            transform: translateX(4px);
            color: var(--brand-gold);
        }

        /* Section Titles */
        .section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* View All Link */
        .view-all {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--brand-gold-dark);
            text-decoration: none;
            transition: gap 0.2s ease;
        }

        .view-all:hover {
            gap: 10px;
            color: var(--brand-gold);
        }

        /* Container overrides */
        .container-narrow {
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
        }

        .container-wide {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Smooth scroll */
        html { scroll-behavior: smooth; }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-image { display: none; }
            .container-narrow { max-width: 100%; padding: 0 20px; }
        }

        @media (max-width: 767px) {
            .date-item { flex-direction: column; align-items: flex-start; }
            .enrol-btn { width: 100%; justify-content: center; }
        }