@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #1a365d;
    --secondary: #744210;
    --accent: #c53030;
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-sans);
    color: #1f2937;
    background: white;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #15304f;
}

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

.btn-secondary:hover {
    background: #5c351b;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo {
    background: var(--primary);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.navbar-logo svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand-text span {
    display: block;
    color: var(--primary);
}

.navbar-brand-text span:first-child {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary) !important;
    line-height: 1.2;
}

.navbar-brand-text span:last-child {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary) !important;
    font-weight: 600;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s;
}

.navbar-link:hover, .navbar-link.active {
    color: var(--secondary);
}

.navbar-link.active {
    border-bottom: 2px solid var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-signin {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-signin:hover {
    background: #15304f;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #4b5563;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        border-bottom: 1px solid #f3f4f6;
        gap: 1rem;
    }
    
    .mobile-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(26,54,93,0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(116,66,16,0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(26,54,93,0.3) 0%, transparent 40%);
    z-index: 5;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-slide.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%),
        linear-gradient(90deg, rgba(26,54,93,0.4) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: white;
    padding-left: 5%;
}

.hero-content-inner {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content-inner.hidden {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-content-inner.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-content-inner.hidden {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-content-inner.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #744210 0%, #5c3518 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(116,66,16,0.4);
    position: relative;
    overflow: hidden;
}

.hero-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #d4a574;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, transparent);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 650px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, #744210 0%, #8b4d1a 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(116,66,16,0.4);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(116,66,16,0.5);
}

.hero-buttons .btn-secondary:hover::before {
    left: 100%;
}

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

.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-3px);
}

.hero-controls {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-arrow {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
    border-color: #d4a574;
}

.hero-arrow:hover svg {
    color: #d4a574;
}

.hero-arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    transition: color 0.3s;
}

.hero-dots {
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    padding: 0;
    position: relative;
}

.hero-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.hero-dot.active {
    background: #d4a574;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(212,165,116,0.5);
}

.hero-dot.active::before {
    border-color: rgba(212,165,116,0.3);
}

.hero-dot:hover:not(.active) {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 20;
}

.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #744210, #d4a574);
    transition: width 0.3s linear;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 4rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 20;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    position: relative;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: #d4a574;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

.hero-counter {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.875rem;
}

.hero-counter span {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding-left: 3%;
        max-width: 700px;
    }
    
    .hero-counter {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-controls {
        bottom: 6rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    position: relative;
    z-index: 20;
    margin-top: -4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 3rem);
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-description {
    color: #4b5563;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(26,54,93,0.05);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: #4b5563;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Programs Preview */
.programs-section {
    padding: 6rem 0;
}

.programs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.programs-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
}

.programs-header p {
    color: #4b5563;
    max-width: 40rem;
}

.programs-link {
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.programs-link:hover {
    gap: 0.75rem;
}

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

.program-card {
    cursor: pointer;
}

.program-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.program-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.program-image h3 {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
    font-size: 1.25rem;
}

.program-card p {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.program-card button {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s;
}

.program-card:hover button {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .programs-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-section .blob-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(3rem);
}

.cta-section .blob-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(50%, 50%);
    filter: blur(3rem);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    margin: 1rem 0;
    color: #9ca3af;
}

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

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-col h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Page Header */
.page-header {
    background: var(--primary);
    padding: 5rem 0;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    line-height: 1.7;
}

/* Programs List */
.programs-list-section {
    padding: 6rem 0;
}

.programs-category {
    margin-bottom: 5rem;
}

.programs-category h2 {
    font-size: 1.875rem;
    color: var(--primary);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.programs-category h2 span {
    width: 3rem;
    height: 0.25rem;
    background: var(--secondary);
    border-radius: 9999px;
}

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

.program-item {
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    background: rgba(249,250,251,0.5);
    transition: all 0.3s;
}

.program-item:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.program-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.program-item-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.program-item-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary);
}

.program-item-meta {
    text-align: right;
}

.program-item-meta span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program-item-meta .duration {
    color: #9ca3af;
}

.program-item-meta .credits {
    color: var(--secondary);
}

.program-item h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.program-item p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-item button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid rgba(26,54,93,0.2);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
}

.program-item button:hover {
    background: var(--primary);
    color: white;
}

/* Accreditation */
.accreditation-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.accreditation-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.accreditation-icon {
    width: 8rem;
    height: 8rem;
    background: rgba(26,54,93,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accreditation-icon svg {
    width: 4rem;
    height: 4rem;
    color: var(--primary);
}

.accreditation-content h2 {
    font-size: 1.875rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.accreditation-content p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.accreditation-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.accreditation-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
}

/* Admissions */
.admissions-section {
    padding: 6rem 0;
}

.admissions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.admissions-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.admissions-header p {
    color: #4b5563;
}

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

.admission-step {
    position: relative;
}

.admission-step-number {
    font-size: 3.75rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: #f3f4f6;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    z-index: 0;
}

.admission-step-content {
    position: relative;
    z-index: 1;
}

.admission-step h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.admission-step p {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .admissions-steps {
        grid-template-columns: 1fr;
    }
}

/* Requirements */
.requirements-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.requirements-list li svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.requirements-list li span {
    color: #374151;
    font-weight: 500;
}

.requirements-cta {
    margin-top: 3rem;
}

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

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
}

.requirement-card svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.requirement-card h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.requirement-card p {
    font-size: 0.875rem;
    color: #4b5563;
}

.requirement-card:last-child {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements-cards {
        grid-template-columns: 1fr;
    }
    
    .requirement-card:last-child {
        grid-column: span 1;
    }
}

/* Forms */
.form-container {
    max-width: 32rem;
    margin: 4rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-container p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,54,93,0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #15304f;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.form-footer a {
    color: var(--primary);
    font-weight: 500;
}

/* Dashboard */
.dashboard {
    min-height: 100vh;
    background: #f9fafb;
}

.dashboard-header {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.dashboard-header h1 {
    font-size: 1.5rem;
    color: var(--primary);
}

.dashboard-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
}

.dashboard-nav a {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    background: var(--primary);
    color: white;
}

.dashboard-content {
    padding: 2rem 0;
}

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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.stat-card-icon.blue { background: #dbeafe; color: #2563eb; }
.stat-card-icon.green { background: #dcfce7; color: #16a34a; }
.stat-card-icon.purple { background: #f3e8ff; color: #9333ea; }
.stat-card-icon.amber { background: #fef3c7; color: #d97706; }

.stat-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.stat-card-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

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

/* Tables */
.table-container {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    margin-bottom: 2rem;
}

.table-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h2 {
    font-size: 1.25rem;
    color: var(--primary);
}

.table-search {
    position: relative;
}

.table-search input {
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.table-search svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
}

table {
    width: 100%;
    text-align: left;
}

thead {
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

th {
    padding: 1rem 1.5rem;
    font-weight: 700;
}

td {
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.table-title {
    font-weight: 600;
    color: #111827;
}

.table-title span {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
}

.table-price {
    font-weight: 700;
    color: var(--primary);
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-success {
    background: #dcfce7;
    color: #166534;
}

.badge-warning {
    background: #fef3c7;
    color: #92400e;
}

/* Course Cards */
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.course-image {
    height: 12rem;
    background: #f3f4f6;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.course-content {
    padding: 1.5rem;
}

.course-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.course-title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.course-description {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f9fafb;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.course-meta svg {
    width: 1rem;
    height: 1rem;
}

.btn-enroll {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn-enroll:hover {
    background: #15304f;
}

@media (max-width: 768px) {
    .course-grid {
        grid-template-columns: 1fr;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 0.75rem;
    border: 2px dashed #d1d5db;
}

.empty-state svg {
    width: 3rem;
    height: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.empty-state p {
    color: #6b7280;
}

/* Enrolled Course Card */
.enrolled-course {
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.enrolled-course-image {
    height: 10rem;
    background: rgba(26,54,93,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.enrolled-course-image svg {
    width: 3rem;
    height: 3rem;
    color: rgba(26,54,93,0.2);
}

.enrolled-course-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,54,93,0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.enrolled-course:hover .enrolled-course-overlay {
    opacity: 1;
}

.enrolled-course-overlay button {
    background: white;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

.enrolled-course-content {
    padding: 1.5rem;
}

.enrolled-course-content h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.enrolled-course-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.enrolled-course-status {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--secondary);
}

.progress-bar {
    height: 0.5rem;
    background: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary);
    width: 33%;
    border-radius: 9999px;
}

/* Admin Layout */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--primary);
    color: white;
    padding: 2rem 1.5rem;
}

.admin-sidebar h2 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-nav {
    list-style: none;
}

.admin-nav li {
    margin-bottom: 0.5rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.admin-nav svg {
    width: 1.25rem;
    height: 1.25rem;
}

.admin-main {
    background: #f9fafb;
    padding: 2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 1.875rem;
    color: var(--primary);
}

.admin-header p {
    color: #6b7280;
}

.btn-add {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn-add:hover {
    background: #15304f;
}

@media (max-width: 768px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        display: none;
    }
}

/* Profile dropdown */
.user-menu {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.3s;
}

.user-menu-toggle:hover {
    background: #f3f4f6;
}

.user-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(26,54,93,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
}

.user-menu-toggle span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    min-width: 12rem;
    z-index: 50;
    display: none;
}

.user-menu.open .user-dropdown {
    display: block;
}

.user-dropdown a,
.user-dropdown button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
    background: #f9fafb;
}

.user-dropdown button {
    color: #dc2626;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.modal-close {
    float: right;
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
}

.modal-close:hover {
    color: #374151;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button:hover,
.pagination button.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.hidden { display: none; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 1rem; }