/* Genel Sayfa İyileştirmeleri */
body {
    overflow-x: hidden;
}

/* Bölümler arası boşlukları optimize etme */
.landing-hero {
    padding: 100px 0 80px;
    position: relative;
}

.landing-info-one,
.features-section,
.steps-section,
.faq-section,
.management-section {
    padding: 60px 0;
    position: relative;
}

/* Bölüm başlık stilleri */
.section-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #00ff8c, #00e07a);
}

/* Mobil için boşlukları ayarlama */
@media (max-width: 768px) {
    .landing-hero,
    .landing-info-one,
    .features-section,
    .steps-section,
    .faq-section,
    .management-section {
        padding: 50px 0;
    }
}

/* Hero Bölümü İyileştirmeleri */
.landing-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #131722 0%, #0c1119 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Content/img/giris2.png') center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.landing-hero .container-fluid {
    position: relative;
    z-index: 1;
}

.modern-cta-button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #00ff8c, #00e07a);
    border: none;
    color: #131722;
    box-shadow: 0 10px 20px rgba(0, 224, 122, 0.3);
}

.modern-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 224, 122, 0.4);
}

/* TradingView Widget İyileştirmeleri */
.tradingview-widget-container {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Logo Sliderları İyileştirmeleri */
.partner-logos,
.reference-logos {
    margin: 50px 0;
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Özellikler Bölümü İyileştirmeleri */
.features-section {
    background: linear-gradient(135deg, #131722 0%, #0c1119 100%);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-gradient {
    background: linear-gradient(to right, #00ff8c, #00e07a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 224, 122, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 140, 0.1) 0%, rgba(0, 224, 122, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #00e07a;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Adımlar Bölümü İyileştirmeleri */
.steps-section {
    background: #0c1119;
    padding: 100px 0;
}

.steps-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.steps-container {
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(0, 224, 122, 0.3);
    transform: translateX(-50%);
    z-index: 0;
}

@media (max-width: 991px) {
    .steps-container::before {
        display: none;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 224, 122, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to right, #00ff8c, #00e07a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #131722;
    position: absolute;
    top: -25px;
    left: 30px;
    box-shadow: 0 5px 15px rgba(0, 224, 122, 0.3);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #00e07a;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

/* SSS Bölümü İyileştirmeleri */
.faq-section {
    background: linear-gradient(135deg, #131722 0%, #0c1119 100%);
    padding: 100px 0;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.faq-title span {
    color: #00e07a;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 224, 122, 0.3);
}

.faq-question {
    padding: 20px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #00e07a;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.faq-icon::after {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 1000px;
}

/* Yönetim Kurulu Bölümü İyileştirmeleri */
.management-section {
    background: #0c1119;
    padding: 100px 0;
}

.management-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.management-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 224, 122, 0.3);
}

.management-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00e07a;
    box-shadow: 0 5px 15px rgba(0, 224, 122, 0.3);
    transition: all 0.3s ease;
}

.management-card:hover .management-image img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 224, 122, 0.4);
}

.management-name {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0 5px;
    color: #fff;
}

.management-title {
    font-size: 16px;
    color: #00e07a;
    margin-bottom: 20px;
    font-weight: 500;
}

.management-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.management-description::-webkit-scrollbar {
    width: 5px;
}

.management-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.management-description::-webkit-scrollbar-thumb {
    background: rgba(0, 224, 122, 0.3);
    border-radius: 5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #00ff8c, #00e07a);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 224, 122, 0.3);
}

/* Mobil Uyumlu Tasarım İyileştirmeleri */
@media (max-width: 991px) {
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .feature-card,
    .step-card,
    .management-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
    
    .modern-cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .feature-icon,
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-card h3,
    .step-title {
        font-size: 18px;
    }
    
    .management-image img {
        width: 120px;
        height: 120px;
    }
    
    .management-name {
        font-size: 20px;
    }
    
    .management-description {
        font-size: 13px;
        max-height: 150px;
    }
}

@media (max-width: 576px) {
    .landing-hero {
        min-height: 60vh;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .feature-list li,
    .step-description {
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .management-image img {
        width: 100px;
        height: 100px;
    }
    
    .management-name {
        font-size: 18px;
    }
    
    .management-title {
        font-size: 14px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}
