/* --- 1. GLOBAL SETTINGS & TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #3498db;
    --dark-navy: #0d3b66;
    --school-yellow: #f4d35e;
    --text-main: #1a1c1e;
    --text-gray: #4a5568;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-bold: 0 15px 35px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
/* --- 1. PAGE HEADER --- */
.page-header {
    background: linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.9)), 
                url('/static/course/images/admission-bg.jpg') center/cover;
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255, 255, 255, 0.8); }

/* --- 2. SECTION HEADERS --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 { font-size: 2.25rem; margin-bottom: 10px; }

/* --- 3. APPLICATION PROCESS CARDS --- */
.application-process { padding: 80px 0; background: var(--white); }
.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.process-cards .card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
}
.process-cards .card:hover { transform: translateY(-10px); box-shadow: var(--shadow-bold); }
.card-header { background: var(--dark-navy); padding: 25px; color: var(--school-yellow); text-align: center; }
.card-header h3 { color: var(--school-yellow); margin: 0; font-size: 1.4rem; }
.card-body { padding: 30px; }
.card-body ul { list-style: none; margin-top: 15px; }
.card-body ul li { margin-bottom: 8px; font-size: 0.95rem; display: flex; align-items: center; }
.card-body ul li::before { content: "✓"; color: #2ecc71; font-weight: bold; margin-right: 10px; }

/* --- 4. REQUIREMENTS GRID --- */
.requirements { padding: 80px 0; background: var(--light-bg); }
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.requirement-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.requirement-icon { font-size: 2.5rem; color: var(--primary-blue); margin-bottom: 20px; }
.requirement-card ul { list-style: none; text-align: left; margin-top: 15px; }
.requirement-card ul li { font-size: 0.95rem; margin-bottom: 10px; color: var(--text-gray); }

/* --- 5. VISA INFORMATION SECTION --- */
.visa-info { padding: 80px 0; }
.visa-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.visa-details, .visa-process { flex: 1; }
.requirement-item {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--school-yellow);
}

/* Vertical Timeline for Visa */
.process-timeline { position: relative; padding-left: 50px; }
.process-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #ddd;
}
.process-timeline .timeline-item { position: relative; margin-bottom: 40px; }
.timeline-marker {
    position: absolute;
    left: -50px;
    width: 36px;
    height: 36px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

/* --- 6. APPLICATION FORM --- */
.application-form-section { padding: 80px 0; background: var(--light-bg); }
.application-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-bold);
}
.form-section { margin-bottom: 40px; }
.form-section h3 { border-bottom: 2px solid var(--light-bg); padding-bottom: 10px; margin-bottom: 25px; }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-weight: 600; margin-bottom: 8px; color: var(--dark-navy); }

input, select, textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}
input:focus, select:focus, textarea:focus { border-color: var(--primary-blue); outline: none; box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); }

.btn-primary.btn-large {
    background: var(--primary-blue);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}
.btn-primary.btn-large:hover { background: var(--dark-navy); transform: translateY(-2px); }

/* --- 7. FAQ SECTION --- */
.faq { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.faq-item h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--primary-blue); }

/* --- 8. RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .visa-content { flex-direction: column; }
    .application-form-container { padding: 30px 20px; }
}
@media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 0; }
    h1 { font-size: 2.5rem; }
    .process-timeline { padding-left: 40px; }
}