/*
==============================================
--- Arena Yatirim - ANA STİL DOSYASI ---
==============================================
1. Genel Stiller ve Değişkenler
2. Header / Navbar Stilleri
3. Hero Bölümü Stilleri
4. Neden Biz Bölümü Stilleri
5. Danışmanlık Bölümü Stilleri
6. CTA (Call to Action) Bölümü Stilleri
7. Promosyon (%50) Bölümü Stilleri
8. Platform Tanıtım Bölümü Stilleri
9. Swapsız Hesap Bölümü Stilleri
10. Yatırım Eğitimleri Bölümü Stilleri
11. Altyapı & Logolar Bölümü Stilleri
12. Footer Bölümü Stilleri
13. Responsive (Mobil Uyum) Stilleri
==============================================
*/

/* --- 1. GENEL STİLLER ve DEĞİŞKENLER --- */
:root {
    --primary-green: #7ed957;
    --primary-blue: #001c44;
    --text-color: #667085;
    --dark-text: #003366;
    --footer-bg: #0d1a2f;
}

.fw-bold{
    font-weight: 600 !important;
}

body {
    font-family: 'Poppins', sans-serif;

}

main{
        background-image:
        linear-gradient(#e9ecef00, #e9ecef00),
        linear-gradient(#e9ecef00, #e9ecef00),
        linear-gradient(#e9ecef00, #e9ecef00),
        linear-gradient(#e9ecef00, #e9ecef00);
    background-size: 1px 1px;
    background-repeat: repeat-y;
    background-position:
        calc(50% - 580.5px) 0,
        calc(50% - 193.5px) 0,
        calc(50% + 193.5px) 0,
        calc(50% + 580.5px) 0;
}

.text-muted{
    color: #667085 !important;
}

.lead{
    color: #667085 !important;
    line-height: 2;
    font-size: 20px;
}

.bg-light {
    background-color: #f0f4f7 !important;
}

/* --- 2. HEADER / NAVBAR STİLLERİ --- */
.header .navbar-nav .nav-item {
    margin: 0 0.5rem;
}

.header .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.header .navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.header .navbar-nav .nav-link.active {
    color: var(--dark-text);
    font-weight: 600;
}

.header .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5px;
    right: 5px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.btn-login, .btn-signup {
    border-radius: 50px;
    padding: 8px 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    color: #fff;
}

.btn-login {
    background-color: var(--primary-green);
}

.btn-login:hover {
    background-color: #7ab430;
    color: #fff;
}

.btn-signup {
    background-color: var(--primary-blue);
}

.btn-signup:hover {
    background-color: #004494;
    color: #fff;
}

/* --- 3. HERO BÖLÜMÜ STİLLERİ --- */
.hero-section {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    color: var(--dark-text);
    line-height: 1.2;
}

.hero-title .text-highlight {
    color: var(--primary-green);
}

.btn-success-custom, .btn-primary-custom {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 150px;
    font-size: 16px;
}

.btn-success-custom {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.btn-success-custom:hover {
    background-color: #7ed957;
    border-color: #7ed957;
    color: #fff;
    transition: 0.9s;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.btn-primary-custom:hover {
    background-color: #004494;
    border-color: #004494;
    color: #fff;
    font-size: 16px;
}

/* --- 4. NEDEN BİZ BÖLÜMÜ STİLLERİ --- */
.why-us-section .section-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.feature-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0px !important;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-card .indicator-line {
    width: 40px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.feature-card h6 {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.feature-card .text-highlight {
    color: var(--primary-green);
}

.feature-card .display-5 {
    color: var(--dark-text);
}

.feature-card .feature-img {
    max-width: 100%;
    height: auto;
}

/* --- 5. DANIŞMANLIK BÖLÜMÜ STİLLERİ --- */
.consultancy-section {
}

.section-heading {
    color: var(--dark-text);
    line-height: 1.2;
}

.text-highlight {
    color: var(--primary-green);
}
.text-primary-blue {
    color: var(--primary-blue);
}

/* --- 6. CTA BÖLÜMÜ STİLLERİ --- */
.cta-section {
}

.cta-banner {
    background: linear-gradient(105deg, #0d254a 0%, #004a9e 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 74, 158, 0.15);
}

.cta-banner h3 {
    line-height: 1.5;
}

.btn-cta-demo {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.btn-cta-demo:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* --- 7. PROMOSYON (%50) BÖLÜMÜ STİLLERİ --- */
.promo-section {
    overflow: hidden;
}

.promo-heading {
    line-height: 1.3;
}

/* --- 8. PLATFORM TANITIM BÖLÜMÜ STİLLERİ --- */
.platform-banner {
    background: linear-gradient(105deg, #0d254a 0%, #004a9e 100%);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.platform-banner h2 {
    line-height: 1.3;
}

/* --- 9. SWAPSIZ HESAP BÖLÜMÜ STİLLERİ --- */
.swap-free-section {
    overflow: hidden;
}

/* --- 10. YATIRIM EĞİTİMLERİ BÖLÜMÜ STİLLERİ --- */
.trainings-section {
    overflow: hidden;
}

.video-wrapper, .video-wrapper-hero {
    border-radius: 15px;
    overflow: hidden;
    line-height: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-wrapper { max-width: 90%; }
.video-wrapper-hero { max-width: 94%; }

.video-wrapper:hover, .video-wrapper-hero:hover {
    transform: scale(1.03);
}

/* Dekoratif Şekiller */
.decorative-shape-right, .decorative-shape-top-right, .decorative-shape-bottom-left, .decorative-shape-top-left {
    position: absolute;
    z-index: 0;
    line-height: 0;
}
.decorative-shape-right {
    bottom: 0;
    right: -200px;
    width: 30%;
}

.decorative-shape-top-right {
    top: 0;
    right: -190px;
    width: 29%;
}

.decorative-shape-bottom-left {
    bottom: -50px;
    left: -50px;
    width: 150px;
}

.decorative-shape-top-left {
    top: -50px;
    left: -50px;
    width: 200px;
}

.decorative-shape-right img, .decorative-shape-top-right img, .decorative-shape-bottom-left img, .decorative-shape-top-left img {
    max-width: 100%;
}


/* --- 11. ALTYAPI & LOGOLAR BÖLÜMÜ STİLLERİ --- */
.partners-section {
    overflow: hidden;
}

.logo-item img {
    max-height: 55px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* --- 12. FOOTER BÖLÜMÜ STİLLERİ --- */
.footer-section {
    background-color: #003366;
}

.footer-logo {
    max-width: 150px;
}

.footer-section h5 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.social-icons a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-green);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.disclaimer-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.sub-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.sub-footer-links a:hover {
    color: #fff;
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.section-padding{
    padding-top: 5% !important;
    padding-bottom: 5% !important;
}


.hero-bull{
    max-width: 160% !important;
}

/* --- 13. RESPONSIVE (MOBİL UYUM) STİLLERİ --- */

/* Tablet ve Altı Cihazlar (Large - lg) */
@media (max-width: 991.98px) {
    /* Genel Bölüm Boşlukları */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .hero-bull{
    max-width: 100% !important;
}

.lead{
    color: #667085 !important;
    line-height: 2;
    font-size: 18px;
}


    /* Hizalamaları Düzenle */
    .text-lg-start { text-align: center !important; }
    .text-lg-end { text-align: center !important; }
    .mt-lg-0 { margin-top: 2rem !important; }

    /* Başlık Boyutları */
    h1.display-4, .display-4 { font-size: 2.6rem; font-weight: 700; }
    h2.display-5, .display-5 { font-size: 2.2rem; font-weight: 700; }

    /* Dekoratif şekilleri gizle */
    .decorative-shape-right, .decorative-shape-top-right, .decorative-shape-bottom-left, .decorative-shape-top-left {
        display: none;
    }

    /* Platform banner görseli için boşluk */
    .platform-banner .img-fluid { margin-bottom: 2rem; }

    /* Footer link grupları */
    .footer-section .col-lg-3 { text-align: center; }
    .social-icons { justify-content: center; display: flex; }
}

/* Mobil Cihazlar (Medium - md) */
@media (max-width: 767.98px) {
    .cta-banner, .platform-banner {
        padding: 30px 25px;
    }
    .cta-banner h3 {
        font-size: 1.5rem;
    }

    /* Footer link grupları (2'li dizilim) */
    .footer-section .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
    }

    /* Video galeri boşlukları */
    .video-wrapper-hero, .video-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .sub-footer-links a {
        display: block;
        margin-bottom: 0.5rem;
    }
    .sub-footer-links a::after {
        content: none;
    }
}

/* Küçük Mobil Cihazlar (Small - sm) */
@media (max-width: 575.98px) {
    h1.display-4, .display-4 { font-size: 2.2rem; }
    h2.display-5, .display-5 { font-size: 1.8rem; }

    .btn-lg {
        padding: 10px 24px;
        font-size: 1rem;
    }
}






/* ============================================
   CSS ANIMATIONS - SADECE YENİ EKLEMELER
   ============================================ */

/* Float Animation - Hero Bull için */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-bull-animated {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation - Butonlar için */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Glow on Hover - Butonlar için */
.btn-glow-hover:hover {
    box-shadow: 0 0 20px rgba(126, 217, 87, 0.6);
    transform: translateY(-2px);
    transition: all 0.8s ease;
}

/* Responsive: Mobilde animasyonları kapat */
@media (max-width: 768px) {
    .hero-bull-animated {
        animation: none;
    }
    .btn-pulse {
        animation: none;
    }
}




/* ================================
   CANLI FİYAT AKIŞI / TICKER
   ================================ */
.ticker-section {
    background: linear-gradient(105deg, #0d254a 0%, #004a9e 100%);
    overflow: hidden;
    padding: 12px 0;
    position: relative;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
}

/* Hover'da durdurma */
.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.ticker-symbol {
    font-weight: 600;
    color: #ffffff;
    min-width: 80px;
}

.ticker-price {
    font-weight: 600;
    color: #ffffff;
    min-width: 90px;
}

.ticker-change {
    font-weight: 500;
    min-width: 110px;
}

.ticker-change.positive {
    color: #7ed957;
}

.ticker-change.negative {
    color: #ff4d4d;
}

.ticker-change.neutral {
    color: #cccccc;
}

.ticker-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .ticker-item {
        font-size: 12px;
        padding: 0 16px;
        gap: 8px;
    }
    
    .ticker-symbol {
        min-width: 60px;
    }
    
    .ticker-price {
        min-width: 70px;
    }
    
    .ticker-change {
        min-width: 90px;
    }
}

/* Fiyat güncellendiğinde flash efekti */
@keyframes price-flash {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}