/* ═══════════════════════════════════════════════════════════════
   AWARDS PAGE - DEEP BLUE WITH PURPLE ACCENTS
   ═══════════════════════════════════════════════════════════════ */

:root {
    --deep-blue-primary: #0a1929;
    --deep-blue-secondary: #132f4c;
    --deep-blue-accent: #1e4976;
    --purple-primary: #7c3aed;
    --purple-secondary: #a78bfa;
    --purple-light: #c4b5fd;
    --gold-accent: #fbbf24;
    --text-muted: #94a3b8;
}

/* ═══ HERO SECTION ═══ */
.section-hero-awards {
    position: relative;
    background: linear-gradient(135deg, var(--deep-blue-primary) 0%, var(--deep-blue-secondary) 50%, var(--deep-blue-accent) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-hero-awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.section-hero-awards::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, rgba(124, 58, 237, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(124, 58, 237, 0.05) 87.5%, rgba(124, 58, 237, 0.05)),
        linear-gradient(150deg, rgba(124, 58, 237, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(124, 58, 237, 0.05) 87.5%, rgba(124, 58, 237, 0.05)),
        linear-gradient(30deg, rgba(124, 58, 237, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(124, 58, 237, 0.05) 87.5%, rgba(124, 58, 237, 0.05)),
        linear-gradient(150deg, rgba(124, 58, 237, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(124, 58, 237, 0.05) 87.5%, rgba(124, 58, 237, 0.05));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content-awards {
    position: relative;
    z-index: 2;
}

.hero-badge-awards {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid var(--purple-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--purple-light);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-title-awards {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.hero-subtitle-awards {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ═══ AWARDS GRID SECTION ═══ */
.section-awards-grid {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.award-card-modern {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(10, 25, 41, 0.1);
}

.award-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card-modern:hover::before {
    transform: scale(1.1);
}

.award-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.85) 0%, rgba(124, 58, 237, 0.75) 100%);
    transition: all 0.4s ease;
}

.award-card-modern:hover .award-overlay-modern {
    background: linear-gradient(135deg, rgba(10, 25, 41, 0.95) 0%, rgba(124, 58, 237, 0.85) 100%);
}

.award-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid var(--purple-secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    align-self: flex-start;
}

.award-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.award-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.award-title-modern {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.award-organization {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid var(--gold-accent);
    border-radius: 6px;
    color: var(--gold-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.award-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.award-link-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    color: white;
}

.award-link-modern i {
    transition: transform 0.3s ease;
}

.award-link-modern:hover i {
    transform: translateX(5px);
}

/* ═══ RECOGNITION BANNER ═══ */
.section-recognition-banner {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep-blue-primary) 0%, var(--deep-blue-accent) 100%);
    position: relative;
    overflow: hidden;
}

.section-recognition-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.recognition-content {
    position: relative;
    z-index: 2;
}

.recognition-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item-awards {
    text-align: center;
}

.stat-number-awards {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-awards {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══ ACHIEVEMENT TIMELINE ═══ */
.section-achievement-timeline {
    padding: 5rem 0;
    background: white;
}

.eyebrow-awards {
    display: inline-block;
    color: var(--purple-primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-heading-awards {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--deep-blue-primary);
    margin-bottom: 1rem;
}

.achievement-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.achievement-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--purple-primary);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(10, 25, 41, 0.1);
}

.achievement-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: white;
}

.achievement-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-blue-primary);
    margin-bottom: 0.5rem;
}

.achievement-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ═══ CTA SECTION ═══ */
.section-cta-awards {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-blue-primary) 0%, var(--purple-primary) 100%);
    position: relative;
    overflow: hidden;
}

.section-cta-awards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content-awards {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title-awards {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle-awards {
    font-size: 1.25rem;
    color: var(--purple-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn-primary-awards {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--purple-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-awards:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--purple-primary);
}

.btn-secondary-awards {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-secondary-awards:hover {
    background: white;
    color: var(--purple-primary);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .section-hero-awards {
        min-height: 50vh;
    }

    .hero-title-awards {
        font-size: 2rem;
    }

    .hero-subtitle-awards {
        font-size: 1rem;
    }

    .award-card-modern {
        min-height: 380px;
    }

    .recognition-stats {
        gap: 2rem;
    }

    .stat-number-awards {
        font-size: 2.5rem;
    }

    .achievement-item {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary-awards {
        margin-left: 0;
        margin-top: 1rem;
    }
}
