/* Complete CSS matching ybfitness.ng design */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
    --primary-color: #111317;
    --primary-color-light: #1f2125;
    --primary-color-extra-light: #35373b;
    --secondary-color: #af0000ff;
    --secondary-color-dark: #8a0000;
    --accent-color: #00afaf;
    --text-light: #d1d5db;
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --max-width: 1200px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}

.section__header {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
}

.section__subheader {
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: var(--text-light);
}

.btn {
    padding: 1rem 2rem;
    outline: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    background-color: var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    background-color: var(--secondary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(175, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
    color: inherit;
}

.bg__blur {
    position: absolute;
    box-shadow: 0 0 1000px 50px var(--secondary-color);
    z-index: -1;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
}

/* Navigation */
nav {
    max-width: var(--max-width);
    margin: auto;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(17, 19, 23, 0.95);
    backdrop-filter: blur(10px);
}

.nav__logo {
    max-width: 150px;
}

.nav__logo img {
    width: 100%;
    height: auto;
}

.nav__links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.link a {
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

.link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.link a:hover::after {
    width: 100%;
}

.link a:hover {
    color: var(--secondary-color);
}

.nav__menu__btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Header/Hero */
.header__container {
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.header__content h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header__content h1 {
    margin-bottom: 1rem;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.header__content h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px var(--white);
}

.header__content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.header__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__image img {
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Jobs Grid */
.jobs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.job__card {
    background: var(--primary-color-light);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.job__card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(175, 0, 0, 0.1);
}

.job__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job__card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.job__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job__meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.job__desc {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.job__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--primary-color-extra-light);
}

.closing-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Filters */
.filters {
    background: var(--primary-color-light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--primary-color-extra-light);
    border: 1px solid var(--primary-color-extra-light);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.filter-group button {
    width: 100%;
    margin-top: 0.5rem;
}

/* Apply Form */
.apply__container {
    max-width: 800px;
    margin: auto;
}

.apply__header {
    text-align: center;
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.apply__header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.apply__header h2 {
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 1rem;
}

.job-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.job-summary span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.apply-form {
    background: var(--primary-color-light);
    padding: 3rem;
    border-radius: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--primary-color-extra-light);
    border: 1px solid var(--primary-color-extra-light);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-info {
    background: var(--primary-color-extra-light);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    border: 2px dashed var(--primary-color-extra-light);
    transition: all 0.3s;
}

.file-upload:hover .file-info {
    border-color: var(--secondary-color);
}

.form-footer {
    text-align: center;
    margin-top: 3rem;
}

.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.success-message {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-color-light);
    border-radius: 10px;
}

.success-message i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.success-message h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    padding: 1rem;
    margin-bottom: 2rem;
    color: var(--danger);
    border-radius: 0 5px 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .nav__links.active {
        display: flex;
    }

    .nav__menu__btn {
        display: block;
    }

    .header__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header__content h1 {
        font-size: 2.5rem;
    }

    .section__header {
        font-size: 1.8rem;
    }

    .jobs__grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .apply-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section__container {
        padding: 3rem 1rem;
    }

    .job__meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* ============================================
   COMPLETE USER SIDE CSS
   ============================================ */

/* Explore Section (Featured Jobs) */
.explore__container {
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.explore__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.explore__header .section__header {
    margin-bottom: 0;
    text-align: left;
}

.explore__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.explore__nav:hover {
    gap: 0.75rem;
    color: var(--white);
}

.explore__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.explore__card {
    padding: 2rem;
    background: var(--primary-color-light);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore__card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(175, 0, 0, 0.1);
}

.explore__card span {
    display: inline-block;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
    background: var(--secondary-color);
    border-radius: 8px;
}

.explore__card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.explore__card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.explore__card p i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.explore__card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s;
}

.explore__card a:hover {
    gap: 0.75rem;
    color: var(--white);
}

/* Class Section (Why Join Us) */
.class__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.class__image {
    position: relative;
    min-height: 500px;
}

.class__image .bg__blur {
    top: 0;
    left: 0;
}

.class__img-1 {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 500px;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.class__img-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 300px;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.class__content {
    padding: 2rem 0;
}

.class__content .section__header {
    text-align: left;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.class__content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.class__content ul {
    list-style: none;
    margin-bottom: 3rem;
}

.class__content li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

.class__content li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Join Section (Application Process) */
.join__container {
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.join__container .section__header {
    margin-bottom: 1rem;
}

.join__container .section__subheader {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process__card {
    background: var(--primary-color-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.process__card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(175, 0, 0, 0.1);
}

.process__card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.process__card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.process__card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer */
.footer__container {
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
    gap: 2rem;
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer__blur {
    bottom: 0;
    right: 0;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__col p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer__socials a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer__col > a {
    color: var(--text-light);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer__col > a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer__col > p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__col > p i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.footer__bar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid var(--primary-color-extra-light);
}

/* Openings Page Styles */
.openings__container {
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.openings__header {
    text-align: center;
    margin-bottom: 3rem;
}

.openings__header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.openings__header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about__container {
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about__hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about__story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.story__image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story__content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.story__content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about__mission {
    margin-bottom: 5rem;
}

.mission__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--primary-color-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: rgba(175, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.mission-card ul {
    list-style: none;
    margin-top: 1rem;
}

.mission-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.mission-card li i {
    color: var(--secondary-color);
}

.about__team {
    margin-bottom: 5rem;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--primary-color-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(175, 0, 0, 0.1);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--secondary-color);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about__stats {
    margin-bottom: 5rem;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about__stats .stat-card {
    background: var(--primary-color-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.about__stats .stat-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.about__stats .stat-card h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about__stats .stat-card p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.about__cta {
    background: var(--primary-color-light);
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.about__cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.about__cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact__container {
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: var(--primary-color-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(175, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact__form {
    background: var(--primary-color-light);
    padding: 3rem;
    border-radius: 10px;
}

.contact__form h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.contact__map {
    margin-top: 5rem;
    text-align: center;
}

.contact__map h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.map-placeholder {
    background: var(--primary-color-light);
    padding: 4rem 2rem;
    border-radius: 10px;
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.map-placeholder p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Application Status Page */
.status__container {
    padding: 5rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.status__header {
    text-align: center;
    margin-bottom: 3rem;
}

.status__form {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.form-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--primary-color-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
}

.form-search input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-search .btn {
    padding: 1rem 2.5rem;
}

.message-box {
    background: var(--primary-color-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message-box i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.message-box p {
    color: var(--text-light);
    margin: 0;
}

.applications-list {
    margin-top: 3rem;
}

.applications-list h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.application-card {
    background: var(--primary-color-light);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.application-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.app-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.app-department {
    color: var(--secondary-color);
    font-weight: 500;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-reviewed {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-accepted {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.app-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--secondary-color);
}

.detail-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-item a:hover {
    color: var(--white);
}

.status-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.status-message i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.status-message.success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
}

.status-message.success i {
    color: #10b981;
}

.status-message.info {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
}

.status-message.info i {
    color: #3b82f6;
}

.status-message.pending {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
}

.status-message.pending i {
    color: #f59e0b;
}

.status-message h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.status-message p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Apply Page Styles */
.apply__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.apply__header {
    text-align: center;
    margin-bottom: 3rem;
}

.apply__header a.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: all 0.3s;
}

.apply__header a.back-link:hover {
    gap: 0.75rem;
    color: var(--white);
}

.apply__header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.apply__header h2 {
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.job-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.job-summary span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.job-summary span i {
    color: var(--secondary-color);
}

/* Success Message for Apply */
.apply__container .success-message {
    background: var(--primary-color-light);
    padding: 4rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--secondary-color);
}

.apply__container .success-message i {
    font-size: 5rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.apply__container .success-message h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.apply__container .success-message p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.apply__container .success-message .btn {
    margin: 0 0.5rem;
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .class__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .class__image {
        min-height: 400px;
    }
    
    .class__img-1 {
        max-width: 400px;
    }
    
    .class__img-2 {
        max-width: 250px;
    }
    
    .footer__container {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact__info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .explore__header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .explore__header .section__header {
        text-align: center;
    }
    
    .class__image {
        min-height: 350px;
    }
    
    .class__img-1 {
        position: relative;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .class__img-2 {
        display: none;
    }
    
    .about__story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__socials {
        justify-content: center;
    }
    
    .footer__col > p {
        justify-content: center;
    }
    
    .app-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .status-badge {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .explore__grid {
        grid-template-columns: 1fr;
    }
    
    .process__grid {
        grid-template-columns: 1fr;
    }
    
    .mission__grid {
        grid-template-columns: 1fr;
    }
    
    .team__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .form-search {
        flex-direction: column;
    }
    
    .form-search .btn {
        width: 100%;
    }
    
    .app-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .apply__header h1 {
        font-size: 2.5rem;
    }
    
    .apply__container .success-message {
        padding: 3rem 1.5rem;
    }
    
    .apply__container .success-message h2 {
        font-size: 2rem;
    }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
    .explore__card:hover,
    .process__card:hover,
    .mission-card:hover,
    .team-card:hover,
    .info-card:hover,
    .application-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
}

/* Print styles */
@media print {
    nav,
    .btn,
    .footer__socials,
    .cta-buttons {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section__header,
    h1, h2, h3, h4 {
        color: black !important;
    }
    
    .explore__card,
    .process__card,
    .mission-card,
    .team-card,
    .info-card,
    .application-card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}