﻿/* Modal Overlay Background */
.admission-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

/* Main Modal Container */
.admission-modal {
    position: relative;
    background-color: #ffffff;
    width: 100%;
    max-width: 950px;
    display: grid;
    grid-template-columns: 2.2fr 3fr;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #51185a;
    z-index: 10;
}

/* --- Left Promo Panel --- */
.promo-panel {
    background-color: #51185a; /* Deep Purple Theme */
    color: #ffffff;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-placeholder {
    font-size: 11px;
    background: rgba(255,255,255,0.1);
    padding: 5px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.promo-title {
    color: #fbd603; /* Yellow Accent */
    font-size: 32px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.promo-subtitle {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.program-details h2 {
    color: #fbd603;
    font-size: 18px;
    font-weight: 600;
}

.program-details h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #e5e5e5;
}

.highlights-list {
    list-style: none;
    margin-bottom: 20px;
}

.highlights-list li {
    font-size: 12px;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.highlights-list li::before {
    content: "•";
    color: #fbd603;
    position: absolute;
    left: 0;
    font-size: 16px;
    top: -2px;
}

.start-date-badge {
    background-color: #fbd603;
    color: #000;
    padding: 8px 12px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.promo-contact {
    font-size: 13px;
    text-align: center;
    font-weight: bold;
}

/* --- Right Info Panel --- */
.info-panel {
    background-color: #ffffff;
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-header {
    border: 2px solid #000000;
    padding: 10px;
    text-align: center;
}

.info-header h2 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
}

.info-body {
    border: 2px solid #000000;
    padding: 15px;
}

.info-body h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #000;
}

.info-body p {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.action-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-link {
    border: 2px solid #000000;
    padding: 12px 10px;
    text-align: center;
    text-decoration: none;
    color: #0000ff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.btn-link:hover {
    background-color: #f9f9f9;
}

.contact-box {
    border: 2px solid #000000;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.contact-box p {
    color: #000;
}

.contact-box .phone-numbers {
    font-weight: bold;
    margin: 5px 0;
}

.contact-box a {
    color: #0000ff;
    text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .admission-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .action-links {
        grid-template-columns: 1fr;
    }
    .close-btn {
    color: #ffffff;
}
}