/* UOK University Website Styles */

/* CSS Custom Properties for Color Scheme */
:root {
    /* Primary Colors - Academic Navy Blue */
    --primary-900: #0f172a;    /* Deep Charcoal Blue */
    --primary-800: #1e293b;    /* Dark Slate */
    --primary-700: #334155;    /* Slate */
    --primary-600: #475569;    /* Medium Slate */
    --primary-500: #64748b;    /* Light Slate */
    --primary-400: #94a3b8;    /* Soft Slate */
    --primary-300: #cbd5e1;    /* Very Light Slate */
    --primary-200: #e2e8f0;    /* Pale Slate */
    --primary-100: #f1f5f9;    /* Nearly White Slate */
    
    /* Academic Navy Blue */
    --navy-900: #042742;       /* Deepest Navy */
    --navy-800: #0a3a5e;       /* Deep Navy Blue */
    --navy-700: #0f436b;       /* Navy Blue */
    --navy-600: #16507d;       /* Medium Blue */
    --navy-500: #3b82f6;       /* Bright Blue */
    --navy-400: #60a5fa;       /* Light Blue */
    --navy-300: #93c5fd;       /* Soft Blue */
    --navy-200: #bfdbfe;       /* Pale Blue */
    --navy-100: #dbeafe;       /* Very Light Blue */
    
    /* Academic Gold */
    --gold-900: #92400e;       /* Deep Bronze */
    --gold-800: #b45309;       /* Bronze */
    --gold-700: #d97706;       /* Dark Gold */
    --gold-600: #f59e0b;       /* Academic Gold */
    --gold-500: #fbbf24;       /* Bright Gold */
    --gold-400: #fcd34d;       /* Light Gold */
    --gold-300: #fde68a;       /* Soft Gold */
    --gold-200: #fef3c7;       /* Pale Gold */
    --gold-100: #fffbeb;       /* Cream */
    
    /* Supporting Colors */
    --success: #10b981;        /* Emerald Green */
    --warning: #f59e0b;        /* Academic Gold */
    --error: #ef4444;          /* Warm Red */
    --info: #0ea5e9;           /* Sky Blue */
    
    /* Backgrounds */
    --bg-primary: #ffffff;      /* Pure White */
    --bg-secondary: #f8fafc;    /* Subtle Blue-Gray */
    --bg-tertiary: #f1f5f9;     /* Light Blue-Gray */
    --bg-accent: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    
    /* Text Colors */
    --text-primary: var(--primary-900);    /* Deep Charcoal */
    --text-secondary: var(--primary-600);  /* Medium Slate */
    --text-tertiary: var(--primary-500);   /* Light Slate */
    --text-inverse: #ffffff;               /* White */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::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 ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
}

.btn-primary:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(245, 158, 11, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(245, 158, 11, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: var(--navy-700);
    border: 2px solid var(--navy-600);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--navy-600);
    color: var(--text-inverse);
    transform: translateY(-1px) scale(1.02);
    border-color: var(--navy-700);
    box-shadow: 
        0 8px 25px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-outline:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.15rem;
    border-radius: 14px;
}

/* Header */
.header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-200);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--primary-200);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 80px;
    width: auto;
    margin-right: 15px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text h1 {
    font-size: 2.2rem;
    margin: 0;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.1;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

.header-contact {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-item i {
    color: var(--gold-600);
    font-size: 1.1rem;
}

/* Navigation */
.main-nav {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    width: 100%;
    border-top: 1px solid var(--primary-200);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    margin: 0;
}

.main-nav li {
    margin: 0 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--navy-700);
    background: rgba(30, 58, 138, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 40%, var(--navy-500) 100%);
    color: var(--text-inverse);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: var(--text-inverse);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}


/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.features h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-size: 2.5rem;
}

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

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

.feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-200);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
    transition: left 0.3s ease;
}

.feature:hover::before {
    left: 0;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-300);
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    filter: drop-shadow(0 2px 4px rgba(30, 58, 138, 0.1));
}

/* Courses Section */
.popular-courses, .courses-section {
    padding: 100px 0;
}

.popular-courses h2, .courses-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-size: 2.5rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-200);
    position: relative;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-300);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.course-price {
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    color: var(--text-inverse);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.course-content {
    padding: 30px;
}

.course-category {
    color: var(--navy-600);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    background: var(--navy-100);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-meta i {
    color: var(--gold-600);
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.stars {
    color: var(--gold-600);
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Course Filter */
.courses-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--navy-600);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy-600);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy-600);
    color: var(--text-inverse);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(30, 58, 138, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--navy-700);
}

