/* Officials Page Specific Styles */

.section-padding {
    padding: 80px 0;
}

/* Inner Banner */
.inner-banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;

    background-repeat: no-repeat;}

.breadcrumb {
    font-family: var(--font-heading);
    font-size: 14px;
    background: rgba(0,0,0,0.4);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--orange);
    font-weight: 500;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Registration Options */
.reg-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.reg-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--light-gray);
    transition: all 0.3s;
}

.reg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--orange);
}

.reg-card.highlighted {
    border-color: var(--orange);
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.reg-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.reg-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

.reg-card.highlighted p {
    color: rgba(255,255,255,0.8);
}

.card-icon {
    font-size: 50px;
    color: var(--orange);
    margin-bottom: 25px;
}

.reg-card.highlighted .card-icon {
    color: var(--white);
}

/* Pathway Steps */
.path-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: scale(1.1);
}

.step h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.step p {
    font-size: 13px;
    color: var(--gray);
}

/* Calendar Box */
.calendar-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 10px solid var(--orange);
}

.alert-tag {
    display: inline-block;
    background: #ffeded;
    color: #e74c3c;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cal-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.cal-info p {
    color: var(--gray);
    max-width: 700px;
}

/* Resources Grid */
.res-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.res-item {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s;
}

.res-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.res-item i {
    font-size: 32px;
    color: var(--orange);
}

.res-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.res-item p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
}

.res-item a {
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .reg-options, .path-steps, .res-grid {
        grid-template-columns: 1fr;
    }
    
    .reg-card.highlighted {
        transform: none;
    }
    
    .calendar-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}
