/* ===================
   AWARDS PAGE - CLEAN VERSION
   =================== */

/* Awards Hero Section */
.awards-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.awards-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.awards-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.awards-hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--white);
    letter-spacing: -1px;
}

.awards-hero-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.awards-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.award-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.award-stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.award-stat-label {
    font-size: 15px;
    color: var(--gray-400);
    font-weight: 600;
}

/* Award Images Section */
.award-images-section {
    padding: 80px 0;
    background: var(--white);
}

.award-images-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.award-image-item {
    width: 100%;
}

.award-image {
    display: block;
    width: 95%;
    height: auto;
    margin: 0 auto;
    border: 3px solid #face49;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Awards Carousel Section */
.awards-slider-section {
    padding: 80px 0;
    background: var(--white);
}

.award-heading {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 60px;
    text-align: center;
}

.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    white-space: nowrap;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
}

.logos-slide .award-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0 20px;
    padding: 32px 24px;
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border-radius: 16px;
    color: var(--black);
    width: 280px;
    height: 240px;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: 'Inter', 'Arial', sans-serif;
    vertical-align: top;
}

.logos-slide .award-item i {
    font-size: 56px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    color: var(--black);
}

.logos-slide .award-item span {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
    color: var(--black);
}

.logos-slide .award-item p {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    color: var(--black);
    opacity: 0.8;
    margin-top: 8px;
}

.logos-slide .award-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFC700 0%, #FFB700 100%);
}

.logos-slide .award-item:hover i {
    transform: rotate(10deg) scale(1.1);
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Awards CTA Section */
.awards-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.awards-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.awards-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.awards-cta-content h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.2;
}

.awards-cta-content p {
    font-size: 20px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .awards-hero {
        padding: 140px 0 80px;
    }

    .awards-hero-title {
        font-size: 36px;
    }

    .awards-hero-subtitle {
        font-size: 17px;
    }

    .awards-stats {
        flex-direction: column;
        gap: 32px;
    }

    .award-stat-number {
        font-size: 48px;
    }

    .award-images-section,
    .awards-slider-section,
    .awards-cta-section {
        padding: 60px 0;
    }

    .award-images-row {
        gap: 30px;
    }

    .award-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .logo-slider {
        padding: 30px 0;
    }

    .logos-slide .award-item {
        width: 240px;
        height: 220px;
        padding: 24px 20px;
        margin: 0 15px;
    }

    .logos-slide .award-item i {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .logos-slide .award-item span {
        font-size: 16px;
    }

    .logos-slide .award-item p {
        font-size: 13px;
    }

    .awards-cta-content h2 {
        font-size: 36px;
    }

    .awards-cta-content p {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .awards-hero-title {
        font-size: 28px;
    }

    .award-stat-number {
        font-size: 40px;
    }

    .award-heading {
        font-size: 28px;
    }

    .logos-slide .award-item {
        width: 220px;
        height: 200px;
        padding: 20px 16px;
    }

    .logos-slide .award-item i {
        font-size: 40px;
    }

    .logos-slide .award-item span {
        font-size: 15px;
    }

    .awards-cta-content h2 {
        font-size: 28px;
    }
}

/* ===================
   AWARDS TIMELINE SECTION
   =================== */

.awards-timeline-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

.section-subtitle-center {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.awards-timeline {
    max-width: 1000px;
    margin: 64px auto 0;
}

.awards-timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

.awards-timeline-item:last-child {
    margin-bottom: 0;
}

/* Connecting line between year badges */
.awards-timeline-item::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 80px;
    bottom: -80px;
    width: 3px;
    background: linear-gradient(180deg, #FFD700 0%, #d4d4d4 100%);
}

.awards-timeline-item:last-child::after {
    display: none;
}

/* Year Badge */
.timeline-year-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 5px solid var(--white);
}

/* Awards List */
.timeline-awards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Individual Award Card */
.timeline-award {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-award:hover {
    border-color: #FFD700;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
    transform: translateX(8px);
}

/* Award Icon (Emoji) */
.timeline-award-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

/* Award Content */
.timeline-award-content h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--black);
}

.timeline-award-content p {
    font-size: 14px;
    color: #737373;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .awards-timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 40px;
    }

    .awards-timeline-item::after {
        left: 50px;
    }

    .timeline-year-badge {
        width: 100px;
        height: 100px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .awards-timeline-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle-center {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .awards-timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .awards-timeline-item::after {
        left: 40px;
        top: 100px;
        bottom: -60px;
    }

    .timeline-year-badge {
        width: 80px;
        height: 80px;
        font-size: 20px;
        border: 3px solid var(--white);
    }

    .timeline-award {
        padding: 20px;
    }

    .timeline-award:hover {
        transform: translateX(4px);
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .timeline-year-badge {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }

    .timeline-award {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-award-icon {
        font-size: 28px;
    }

    .timeline-award-content h4 {
        font-size: 16px;
    }

    .timeline-award-content p {
        font-size: 13px;
    }
}
