/*
 * Creative Learning Canvas School - TEAL THEME
 * Unique Dark Teal/Green Theme with Premium Animations
 * Inspired by boss-ai-school React design
 * Color Scheme: Deep Teal (#15282d), Soft Orange (#d97757), Muted Gold (#e5c165)
 */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Deep Teal Theme */
    --color-primary: #15282d;
    --color-primary-light: #1a343b;
    --color-primary-dark: #0e1c20;
    --color-primary-card: #1d3a42;
    
    /* Accent Colors - Terracotta/Soft Orange */
    --color-accent: #d97757;
    --color-accent-dark: #c66647;
    --color-accent-light: #e89070;
    --color-soft-orange: #c07b56;
    
    /* Gold/Yellow */
    --color-gold: #e5c165;
    --color-yellow: #d4b055;
    
    /* Greens */
    --color-teal-light: #4fd1c5;
    --color-green-accent: #2d4b38;
    
    /* Text Colors */
    --color-text-white: #f0ebe1;
    --color-text-light: #E2E8F0;
    --color-text-slate: #a0b3b8;
    --color-text-muted: #6b8085;
    
    /* Overlay Colors */
    --overlay-light: rgba(255, 255, 255, 0.08);
    --overlay-medium: rgba(255, 255, 255, 0.12);
    --overlay-dark: rgba(21, 40, 45, 0.9);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(12px);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.3);
    --shadow-orange: 0 12px 40px rgba(192, 123, 86, 0.3);
    --shadow-glow: 0 0 40px rgba(217, 119, 87, 0.2);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;
    
    /* Gray Scale - Required for Admin Dashboard Light Theme */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

/* ===== Global Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-primary);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== Canvas Texture Overlay ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.03;
    mix-blend-mode: overlay;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* ===== UNIQUE ANIMATIONS - Boss AI School Style ===== */

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0) rotate(6deg); }
    50% { transform: translateY(-15px) rotate(6deg); }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
}

/* Gradient Animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Spin Animation */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pulse Glow */
@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1);
        filter: blur(60px);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05);
        filter: blur(80px);
    }
}

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce Slow */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Animation Classes */
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 7s ease-in-out infinite; }
.animate-float-gentle { animation: float-gentle 8s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 4s infinite; }
.animate-bounce-slow { animation: bounce-slow 3s ease-in-out infinite; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }
.animate-spin-slow { animation: spin-slow 80s linear infinite; }

.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-600 { animation-delay: 0.6s; }
.animation-delay-1000 { animation-delay: 1s; }
.animation-delay-2000 { animation-delay: 2s; }

/* ===== Glass Card Effects ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.glass-card-strong {
    background: rgba(29, 58, 66, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-white);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    color: var(--color-text-slate);
    line-height: 1.8;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 3rem; }
}

/* ===== Page Header ===== */
/* Main content wrapper - account for fixed header + top bar */
main#main-content {
    padding-top: 120px; /* Height of fixed header + top bar */
}

@media (max-width: 768px) {
    main#main-content {
        padding-top: 80px; /* Top bar hidden on mobile */
    }
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(217,119,87,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-content {
    text-align: left;
    max-width: 800px;
}

.page-header h1 {
    color: var(--color-text-white);
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-header p {
    color: var(--color-text-slate);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.page-header .breadcrumb a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.page-header .breadcrumb a:hover {
    color: var(--color-accent-light);
}

.page-header .breadcrumb span {
    color: var(--color-text-muted);
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.font-serif { font-family: var(--font-serif); }
.text-accent { color: var(--color-accent); }
.text-gold { color: var(--color-gold); }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .lg\:flex-row { flex-direction: row; }
}

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

/* ===== BUTTONS - Premium Style ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-soft-orange), var(--color-accent-light));
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    box-shadow: 0 16px 50px rgba(192, 123, 86, 0.4);
}

.btn-white {
    background: white;
    color: var(--color-accent-dark);
}

.btn-white:hover {
    background: #FFF5EB;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1.25rem 2.75rem;
    font-size: 1.125rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--color-primary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.top-bar-item:hover {
    color: var(--color-accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition-normal);
}

.top-bar-social:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ===== HEADER/NAVBAR - Sticky Glass ===== */
.header {
    position: fixed;
    top: 40px; /* Account for top bar */
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(21, 40, 45, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-slow);
}

@media (max-width: 768px) {
    .header {
        top: 0; /* Top bar hidden on mobile */
    }
}

.header.scrolled {
    padding: 0.6rem 0;
    background: rgba(21, 40, 45, 0.95);
    box-shadow: var(--shadow-lg);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo:hover .logo-icon {
    transform: rotate(0deg);
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--color-gold);
    transform: rotate(-12deg);
    transition: transform var(--transition-normal);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-white);
    line-height: 1.1;
    letter-spacing: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-slate);
    letter-spacing: 0.02em;
    transition: color var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-slate);
    letter-spacing: 0.02em;
    transition: color var(--transition-normal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-dropdown .dropdown-toggle:hover {
    color: var(--color-gold);
}

.nav-dropdown .dropdown-toggle svg {
    transition: transform var(--transition-normal);
}

.nav-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--color-primary-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(217, 119, 87, 0.15);
    color: var(--color-accent);
}

.dropdown-item svg {
    color: var(--color-accent);
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta { display: flex; align-items: center; gap: 1.5rem; }
}

.header-cta .login-link {
    color: var(--color-text-white);
    font-weight: 500;
    font-size: 0.9rem;
}

.header-cta .login-link:hover {
    color: var(--color-gold);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--color-text-white);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn { display: none; }
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: none;
    animation: fadeInUp 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--color-text-white);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
    color: var(--color-gold);
}

.mobile-nav .btn {
    margin-top: 1rem;
}

/* ===== HERO SECTION - Premium Artistic ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Background Atmosphere */
.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-blob-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: var(--color-primary-card);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: pulse-glow 8s infinite;
}

.hero-blob-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-green-accent);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: pulse-glow 10s infinite 2s;
}

.hero-blob-3 {
    position: absolute;
    top: 40%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
}

