/* Page Header */
.page-header {
    background: linear-gradient(135deg, #912976 0%, #673AB7 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3') center/cover;
    opacity: 0.1;
}

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

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

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.header-highlight {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Admission Requirements */
.admission-requirements {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.requirement-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-top: 5px solid #E91E63;
    transition: transform 0.3s ease;
}

.requirement-card:nth-child(2) {
    border-top-color: #673AB7;
}

.requirement-card:nth-child(3) {
    border-top-color: #FF4081;
}

.requirement-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.requirement-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

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

.requirement-card li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Admission Process */
.admission-process {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 40px;
    flex-shrink: 0;
}

.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, #E91E63, #FF4081);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #673AB7, #9C27B0);
    box-shadow: 0 10px 30px rgba(103, 58, 183, 0.3);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #FF4081, #E91E63);
    box-shadow: 0 10px 30px rgba(255, 64, 129, 0.3);
}

.process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-duration {
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.process-step:nth-child(1) .step-duration {
    background: #E91E63;
}

.process-step:nth-child(2) .step-duration {
    background: #673AB7;
}

.process-step:nth-child(3) .step-duration {
    background: #FF4081;
}

.process-step:nth-child(4) .step-duration {
    background: #4CAF50;
}

/* Application Form */
.application-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.admission-form {
    display: grid;
    gap: 30px;
}

.form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
}

.form-section:nth-child(2) {
    border-left-color: #673AB7;
}

.form-section:nth-child(3) {
    border-left-color: #FF4081;
}

.form-section:nth-child(4) {
    border-left-color: #4CAF50;
}

.form-section:nth-child(5) {
    border-left-color: #FF9800;
}

.form-section:nth-child(6) {
    border-left-color: #9C27B0;
}

.form-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section:nth-child(1) h3 {
    color: #E91E63;
}

.form-section:nth-child(2) h3 {
    color: #673AB7;
}

.form-section:nth-child(3) h3 {
    color: #FF4081;
}

.form-section:nth-child(4) h3 {
    color: #4CAF50;
}

.form-section:nth-child(5) h3 {
    color: #FF9800;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #E91E63;
    outline: none;
}

.form-group select {
    background: white;
}

.form-group textarea {
    resize: vertical;
}

.upload-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #FF9800;
}

.upload-info ul {
    list-style: none;
    padding: 0;
}

.upload-info li {
    padding: 5px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
}

.checkbox-label span {
    color: #666;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
    padding: 30px;
}

.btn-primary.large {
    background: linear-gradient(135deg, #E91E63, #673AB7);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.form-note {
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

/* Practical Info */
.practical-info {
    padding: 100px 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-top: 5px solid #E91E63;
    text-align: center;
}

.info-card:nth-child(2) {
    border-top-color: #673AB7;
}

.info-card:nth-child(3) {
    border-top-color: #FF4081;
}

.info-card:nth-child(4) {
    border-top-color: #4CAF50;
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card li {
    padding: 8px 0;
    color: #666;
}

.discount-note {
    background: #673AB7;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233,30,99,0.15);
    border-color: #E91E63;
}

.faq-item:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(103,58,183,0.15);
    border-color: #673AB7;
}

.faq-item:nth-child(3):hover {
    box-shadow: 0 15px 40px rgba(255,64,129,0.15);
    border-color: #FF4081;
}

.faq-item:nth-child(4):hover {
    box-shadow: 0 15px 40px rgba(76,175,80,0.15);
    border-color: #4CAF50;
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 6px solid #E91E63;
    position: relative;
    background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
}

.faq-item:nth-child(2) .faq-question {
    border-left-color: #673AB7;
    background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 100%);
}

.faq-item:nth-child(3) .faq-question {
    border-left-color: #FF4081;
    background: linear-gradient(135deg, #fff5f9 0%, #ffffff 100%);
}

.faq-item:nth-child(4) .faq-question {
    border-left-color: #4CAF50;
    background: linear-gradient(135deg, #f5fff6 0%, #ffffff 100%);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #E91E63;
    background: rgba(233,30,99,0.1);
}

.faq-item:nth-child(2) .faq-toggle {
    color: #673AB7;
    background: rgba(103,58,183,0.1);
}

.faq-item:nth-child(3) .faq-toggle {
    color: #FF4081;
    background: rgba(255,64,129,0.1);
}

.faq-item:nth-child(4) .faq-toggle {
    color: #4CAF50;
    background: rgba(76,175,80,0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer div {
    padding: 0 30px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-answer p {
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.form-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .header-highlight {
        flex-direction: column;
        align-items: center;
    }
    
    .admission-requirements,
    .admission-process,
    .application-form,
    .practical-info,
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header h2,
    .form-header h2 {
        font-size: 2rem;
    }
    
    .section-header p,
    .form-header p {
        font-size: 1rem;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .requirement-card {
        padding: 30px 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-section {
        padding: 20px 15px;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
    
    .btn-primary.large {
        padding: 15px 40px;
        font-size: 1rem;
        width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer div {
        padding: 0 20px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .highlight-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .requirement-icon,
    .info-icon {
        font-size: 3rem;
    }
    
    .requirement-card h3,
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-section {
        padding: 15px;
    }
    
    .btn-primary.large {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}