/* --- EVENTS SECTION --- */
.events-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    padding: 0;
    overflow: hidden;
}

.events-header {
    text-align: center;
    margin-bottom: 40px;
}

.events-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

.events-intro {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    padding: 0 20px;
}

.events-title-image {
    position: relative;
    max-width: 980px;
    margin: 0 auto 46px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(23, 37, 84, 0.2);
}

.events-title-image img {
    width: 100%;
    height: clamp(220px, 42vw, 360px);
    object-fit: cover;
    display: block;
}

.events-title-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 20, 38, 0.06) 20%, rgba(13, 20, 38, 0.7) 100%);
}

.events-title-image figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 18px;
    z-index: 1;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

/* Event Types Grid */
.event-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.event-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.event-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(66, 153, 225, 0.15);
    border-color: var(--accent-color);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}

.event-label {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* 3-Step Process */
.events-process {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.events-process h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-step {
    position: relative;
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.process-step p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-step-btn {
    margin-top: 16px;
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #4299E1;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.process-step-btn:hover {
    background: #2d7cb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 153, 225, 0.28);
}

/* CTA Section */
.events-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    border-radius: 20px;
    color: white;
    max-width: 800px;
    margin: 0 auto 40px;
}

.events-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.events-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-primary {
    background: white;
    color: var(--accent-color);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .events-section {
        padding: 80px 0;
    }

    .events-header .section-title {
        font-size: 2.2rem;
    }

    .event-types {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        margin-bottom: 60px;
    }

    .event-type {
        padding: 20px 15px;
    }

    .event-icon {
        font-size: 2.5rem;
        margin-bottom: 8px;
    }

    .event-label {
        font-size: 0.85rem;
    }

    .events-process {
        margin: 0 auto 60px;
        padding: 40px 20px;
    }

    .events-process h3 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .process-steps {
        gap: 30px;
    }

    .events-cta {
        padding: 40px 20px;
    }

    .events-title-image {
        margin: 0 auto 34px;
        border-radius: 16px;
    }

    .events-title-image figcaption {
        left: 14px;
        right: 14px;
        bottom: 12px;
        font-size: 0.95rem;
    }

    .events-cta h3 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        box-sizing: border-box;
    }
}

.event-icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.cta-icon-svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Events Photo Gallery */
.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 100px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.events-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}