.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: #fff;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFE355;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #FFE355;
    transform: scale(1.2);
    border-color: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #FFE355;
    width: 60px;
    height: 60px;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* İstatistikler Bölümü */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3em;
    color: #FFE355;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-label {
    font-size: 1.2em;
    color: #fff;
}

/* Referanslar Bölümü */
.references-container {
    margin: 50px 0;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 20px;
}

.reference-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.reference-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 227, 85, 0.1);
    border-color: #FFE355;
    box-shadow: 0 5px 15px rgba(255, 227, 85, 0.2);
}

.reference-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.3s ease;
}

.reference-item:hover .reference-logo {
    filter: grayscale(0%);
}

.reference-name {
    color: #FFE355;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.reference-description {
    font-size: 0.9em;
    color: #ccc;
    transition: all 0.3s ease;
}

.reference-item:hover .reference-name {
    color: #fff;
}

.reference-item:hover .reference-description {
    color: #FFE355;
}

/* Responsive Tasarım */
@media (max-width: 900px) {
    .slider-container {
        height: 500px;
    }

    .slide-content {
        padding: 20px;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 2.2em;
    }

    .slide-content p {
        font-size: 1.1em;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow:hover {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 600px) {
    .slider-container {
        height: 400px;
        margin-bottom: 30px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-content h2 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
} 