/* Shared Styles for Support & Learning Pages */

/* --- Hero Section --- */
.page-hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(66, 133, 244, 0.05) 0%, transparent 70%);
}

.hero-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--google-blue);
    background: rgba(66, 133, 244, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* --- Feature Grid --- */
.features-section {
    padding: 6rem 0;
    background: var(--surface-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-1);
    border: 1px solid var(--surface-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
    border-color: rgba(66, 133, 244, 0.3);
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: var(--surface-dim);
    color: var(--google-blue);
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--google-blue);
    color: #fff;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* --- Stats / Highlight Section --- */
.stats-highlight-section {
    padding: 6rem 0;
    background: var(--surface-dim);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    padding: 2rem;
}

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--google-blue);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--google-blue), #1a73e8);
    color: #fff;
    padding: 5rem 2rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.btn-white {
    background: #fff;
    color: var(--google-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* --- Support Channels (Specific to Support Pages) --- */
.support-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    transition: all 0.2s ease;
}

.channel-card:hover {
    border-color: var(--google-blue);
    box-shadow: var(--shadow-1);
}

.channel-icon {
    width: 50px;
    height: 50px;
    background: rgba(66, 133, 244, 0.1);
    color: var(--google-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }


    .cta-box h2 {
        font-size: 2rem;
    }
}

/* --- Education Transformation Specifics --- */
.program-track-section {
    padding: 6rem 0;
    background: var(--surface-light);
}

.program-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    border: 1px solid var(--surface-border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2);
}

.program-img-header {
    height: 200px;
    background: var(--surface-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.program-icon {
    font-size: 4rem;
    opacity: 0.2;
    color: var(--text-primary);
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}

.badge-school {
    background: rgba(52, 168, 83, 0.1);
    color: var(--google-green);
}

.badge-college {
    background: rgba(66, 133, 244, 0.1);
    color: var(--google-blue);
}

.badge-intern {
    background: rgba(251, 188, 4, 0.1);
    color: var(--google-yellow);
}

/* Internship Timeline Details */
.internship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.duration-card {
    background: var(--surface-dim);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid transparent;
}

.duration-card:hover {
    border-color: var(--google-blue);
    background: #fff;
}

.duration-time {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Hackathon Banner */
.hackathon-banner {
    background: linear-gradient(135deg, #202124, #3c4043);
    color: #fff;
    border-radius: 32px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.hack-text-highlight {
    background: linear-gradient(90deg, #ff0055, #ff00cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Eligibility List */
.eligibility-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.eligibility-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eligibility-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--google-green);
    font-weight: bold;
}