/* Spinning Ring */
.hero-ring {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 750px;
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: spin-slow 80s linear infinite;
    display: none;
}

@media (min-width: 1024px) {
    .hero-ring { display: block; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Hero Text */
.hero-text {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    z-index: 20;
}

@media (min-width: 1024px) {
    .hero-text {
        width: 40%;
        text-align: left;
    }
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--color-text-white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(90deg, var(--color-soft-orange), #dca780, var(--color-soft-orange));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-slate);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 2rem;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .hero-description { margin: 0 0 2rem; }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

@media (min-width: 1024px) {
    .hero-stats { justify-content: flex-start; gap: 3rem; }
}

.stat-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .stat-item { text-align: left; }
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--color-soft-orange);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-slate);
    max-width: 80px;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

@media (min-width: 1024px) {
    .hero-cta { justify-content: flex-start; }
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-visual {
        width: 60%;
        min-height: 700px;
        transform: translateX(3rem);
    }
}

/* Abstract SVG Shapes */
.hero-shape {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape-terracotta {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transform: scale(1.1) translate(-2%, 2%);
    animation: float-delayed 8s ease-in-out infinite;
}

.hero-shape-gold {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    transform: scale(0.9) translate(5%, -3%);
    animation: float 7s ease-in-out infinite;
}

/* Main Image Canvas */
.hero-main-image {
    position: relative;
    width: 320px;
    height: 400px;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-main-image {
        width: 400px;
        height: 500px;
    }
}

.hero-main-image-inner {
    width: 100%;
    height: 100%;
    border-radius: 35% 65% 60% 40% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform var(--transition-slower);
}

.hero-main-image:hover .hero-main-image-inner {
    transform: scale(1.02);
}

.hero-main-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-text-white);
    mix-blend-mode: color;
    opacity: 0.15;
}

.hero-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.25), transparent);
    mix-blend-mode: overlay;
}

/* Floating Badge */
.hero-badge {
    position: absolute;
    top: 15%;
    right: -5%;
    z-index: 20;
    animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero-badge { right: 0; }
}

.hero-badge-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-normal);
}

.hero-badge-inner:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(255,255,255,0.1);
}

.hero-badge-text h5 {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.15rem;
}

.hero-badge-text p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: white;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Floating Bubble */
.hero-bubble {
    position: absolute;
    bottom: 20%;
    left: 5%;
    z-index: 20;
    animation: float-delayed 7s ease-in-out infinite;
    cursor: pointer;
}

.hero-bubble-inner {
    position: relative;
    width: 64px;
    height: 64px;
}

.hero-bubble-glow {
    position: absolute;
    inset: 0;
    background: var(--color-gold);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.4;
    transition: opacity var(--transition-normal);
}

.hero-bubble:hover .hero-bubble-glow {
    opacity: 0.7;
}

.hero-bubble-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(229, 193, 101, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
    overflow: hidden;
}

.hero-bubble:hover .hero-bubble-circle {
    transform: translateY(-8px);
}

.hero-bubble-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    opacity: 0.5;
}

.hero-bubble-circle svg {
    color: var(--color-gold);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}

/* ===== HERO SIDEIMAGE - Arch Design ===== */
.hero-sideimage {
    position: relative;
    min-height: calc(100vh - 80px);
    max-height: 100vh;
    padding: 2rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ===== Hero Slider Styles ===== */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    transform: scale(1);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1.05);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 40, 45, 0.85) 0%, rgba(10, 26, 29, 0.7) 50%, rgba(21, 40, 45, 0.9) 100%);
}

/* Title Wrapper for Slider */
.hero-title-wrapper {
    position: relative;
    min-height: 180px;
}

.hero-title-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
    pointer-events: none;
}

.hero-title-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

/* Hero Bottom Bar with Stats and Controls */
.hero-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

/* Slider Controls */
.hero-slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-slider-dots {
    display: flex;
    gap: 0.5rem;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-slider-dot.active {
    width: 32px;
    border-radius: 4px;
    background: var(--color-accent);
}

.hero-slider-arrows {
    display: flex;
    gap: 0.5rem;
}

.hero-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider-arrow:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .hero-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-slider-controls {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero-title-wrapper {
        min-height: 120px;
    }
}

.hero-sideimage .hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-sideimage .hero-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-primary-card);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hero-sideimage .hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: var(--color-primary-card);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 20;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
        gap: 5rem;
    }
}

/* Hero Text Column */
.hero-text-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text-column {
        width: 45%;
        text-align: left;
    }
}

/* Badge Pill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    align-self: center;
}

@media (min-width: 1024px) {
    .hero-badge-pill {
        align-self: flex-start;
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse-glow 2s infinite;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Title with Gradient */
.hero-sideimage .hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--color-text-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    background: linear-gradient(90deg, var(--color-accent), #f5d0a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sideimage .hero-description {
    font-size: 1.125rem;
    color: var(--color-text-slate);
    line-height: 1.8;
    max-width: 560px;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .hero-sideimage .hero-description {
        margin: 0;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline svg {
    color: var(--color-gold);
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .hero-stats-row {
        justify-content: flex-start;
        gap: 3rem;
    }
}

.hero-stat-item {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-stat-item {
        text-align: left;
    }
}

.hero-stat-item .stat-value {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.25rem;
    display: block;
}

.hero-stat-item .stat-label {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-slate);
}

/* Hero Visual Column */
.hero-visual-column {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

@media (min-width: 1024px) {
    .hero-visual-column {
        width: 55%;
        justify-content: flex-end;
        min-height: 600px;
    }
}

/* Arch Container */
.hero-arch-container {
    position: relative;
    width: 80%;
    max-width: 500px;
    aspect-ratio: 3 / 4;
    min-height: 400px;
}

@media (min-width: 1024px) {
    .hero-arch-container {
        min-height: 500px;
    }
}

/* Back Outline Shape */
.hero-arch-outline {
    position: absolute;
    top: 24px;
    right: -20px;
    width: 100%;
    height: 100%;
    border-radius: 150px 150px 30px 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 0;
}

/* Solid Color Accent */
.hero-arch-accent {
    position: absolute;
    top: 40px;
    right: -10px;
    width: 100%;
    height: 100%;
    background: #1a3d44;
    border-radius: 150px 150px 30px 30px;
    opacity: 0.6;
    z-index: 0;
    transform: rotate(2deg);
}

/* Main Arch Image */
.hero-arch-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 150px 150px 30px 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 6px solid var(--color-primary);
    z-index: 10;
}

.hero-arch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.hero-arch-container:hover .hero-arch-image img {
    transform: scale(1.1);
}

.hero-arch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-primary), transparent, transparent);
    opacity: 0.4;
    pointer-events: none;
}

