/* --- GENAI THEME OVERRIDE (EPOSTA365 MODERN UI) --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');



body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 1. HERO BÖLÜMÜ MODERNİZASYONU --- */
/* Senin kodundaki .hero-section sınıfını hedefliyoruz */
.hero-section {
    background: radial-gradient(circle at 50% 0%, rgba(234, 76, 70, 0.15), transparent 60%);
    position: relative;
    z-index: 1;
}



.text-gradient-1 {
    background: linear-gradient(to right, #ea4c46, #ff8f8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Görseli Efekti */
.image-with-shape .rounded-5 {
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 0 50px -10px rgba(234, 76, 70, 0.3) !important;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
}
.image-with-shape:hover .rounded-5 {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
}

/* --- 2. ÖZELLİKLER VE USE CASES (KARTLAR) --- */
/* Senin kodundaki .bg-striped ve .bg-lite-blue sınıflarını eziyoruz */
.bg-striped, .bg-lite-blue {
    background-color: var(--bg-dark) !important;
    background-image: none !important; /* Çizgileri kaldırıp temizliyoruz */
}

/* İkon Kutuları */
.icon.bg-primary.bg-opacity-10 {
    background-color: rgba(234, 76, 70, 0.1) !important;
    color: var(--primary) !important;
    border-color: rgba(234, 76, 70, 0.3) !important;
    box-shadow: 0 0 15px rgba(234, 76, 70, 0.2);
}

/* Başlıklar ve Metinler */
h1, h2, h3, h4, h5, h6 { color: var(--text-main) !important; }
p { color: var(--text-muted) !important; }

/* Linkler */
.arrow-link { color: var(--primary) !important; text-decoration: none; font-weight: 600; }
.arrow-link:hover { color: #fff !important; }

/* --- 3. REVIEWS (Kullanıcı Yorumları) --- */
/* Swiper içindeki kartlar */
.review-card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    backdrop-filter: var(--glass-blur);
    color: var(--text-main);
    transition: 0.3s;
}
.review-card:hover {
    border-color: var(--primary) !important;
    transform: translateY(-5px);
}
.review-card h6 { color: #fff !important; }
.review-card p.fs-sm { color: var(--text-muted) !important; }

/* --- 4. PRICING (Fiyatlandırma) --- */
.pricing-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%) !important;
    border: 1px solid var(--border-color) !important;
    backdrop-filter: blur(10px);
}
.pricing-card h3 { color: var(--primary) !important; }
.pricing-card h1 { color: #fff !important; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.pricing-list li { color: var(--text-muted); }

/* Butonlar */
.btn-lite-blue-2, .btn-primary, .btn-gradient-1 {
    background: linear-gradient(90deg, #ea4c46 0%, #d63031 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 5px 20px rgba(234, 76, 70, 0.4);
    transition: 0.3s;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 76, 70, 0.6);
}

/* --- 5. FAQ (Accordion) --- */
.accordion-item {
    background-color: transparent !important;
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-button {
    background-color: rgba(255,255,255,0.03) !important;
    color: #fff !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background-color: rgba(234, 76, 70, 0.1) !important;
    color: var(--primary) !important;
}
.accordion-body {
    background-color: rgba(0,0,0,0.2);
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

/* --- 6. CTA (Alt Kutu) --- */
.cta-section .gradient-bg {
    background: linear-gradient(135deg, #1a1f2e 0%, #0b0f19 100%) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.cta-section h2 { color: #fff !important; }
.cta-section .text-primary { text-shadow: 0 0 15px var(--primary); }

/* --- GLOBAL DÜZELTMELER --- */
.text-primary { color: #ea4c46 !important; }
svg.text-primary { color: #ea4c46 !important; }