.filter-btn:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.search-filter {
    position: relative;
}

.search-filter input {
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--primary-300);
    border-radius: 25px;
    width: 320px;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.search-filter input:focus {
    border-color: var(--navy-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-filter input::placeholder {
    color: var(--text-tertiary);
}

.search-filter i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 1.1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    color: var(--text-inverse);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-inverse) 0%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-size: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--primary-200);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-300);
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
    font-weight: 700;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 25px;
    padding-left: 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
    font-weight: 700;
}

.author-info span {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    color: var(--text-inverse);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--text-inverse);
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    color: var(--text-inverse);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--text-inverse);
    margin-bottom: 20px;
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
    color: var(--text-inverse);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.contact-text h3 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

/* Social Links */
.social-links h3 {
    margin: 30px 0 15px 0;
    color: var(--text-primary);
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
    color: var(--text-inverse);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.social-icon:hover {
    transform: scale(1.1) translateY(-2px);
    background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
    box-shadow: var(--shadow-lg);
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--navy-600);
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary-300);
    border-radius: var(--radius-md);
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
    border-color: var(--navy-500);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
    font-size: 2.2rem;
}

.map-placeholder iframe {
    width: 100%;
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.values {
    padding: 80px 0;
    background: #f8f9fa;
}

.values h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

/* Timeline */
.history {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #3498db;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    max-width: 300px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.member-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 25px;
}

.member-role {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Achievements */
.achievements {
    padding: 80px 0;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.achievement-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
}

/* Admission Page Styles */
.admission-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Requirements */
.requirements {
    padding: 80px 0;
    background: #f8f9fa;
}

.requirements h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.requirement-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirement-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price {
    margin: 20px 0;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

.features i {
    color: #27ae60;
    margin-right: 10px;
}

.payment-options {
    text-align: center;
    margin-top: 60px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.payment-method i {
    font-size: 1.5rem;
    color: #3498db;
}

/* Scholarships */
.scholarships {
    padding: 80px 0;
    background: #f8f9fa;
}

.scholarships h2 {
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.scholarships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.scholarship-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.scholarship-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.discount {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #3498db;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 20px 0;
}

/* Application Form */
.application-form {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Newsletter */
.newsletter-signup {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    color: var(--text-inverse);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    color: var(--text-inverse);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--primary-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 12px 24px;
    border: 2px solid var(--navy-600);
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy-600);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--navy-600);
    color: var(--text-inverse);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(30, 58, 138, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--primary-300);
    color: var(--text-tertiary);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.pagination-pages {
    display: flex;
    gap: 8px;
}

.pagination-page {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-300);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.pagination-page.active,
.pagination-page:hover {
    background: var(--navy-600);
    color: var(--text-inverse);
    border-color: var(--navy-600);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 
        0 6px 20px rgba(30, 58, 138, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pagination-page:active {
    transform: translateY(0) scale(1);
    transition: all 0.1s ease;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--navy-900) 100%);
    color: var(--text-inverse);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--text-inverse);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 400;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 5px 0;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--gold-400);
    transform: translateX(5px);
}

.footer .social-links {
    margin-top: 25px;
}

.footer .social-links a {
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .social-links a:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.contact-info i {
    color: var(--gold-400);
    width: 20px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-contact {
        justify-content: center;
    }
    
    .logo-image {
        height: 45px;
        margin-right: 12px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav li {
        margin: 5px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .courses-grid,
    .values-grid,
    .team-grid,
    .achievements-grid,
    .requirements-grid,
    .scholarships-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .courses-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-filter input {
        width: 100%;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
        text-align: left !important;
    }
    
    .timeline-item .timeline-content {
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-year {
        left: 20px !important;
        transform: translateX(-50%);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 20px;
    }
    
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
        margin-right: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* New Page Styles */

/* Page Hero */
.page-hero {
    background: var(--bg-accent);
    color: var(--text-inverse);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-inverse);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Course Detail Page */
.course-hero {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    color: var(--text-inverse);
    padding: 80px 0;
}

.course-breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.course-breadcrumb a {
    color: var(--text-inverse);
    text-decoration: none;
}

.course-breadcrumb a:hover {
    text-decoration: underline;
}

.course-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.course-meta-hero {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.course-meta-hero span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.course-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.course-section {
    margin-bottom: 3rem;
}

.course-section h2 {
    color: var(--navy-800);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold-400);
    padding-bottom: 0.5rem;
}

.learning-objectives {
    list-style: none;
    padding: 0;
}

.learning-objectives li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--primary-200);
}

.learning-objectives li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

.course-curriculum {
    margin-bottom: 1.5rem;
}

.curriculum-item + .curriculum-item {
    margin-top: 1.5rem;
}

.curriculum-item {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold-500);
}

.curriculum-item h3 {
    margin-bottom: 0.5rem;
    color: var(--navy-700);
}

.module-duration {
    display: inline-block;
    background: var(--gold-200);
    color: var(--gold-800);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.instructor {
    display: flex;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.instructor-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-info h4 {
    margin-bottom: 0.5rem;
    color: var(--navy-700);
}

.course-enrollment-card {
    background: var(--bg-primary);
    border: 2px solid var(--primary-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: sticky;
    top: 2rem;
    box-shadow: var(--shadow-lg);
}

.course-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--primary-200);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-700);
}

.course-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--primary-100);
}

.feature i {
    color: var(--success);
    width: 20px;
}

.enrollment-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.course-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-700);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

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

.about-text h2 {
    color: var(--navy-800);
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: var(--navy-700);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--primary-100);
}

.values-list li:before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold-500);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.stats-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy-800);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-primary);
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-700);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-tertiary);
}

