/* =====================================================
   ADMISSIONS PAGE STYLES - 2026
   ===================================================== */

/* ================= SECTION 1: HERO ================= */
.adm-hero {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: none;
}

.adm-hero .banner-desktop {
    position: relative;
}

.adm-hero .adm-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    text-align: center;
}

.adm-hero .adm-hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.adm-hero .adm-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    max-width: 100%;
    margin: 0 auto 28px;
}

.adm-hero-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.adm-hero-btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.adm-hero-btn.primary {
    background: #E8402A;
    color: #ffffff;
    border: 2px solid #E8402A;
}

.adm-hero-btn.primary:hover {
    background: #ffffff;
    color: #E8402A;
    transform: translateY(-3px);
}

.adm-hero-btn.outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.9);
}

.adm-hero-btn.outline:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-3px);
}

/* Mobile Hero */
.adm-hero .banner-text-mobile h2 {
    color: #111111;
}

.adm-hero .banner-text-mobile h2 span {
    color: #E8402A;
}

.adm-hero .banner-text-mobile p {
    color: #444444;
}

.adm-hero-content-mobile .adm-hero-btns {
    margin-top: 16px;
}

.adm-hero-content-mobile .adm-hero-btn.primary {
    padding: 12px 22px;
    font-size: 14px;
}

.adm-hero-content-mobile .adm-hero-btn.outline {
    padding: 12px 22px;
    font-size: 14px;
    color: #111111;
    border-color: #111111;
}

@media (max-width: 991px) {
    .adm-hero .adm-hero-content h1 {
        font-size: 42px;
    }

    .adm-hero .adm-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .adm-hero .adm-hero-content h1 {
        font-size: 32px;
    }

    .adm-hero .adm-hero-content p {
        font-size: 14px;
    }

    .adm-hero .adm-hero-content p br {
        display: none;
    }

    .adm-hero-btn {
        padding: 12px 22px;
        font-size: 14px;
    }
}

.adm-hero::before {
    display: none;
}

.adm-hero::after {
    display: none;
}

/* ================= SECTION 2: ADMISSIONS OVERVIEW ================= */
.adm-overview {
    padding: 80px 0 60px;
    background: #F7F6EC;
}

.adm-overview-title {
    font-size: 40px;
    font-weight: 800;
    color: #E8402A;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.2;
}

.adm-overview-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #111111;
    margin-bottom: 16px;
}

.adm-overview-highlights {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.highlights-label {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #F7F6EC;
}

.highlight-grid {
    display: grid;
    gap: 20px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #E8402A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 20px;
    color: #ffffff;
}

.highlight-card span {
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    line-height: 1.5;
    padding-top: 12px;
}

@media (max-width: 991px) {
    .adm-overview {
        padding: 70px 0 50px;
    }

    .adm-overview-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .adm-overview {
        padding: 55px 0 40px;
    }

    .adm-overview-title {
        font-size: 26px;
        text-align: center;
    }

    .adm-overview-desc {
        font-size: 14.5px;
        text-align: center;
    }

    .adm-overview-highlights {
        padding: 24px;
    }

    .highlights-label {
        text-align: center;
    }

    .highlight-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .highlight-card span {
        padding-top: 0;
    }
}

/* ================= SECTION 3: PROGRAMS OPEN FOR ADMISSION ================= */
.adm-programs {
    padding: 80px 0 60px;
    background: #ffffff;
}

.adm-programs-title {
    font-size: 38px;
    font-weight: 800;
    color: #E8402A;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.adm-programs-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    max-width: 680px;
    margin: 0 auto;
}

.programs-group {
    margin-top: 40px;
}

.programs-group-label {
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid #E8402A;
}

.program-card {
    background: #F7F6EC;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.program-icon {
    width: 64px;
    height: 64px;
    background: #E8402A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.program-icon i {
    font-size: 26px;
    color: #ffffff;
}

.program-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #444444;
    margin: 0;
}

.program-card-degree p {
    text-align: left;
}

