/**
 * BizimApart - Ana Sayfa Özel Stiller
 * Modern, şık, glassmorphism, animasyonlu
 */

/* ========== GENEL ========== */
:root {
    --primary: #667eea;
    --primary-dark: #5a6fd6;
    --secondary: #764ba2;
    --accent: #f093fb;
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(255,255,255,0.2);
    --shadow-soft: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-hover: 0 16px 48px rgba(102,126,234,0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

/* ========== İSTATİSTİK SAYACI ========== */
.stats-section {
    background: var(--gradient-main);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float-bg 15s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.stat-card {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    padding: 20px 10px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.25);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ========== ÖZELLİKLER ========== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.feature-card-modern {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-circle {
    background: var(--gradient-main);
    color: white;
    transform: scale(1.1);
}

/* ========== MOBİL UYGULAMA ========== */
.mobile-app-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.mobile-app-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118,75,162,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.app-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.app-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.app-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--gradient-main);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.store-badges {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 10px 18px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.store-badge:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

.store-badge i {
    font-size: 1.3rem;
}

/* ========== FİYAT ÖZETİ ========== */
.pricing-preview-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 100%);
}

.pricing-card-modern {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
}

.pricing-card-modern.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card-modern.popular::before {
    content: 'Popüler';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card-modern.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

/* ========== MÜŞTERİ YORUMLARI ========== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf2ff 100%);
    overflow: hidden;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 35px 30px;
    margin: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px; left: 25px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slider .testimonial-card {
    min-width: 350px;
    scroll-snap-align: start;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .testimonial-slider .testimonial-card {
        min-width: 280px;
    }
}

/* ========== SSS ÖZETİ ========== */
.faq-preview-section {
    padding: 80px 0;
    background: white;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: #333;
    padding: 18px 24px;
    border-radius: var(--radius-sm) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(102,126,234,0.08), rgba(118,75,162,0.08));
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-size: 1rem;
}

/* ========== BLOG ÖZETİ ========== */
.blog-preview-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
}

.blog-card-modern {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-card-modern .blog-thumb {
    height: 180px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.9;
}

.blog-card-modern .blog-body {
    padding: 25px;
}

/* ========== BİZİMBİNA REFERANS ========== */
.bizimbina-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: white;
    text-align: center;
}

.bizimbina-section a {
    color: #f093fb;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bizimbina-section a:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(240,147,251,0.5);
}

/* ========== CTA ========== */
.cta-modern {
    padding: 80px 0;
    background: var(--gradient-main);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-modern .container {
    position: relative;
    z-index: 2;
}

/* ========== FOOTER POWERED BY ========== */
.footer-powered-by {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-powered-by a {
    color: #f093fb;
    text-decoration: none;
    font-weight: 500;
}

.footer-powered-by a:hover {
    color: #fff;
}

.footer-app-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-app-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 12px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-app-badge:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* ========== SECTION BAŞLIKLARI ========== */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading p {
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.section-heading .section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
    margin: 15px auto 0;
}

/* ========== COUNTER ANİMASYON ========== */
.counter-animated {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.counter-animated.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .stat-number {
        font-size: 2rem;
    }
    .pricing-card-modern.popular {
        transform: scale(1);
    }
    .pricing-card-modern.popular:hover {
        transform: translateY(-5px);
    }
    .mobile-app-section .app-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    .section-heading h2 {
        font-size: 1.7rem;
    }
    .features-section,
    .mobile-app-section,
    .pricing-preview-section,
    .testimonials-section,
    .faq-preview-section,
    .blog-preview-section {
        padding: 50px 0;
    }
    .price-tag {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 15px 5px;
    }
    .store-badges {
        flex-direction: column;
        align-items: center;
    }
}
