/* ===== ADMISSION APPLY SECTION CSS ===== */
/* Inline styles for immediate implementation */

.admission-apply-section {
    background-color: #ffffff;
    padding: 4rem 1rem;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-title {
    font-family: var(--font-primary, 'Segoe UI', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--nsb-primary, #0a1f44);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-family: var(--font-secondary, Arial, sans-serif);
    font-size: 1.1rem;
    color: var(--nsb-text-secondary, #666);
    max-width: 700px;
    margin: 0 auto;
}

.admission-cta {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content {
    margin-bottom: 2.5rem;
}

.cta-title {
    font-family: var(--font-primary, 'Segoe UI', sans-serif);
    font-size: 1.8rem;
    color: var(--nsb-primary, #0a1f44);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--nsb-text-secondary, #666);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-primary, 'Segoe UI', sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 160px;
    height: 46px;
}

/* Primary Button (Orange) */
.btn-primary {
    background: var(--nsb-accent, #fca311);
    color: #ffffff;
}

.btn-primary:hover {
    background: #e59400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(252, 163, 17, 0.2);
}

/* Secondary Button (Dark Blue - Solid) */
.btn-secondary {
    background: var(--nsb-primary, #0a1f44);
    color: #ffffff;
    position: relative;
}

.btn-secondary:hover {
    background: #0c254e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.15);
}

/* Outline Button (Dark Blue - Outline) */
.btn-outline-secondary {
    background: transparent;
    color: var(--nsb-primary, #0a1f44);
    border: 2px solid var(--nsb-primary, #0a1f44);
}

.btn-outline-secondary:hover {
    background: var(--nsb-primary, #0a1f44);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.1);
}

/* ===== DROPDOWN STYLES ===== */
.brochure-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-icon {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.brochure-dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

/* Brochure Dropdown Menu */
.brochure-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    padding: 0.5rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e1e5eb;
    margin-top: 0.5rem;
}

.brochure-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.brochure-dropdown-item {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-family: var(--font-secondary, Arial, sans-serif);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: left;
    border-left: 3px solid transparent;
}

.brochure-dropdown-item:hover {
    background: #f8f9fa;
    color: var(--nsb-primary, #0a1f44);
    border-left-color: var(--nsb-accent, #fca311);
    padding-left: 1.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .admission-apply-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .admission-cta {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    .brochure-dropdown-menu {
        left: 0;
        right: 0;
        transform: translateY(10px);
        width: 100%;
        min-width: auto;
    }
    
    .brochure-dropdown-menu.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .admission-cta {
        padding: 2rem 1.25rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        height: 44px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* Accessibility */
.btn:focus,
.brochure-dropdown-toggle:focus {
    outline: 2px solid var(--nsb-accent, #fca311);
    outline-offset: 2px;
}