
/* Admission Page Redesign - Professional & Modern (Dark Theme Compatible) */

/* --- Utilities --- */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.ml-2 { margin-left: 0.5rem; }

/* --- Hero Section Overrides --- */
.blog-hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    padding: 160px 0 140px;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker gradient for better text contrast */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    background: var(--primary-yellow-10, rgba(244, 180, 0, 0.1)); /* Yellow tint */
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-yellow-20, rgba(244, 180, 0, 0.2));
}

.hero-content-centered h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-content-centered p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
}

/* Custom Shape Divider */
.custom-shape-divider-bottom-1680000000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.custom-shape-divider-bottom-1680000000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1680000000 .shape-fill {
    fill: var(--dark-bg); /* Match global dark background */
}

/* --- Layout Structure --- */
.section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.admission-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-left {
    display: flex;
    justify-content: center;
}

.portrait-9-16 {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    background: var(--card-bg);
}

.portrait-9-16 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admission-caption {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.admission-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

/* Vertical Divider */
.admission-split-layout::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, transparent);
    transform: translateX(-50%);
}

@media (max-width: 992px) {
    .admission-intro-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .intro-left {
        justify-content: center;
    }
    .portrait-9-16 {
        max-width: 320px;
    }
    .admission-caption {
        text-align: center;
    }
    .admission-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .admission-split-layout::after {
        display: none;
    }
    .hero-content-centered h1 {
        font-size: 2.8rem;
    }
}

/* Section Headers */
.section-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
}

.section-header h2 i {
    color: var(--primary-yellow);
}

.header-line {
    width: 50px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(244, 180, 0, 0.5); /* Glow effect */
}

/* --- Admission Requirements Column --- */
.image-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dept-group {
    background: transparent;
    padding: 0;
}

.dept-title {
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Requirements Cards */
.admission-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.admission-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: rgba(244, 180, 0, 0.3);
}

.admission-image-full {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.admission-card:hover .admission-image-full {
    opacity: 1;
}

.text-content {
    padding: 25px;
}

.text-content h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-content h4 i {
    color: var(--primary-yellow);
}

.text-content div {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Enrollment Grid Layout --- */
.enrollment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.enrollment-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 25px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.enrollment-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: var(--primary-yellow);
    background: linear-gradient(145deg, #252525, #1e1e1e);
}

.card-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.step-badge {
    background: rgba(244, 180, 0, 0.1);
    color: var(--primary-yellow);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(244, 180, 0, 0.2);
}

.main-icon {
    font-size: 2rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.enrollment-card:hover .main-icon {
    background: var(--primary-yellow);
    color: #000; /* Dark text on yellow icon */
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 15px rgba(244, 180, 0, 0.4);
}

.card-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.card-content .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- CTA Section --- */
.admission-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.admission-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--primary-yellow-05, rgba(244, 180, 0, 0.05)) 0%, transparent 70%);
}

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

.admission-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.admission-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--primary-yellow);
    color: #000; /* Dark text for contrast */
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(244, 180, 0, 0.2);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(244, 180, 0, 0.4);
    color: #000;
}

.btn-outline-large {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-outline-large:hover {
    background: var(--white);
    color: #000;
    border-color: var(--white);
}