/* Timeline */
.history-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gold-400);
}

.timeline-item {
    position: relative;
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-500);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    max-width: 400px;
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 0;
    margin-left: 3rem;
}

.timeline-content h3 {
    color: var(--navy-700);
    margin-bottom: 1rem;
}

/* Faculty Page */
.faculty-intro {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faculty-grid-section {
    padding: 80px 0;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.faculty-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-5px);
}

.faculty-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.faculty-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-info {
    padding: 2rem;
}

.faculty-position {
    color: var(--gold-600);
    font-weight: 600;
    margin-bottom: 1rem;
}

.faculty-specialization,
.faculty-experience,
.faculty-education {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.faculty-specialization strong,
.faculty-experience strong,
.faculty-education strong {
    color: var(--navy-700);
}

.faculty-courses {
    margin-bottom: 1.5rem;
}

.faculty-courses strong {
    color: var(--navy-700);
    display: block;
    margin-bottom: 0.5rem;
}

.faculty-courses ul {
    list-style: none;
    padding: 0;
}

.faculty-courses li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.faculty-courses li:before {
    content: '\f02d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold-500);
}

.faculty-contact a {
    color: var(--navy-600);
    text-decoration: none;
    font-size: 0.9rem;
}

.faculty-contact a:hover {
    text-decoration: underline;
}

/* Admissions Page */
.admission-process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    color: var(--navy-700);
    margin-bottom: 1rem;
}

.admission-requirements {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.requirements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.requirement-category {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.requirement-category h3 {
    color: var(--navy-700);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--gold-400);
    padding-bottom: 0.5rem;
}

.requirement-category ul {
    list-style: none;
    padding: 0;
}

.requirement-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.requirement-category li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

.quick-apply-card,
.help-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--navy-600);
    width: 16px;
}

.admission-dates {
    padding: 80px 0;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.date-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.date-header {
    background: var(--navy-700);
    color: var(--text-inverse);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.date-status.active {
    background: var(--success);
    color: white;
}

.date-status.upcoming {
    background: var(--gold-400);
    color: var(--navy-800);
}

.date-info {
    padding: 1.5rem;
}

.date-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--primary-100);
}

.date-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.date-value {
    font-weight: 600;
    color: var(--navy-700);
}

/* Form Styles */
.admission-form-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-section {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.form-section h3 {
    color: var(--navy-700);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gold-400);
    padding-bottom: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--primary-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-300);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--navy-600);
    border-color: var(--navy-600);
}

.checkbox-label input:checked + .checkmark:after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 2px solid var(--primary-300);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.payment-option input:checked + .payment-option-content {
    border-color: var(--navy-600);
    background: rgba(59, 130, 246, 0.05);
}

.payment-price {
    font-weight: 700;
    color: var(--navy-700);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    color: var(--navy-700);
    margin-bottom: 0.5rem;
}

.departments {
    margin-bottom: 3rem;
}

.department-list {
    display: grid;
    gap: 1rem;
}

.department {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.department h4 {
    color: var(--navy-700);
    margin-bottom: 0.5rem;
}

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

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--navy-600);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.transport-options {
    display: grid;
    gap: 1.5rem;
}

.transport-option {
    display: flex;
    gap: 1rem;
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.transport-option i {
    color: var(--navy-600);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-cta {
    padding: 80px 0;
    background: var(--navy-800);
    color: var(--text-inverse);
    text-align: center;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .course-layout,
    .about-content,
    .requirements-content,
    .contact-content,
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        transform: none;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin: 0;
    }
    
    .course-meta-hero {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}