.hero-arch-texture {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* Floating Badge - Gold Award (Top Left) */
.hero-floating-badge {
    position: absolute;
    top: -16px;
    left: -32px;
    z-index: 20;
}

@media (min-width: 768px) {
    .hero-floating-badge {
        left: -48px;
    }
}

.floating-badge-inner {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #c9a030);
    box-shadow: 0 10px 30px rgba(229, 193, 101, 0.3);
    border: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .floating-badge-inner {
        width: 112px;
        height: 112px;
    }
}

.floating-badge-inner svg {
    margin-bottom: 4px;
}

.badge-number {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1;
}

.badge-label {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Floating Card - Glass (Bottom Right) */
.hero-floating-card {
    position: absolute;
    bottom: 32px;
    right: -16px;
    z-index: 20;
}

@media (min-width: 768px) {
    .hero-floating-card {
        right: -64px;
    }
}

.floating-card-inner {
    background: rgba(21, 40, 45, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 240px;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid rgba(20, 184, 166, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #5eead4;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
}

.floating-card-text strong {
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.floating-card-text span {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 2px;
}

/* ===== ACADEMIC LEVELS SECTION ===== */
.academic-levels {
    padding: 6rem 0;
    position: relative;
}

.academic-levels .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(217, 119, 87, 0.1);
    border: 1px solid rgba(217, 119, 87, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.level-card {
    background: var(--color-primary-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.level-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(217, 119, 87, 0.3);
}

.level-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.level-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.level-card:hover .level-card-image img {
    transform: scale(1.1);
}

.level-card-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-primary-card), transparent);
    opacity: 0.6;
}

.level-card-icon {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
    color: white;
}

.level-card:hover .level-card-icon {
    transform: rotate(12deg);
}

.level-card-icon.orange { background: var(--color-accent); }
.level-card-icon.teal { background: var(--color-teal-light); }
.level-card-icon.purple { background: #8B5CF6; }

.level-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.level-card-content {
    padding: 2rem;
    padding-top: 2.5rem;
}

.level-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.level-card-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.level-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap var(--transition-normal);
}

.level-card:hover .level-card-link {
    gap: 0.85rem;
}

/* ===== PROGRAMS SECTION ===== */
.programs-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.programs-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 100%;
    background: var(--color-primary-card);
    filter: blur(100px);
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
}

.programs-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .programs-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.programs-header-text {
    max-width: 600px;
}

.programs-header-text .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-box {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-left: 0.5rem;
    transform: rotate(-1deg);
}

.highlight-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    border-radius: var(--radius-sm);
    z-index: -1;
}

.section-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.7;
    font-weight: 300;
}

.programs-btn-desktop {
    display: none;
}

@media (min-width: 768px) {
    .programs-btn-desktop {
        display: inline-flex;
    }
}

.programs-btn-mobile {
    margin-top: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .programs-btn-mobile {
        display: none;
    }
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Program Card */
.program-card {
    padding: 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-slow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.program-card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.program-card:hover .program-card-overlay {
    opacity: 0.05;
}

/* Program Icon */
.program-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-slow);
    color: white;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.program-icon-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent 60%);
    border-radius: var(--radius-lg);
    opacity: 0.6;
}

/* Program Content */
.program-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
    transition: all var(--transition-normal);
}

.program-card:hover .program-content h3 {
    background: linear-gradient(90deg, white, #d1d5db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-content p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: color var(--transition-normal);
}

.program-card:hover .program-content p {
    color: #d1d5db;
}

/* Program Link */
.program-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-top: auto;
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition-normal);
}

.program-card:hover .program-link {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ADMISSIONS CTA BANNER ===== */
.admissions-cta {
    padding: 3rem 0;
}

.admissions-cta-inner {
    background: linear-gradient(135deg, var(--color-accent), #c55f3c);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(180, 100, 0, 0.35);
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .admissions-cta-inner { padding: 5rem 3rem; }
}

.admissions-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.admissions-cta-glow-1 {
    position: absolute;
    top: -96px;
    right: -96px;
    width: 256px;
    height: 256px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.admissions-cta-glow-2 {
    position: absolute;
    bottom: -96px;
    left: -96px;
    width: 256px;
    height: 256px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    filter: blur(60px);
}

.admissions-cta-content {
    position: relative;
    z-index: 10;
}

.admissions-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: bounce-slow 3s ease-in-out infinite;
}

.admissions-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: white;
}

.admissions-cta-content h2 span {
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 8px;
    text-decoration-thickness: 4px;
}

.admissions-cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

.admissions-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

@media (min-width: 640px) {
    .admissions-cta-buttons { flex-direction: row; justify-content: center; }
}

.admissions-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    margin: 0 auto;
}

.admissions-cta-stats .stat-value {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: white;
    font-weight: 700;
}

.admissions-cta-stats .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 5rem 0;
}

.founder-card {
    position: relative;
    border-radius: var(--radius-3xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .founder-card {
        flex-direction: row;
        padding: 4rem;
    }
}

.founder-bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    transform: translate(50%, -50%);
}

/* Founder Image */
.founder-image-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .founder-image-container {
        width: 33%;
        aspect-ratio: 4 / 5;
    }
}

.founder-image-accent {
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    border-radius: var(--radius-2xl);
    transform: rotate(3deg);
    opacity: 0.2;
}

.founder-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    filter: grayscale(100%);
    transition: filter var(--transition-slower);
}

.founder-image:hover {
    filter: grayscale(0%);
}

/* Founder Content */
.founder-content {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .founder-content {
        text-align: left;
    }
}

