/* Scholarship Page Styles */

.sch-hero {
    padding: calc(var(--nav-height) + 20px) 0 20px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    text-align: center;
}

.sch-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.sch-headline {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.sch-subheadline {
    font-size: 1.1rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 10px;
}

.sch-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 16px;
}

.sch-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.sch-buttons .btn-outline-dark {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.sch-buttons .btn-outline-dark:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Scholarship Cards */
.sch-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sch-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.sch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.sch-card.gold { border-color: #c9a84c; }
.sch-card.silver { border-color: #9ca3af; }
.sch-card.bronze { border-color: #b45309; }

.sch-card-badge {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.sch-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.sch-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.sch-award {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.sch-includes {
    list-style: none;
    text-align: left;
    padding: 0;
}

.sch-includes li {
    font-size: 0.9rem;
    padding: 6px 0;
    color: var(--color-text);
    border-bottom: 1px solid #f3f4f6;
}

.sch-note {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: 12px;
    font-style: italic;
}

/* How It Works Steps */
.sch-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.sch-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.sch-step:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.sch-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.sch-step p {
    font-size: 0.95rem;
    color: var(--color-text);
}

.sch-step-arrow {
    font-size: 1.5rem;
    color: var(--color-gold);
    padding: 8px 0;
}

/* Partner Grid */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.partner-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.partner-logo-placeholder {
    font-size: 3rem;
    margin-bottom: 12px;
}

.partner-card h4 {
    font-size: 1rem;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.partner-country, .partner-program {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.partner-status {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    background: #f3f4f6;
    border-radius: 20px;
    color: var(--color-text-secondary);
}

/* Venues */
.partner-venues {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.partner-venues span {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-navy);
    font-weight: 500;
}

/* Benefits */
.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.partner-benefit {
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
    color: var(--color-navy);
    font-weight: 500;
}

/* CTA buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav link */
.nav-link.active {
    color: var(--color-gold) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .sch-cards {
        grid-template-columns: 1fr;
    }
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* University Partnership Cards */
.up-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.up-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.up-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--color-gold);
}

.up-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.up-card ul {
    list-style: none;
    padding: 0;
}

.up-card ul li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: 1px solid #f3f4f6;
}

.up-card ul li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .up-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Image */
.sch-hero-image {
    max-width: 480px;
    margin: 16px auto 0;
    overflow: hidden;
}

.sch-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Scholarship Ad Image */
.sch-ad-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.sch-ad-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card Images */
.sch-card-img {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.sch-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* How It Works Grid */
.sch-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.sch-how-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.sch-how-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .sch-how-grid {
        grid-template-columns: 1fr;
    }
}
