/* =========================================
   DIGI MENÜ - ANASAYFA (LANDING PAGE) CSS
   Dosya Yolu: Assets/css/anasayfa.css
   ========================================= */

/* --- FONTLAR --- */
/* Başlıklar için Poppins (Kalın/Modern), Metinler için Inter (Okunaklı) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@700;800&display=swap');

/* --- DEĞİŞKENLER (RENK PALETİ) --- */
:root {
    --brand-blue: #0d6efd;
    --brand-orange: #fd7e14;       /* Ana Turuncu Rengi */
    --brand-dark: #111827;         /* Koyu Tema Arka Planı (Hero) */
    --text-light: #f3f4f6;         /* Açık Renk Yazı */
    --text-muted: #9ca3af;         /* Soluk Yazı */
    --bg-gray: #f9fafb;            /* Açık Gri Arka Plan */
    --orange-soft: rgba(253, 126, 20, 0.1); /* Silik Turuncu */
}

/* --- GENEL AYARLAR --- */
body {
    font-family: 'Inter', sans-serif;
    color: #4b5563; /* Koyu Gri Metin */
    background-color: #fff;
    overflow-x: hidden; /* Yatay taşmayı engelle */
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-dark);
}

a { 
    text-decoration: none; 
    transition: all 0.3s ease; 
}

/* Yardımcı Sınıflar */
.text-orange { color: var(--brand-orange) !important; }
.bg-orange-soft { background-color: var(--orange-soft) !important; }
.bg-dark-theme { background-color: var(--brand-dark) !important; }
.section-padding { padding: 100px 0; }

/* =========================================
   1. NAVBAR (ÜST MENÜ)
   ========================================= */
.navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

/* Scroll yapıldığında Javascript ile eklenecek sınıf */
.navbar.bg-dark {
    background-color: rgba(17, 24, 39, 0.95) !important; /* Hafif şeffaf siyah */
    backdrop-filter: blur(10px); /* Buzlu cam efekti */
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar-brand span {
    color: #fff;
}

.nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 500;
    margin: 0 10px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--brand-orange) !important;
}

/* Navbar Butonları */
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--brand-dark);
}

/* =========================================
   2. HERO SECTION (GİRİŞ ALANI - KOYU TEMA)
   ========================================= */
.hero-section-dark {
    background-color: var(--brand-dark);
    min-height: 100vh; /* Tam ekran yüksekliği */
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Büyük Ana Başlık */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

/* Mobilde başlığı küçült */
@media (max-width: 768px) { 
    .hero-title { font-size: 2.5rem; text-align: center; } 
    .hero-section-dark { text-align: center; padding-top: 100px; }
    .hero-image-container { margin-top: 50px; }
}

/* Arka Plan Şekilleri (Blur Efekti) */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    opacity: 0.2;
}
.shape-1 {
    top: -10%; left: -10%;
    width: 600px; height: 600px;
    background: var(--brand-orange);
}
.shape-2 {
    bottom: -10%; right: -10%;
    width: 500px; height: 500px;
    background: var(--brand-blue);
}

/* Dinamik Görsel Alanı */
.hero-image-container {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.floating-phone {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); /* Telefona gölge ver */
}

/* Havada Durma (Bounce) Animasyonu */
.bounce-animation img {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); } /* 20px yukarı çıkar */
    100% { transform: translateY(0px); }
}

/* =========================================
   3. NASIL ÇALIŞIR (PROCESS)
   ========================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}

.process-card {
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.process-card:hover {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.icon-box {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto;
    background: var(--orange-soft);
    color: var(--brand-orange);
}

.icon-box.color-1 { background: rgba(253, 126, 20, 0.1); color: var(--brand-orange); }
.icon-box.color-2 { background: rgba(13, 110, 253, 0.1); color: var(--brand-blue); }
.icon-box.color-3 { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* =========================================
   4. ÖZELLİKLER (FEATURES)
   ========================================= */
.feature-box {
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--orange-soft);
}

.feature-box h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* =========================================
   5. FİYATLANDIRMA (PRICING)
   ========================================= */
.pricing-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

/* Öne Çıkan Paket */
.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid var(--brand-orange);
    box-shadow: 0 20px 40px rgba(253, 126, 20, 0.15);
}

/* Mobil için ölçeklendirmeyi iptal et */
@media (max-width: 768px) {
    .pricing-card.popular { transform: scale(1); margin: 20px 0; }
}

.popular-badge {
    position: absolute; top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--brand-orange);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(253, 126, 20, 0.3);
}

.price-tag {
    display: flex; align-items: flex-start; justify-content: center;
    color: var(--brand-dark); font-weight: 800;
}

.currency { font-size: 1.5rem; margin-top: 8px; }
.amount { font-size: 3.5rem; line-height: 1; color: var(--brand-dark); }
.amount.text-orange { color: var(--brand-orange); }
.period { font-size: 1rem; align-self: flex-end; margin-bottom: 10px; color: #999; margin-left: 5px;}

.pricing-features li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Sola yaslar, ip gibi dizer */
    text-align: left;
}

.pricing-features li i {
    font-size: 1.1rem;
}

/* =========================================
   6. CTA & FOOTER
   ========================================= */
/* Call To Action Alanı */
.bg-orange-soft { background-color: #fffbf7 !important; }

/* Footer */
footer {
    background-color: var(--brand-dark);
    color: #fff;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.2s;
    display: block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: var(--brand-orange);
    padding-left: 5px; /* Hoverda sağa kayma efekti */
}

.social-btn-footer {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-btn-footer:hover {
    background: var(--brand-orange);
    transform: translateY(-3px);
    color: #fff;
}

/* =========================================
   BUTONLAR
   ========================================= */
.btn-orange {
    background: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #e36a0d;
    border-color: #e36a0d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.hover-up {
    transition: transform 0.3s;
}
.hover-up:hover {
    transform: translateY(-5px);
}

/* --- ALT SAYFALAR (Partners & Kayıt) --- */
.page-header {
    background-color: var(--brand-dark);
    padding: 120px 0 60px 0; /* Navbar altından başlasın */
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.partner-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
    height: 100%;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--brand-orange);
}

.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* Fiyat Kartı Düzeltmesi */
.pricing-card.popular {
    overflow: visible !important; /* Etiketin taşmasına izin ver */
}