/* State Affiliation Page Specific Styles - Premium Redesign */

:root {
    --aff-burgundy: #880e4f;
    --aff-gold: #ffd700;
    --aff-surface: #fff8f9;
    --card-shadow: 0 15px 45px 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(136, 14, 79, 0.45), rgba(136, 14, 79, 0.85));
    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;
}

/* Tiers Grid */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tier-card {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: var(--aff-burgundy);
}

.tier-icon {
    font-size: 40px;
    color: var(--aff-burgundy);
    margin-bottom: 20px;
}

/* Roadmap Section */
.roadmap-box {
    background: var(--aff-surface);
    padding: 60px;
    border-radius: 40px;
}

.roadmap-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.roadmap-item::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: calc(100% + 10px);
    background: #e1bee7;
}

.roadmap-item:last-child::after { display: none; }

.roadmap-dot {
    width: 40px;
    height: 40px;
    background: var(--aff-burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
}

/* Document Grid */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.doc-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.doc-item i {
    color: #e91e63;
    font-size: 20px;
}

/* Apply Form */
.apply-box {
    background: var(--aff-burgundy);
    padding: 60px;
    border-radius: 40px;
    color: var(--white);
}

.aff-form-control {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 10px;
    color: var(--white);
    margin-bottom: 20px;
}

.aff-form-control option {
    color: #333;
    background: #fff;
}

.aff-form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .tiers-grid { grid-template-columns: repeat(2, 1fr); }
    .doc-grid { grid-template-columns: 1fr; }
    .main-split { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
    .tiers-grid { grid-template-columns: 1fr; }
    .banner-title { font-size: 38px; }
    .roadmap-box, .apply-box { padding: 30px; }
}
