/* ============================================
   ANA SAYFA ÖZEL STİLLERİ
   ============================================ */

/* ============ HERO SLIDER ============ */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 50%, rgba(18,18,18,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.hero-line-1 {
    display: block;
    color: #ffffff;
}

.hero-line-2 {
    display: block;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
}

.hero-line-3 {
    display: block;
    color: #ffffff;
}

.hero-slogan {
    font-size: clamp(18px, 3vw, 28px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btn {
    font-size: 16px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
    left: 30px;
}

.hero-arrow-right {
    right: 30px;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--gold);
}

/* ============ SCROLL İNDİKATÖRÜ ============ */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    cursor: pointer;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    background: rgba(255,255,255,0.05);
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: wheelScroll 1.5s infinite;
}

.scroll-text {
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

@keyframes wheelScroll {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ============ HERO ROZETLERİ ============ */
.hero-badges {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid var(--gold);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.badge:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #FFD700;
    transform: translateY(-2px);
}

.badge i {
    color: var(--gold);
    font-size: 14px;
}

/* ============ NEDEN POL&MAT ============ */
.features {
    background: var(--bg-body);
}

.features .section-title {
    font-size: clamp(32px, 5vw, 48px);
}

.features .section-subtitle {
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1350px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), #FFD700);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-light), #FFF8E7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold-dark);
    transition: var(--transition-normal);
    border: 2px solid var(--gold-light);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: #fff;
    transform: rotate(360deg);
    border-color: var(--gold);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.feature-stat {
    display: inline-block;
    background: var(--bg-dark);
    color: #FFD700;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--gold);
    margin-top: auto;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-stat {
    background: var(--gold);
    color: #fff;
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ============ NEDEN EVA PASPAS ============ */
.eva-section {
    background: var(--bg-cream);
}

.eva-section .section-title {
    font-size: clamp(32px, 5vw, 48px);
}

.eva-section .section-subtitle {
    font-size: 16px;
}

.eva-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1250px;
    margin: 0 auto;
    align-items: start;
}

.eva-image {
    position: sticky;
    top: 100px;
}

.eva-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 550px;
    height: 500px;
    object-fit: cover;
    margin: 0 auto;
    border: 3px solid #fff;
}

.eva-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.eva-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-white);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.eva-feature:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.eva-feature i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.eva-feature h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.eva-feature p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ============ KARŞILAŞTIRMA TABLOSU ============ */
.comparison-table {
    margin-top: 25px;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--bg-dark);
    color: #fff;
    padding: 15px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table th:nth-child(2) {
    background: var(--gold);
    color: var(--text-dark);
}

.comparison-table td {
    padding: 14px 15px;
    text-align: center;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .fa-check-circle {
    color: var(--gold);
    font-size: 20px;
}

.comparison-table .fa-times-circle {
    color: #ddd;
    font-size: 20px;
}

/* ============ NASIL ÇALIŞIR ============ */
.how-it-works {
    background: var(--bg-body);
}

.how-it-works .section-title {
    font-size: clamp(32px, 5vw, 48px);
}

.how-it-works .section-subtitle {
    font-size: 16px;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 350px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

.step-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ PARÇALI OK ANİMASYONU (CSS) ============ */
.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 120px;
    z-index: 2;
    gap: 8px;
}

.ok-parca {
    display: block;
    font-size: 45px;
    font-weight: 900;
    color: #CCCCCC;
    opacity: 0.5;
    line-height: 1;
    animation: okYanSon 1.6s infinite;
}

.ok-1 { animation-delay: 0s; }
.ok-2 { animation-delay: 0.4s; }
.ok-3 { animation-delay: 0.8s; }
.ok-4 { 
    animation-delay: 1.2s; 
    font-size: 35px;
}

@keyframes okYanSon {
    0% {
        color: #CCCCCC;
        opacity: 0.5;
        text-shadow: none;
        transform: scale(1);
    }
    25% {
        color: #FFD700;
        opacity: 1;
        text-shadow: 0 0 15px #FFD700, 0 0 30px #FFD700, 0 0 45px #D4AF37;
        transform: scale(1.3);
    }
    50% {
        color: #CCCCCC;
        opacity: 0.5;
        text-shadow: none;
        transform: scale(1);
    }
    100% {
        color: #CCCCCC;
        opacity: 0.5;
        text-shadow: none;
        transform: scale(1);
    }
}
/* ============ GÜVEN ROZETLERİ ============ */
.trust-section {
    background: var(--bg-cream);
}

.trust-section .section-title {
    font-size: clamp(32px, 5vw, 48px);
}

.trust-section .section-subtitle {
    font-size: 16px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), #FFD700);
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.trust-card i {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 15px;
}

.trust-card h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 12px;
    color: var(--text-gray);
}

/* ============ CTA BANNER ============ */
.cta-section {
    padding: 100px 5%;
    background: 
        linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)),
        url('../images/hero/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
}

.cta-content p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--wa-green);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: #1eb955;
}

/* ============ MOBİL RESPONSIVE ============ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-arrow-left {
        left: 10px;
    }
    
    .hero-arrow-right {
        right: 10px;
    }
    
    .hero-dots {
        bottom: 100px;
    }
    
    .scroll-indicator {
        bottom: 130px;
    }
    
    .hero-badges {
        bottom: 10px;
        gap: 8px;
    }
    
    .badge {
        font-size: 9px;
        padding: 6px 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .eva-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .eva-image {
        position: relative;
        top: 0;
    }
    
    .eva-image img {
        max-width: 100%;
    }
    
    .eva-features {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    /* Mobilde scroll indikatörünü gizle */
    .scroll-indicator {
        display: none;
    }   
}