.founder-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(217, 119, 87, 0.2);
    color: var(--color-accent);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.founder-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 2rem;
}

.founder-quote-icon {
    color: var(--color-gold);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #d1d5db;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
}

.founder-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
}

.founder-info p {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-top: 0.25rem;
}

/* ===== EDUCATORS SECTION ===== */
.educators-section {
    padding: 5rem 0;
}

.educators-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.educators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .educators-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Educator Card */
.educator-card {
    position: relative;
    padding: 1.5rem;
    margin-top: 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: transform var(--transition-normal);
}

.educator-card:hover {
    transform: translateY(-8px);
}

/* Profile Image - Negative Margin */
.educator-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto -48px;
    transform: translateY(-48px);
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
    box-shadow: var(--shadow-lg);
}

.educator-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.educator-content {
    margin-top: 1rem;
}

.educator-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.educator-content .educator-role {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    margin: 0.5rem 0 1rem;
}

.educator-content .educator-quote {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    padding: 5rem 0;
    text-align: center;
}

.journey-section .section-title {
    margin-bottom: 4rem;
}

.journey-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .journey-steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* Connecting Dashed Line (Desktop) */
.journey-steps::before {
    content: '';
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    z-index: 0;
}

@media (min-width: 768px) {
    .journey-steps::before {
        display: block;
    }
}

/* Journey Step */
.journey-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-step-icon {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-normal);
    z-index: 1;
}

.journey-step:hover .journey-step-icon {
    transform: scale(1.1);
}

.journey-step-icon.orange {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(217, 119, 87, 0.2);
    color: var(--color-accent);
}

.journey-step-icon.gold {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 30px rgba(229, 193, 101, 0.2);
    color: var(--color-gold);
}

.journey-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: white;
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.journey-step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.journey-step-content p {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* ===== REQUEST TOUR SECTION ===== */
.request-tour {
    padding: 3rem 0;
}

.request-tour-inner {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-xl);
}

.request-tour-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.request-tour-inner:hover .request-tour-bg {
    transform: scale(1.05);
}

.request-tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 42, 47, 0.88);
    backdrop-filter: blur(2px);
}

.request-tour-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .request-tour-content {
        grid-template-columns: repeat(2, 1fr);
        padding: 4rem;
        gap: 4rem;
    }
}

.tour-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .tour-card { padding: 3rem; }
}

.tour-card-sheen {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.tour-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.tour-card > p {
    color: var(--color-text-light);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.tour-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-location {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tour-location-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-location h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tour-location p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Tour Collage */
.tour-collage {
    display: none;
    position: relative;
    height: 500px;
}

@media (min-width: 1024px) {
    .tour-collage { display: block; }
}

.tour-photo {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    padding: 8px;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s ease;
}

.tour-photo-1 {
    right: 0;
    top: 0;
    width: 260px;
    height: 200px;
    transform: rotate(6deg);
    z-index: 10;
    animation: float-delayed 7s ease-in-out infinite;
}

.tour-photo-1:hover { transform: rotate(2deg); }

.tour-photo-2 {
    left: 20px;
    bottom: 40px;
    width: 300px;
    height: 240px;
    transform: rotate(-6deg);
    z-index: 20;
    animation: float 6s ease-in-out infinite;
}

.tour-photo-2:hover { transform: rotate(0deg); }

.tour-photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}

.tour-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.tour-photo-text {
    position: absolute;
    bottom: 1rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.tour-collage-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: rgba(217, 119, 87, 0.25);
    filter: blur(60px);
    border-radius: 50%;
}

/* ===== HIGHLIGHTS / BENTO GRID ===== */
.highlights {
    padding: 6rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 280px);
        gap: 1.25rem;
    }
}

.highlight-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.08);
    min-height: 250px;
    cursor: pointer;
}

.highlight-item.span-2-cols { grid-column: span 2; }
.highlight-item.span-2-rows { grid-row: span 2; }

@media (max-width: 767px) {
    .highlight-item.span-2-cols,
    .highlight-item.span-2-rows {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.highlight-item:hover img {
    transform: scale(1.1);
}

.highlight-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-primary), transparent 60%);
    opacity: 0.9;
    transition: opacity var(--transition-normal);
}

.highlight-item:hover .overlay {
    opacity: 0.7;
}

.highlight-item .label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    transform: translateY(4px);
    transition: transform var(--transition-normal);
}

.highlight-item:hover .label {
    transform: translateY(0);
}

.highlight-item .label h4 {
    font-size: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* ===== SHOWCASE / PROJECTS ===== */
/* Showcase Section - Student Showcase */
.showcase-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.showcase-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-card:hover img {
    transform: scale(1.1);
}

.showcase-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent, transparent);
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.showcase-card:hover .showcase-card-overlay {
    opacity: 0.9;
}

.showcase-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(8px);
    transition: transform var(--transition-normal);
}

.showcase-card:hover .showcase-card-content {
    transform: translateY(0);
}

.showcase-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.showcase-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    transition: color var(--transition-normal);
}

.showcase-card:hover .showcase-link {
    color: var(--color-accent);
}

.showcase {
    padding: 6rem 0;
    position: relative;
}

.showcase-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .showcase-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.showcase-title-group h2 {
    margin-bottom: 1rem;
}

.showcase-title-group h2 .accent-box {
    display: inline-block;
    background: var(--color-accent);
    padding: 0.1em 0.4em;
    border-radius: 6px;
    margin-left: 0.25em;
    transform: rotate(-1deg);
}

