/* ============================================
   Admissions Page Styles
   ============================================ */

.adm-hero {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.adm-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: a-pulse 8s ease-in-out infinite;
}
.adm-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91,80,214,0.18) 0%, transparent 60%);
    border-radius: 50%;
    animation: a-pulse 10s ease-in-out infinite reverse;
}
@keyframes a-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%      { transform: scale(1.1); opacity: 0.8; }
}
.adm-hero .hero-content { position: relative; z-index: 10; }
.adm-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}
.adm-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 720px;
    margin: 0 auto;
}

.adm-section { padding: 80px 0; }
.adm-section.alt { background: linear-gradient(180deg, #f6f7ff 0%, #ffffff 100%); }

.adm-section .badge {
    display: inline-block;
    background: linear-gradient(135deg, #31287e, #1a1556);
    color: #fff;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.adm-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1556;
    margin: 0 0 18px;
    line-height: 1.22;
}
.adm-section h2 .accent {
    background: linear-gradient(120deg, #31287e 0%, #5b50d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.adm-section p {
    font-size: 16px;
    line-height: 1.85;
    color: #5a5a72;
    margin-bottom: 16px;
}
.adm-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(49, 40, 126, 0.18);
}
.adm-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.adm-image:hover img { transform: scale(1.05); }

/* Procedure steps */
.proc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}
.proc-step {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(49, 40, 126, 0.1);
    box-shadow: 0 14px 32px rgba(49, 40, 126, 0.08);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.proc-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(49, 40, 126, 0.18);
}
.proc-step .step-num {
    display: inline-block;
    font-family: "Catamaran", sans-serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, #31287e 0%, #5b50d6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.proc-step h4 {
    font-family: "Catamaran", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1a1556;
    margin: 0 0 10px;
}
.proc-step p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #5a5a72;
    margin: 0;
}

/* Documents list */
.docs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
}
.docs-list li {
    position: relative;
    padding: 10px 0 10px 38px;
    font-size: 15px;
    color: #4a4a5e;
    line-height: 1.55;
}
.docs-list li::before {
    content: "\1F4C4";
    position: absolute;
    left: 0;
    top: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(49, 40, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Enquiry CTA */
.adm-cta {
    background: linear-gradient(135deg, #31287e 0%, #5b50d6 100%);
    color: #fff;
    border-radius: 24px;
    padding: 44px 38px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(49, 40, 126, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}
.adm-cta::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 60%);
    pointer-events: none;
}
.adm-cta h3 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
}
.adm-cta p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    max-width: 720px;
    margin: 0 auto 24px;
    position: relative;
}
.adm-cta .cta-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    position: relative;
}
.adm-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adm-cta .cta-btn.primary {
    background: #ffffff;
    color: #31287e;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.adm-cta .cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}
.adm-cta .cta-btn.ghost {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.35);
}
.adm-cta .cta-btn.ghost:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .proc-steps { grid-template-columns: 1fr; }
    .docs-list  { grid-template-columns: 1fr; }
    .adm-section h2 { font-size: 1.8rem; }
}

@media (max-width: 575px) {
    .adm-hero { height: 360px; }
    .adm-hero h1 { font-size: 2.2rem; }
    .adm-cta { padding: 32px 22px; border-radius: 18px; }
    .adm-cta h3 { font-size: 22px; }
}
