/* Stats Section - Düzenlenmiş */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%232D6B78" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%232D6B78" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%232D6B78" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

.stats-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Stats-specific badge styling - inherits from .section-badge */
.stats-section .section-badge {
    background: rgba(45, 107, 120, 0.1);
    color: #2D6B78;
    border: 1px solid rgba(45, 107, 120, 0.2);
}

.stats-section .section-title span {
    color: #333 !important;
}

.stats-section .section-title .highlight {
    color: #2D6B78 !important;
}

.stats-section .section-description {
    color: #666 !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #2D6B78;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 5px 15px rgba(45, 107, 120, 0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #2D6B78 !important;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section - Düzenlenmiş */
.features-section {
    background: white;
    padding: 100px 0;
    position: relative;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-section .section-badge {
    background: rgba(45, 107, 120, 0.1);
    color: #2D6B78;
    border: 1px solid rgba(45, 107, 120, 0.2);
}

.features-section .section-title span {
    color: #333 !important;
}

.features-section .section-title .highlight {
    color: #2D6B78 !important;
}

.features-section .section-description {
    color: #666 !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(45, 107, 120, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2D6B78;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(45, 107, 120, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    color: #2D6B78;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Process Section - Düzenlenmiş */
.process-section {
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.process-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.process-section .section-title span {
    color: white !important;
}

.process-section .section-title .highlight {
    color: #ffc107 !important;
}

.process-section .section-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 60px;
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #2D6B78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 30px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #333;
}

.process-step:hover .step-content {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(45, 107, 120, 0.3);
}

.step-content h3 {
    color: #2D6B78 !important;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.step-content p {
    color: #666 !important;
    line-height: 1.6;
    font-size: 15px;
}

/* Testimonials Section - Düzenlenmiş */
.testimonials-section {
    background: white;
    padding: 100px 0;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .section-badge {
    background: rgba(45, 107, 120, 0.1);
    color: #2D6B78;
    border: 1px solid rgba(45, 107, 120, 0.2);
}

.testimonials-section .section-title span {
    color: #333 !important;
}

.testimonials-section .section-title .highlight {
    color: #2D6B78 !important;
}

.testimonials-section .section-description {
    color: #666 !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #fff3cd 0%, #ffffff 100%);
    border-color: #ffc107;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #2D6B78;
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    font-size: 16px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author-info h4 {
    color: #2D6B78;
    margin-bottom: 5px;
    font-weight: 700;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* CTA Section - Düzenlenmiş */
.cta-section {
    background: linear-gradient(135deg, #2D6B78 0%, #4B9CAE 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 800;
    color: white !important;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9) !important;
}

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

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

/* Animasyonlar */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}