/* ============================================
   PROCESS STEPS – Süreç Nasıl İşliyor? (kartlar + slider)
   ============================================ */
.process-steps-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    position: relative;
}

.process-steps-title {
    font-family: var(--font-heading, 'Akrobat', sans-serif);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-dark, #1a1a1a);
}

/* Sonsuz döngü – galeri gibi kayan track */
.process-steps-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
}

.process-steps-carousel-track {
    display: flex;
    gap: 16px;
    animation: process-steps-scroll 40s linear infinite;
    will-change: transform;
    width: max-content;
}

.process-steps-carousel-track:hover {
    animation-play-state: paused;
}

.process-steps-slide {
    flex: 0 0 auto;
    width: 280px;
    min-width: 280px;
}

@media (max-width: 575px) {
    .process-steps-slide {
        width: 260px;
        min-width: 260px;
    }
    .process-steps-carousel-track {
        animation-duration: 35s;
    }
}

.process-step-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.process-step-card:hover {
    box-shadow: 0 8px 28px rgba(200, 75, 75, 0.15);
    transform: translateY(-4px);
}

.process-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: rgba(200, 75, 75, 0.1);
    color: #C84B4B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.process-step-title {
    font-family: var(--font-heading, 'Akrobat', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a1a);
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light, #495057);
    margin: 0;
}

@keyframes process-steps-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 8px));
    }
}

/* Events Section - Text-Image Alternating Layout */
.events-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f7fa 100%);
    padding: 80px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Background Blob Decorations */
.events-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(200, 75, 75, 0.15) 0%, rgba(200, 75, 75, 0.08) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(50px);
    z-index: 0;
    animation: blobMove1 20s ease-in-out infinite;
}

.events-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(200, 75, 75, 0.12) 0%, rgba(200, 75, 75, 0.06) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(55px);
    z-index: 0;
    animation: blobMove2 25s ease-in-out infinite;
}