.project-card {
    background: var(--color-primary-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.project-card:hover {
    box-shadow: 0 20px 60px rgba(217, 119, 87, 0.15);
    border-color: rgba(217, 119, 87, 0.3);
    transform: translateY(-8px);
}

.project-card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.project-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: background var(--transition-normal);
}

.project-card:hover .project-card-image::before {
    background: transparent;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-content {
    padding: 2rem;
}

.project-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.project-card:hover .project-card-content h3 {
    color: var(--color-accent);
}

.project-card-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.project-card-link svg {
    transition: transform var(--transition-normal);
}

.project-card:hover .project-card-link svg {
    transform: translateX(4px);
}

/* ===== EDUCATORS SECTION ===== */
.educators {
    padding: 6rem 0;
}

.educator-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.educator-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.educator-glow {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.25;
    transition: opacity var(--transition-normal);
}

.educator-profile:hover .educator-glow {
    opacity: 0.5;
}

.educator-glow.teal { background: var(--color-teal-light); }
.educator-glow.orange { background: var(--color-accent); }
.educator-glow.blue { background: #60A5FA; }

.educator-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-primary-card);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    transition: border-color var(--transition-normal);
}

.educator-profile:hover .educator-image {
    border-color: var(--color-accent);
}

.educator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.educator-profile:hover .educator-image img {
    transform: scale(1.1);
}

.educator-info h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.educator-info p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 0;
    position: relative;
}

.testimonials-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: rgba(217, 119, 87, 0.05);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.testimonial-badge span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
}

.testimonial-card {
    background: rgba(29, 58, 66, 0.5);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: border-color var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(217, 119, 87, 0.2);
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: rgba(255, 255, 255, 0.05);
    transition: color var(--transition-normal);
}

.testimonial-card:hover .testimonial-quote-icon {
    color: rgba(217, 119, 87, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    color: var(--color-gold);
    fill: var(--color-gold);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.testimonial-author-info h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}

.testimonial-author-info p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
}

.testimonial-link {
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.testimonial-link:hover {
    color: var(--color-gold);
}

/* ===== JOURNEY SECTION ===== */
.journey {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
}

@media (min-width: 1024px) {
    .journey-steps {
        flex-direction: row;
        gap: 0;
    }
}

.journey-connector {
    display: none;
    position: absolute;
    top: 48px;
    left: 16%;
    right: 16%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-card), var(--color-accent), var(--color-primary-card));
    border-radius: var(--radius-full);
    opacity: 0.4;
}

@media (min-width: 1024px) {
    .journey-connector { display: block; }
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .journey-step { width: 33.333%; }
}

.journey-step-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    transition: transform var(--transition-slow);
}

.journey-step:hover .journey-step-icon-wrapper {
    transform: translateY(-8px);
}

.journey-step-glow {
    position: absolute;
    inset: 0;
    background: var(--color-accent);
    filter: blur(30px);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.journey-step:hover .journey-step-glow {
    opacity: 0.4;
}

.journey-step-icon {
    width: 96px;
    height: 96px;
    background: var(--color-primary-card);
    box-shadow: var(--shadow-xl);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    transition: all var(--transition-normal);
}

.journey-step:hover .journey-step-icon {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: white;
}

.journey-step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-primary);
    z-index: 20;
    transition: transform var(--transition-normal);
}

.journey-step:hover .journey-step-number {
    transform: scale(1.1);
}

.journey-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.journey-step:hover h3 {
    color: var(--color-accent);
}

.journey-step p {
    max-width: 280px;
}

/* ===== NEWS & EVENTS ===== */
.news-events {
    padding: 6rem 0;
}

.event-card {
    background: var(--color-primary-card);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(217, 119, 87, 0.1);
}

.event-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.event-card:hover .event-card-image img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    text-align: center;
    min-width: 56px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.event-date-badge .day {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.event-card-content {
    padding: 1.75rem;
}

.event-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.event-card:hover .event-card-content h3 {
    color: var(--color-accent);
}

.event-card-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.event-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap var(--transition-normal);
}

.event-card:hover .event-card-link {
    gap: 0.85rem;
}

.view-all-btn {
    display: block;
    text-align: center;
    margin-top: 3rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c4b5fd;
    margin-bottom: 1rem;
}

/* Contact Info Row - 3 columns */
.contact-info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-info-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-normal);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-icon.purple {
    background: rgba(168, 85, 247, 0.2);
    color: #c4b5fd;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.contact-info-icon.orange {
    background: rgba(217, 119, 87, 0.2);
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(217, 119, 87, 0.15);
}

.contact-info-icon.teal {
    background: rgba(20, 184, 166, 0.2);
    color: #5eead4;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
}

.contact-info-text h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* Contact Grid - Map + Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Map Wrapper */
.contact-map-wrapper {
    position: relative;
    min-height: 500px;
    height: 100%;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    padding: 0.5rem;
    filter: grayscale(100%);
    opacity: 0.9;
    transition: all var(--transition-slower);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-wrapper:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-xl);
}

@media (min-width: 1024px) {
    .contact-map-wrapper {
        min-height: 600px;
    }
    
    .contact-map-wrapper iframe {
        min-height: 550px;
    }
}

.map-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(21, 40, 45, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(8px);
    transition: transform var(--transition-normal);
}

.contact-map-wrapper:hover .map-badge {
    transform: translateY(0);
}

.map-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-badge-text strong {
    display: block;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.map-badge-text span {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Contact Form Card */
.contact-form-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-form-card {
        padding: 3rem;
    }
}

.contact-form-glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.contact-form-glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background: rgba(217, 119, 87, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.contact-form-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(217, 119, 87, 0.5);
    background: rgba(0, 0, 0, 0.3);
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: white;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
    transition: all var(--transition-normal);
}

.contact-submit-btn:hover {
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

.contact-submit-btn svg {
    transition: transform var(--transition-normal);
}

.contact-submit-btn:hover svg {
    transform: translate(4px, -4px);
}

/* Legacy Contact Styles */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        flex-direction: row;
        gap: 4rem;
    }
}

.contact-info {
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-info { width: 45%; }
}

.contact-box {
    background: var(--color-primary-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.contact-box:hover {
    background: rgba(29, 58, 66, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-box-icon {
    width: 48px;
    height: 48px;
    background: rgba(217, 119, 87, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.contact-box:hover .contact-box-icon {
    transform: scale(1.1);
}

.contact-box h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-box p {
    font-size: 0.9rem;
    font-weight: 400;
}

.contact-form-wrapper {
    width: 100%;
    background: rgba(29, 58, 66, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .contact-form-wrapper { width: 55%; }
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(217, 119, 87, 0.08);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.contact-form-wrapper h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-slate);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(14, 28, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-normal);
}

.form-group input {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-group textarea {
    resize: none;
    min-height: 100px;
}

/* Department Card Styling */
.department-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.department-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 119, 87, 0.2);
}

.department-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(217, 119, 87, 0.3);
}

/* Schedule Visit Card */
.schedule-visit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.schedule-visit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-accent);
}

.contact-form .btn {
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #0e1c20;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer-brand p {
    margin: 1.5rem 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-slate);
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: white;
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-newsletter p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 400px) {
    .footer-newsletter form {
        flex-direction: row;
    }
}

.footer-newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all var(--transition-normal);
}

