/* Referee Registration Page Specific Styles - Premium Redesign */

:root {
    --ref-blue: #1a237e;
    --ref-gold: #ffd700;
    --card-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.section-padding {
    padding: 50px 0;
}

/* Inner Banner */
.inner-banner {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center 12%;
    background-repeat: no-repeat;}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 35, 126, 0.35), rgba(26, 35, 126, 0.8)), url('../images/hero_banner.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Grading System */
.grading-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grade-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border-top: 5px solid var(--ref-blue);
    transition: transform 0.3s ease;
}

.grade-card:hover {
    transform: translateY(-10px);
}

.grade-icon {
    width: 70px;
    height: 70px;
    background: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--ref-blue);
}

/* Form Section */
.reg-container {
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--card-shadow);
    padding: 60px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--ref-blue);
    outline: none;
    background: #fcfdff;
}

/* Requirement Sidebar */
.req-sidebar {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 30px;
    height: 100%;
}

.req-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    font-size: 14px;
}

.req-list i {
    color: #2e7d32;
    margin-top: 3px;
}

/* Seminar Cards */
.seminar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.seminar-date {
    background: var(--ref-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
}

/* Responsive */
@media (max-width: 992px) {
    .grading-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
    .grading-grid { grid-template-columns: 1fr; }
    .reg-container { padding: 30px; }
    .banner-title { font-size: 38px; }
    .seminar-card { flex-direction: column; text-align: center; }
}