@keyframes blobMove1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% {
        transform: translate(50px, 50px) rotate(120deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    66% {
        transform: translate(-30px, 80px) rotate(240deg);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

@keyframes blobMove2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    33% {
        transform: translate(-40px, -60px) rotate(-120deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    66% {
        transform: translate(60px, -30px) rotate(-240deg);
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
}

.events-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.event-row {
    margin-bottom: 80px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.event-row:last-child {
    margin-bottom: 0;
}

.event-row .container {
    max-width: 1200px;
    margin: 0 auto;
}

.event-content {
    padding: 40px;
    position: relative;
    z-index: 1;
}

/* Blob Background for Event Content */
.event-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: linear-gradient(135deg, rgba(200, 75, 75, 0.1) 0%, rgba(200, 75, 75, 0.05) 100%);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.event-content:hover::before {
    opacity: 0.9;
}

/* Additional blob for alternating rows */
.event-row:nth-child(odd) .event-content::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(200, 75, 75, 0.12) 0%, rgba(200, 75, 75, 0.06) 100%);
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    z-index: -1;
    filter: blur(45px);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.event-row:nth-child(even) .event-content::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(200, 75, 75, 0.12) 0%, rgba(200, 75, 75, 0.06) 100%);
    border-radius: 40% 60% 40% 60% / 50% 50% 50% 50%;
    z-index: -1;
    filter: blur(45px);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.event-row:hover .event-content::after {
    opacity: 0.8;
}

.event-title {
    font-family: 'Akrobat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C84B4B;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.event-description {
    font-family: 'Akrobat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.event-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.event-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Akrobat', sans-serif;
    font-size: 1rem;
    color: #C84B4B;
    font-weight: 600;
}

.event-feature-item i {
    font-size: 1.2rem;
    color: #C84B4B;
}

.event-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.event-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.event-image-wrapper:hover .event-image {
    transform: scale(1.05);
}

.event-youtube-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.event-youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.event-text-col {
    display: flex;
    align-items: center;
}

.event-image-col {
    display: flex;
    align-items: center;
}

/* =========================
   Spotlights Section Styling
   ========================= */

.spotlight-row {
    margin-bottom: 56px;
}

.spotlight-row:last-child {
    margin-bottom: 0;
}

.spotlight-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 30px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(148, 163, 184, 0.2);
    position: relative;
    overflow: hidden;
}

/* Removed colored edge; keep soft neutral card */

.spotlight-media-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight-media {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    overflow: hidden;
}

.spotlight-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 340px;
}

.spotlight-text-col {
    display: flex;
    align-items: center;
}

.spotlight-content {
    background: transparent;
    border-radius: 20px;
    padding: 8px 0 0;
    position: relative;
    z-index: 1;
}

.spotlight-title {
    font-size: 2.4rem;
    margin-bottom: 1.25rem;
}

.spotlight-description {
    font-size: 1.05rem;
    line-height: 1.9;
}

.spotlight-buttons .spotlight-btn-main,
.spotlight-buttons .spotlight-btn-secondary {
    padding-inline: 24px;
    padding-block: 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.spotlight-buttons .spotlight-btn-main {
    background-color: #C84B4B;
    border-color: #C84B4B;
    box-shadow: 0 8px 24px rgba(200, 75, 75, 0.35);
}

.spotlight-buttons .spotlight-btn-secondary {
    color: #C84B4B;
    border-width: 2px;
    border-color: #C84B4B;
}

.spotlight-buttons .spotlight-btn-main:hover,
.spotlight-buttons .spotlight-btn-main:focus {
    background-color: #b64343;
    border-color: #b64343;
}

.spotlight-buttons .spotlight-btn-secondary:hover,
.spotlight-buttons .spotlight-btn-secondary:focus {
    background-color: rgba(200, 75, 75, 0.07);
    color: #C84B4B;
    border-color: #C84B4B;
}

/* Scroll-in animations for spotlights */
.spotlight-media,
.spotlight-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

.spotlight-media.slide-in-left {
    transform: translateX(-60px);
}

.spotlight-content.slide-in-right {
    transform: translateX(60px);
}

.spotlight-content.slide-in-left {
    transform: translateX(-60px);
}

.spotlight-card.in-view .spotlight-media,
.spotlight-card.in-view .spotlight-content {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

@media (max-width: 991.98px) {
    .spotlight-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .spotlight-content {
        text-align: center;
    }

    .spotlight-buttons {
        justify-content: center;
    }

    .spotlight-title {
        font-size: 1.8rem;
    }

    .spotlight-image {
        max-height: 260px;
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .events-section::before {
        width: 400px;
        height: 400px;
        top: -150px;
        left: -150px;
        filter: blur(40px);
    }
    
    .events-section::after {
        width: 500px;
        height: 500px;
        bottom: -150px;
        right: -150px;
        filter: blur(50px);
    }
    
    .events-section {
        padding: 60px 0;
    }
    
    .event-row {
        margin-bottom: 60px;
    }
    
    .event-content {
        padding: 30px 20px;
    }
    
    .event-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .event-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .events-section::before {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
        filter: blur(30px);
    }
    
    .events-section::after {
        width: 350px;
        height: 350px;
        bottom: -100px;
        right: -100px;
        filter: blur(35px);
    }
    
    .event-row:nth-child(odd) .event-content::after,
    .event-row:nth-child(even) .event-content::after {
        width: 200px;
        height: 200px;
        filter: blur(30px);
    }
    
    .events-section {
        padding: 40px 0;
    }
    
    .event-row {
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    .event-row .row {
        flex-direction: column;
    }
    
    .event-text-col {
        order: 2;
        margin-top: 30px;
    }
    
    .event-image-col {
        order: 1;
    }
    
    .event-content {
        padding: 20px 15px;
        text-align: center;
    }
    
    .event-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .event-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .event-image-wrapper {
        border-radius: 8px;
    }
}