.footer-newsletter input:focus {
    border-color: var(--color-accent);
}

.footer-newsletter button {
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-newsletter button:hover {
    background: var(--color-accent-dark);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-accent-dark);
    transform: translateY(-4px);
}

/* ===== SCREEN READER ONLY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== RESOURCES PAGE ===== */
.resources-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.resource-category-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.resource-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.resource-category-card .category-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.resource-category-card .category-icon svg {
    width: 28px;
    height: 28px;
}

.resource-category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.resource-category-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-category-card .category-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.resource-category-card .resource-count {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

.resource-category-card .category-meta svg {
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    transition: all var(--transition-normal);
}

.resource-category-card:hover .category-meta svg {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* Quick Access Search */
.quick-access-wrapper {
    text-align: center;
}

.resource-search-form {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.search-input-group {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-input-group svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    width: 20px;
    height: 20px;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.search-select {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    min-width: 150px;
}

.search-select option {
    background: var(--color-primary);
    color: white;
}

/* Subject Resources Section */
.subject-resources-section {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 2rem;
    overflow: hidden;
}

.subject-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--glass-border);
}

.subject-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.subject-header h3 svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.view-all-link:hover {
    gap: 0.75rem;
}

.view-all-link svg {
    width: 16px;
    height: 16px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.resource-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.resource-type-badge svg {
    width: 14px;
    height: 14px;
}

.resource-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.resource-card p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.class-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(79, 209, 197, 0.15);
    color: var(--color-teal-light);
    border-radius: var(--radius-full);
    font-weight: 500;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.download-btn:hover {
    color: var(--color-accent-light);
}

.download-btn svg {
    width: 16px;
    height: 16px;
}

/* Study Tips Section */
.study-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.study-tip-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.study-tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.study-tip-card .tip-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.2;
    line-height: 1;
}

.study-tip-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 1rem;
}

.study-tip-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* App CTA Section */
.app-cta-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-cta-content {
    max-width: 500px;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
}

.app-btn svg {
    width: 28px;
    height: 28px;
    color: white;
}

.app-btn span {
    display: flex;
    flex-direction: column;
}

.app-btn small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.app-btn strong {
    font-size: 0.95rem;
    color: white;
    font-weight: 600;
}

.app-cta-visual {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 200px;
    height: 350px;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary-card) 100%);
    border-radius: 2rem;
    border: 2px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--glass-border);
    border-radius: var(--radius-full);
}

@media (max-width: 768px) {
    .resources-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-search-form {
        flex-direction: column;
    }
    
    .search-input-group {
        min-width: 100%;
    }
    
    .search-select {
        width: 100%;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .app-cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-cta-content {
        max-width: 100%;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-cta-visual {
        display: none;
    }
}

/* ===== GLOBAL SECTION SPACING FIX ===== */
.py-24 {
    padding: 5rem 0;
}

.section,
section.py-24 {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

/* Section spacing - ensure proper gaps */
section + section,
.section + .section,
.section + section,
section + .section {
    margin-top: 0; /* No extra margin as padding handles spacing */
}

/* Contact page and other pages section padding */
.section.py-24 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* ===== CARD HOVER ANIMATIONS ===== */
.glass-card,
.card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover,
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Faculty and leader cards hover */
.leader-card:hover,
.faculty-card:hover,
.educator-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(217, 119, 87, 0.15);
}

/* ===== HORIZONTAL ADMISSION PROCESS ===== */
.admission-steps-horizontal {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.admission-step-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    position: relative;
    padding: 0 1rem;
}

.admission-step-horizontal::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

.admission-step-horizontal:last-child::after {
    display: none;
}

.admission-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    box-shadow: var(--shadow-orange);
}

.admission-step-icon svg,
.admission-step-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.admission-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: var(--color-gold);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admission-step-horizontal h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.admission-step-horizontal p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .admission-steps-horizontal {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .admission-step-horizontal {
        max-width: 300px;
    }
    
    .admission-step-horizontal::after {
        display: none;
    }
}

/* ===== FACULTY PAGE SPECIFIC STYLES ===== */
.faculty-section {
    padding: 5rem 0;
    position: relative;
}

.faculty-section + .faculty-section {
    border-top: 1px solid var(--glass-border);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.leader-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(217, 119, 87, 0.3);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.faculty-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.faculty-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--color-accent);
}

.faculty-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.department-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.department-card:hover {
    transform: translateX(8px);
    border-color: var(--color-accent);
}

.department-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.department-icon svg,
.department-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

/* ===== CAMPUS LIFE PAGE FIXES ===== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.activity-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.activity-card h4 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

.activity-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.club-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.club-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.club-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.2), rgba(217, 119, 87, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.club-icon svg,
.club-icon i {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sport-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.sport-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
}

.sport-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sport-icon svg,
.sport-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ====================================================
   ABOUT PAGE STYLES - Match bossai_web_builder
   ==================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    color: var(--color-text-light);
}

.about-content .section-title {
    text-align: left;
    color: var(--color-text-white);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    line-height: 1.2;
}

.about-stat .stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    display: block;
    margin-top: 0.25rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-orange);
    white-space: nowrap;
}

.about-image-badge i,
.about-image-badge svg {
    font-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

/* Vision Mission Cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 119, 87, 0.3);
}

/* Removed duplicate - using enhanced version above */