@media (max-width: 991px) {
    .adm-programs {
        padding: 70px 0 50px;
    }

    .adm-programs-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .adm-programs {
        padding: 55px 0 40px;
    }

    .adm-programs-title {
        font-size: 24px;
    }

    .adm-programs-subtitle {
        font-size: 14px;
    }

    .programs-group-label {
        font-size: 19px;
    }

    .program-icon {
        width: 56px;
        height: 56px;
    }

    .program-icon i {
        font-size: 22px;
    }

    .program-card h5 {
        font-size: 16px;
    }

    .program-card p {
        font-size: 13.5px;
    }

    .program-card-degree p {
        text-align: center;
    }
}

/* ================= SECTION 4: ADMISSION PROCESS ================= */
.adm-process-new {
    padding: 80px 0 60px;
    background: #F7F6EC;
}

.adm-process-title {
    font-size: 38px;
    font-weight: 800;
    color: #E8402A;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #E8402A;
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #E8402A;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.step-content {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.step-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444444;
    margin: 0;
}

.process-note {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .adm-process-new {
        padding: 70px 0 50px;
    }

    .adm-process-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .adm-process-new {
        padding: 55px 0 40px;
    }

    .adm-process-title {
        font-size: 24px;
    }

    .process-timeline::before {
        left: 24px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .process-step {
        gap: 18px;
    }

    .step-content {
        padding: 18px 20px;
    }

    .step-content h4 {
        font-size: 17px;
    }

    .step-content p {
        font-size: 14px;
    }

    .process-note {
        font-size: 13.5px;
    }
}

/* ================= SECTION 7: ADMISSION COUNSELING SUPPORT ================= */
.adm-counseling {
    padding: 80px 0 60px;
    background: #ffffff;
}

.adm-counseling-title {
    font-size: 38px;
    font-weight: 800;
    color: #E8402A;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.adm-counseling-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #111111;
    margin-bottom: 14px;
}

.counseling-points {
    margin: 28px 0;
}

.counseling-label {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
}

.counseling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.counseling-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F7F6EC;
    padding: 14px 18px;
    border-radius: 12px;
}

.counseling-item i {
    color: #E8402A;
    font-size: 16px;
}

.counseling-item span {
    font-size: 15px;
    font-weight: 500;
    color: #222222;
}

.btn-counseling {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E8402A;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-counseling:hover {
    background: #c4351f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-counseling i {
    font-size: 18px;
}

.counseling-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.counseling-image img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .adm-counseling {
        padding: 70px 0 50px;
    }

    .adm-counseling-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .adm-counseling {
        padding: 55px 0 40px;
    }

    .adm-counseling-title {
        font-size: 24px;
        text-align: center;
    }

    .adm-counseling-desc {
        font-size: 14.5px;
        text-align: center;
    }

    .counseling-label {
        text-align: center;
    }

    .counseling-grid {
        grid-template-columns: 1fr;
    }

    .counseling-item {
        justify-content: center;
    }

    .btn-counseling {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }

    .counseling-image {
        margin-top: 30px;
    }
}

/* Highlights Strip */
.adm-highlights {
    background: #1a1a2e;
    padding: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #fff;
    padding: 0.5rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #F08C1C;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Admission Process Section */
.adm-process {
    padding: 4rem 0 2rem;
    background: #fff;
}

.adm-process .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.adm-process .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.adm-process .section-title h2 span {
    color: #E8402A;
}

.adm-process .section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
}

.process-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(232, 64, 42, 0.12);
    border-color: #E8402A;
}

.process-card .step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E8402A;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.process-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: rgba(232, 64, 42, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: #E8402A;
}

.process-card h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.8rem;
}

.process-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Eligibility Section */
.adm-eligibility {
    padding: 4rem 0 2rem;
    background: #FFFFFF;
}

.adm-eligibility .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.adm-eligibility .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.adm-eligibility .section-title h2 span {
    color: #E8402A;
}

.eligibility-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    border-top: 4px solid #E8402A;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 64, 42, 0.1);
}

.eligibility-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #E8402A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: #fff;
}

.eligibility-card h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1rem;
}

.eligibility-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-card ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.eligibility-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F08C1C;
}

