/* ============================================
   CAREER ASSESSMENT & SCHOLARSHIPS PAGES
   Minimal, Professional, Brand-Aligned Design
   ============================================ */

/* Hero Section */
.psychometric-hero,
.scholarships-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.psychometric-hero::before,
.scholarships-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(77, 191, 184, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(244, 181, 66, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.psychometric-hero-content,
.scholarships-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.psychometric-hero-title,
.scholarships-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.psychometric-hero-subtitle,
.scholarships-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

/* Info Section */
.psychometric-info,
.scholarships-info {
    padding: 6rem 0;
    background: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-turquoise) 0%, var(--teal-dark) 100%);
    border-radius: 2px;
}

.info-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.info-text:last-child {
    margin-bottom: 0;
}

.info-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-stat-card {
    background: linear-gradient(135deg, rgba(77, 191, 184, 0.03) 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(77, 191, 184, 0.15);
    transition: all 0.3s ease;
}

.visual-stat-card:hover {
    transform: translateX(10px);
    border-color: var(--teal-turquoise);
    box-shadow: 0 8px 25px rgba(77, 191, 184, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-turquoise) 0%, var(--teal-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.visual-stat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.visual-stat-card p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* Benefits / Types Section */
.psychometric-benefits,
.scholarships-types {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
}

.section-heading-center {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid,
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card,
.type-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover,
.type-card:hover {
    transform: translateY(-8px);
    border-color: var(--teal-turquoise);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon,
.type-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--teal-turquoise) 0%, var(--teal-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(77, 191, 184, 0.3);
}

.benefit-card h3,
.type-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.benefit-card p,
.type-card p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Eligibility Section */
.scholarships-eligibility {
    padding: 6rem 0;
    background: #ffffff;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.eligibility-item {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(77, 191, 184, 0.02) 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.eligibility-item:hover {
    transform: translateY(-5px);
    border-color: var(--teal-turquoise);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.eligibility-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--golden-yellow) 0%, #e8a838 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(244, 181, 66, 0.3);
}

.eligibility-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 1.5rem 0 1rem;
}

.eligibility-item p {
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.psychometric-cta,
.scholarships-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.psychometric-cta::before,
.scholarships-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(77, 191, 184, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(244, 181, 66, 0.08) 0%, transparent 50%);
}

.cta-content-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--teal-turquoise) 0%, var(--teal-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(77, 191, 184, 0.3);
}

.cta-content-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.0625rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(77, 191, 184, 0.08) 0%, rgba(77, 191, 184, 0.03) 100%);
    border-radius: 12px;
    border: 2px solid rgba(77, 191, 184, 0.2);
    margin-bottom: 2.5rem;
}

.contact-info-box i {
    color: var(--teal-turquoise);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.contact-info-box p {
    font-size: 1rem;
    color: #2d3748;
    margin: 0;
    line-height: 1.6;
}

.contact-info-box a {
    color: var(--teal-turquoise);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1.125rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--teal-turquoise) 0%, var(--teal-dark) 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(77, 191, 184, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 191, 184, 0.4);
}

.btn-cta-secondary {
    background: #ffffff;
    color: var(--teal-turquoise);
    border: 2px solid var(--teal-turquoise);
}

.btn-cta-secondary:hover {
    background: var(--teal-turquoise);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid,
    .types-grid,
    .eligibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .psychometric-hero,
    .scholarships-hero {
        padding: 120px 0 60px;
    }
    
    .psychometric-hero-title,
    .scholarships-hero-title {
        font-size: 2.5rem;
    }
    
    .psychometric-hero-subtitle,
    .scholarships-hero-subtitle {
        font-size: 1.0625rem;
    }
    
    .psychometric-info,
    .scholarships-info,
    .psychometric-benefits,
    .scholarships-types,
    .scholarships-eligibility,
    .psychometric-cta,
    .scholarships-cta {
        padding: 4rem 0;
    }
    
    .section-heading,
    .section-heading-center {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .types-grid,
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content-box {
        padding: 3rem 2rem;
    }
    
    .cta-content-box h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .psychometric-hero,
    .scholarships-hero {
        padding: 100px 0 50px;
    }
    
    .psychometric-hero-title,
    .scholarships-hero-title {
        font-size: 2rem;
    }
    
    .visual-stat-card,
    .benefit-card,
    .type-card,
    .eligibility-item {
        padding: 1.5rem;
    }
    
    .cta-content-box {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-box {
        padding: 1.25rem 1.5rem;
    }
}