.program-card h3 {
    color: var(--color-text-white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.program-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Features Grid - Values */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 119, 87, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(217, 119, 87, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.feature-icon svg,
.feature-icon i {
    width: 28px;
    height: 28px;
}

.feature-content h4 {
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-content p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ====================================================
   ACADEMICS PAGE STYLES
   ==================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.curriculum-badge {
    width: 200px;
    height: 200px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.curriculum-badge svg,
.curriculum-badge i {
    width: 80px;
    height: 80px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.curriculum-badge h3 {
    color: var(--color-text-white);
    font-size: 1.125rem;
}

/* Academic Programs Cards */
.academic-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.academic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 87, 0.3);
}

.academic-icon {
    width: 80px;
    height: 80px;
    background: rgba(217, 119, 87, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.academic-icon svg,
.academic-icon i {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
}

.academic-card h4 {
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.academic-card .grade-range {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.academic-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

/* Programs Grid - 4 columns for academic programs */
.programs-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .programs-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .programs-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   ADMISSION STEPS STYLES - Horizontal
   ==================================================== */
.admission-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
}

.admission-step {
    text-align: center;
    padding: 2.5rem 1.5rem 1.5rem;
    margin-top: 1.25rem;
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all var(--transition-normal);
}

.admission-step:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 119, 87, 0.3);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: var(--shadow-orange);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 87, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-accent);
}

.step-icon svg,
.step-icon i {
    width: 28px;
    height: 28px;
}

.admission-step h4 {
    color: var(--color-text-white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.admission-step p {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

.step-connector {
    display: none;
}

/* Horizontal connector lines between steps */
.admission-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-accent) 10%, 
        var(--color-accent) 90%, 
        transparent
    );
    z-index: 0;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    padding: 4rem;
    border-radius: var(--radius-2xl);
    text-align: center;
}

.cta-card h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-badge {
        position: static;
        transform: none;
        margin-top: 1.5rem;
        display: inline-flex;
    }
    
    .about-image {
        text-align: center;
    }
    
    .admission-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .admission-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .about-stat {
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .admission-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-connector {
        display: block;
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 1.5rem;
        background: var(--color-accent);
    }
    
    .admission-step:last-child .step-connector {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================================================
   GLOBAL CSS FIXES - MISSING STYLES
   Added: January 2026
   ==================================================== */

/* ===== BUTTON VARIANTS ===== */
.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
}

/* ===== ACTIVITIES GRID (Student Life Page) ===== */
.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== SPORTS GRID ===== */
.sports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== LEADERSHIP GRID (Faculty Page) ===== */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== LEADER CARD ===== */
.leader-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(217, 119, 87, 0.3);
}

.leader-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(217, 119, 87, 0.2);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FACULTY GRID ===== */
.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .faculty-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* ===== FACULTY CARD ===== */
.faculty-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 119, 87, 0.2);
}

.faculty-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid rgba(217, 119, 87, 0.3);
}

.faculty-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== DEPARTMENTS GRID ===== */
.departments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .departments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== PROGRAMS GRID 4 COLUMNS (Academics Page) ===== */
.programs-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .programs-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .programs-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== ACADEMIC CARD ===== */
.academic-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.academic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(217, 119, 87, 0.3);
}

.academic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(217, 119, 87, 0.25);
}

.academic-icon i,
.academic-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.academic-card h4 {
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.academic-card .grade-range {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.academic-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===== CURRICULUM BADGE ===== */
.curriculum-badge {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.15), rgba(192, 123, 86, 0.1));
    border: 2px solid rgba(217, 119, 87, 0.3);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.curriculum-badge i,
.curriculum-badge svg {
    color: var(--color-accent);
}

.curriculum-badge h3 {
    color: var(--color-accent);
    font-size: 1.5rem;
}

/* ===== CTA CARD ===== */
.cta-card {
    background: linear-gradient(135deg, var(--color-accent), var(--color-soft-orange));
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 4rem 3rem;
    }
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.cta-card h2 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    position: relative;
}

/* ===== VALUES GRID (About Page - 2x2) ===== */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ===== SCHEDULE VISIT CARD (Contact Page) ===== */
.schedule-visit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.schedule-visit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===== ENHANCED HOVER EFFECTS ===== */

/* Admission Steps Enhanced Hover */
.admission-step {
    cursor: pointer;
}

.admission-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(217, 119, 87, 0.2);
    border-color: rgba(217, 119, 87, 0.4);
}

.admission-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(217, 119, 87, 0.5);
}

.admission-step:hover .step-icon i,
.admission-step:hover .step-icon svg {
    transform: scale(1.1);
}

.step-number {
    transition: all 0.3s ease;
}

.step-icon i,
.step-icon svg {
    transition: transform 0.3s ease;
}

/* Glass Card Enhanced Hover (clickable cards only) */
a.glass-card,
.glass-card.clickable {
    cursor: pointer;
}

a.glass-card:hover,
.glass-card.clickable:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(217, 119, 87, 0.25);
}

/* Activity Card Enhanced */
.activity-card {
    cursor: pointer;
}

.activity-card-content {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
}

/* Club Card Enhanced */
.club-card:hover .club-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(217, 119, 87, 0.4);
}

.club-icon {
    transition: all 0.3s ease;
}

/* Sport Card Enhanced */
.sport-card:hover .sport-icon {
    transform: scale(1.1) rotate(5deg);
}

.sport-icon {
    transition: all 0.3s ease;
}

/* ===== FAQ ACCORDION STYLES ===== */
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(217, 119, 87, 0.3);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--color-text-white);
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Legacy FAQ Support (admissions page) */
.glass-card.open .faq-answer {
    max-height: 300px !important;
    padding-bottom: 1.5rem;
}

.glass-card.open [data-lucide="chevron-down"] {
    transform: rotate(180deg);
}

/* ===== ENQUIRY FORM IMPROVED LAYOUT ===== */
.enquiry-section {
    max-width: 1100px;
    margin: 0 auto;
}

.enquiry-section .section-title {
    font-size: 2.25rem;
}

@media (min-width: 768px) {
    .enquiry-section .section-title {
        font-size: 2.75rem;
    }
}