/* Key Dates Section */
.adm-dates {
    padding: 80px 0 60px;
    background: #F7F6EC;
}

.dates-title {
    font-size: 38px;
    font-weight: 800;
    color: #E8402A;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.adm-dates .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.adm-dates .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.adm-dates .section-title h2 span {
    color: #E8402A;
}

.dates-table {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.dates-table .table-header {
    background: #E8402A;
    color: #fff;
    padding: 1.2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    font-weight: 600;
}

.dates-table .table-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    transition: background 0.2s ease;
}

.dates-table .table-row:last-child {
    border-bottom: none;
}

.dates-table .table-row:hover {
    background: #f8f9fa;
}

.dates-table .event-name {
    font-weight: 600;
    color: #222;
}

.dates-table .event-note {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-top: 0.2rem;
}

.dates-table .date-badge {
    background: rgba(232, 64, 42, 0.1);
    color: #E8402A;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.dates-note {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ================= SECTION 8: FINAL CTA ================= */
.adm-final-cta {
    padding: 90px 0;
    background: #E8402A;
}

.adm-final-cta-box {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.adm-final-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.adm-final-cta-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
}

.adm-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-final-cta-primary {
    background: #ffffff;
    color: #E8402A;
    border: 2px solid #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-cta-primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-final-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-final-cta-secondary:hover {
    background: #ffffff;
    color: #E8402A;
    border-color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .adm-final-cta {
        padding: 70px 0;
    }

    .adm-final-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .adm-final-cta {
        padding: 55px 0;
    }

    .adm-final-cta-title {
        font-size: 26px;
    }

    .adm-final-cta-text {
        font-size: 15px;
    }

    .adm-final-cta-text br {
        display: none;
    }

    .btn-final-cta-primary,
    .btn-final-cta-secondary {
        padding: 12px 26px;
        font-size: 14px;
    }
}

/* Documents Section */
.adm-docs {
    padding: 4rem 0 2rem;
    background: #FFFFFF;
}

.adm-docs-content h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.adm-docs-content h2 span {
    color: #E8402A;
}

.adm-docs-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.doc-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.doc-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(232, 64, 42, 0.1);
}

.doc-item i {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 8px;
    background: #E8402A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.doc-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.adm-docs-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.adm-docs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.integrity-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 280px;
}

.integrity-badge h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #E8402A;
    margin-bottom: 0.4rem;
}

.integrity-badge p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.adm-faq {
    padding: 4rem 0 2rem;
    background: #fff;
}

.adm-faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.adm-faq .section-title .faq-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E8402A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.adm-faq .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.adm-faq .section-title p {
    font-size: 1.1rem;
    color: #666;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #222;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #E8402A;
}

.faq-question i {
    font-size: 0.9rem;
    color: #E8402A;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    transition: all 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item.open {
    background: #fff;
    box-shadow: 0 5px 25px rgba(232, 64, 42, 0.1);
}

/* CTA Section */
.adm-cta {
    padding: 4rem 0 2rem;
    background: #000000;
}

