/* =========================================================
   AERAPART | KURUMSAL VİTRİN STİL DOSYASI (front.css) 
   ========================================================= */

:root {
    --primary-dark: #0a0a0c; 
    --secondary-dark: #475569; 
    --accent-red: #dc3545; 
    --bg-light: #f8fafc;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--secondary-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* GENEL YARDIMCI SINIFLAR */
.text-dark { color: var(--primary-dark) !important; }
.text-secondary-dark { color: var(--secondary-dark) !important; }
.text-danger { color: var(--accent-red) !important; }
.bg-danger { background-color: var(--accent-red) !important; }
.bg-dark { background-color: var(--primary-dark) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.tracking-wide { letter-spacing: 1px !important; }
.transition-all { transition: all 0.3s ease !important; }
.section-padding { padding: 100px 0; }
.relative-z-index { position: relative; z-index: 10; }

/* MENÜ (NAVBAR) */
#mainNav {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}
#mainNav .nav-link {
    color: var(--secondary-dark);
    font-weight: 600;
}
#mainNav .nav-link:hover, #mainNav .nav-link.active {
    color: var(--accent-red);
}

/* KAHRAMAN (HERO) BÖLÜMÜ */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background-color: var(--bg-light);
    overflow: hidden;
}
.headline-text {
    letter-spacing: -1px;
    line-height: 1.2;
}
.badge-premium {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--accent-red);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero Arkaplan Geometrik Şekilleri  */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.2; 
}
.hero-shape-1 {
    width: 400px;
    height: 400px;
    background-color: #fecaca; 
    top: -100px;
    right: -100px;
}
.hero-shape-2 {
    width: 300px;
    height: 300px;
    background-color: #fda4af;
    bottom: -50px;
    left: -50px;
}

/* VİZYON KARTLARI */
.vision-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}

/* SİSTEM BÖLÜMÜ (ÖZELLİK KARTLARI) */
.feature-card {
    background: #ffffff;
    transition: all 0.3s ease;
    border-color: rgba(0,0,0,0.08) !important;
    height: 100%;
}
.feature-card:hover {
    border-color: var(--accent-red) !important;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.05);
}
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary-dark) !important;
}
.feature-card:hover .feature-icon-wrapper i {
    color: #ffffff !important;
}

/* LİSANSLAR (PRICING) KARTLARI */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* Standart paket harici kartların hover efekti */
.col-lg-4:not(:nth-child(2)) .pricing-card:hover {
    transform: translateY(-10px);
}
.border-dark { border-color: var(--primary-dark) !important; }
.badge.bg-dark { background-color: var(--primary-dark) !important; }

/* İLETİŞİM E-POSTA HOVER */
.contact-mail:hover {
    color: var(--primary-dark) !important;
    text-decoration: underline !important;
}