/* ============================================
   St. Xavier's College - AI in Industrial Automation
   CSS Design System
   Colors: Maroon (#6F001A) + Gold (#FBC400) + White
============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --maroon: hsl(345, 100%, 22%);
    --maroon-dark: hsl(345, 100%, 15%);
    --maroon-light: hsl(345, 80%, 35%);
    --gold: hsl(45, 100%, 49%);
    --gold-dark: hsl(45, 100%, 40%);
    --gold-light: hsl(45, 100%, 70%);
    
    /* Background & Text */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(345, 100%, 10%);
    --card: hsl(0, 0%, 100%);
    --muted: hsl(345, 10%, 95%);
    --muted-foreground: hsl(345, 20%, 40%);
    --border: hsl(345, 20%, 90%);
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px hsla(345, 100%, 22%, 0.08);
    --shadow-md: 0 4px 20px hsla(345, 100%, 22%, 0.12);
    --shadow-lg: 0 8px 40px hsla(345, 100%, 22%, 0.15);
    --shadow-xl: 0 12px 60px hsla(345, 100%, 22%, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-primary {
    color: var(--maroon);
}

.text-gold {
    color: var(--gold);
}

.text-gradient-gold {
    background: linear-gradient(135deg, hsl(45, 100%, 55%) 0%, hsl(45, 100%, 45%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary {
    background-color: var(--maroon);
}

.bg-maroon-light {
    background-color: var(--maroon-light);
}

.bg-gold {
    background-color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--maroon);
    color: white;
}

.btn-primary:hover {
    background-color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--foreground);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

/* Patterns */
.pattern-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(hsla(345, 100%, 22%, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.pattern-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(hsla(345, 100%, 22%, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, hsla(345, 100%, 22%, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.blob-1 {
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: hsla(345, 100%, 22%, 0.05);
}

.blob-2 {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: hsla(45, 100%, 49%, 0.05);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.125rem;
    color: var(--foreground);
    transition: background var(--transition-normal);
}

.header.scrolled .logo-icon {
    background: var(--maroon);
    color: white;
}

.logo-text {
    display: none;
    transition: color var(--transition-normal);
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2;
    color: white;
}

.logo-subtitle {
    font-size: 0.75rem;
    opacity: 0.7;
    color: white;
}

.header.scrolled .logo-title,
.header.scrolled .logo-subtitle {
    color: var(--foreground);
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: white;
    transition: color var(--transition-normal);
}

.nav-link:hover {
    color: var(--gold);
}

.header.scrolled .nav-link {
    color: var(--foreground);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}

.mobile-menu-btn {
    padding: 0.5rem;
    color: white;
    transition: color var(--transition-normal);
}

.header.scrolled .mobile-menu-btn {
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--foreground);
    transition: color var(--transition-normal);
}

.mobile-nav-link:hover {
    color: var(--maroon);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, hsla(345, 100%, 22%, 0.95) 0%, hsla(345, 100%, 10%, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 10;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.particle-2 {
    top: 40%;
    right: 20%;
    width: 12px;
    height: 12px;
    opacity: 0.4;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 40%;
    left: 25%;
    width: 20px;
    height: 20px;
    opacity: 0.5;
    animation-delay: 2s;
}

.particle-4 {
    top: 33%;
    right: 33%;
    width: 8px;
    height: 8px;
    opacity: 0.7;
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    color: white;
    padding: 6rem 0 4rem;
}

.partners-row {
    margin-bottom: 2rem;
}

.partners-label {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .partners-logos {
        gap: 1.5rem;
    }
}

.partner-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .partner-badge {
        font-size: 0.875rem;
    }
}

.hero-text {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: bounce 2s ease-in-out infinite;
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 10;
}

/* ============================================
   SECTIONS
============================================ */
.section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: hsla(345, 100%, 22%, 0.1);
    color: var(--maroon);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-tag-gold {
    background: hsla(45, 100%, 49%, 0.2);
    color: var(--gold-dark);
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-desc {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .section-desc {
        font-size: 1.125rem;
    }
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
    background: var(--background);
}

.partners-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.partner-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid hsla(345, 20%, 90%, 0.5);
    transition: all var(--transition-normal);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.partner-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    transition: transform var(--transition-normal);
}

.partner-card:hover .partner-icon {
    transform: scale(1.1);
}

.partner-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.partner-desc {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--maroon);
    font-weight: 600;
    transition: color var(--transition-normal);
}

.learn-more:hover {
    color: var(--gold);
}

.learn-more svg {
    transition: transform var(--transition-normal);
}

.learn-more:hover svg {
    transform: translateX(4px);
}

/* ============================================
   PROGRAM SECTION
============================================ */
.program {
    background: var(--muted);
}

.program-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .program-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.deliverables-card {
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .deliverables-card {
        padding: 2.5rem;
    }
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.deliverables-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--muted);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.deliverable-item:hover {
    background: hsla(345, 100%, 22%, 0.05);
}

.deliverable-icon {
    width: 40px;
    height: 40px;
    background: hsla(45, 100%, 49%, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-dark);
    transition: all var(--transition-normal);
}

.deliverable-item:hover .deliverable-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.deliverable-item span {
    font-weight: 500;
    padding-top: 0.5rem;
}

.videos-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.video-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.video-card:hover img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(345, 100%, 22%, 0.9), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
    margin-left: 2px;
}

.video-title {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
}

.cta-box {
    background: var(--maroon);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    color: white;
}

.cta-box p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* ============================================
   WHY CHOOSE SECTION
============================================ */
.why-choose {
    background: var(--background);
}

.lab-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.lab-card {
    position: relative;
}

.lab-card-bg {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    background: hsla(45, 100%, 49%, 0.2);
    border-radius: var(--radius-2xl);
}

.lab-card-bg-alt {
    left: 16px;
    right: -16px;
    background: hsla(345, 100%, 22%, 0.1);
}

.lab-card-content {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.lab-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lab-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.lab-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.lab-header p {
    font-weight: 600;
}

.lab-desc {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.feature-list-primary li svg {
    color: var(--maroon);
}

.support-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.career-support-card {
    background: var(--maroon);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    color: white;
}

@media (min-width: 768px) {
    .career-support-card {
        padding: 2.5rem;
    }
}

.support-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.support-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
}

.support-item-icon {
    width: 40px;
    height: 40px;
    background: hsla(45, 100%, 49%, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.support-item span {
    padding-top: 0.5rem;
    opacity: 0.9;
}

.advantages-card {
    background: var(--muted);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

@media (min-width: 768px) {
    .advantages-card {
        padding: 2.5rem;
    }
}

.advantages-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.advantages-icon {
    width: 48px;
    height: 48px;
    background: var(--maroon);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    font-weight: 500;
    transition: all var(--transition-normal);
    cursor: default;
}

.advantage-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.advantage-num {
    width: 32px;
    height: 32px;
    background: hsla(45, 100%, 49%, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   PROGRAM DETAILS SECTION
============================================ */
.program-details {
    background: var(--muted);
}

.stats-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--gold);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: hsla(345, 100%, 22%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--maroon);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--muted-foreground);
}

.eligibility-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.eligibility-card {
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.eligibility-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.eligibility-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.eligibility-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 0.75rem;
}

.eligibility-subtitle-gold {
    color: var(--gold-dark);
}

.eligibility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.tag-primary {
    background: hsla(345, 100%, 22%, 0.1);
    color: var(--maroon);
}

.tag-gold {
    background: hsla(45, 100%, 49%, 0.2);
    color: var(--gold-dark);
}

.eligibility-note {
    color: var(--muted-foreground);
    font-style: italic;
}

.objectives-card {
    background: var(--maroon);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.objectives-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.objective-num {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    flex-shrink: 0;
    margin-top: 2px;
}

.objective-item span {
    opacity: 0.9;
}

/* Curriculum Accordion */
.curriculum-section {
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .curriculum-section {
        padding: 2.5rem;
    }
}

.curriculum-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--maroon);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--muted);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: left;
    transition: background var(--transition-normal);
}

.accordion-trigger:hover {
    background: hsla(345, 100%, 22%, 0.05);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.month-num {
    width: 40px;
    height: 40px;
    background: var(--maroon);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.month-label {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.875rem;
}

.month-title {
    font-weight: 700;
}

.accordion-arrow {
    color: var(--muted-foreground);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 1.5rem 1.25rem;
    padding-left: 4.5rem;
}

.accordion-item.active .accordion-content {
    display: block;
}

.topics-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.topic-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Careers Section */
.careers-section {
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    color: white;
}

@media (min-width: 768px) {
    .careers-section {
        padding: 2.5rem;
    }
}

.careers-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.careers-intro {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .careers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.career-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    transition: background var(--transition-normal);
}

.career-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   PARTNERS SECTION
============================================ */
.partners {
    background: var(--background);
}

.partners-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.partners-subtitle svg {
    color: var(--maroon);
}

.official-partners {
    margin-bottom: 3rem;
}

.official-partners-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .official-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.official-partner-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.official-partner-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-xl);
}

.official-partner-icon {
    width: 64px;
    height: 64px;
    background: hsla(345, 100%, 22%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--maroon);
    transition: all var(--transition-normal);
}

.official-partner-card:hover .official-partner-icon {
    background: var(--maroon);
    color: white;
    transform: scale(1.1);
}

.official-partner-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.employers-section {
    text-align: center;
}

.employers-section .partners-subtitle svg {
    color: var(--gold);
}

.employers-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.slider-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}

.slider-gradient-left {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.slider-gradient-right {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.employers-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

.employers-track:hover {
    animation-play-state: paused;
}

.employer-badge {
    flex-shrink: 0;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    font-family: var(--font-heading);
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--transition-normal);
}

.employer-badge:hover {
    border-color: var(--maroon);
    box-shadow: var(--shadow-lg);
}

.employers-note {
    color: var(--muted-foreground);
}

/* ============================================
   OUTCOMES SECTION
============================================ */
.outcomes {
    background: var(--muted);
}

.outcomes-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .outcomes-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outcome-stat {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.outcome-stat:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.outcome-stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--maroon);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .outcome-stat-value {
        font-size: 3rem;
    }
}

.outcome-stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
}

.outcomes-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.outcome-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-normal);
}

.outcome-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.outcome-card {
    display: flex;
    gap: 1.25rem;
}

.outcome-icon {
    width: 56px;
    height: 56px;
    background: hsla(345, 100%, 22%, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--maroon);
    transition: all var(--transition-normal);
}

.outcome-card:hover .outcome-icon {
    background: var(--maroon);
    color: white;
    transform: scale(1.1);
}

.outcome-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.outcome-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(to right, var(--maroon), var(--maroon-dark));
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    color: white;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 3rem;
    }
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-section h3 {
        font-size: 2rem;
    }
}

.cta-section p {
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ENQUIRY SECTION
============================================ */
.enquiry {
    background: var(--background);
}

.enquiry-grid {
    display: grid;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .enquiry-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.enquiry-form-card {
    background: var(--card);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .enquiry-form-card {
        padding: 2.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px hsla(345, 100%, 22%, 0.1);
}

.form-group textarea {
    resize: none;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-row .form-group {
    margin-bottom: 0;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card {
    background: var(--maroon);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    color: white;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-info-card {
        padding: 2.5rem;
    }
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: hsla(45, 100%, 49%, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item a {
    opacity: 0.8;
    transition: color var(--transition-normal);
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item p:not(.contact-label) {
    opacity: 0.8;
}

.benefits-card {
    background: hsla(45, 100%, 49%, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid hsla(45, 100%, 49%, 0.2);
}

.benefits-card h4 {
    margin-bottom: 1rem;
}

.benefits-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefits-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.benefit-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: linear-gradient(to bottom, var(--maroon), var(--maroon-dark));
    color: white;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 48px;
}

.footer-wave path {
    fill: var(--muted);
}

.footer-content {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@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 1fr;
        gap: 3rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--foreground);
}

.footer-logo h3 {
    font-size: 1.125rem;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-desc {
    opacity: 0.7;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    opacity: 0.7;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-contact a {
    opacity: 0.7;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-partners {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-partners p {
    opacity: 0.5;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-partner-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-partner-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    opacity: 0.5;
    font-size: 0.875rem;
    transition: color var(--transition-normal);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--foreground);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 50;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-content svg {
    color: #10B981;
    flex-shrink: 0;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: var(--maroon);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--maroon-light);
}