.adm-cta-box {
    text-align: center;
    padding: 4rem 2rem;
    background: transparent;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.adm-cta-box h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.adm-cta-box p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.adm-cta-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.adm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.adm-cta-btn.primary {
    background: #E8402A;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   MOBILE RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 991px) {
    .adm-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .adm-hero-content p {
        font-size: 1rem;
    }
    
    .adm-process,
    .adm-eligibility,
    .adm-dates,
    .adm-docs,
    .adm-fee,
    .adm-faq,
    .adm-cta {
        padding: 3.5rem 0;
    }
    
    .adm-process .section-title h2,
    .adm-eligibility h2,
    .adm-dates h2,
    .adm-docs h2,
    .adm-fee h2,
    .adm-faq h2 {
        font-size: 1.8rem;
    }
    
    .adm-cta-box h2 {
        font-size: 2rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .adm-hero-content {
        padding: 2rem 1rem;
    }
    
    .adm-hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .adm-hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .adm-hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .adm-hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .adm-hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Highlights */
    .adm-highlights .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
    
    .adm-highlights .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        justify-content: center;
        padding: 0.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.5rem;
        align-items: center;
        text-align: center;
    }
    
    .highlight-item i {
        font-size: 1.3rem;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
        text-align: center;
    }
    
    /* Process Section */
    .adm-process,
    .adm-eligibility,
    .adm-dates,
    .adm-docs,
    .adm-fee,
    .adm-faq,
    .adm-cta {
        padding: 2.5rem 0;
    }
    
    .adm-process .section-title h2,
    .adm-eligibility h2,
    .adm-dates h2,
    .adm-docs h2,
    .adm-fee h2,
    .adm-faq h2 {
        font-size: 1.5rem;
    }
    
    .adm-process .section-title p,
    .adm-eligibility p,
    .adm-dates p,
    .adm-docs p {
        font-size: 0.95rem;
    }
    
    .process-card {
        padding: 2rem 1.2rem 1.5rem;
    }
    
    .process-card h4 {
        font-size: 1.1rem;
    }
    
    .process-card p {
        font-size: 0.9rem;
    }
    
    /* Eligibility Cards */
    .elig-card {
        padding: 1.5rem;
    }
    
    .elig-card h4 {
        font-size: 1.1rem;
    }
    
    .elig-item {
        font-size: 0.9rem;
    }
    
    /* Dates Grid */
    .dates-grid {
        gap: 1rem;
    }
    
    .date-card {
        padding: 1.5rem 1rem;
    }
    
    .date-card h4 {
        font-size: 1rem;
    }
    
    .dates-table {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* Documents */
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .doc-item {
        padding: 1rem;
    }
    
    .integrity-badge {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }
    
    /* Fee Structure */
    .fee-table-wrapper {
        overflow-x: auto;
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .fee-table {
        min-width: 500px;
    }
    
    .fee-table th,
    .fee-table td {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .adm-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .adm-cta-box h2 {
        font-size: 1.5rem;
    }
    
    .adm-cta-box p {
        font-size: 1rem;
    }
    
    .adm-cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .adm-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.adm-cta-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.adm-cta-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.adm-cta-btn.outline:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
}

.adm-helpline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.adm-helpline strong {
    color: #F08C1C;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .adm-hero-content h1 {
        font-size: 2.5rem;
    }

    .adm-docs-img {
        margin-top: 2rem;
    }

    .integrity-badge {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .adm-hero {
        height: auto;
    }

    .adm-hero-content h1 {
        font-size: 2rem;
    }

    .adm-hero-content p {
        font-size: 1rem;
    }

    .adm-hero-btns {
        flex-direction: column;
    }

    .adm-process,
    .adm-eligibility,
    .adm-dates,
    .adm-docs,
    .adm-faq {
        padding: 3.5rem 0;
    }

    .process-card,
    .eligibility-card {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .eligibility-card .card-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .eligibility-card h4 {
        text-align: center;
    }
    
    .eligibility-card ul {
        text-align: left;
        display: inline-block;
    }

    .docs-grid {
        grid-template-columns: 1fr;
    }

    .dates-table .table-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dates-table .date-badge {
        justify-self: center;
        margin-top: 0.5rem;
    }

    .highlight-item {
        padding: 0.3rem;
    }

    .highlight-item span {
        font-size: 0.85rem;
    }

    .adm-cta-box h2 {
        font-size: 2rem;
    }
}

/* --------------------------------------------------------------------------
 * ADMISSIONS PAGE - MOBILE ENHANCEMENTS
 * -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Consistent section padding */
  .adm-intro-section,
  .process-section,
  .eligibility-section,
  .documents-section,
  .dates-section,
  .fees-section {
    padding: 50px 0 30px;
  }
  
  /* Card improvements */
  .process-card,
  .eligibility-card,
  .fee-card {
    padding: 20px;
  }
  
  /* Better image visibility */
  .process-card img,
  .eligibility-card img {
    border-radius: 10px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  /* Smaller padding on small screens */
  .adm-intro-section,
  .process-section,
  .eligibility-section,
  .documents-section,
  .dates-section,
  .fees-section {
    padding: 40px 0 25px;
  }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