.contact-info-box {
    background: rgba(217, 119, 87, 0.08);
    border: 1px solid rgba(217, 119, 87, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    background: rgba(217, 119, 87, 0.12);
    border-color: rgba(217, 119, 87, 0.3);
}

/* ===== FEE DETAILS CTA ENHANCED ===== */
.fee-cta-card {
    background: linear-gradient(135deg, rgba(29, 58, 66, 0.8), rgba(21, 40, 45, 0.9));
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.fee-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 119, 87, 0.1) 0%, transparent 50%);
    animation: pulse-glow 4s infinite;
}

.fee-cta-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.fee-cta-card p {
    position: relative;
}

.fee-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.fee-cta-buttons .btn:hover {
    transform: translateY(-4px) scale(1.02);
}

/* ===== ABOUT PAGE STATS COUNTER ===== */
.about-stats .stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .about-stats .stat-number {
        font-size: 3rem;
    }
}

/* ===== FORM IMPROVEMENTS ===== */
.form-group select {
    width: 100%;
    background: rgba(14, 28, 32, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--color-text-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d97757' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-group select:focus {
    outline: none;
    border-color: rgba(217, 119, 87, 0.5);
    background-color: rgba(0, 0, 0, 0.3);
}

.form-group select option {
    background: var(--color-primary);
    color: var(--color-text-white);
}

/* W-Full Utility */
.w-full {
    width: 100%;
}

/* ===== CONTACT PAGE GRID FIX ===== */
.contact-grid-equal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .contact-grid-equal {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contact-grid-equal > * {
    height: 100%;
}

/* ===== RESULTS PAGE STYLES ===== */
.result-search-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.result-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.toppers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.topper-card {
    background: linear-gradient(135deg, rgba(217, 119, 87, 0.1), rgba(192, 123, 86, 0.05));
    border: 2px solid rgba(217, 119, 87, 0.3);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.topper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
}

.topper-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-gold), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.topper-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--color-accent);
}

.topper-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ARTICLE PAGE STYLES ===== */
.article-header {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-text-slate);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--color-text-white);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content img {
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text-white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* Related Articles */
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

/* ===== TEXT UTILITIES ===== */
.text-muted {
    color: var(--color-text-muted);
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

/* ===== SPACING UTILITIES ===== */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

/* ===== FLEXBOX UTILITIES ===== */
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* ===== MAX WIDTH UTILITIES ===== */
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== INLINE FLEX UTILITY ===== */
.inline-flex {
    display: inline-flex;
}

/* ===== ENHANCED REFERENCE EFFECTS (from boss-ai-school) ===== */

/* Card Hover Lift & Glow Effect */
.card-lift-glow {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-lift-glow:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(217, 119, 87, 0.3), 0 0 30px rgba(217, 119, 87, 0.1);
    border-color: rgba(217, 119, 87, 0.3);
}

/* Enhanced Glass Card Hover */
.glass-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(217, 119, 87, 0.15);
    border-color: rgba(217, 119, 87, 0.3);
}

/* Icon Gradient Container */
.icon-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    opacity: 0.5;
}

.icon-gradient:hover {
    transform: scale(1.1) rotate(6deg);
}

/* Icon Gradient Colors */
.icon-gradient-orange { background: linear-gradient(135deg, #fb923c, #ec4899); box-shadow: 0 8px 24px rgba(251, 146, 60, 0.3); }
.icon-gradient-blue { background: linear-gradient(135deg, #60a5fa, #06b6d4); box-shadow: 0 8px 24px rgba(96, 165, 250, 0.3); }
.icon-gradient-teal { background: linear-gradient(135deg, #34d399, #14b8a6); box-shadow: 0 8px 24px rgba(52, 211, 153, 0.3); }
.icon-gradient-purple { background: linear-gradient(135deg, #c084fc, #d946ef); box-shadow: 0 8px 24px rgba(192, 132, 252, 0.3); }
.icon-gradient-pink { background: linear-gradient(135deg, #f472b6, #f43f5e); box-shadow: 0 8px 24px rgba(244, 114, 182, 0.3); }
.icon-gradient-cyan { background: linear-gradient(135deg, #22d3ee, #3b82f6); box-shadow: 0 8px 24px rgba(34, 211, 238, 0.3); }

/* Background Parallax Blobs */
.parallax-blob {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -100;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-blob-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(29, 58, 66, 0.8);
    filter: blur(100px);
    opacity: 0.8;
}

.parallax-blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(79, 209, 197, 0.15);
    filter: blur(120px);
    opacity: 0.4;
}

.parallax-blob-3 {
    top: 40%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: rgba(217, 119, 87, 0.08);
    filter: blur(140px);
    opacity: 0.3;
}

/* Mouse Spotlight Effect */
.mouse-spotlight {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -50;
    transition: background 0s;
}

/* Grain/Noise Texture Overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -40;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* Testimonial Quote Decoration */
.testimonial-quote-mark {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.03);
    transition: color 0.4s ease;
    z-index: 0;
    line-height: 1;
}

.testimonial-card:hover .testimonial-quote-mark {
    color: rgba(217, 119, 87, 0.15);
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--color-gold);
}

.star-rating i {
    fill: currentColor;
}

/* Event Date Tag */
.event-date-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 0.5rem;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.event-date-tag .day {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.event-date-tag .month {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

/* Image Zoom on Hover */
.image-zoom-container {
    overflow: hidden;
}

.image-zoom-container img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-zoom-container:hover img {
    transform: scale(1.1);
}

/* Glow Border on Hover */
.glow-border-hover {
    position: relative;
}

.glow-border-hover::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-accent), var(--color-teal-light));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.glow-border-hover:hover::before {
    opacity: 0.5;
}

/* Button Glow Effect */
.btn-glow {
    box-shadow: 0 0 30px rgba(217, 119, 87, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(217, 119, 87, 0.6);
    transform: translateY(-2px);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(to right, var(--color-accent), var(--color-teal-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth Card Entrance Animation */
.card-enter {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-enter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Profile Glow Ring */
.profile-glow-ring {
    position: relative;
    display: inline-block;
}

.profile-glow-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-teal-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.profile-glow-ring:hover::before {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

/* Scroll-triggered Parallax */
[data-parallax] {
    transition: transform 0.1s linear;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .back-to-top,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .glass-card {
        background: white;
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

