﻿/* --- Genel Aydınlık Ayarlar --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    background-color: #fafafa; /* Çok yumuşak, göz yormayan beyaz/gri */
    color: #1e293b;
    overflow-x: hidden;
}

/* --- Arka Plan Yumuşak Işık Efektleri (Orbs) --- */
.premium-light-universe {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.5;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, rgba(250,250,250,0) 70%);
    top: -150px;
    left: -150px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, rgba(250,250,250,0) 70%);
    bottom: 50px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, 120px) scale(1.1);
    }
}

.content-layer {
    position: relative;
    z-index: 1;
}

/* --- Metin Özelleştirmeleri --- */
.max-w-700 {
    max-width: 700px;
}

.text-dark {
    color: #0f172a !important;
}

.gradient-text-primary {
    background: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Aydınlık Glassmorphism (Buzlu Cam) Elementleri --- */
.badge-glow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: #0284c7;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

.badge-tech {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: #6d28d9;
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Aydınlık Cam Kartlar */
.glass-card-light {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

    .glass-card-light:hover {
        transform: translateY(-10px) scale(1.02);
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(14, 165, 233, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 20px rgba(14, 165, 233, 0.1);
    }

.glass-panel-light {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

/* İkon Gölgeleri (Aydınlık Zeminde) */
.card-icon-glow {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
}

.color-green {
    color: #10b981;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
}

.color-blue {
    color: #0ea5e9;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.color-purple {
    color: #8b5cf6;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}
/* Yeni Eklenen Kart İkon Gölgeleri (Aydınlık Zeminde) */
.color-orange {
    color: #f59e0b;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.color-cyan {
    color: #06b6d4;
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

.color-rose {
    color: #f43f5e;
    box-shadow: 0 8px 20px rgba(244, 63, 94, 0.2);
}

/* Ultra Premium Aydınlık Buton */
.btn-ultra-primary {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9 0%, #4f46e5 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.1rem 3.5rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
}

    .btn-ultra-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.6);
        color: #fff;
    }

/* --- Renk Paletiniz (Dosyanın en üstüne ekleyin) --- */
:root {
    --epoch-main: #6366f1;
    --epoch-second: #a855f7;
    --glass: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

/* --- Güncellenmiş, Dikkat Çekici Epoch Otomat İmzası --- */
.epoch-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

    .epoch-signature .line {
        height: 2px; /* Çizgi kalınlığını belirginleştirdik */
        width: 80px; /* Çizgi uzunluğunu artırdık */
        /* Çizgilere de markanızın ana rengini verdik */
        background: linear-gradient(90deg, transparent, var(--epoch-main), transparent);
    }

    .epoch-signature .brand-name {
        font-size: 2.2rem; /* Boyutu ciddi şekilde büyüttük (Eskisi 1.1rem idi) */
        font-weight: 900;
        letter-spacing: 10px; /* Otoriter görünüm için harf aralığını açtık */
        text-transform: uppercase;
        /* Sizin paletinizle oluşturulan Canlı Gradient Yazı Efekti */
        background: linear-gradient(135deg, var(--epoch-main) 0%, var(--epoch-second) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Yazının arkasına renklerinize uyumlu hafif bir parlama (glow) ekledik */
        text-shadow: 0px 4px 20px rgba(99, 102, 241, 0.4);
    }
/* --- Modernize Edilmiş Yazılım Paneli --- */
.tech-panel-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 5rem 3rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

    /* Panelin üstüne şık, ince bir gradient çizgi */
    .tech-panel-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--epoch-main), var(--epoch-second));
    }

.tech-icon-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    color: var(--epoch-main);
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

/* İnteraktif Teknoloji Etiketleri (Badge) */
.badge-tech-modern {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    cursor: default;
}

    .badge-tech-modern:hover {
        transform: translateY(-4px);
        background: linear-gradient(135deg, var(--epoch-main), var(--epoch-second));
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0 12px 20px rgba(99, 102, 241, 0.3);
    }

/* --- Ultra Premium Footer (Alt Bilgi) --- */
.footer-modern {
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fw-black {
    font-weight: 900;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.3s ease;
}

    .footer-links a:hover {
        color: var(--epoch-main);
        padding-left: 8px; /* Hover olunca hafifçe sağa kayma efekti */
    }

/* Footer Sosyal Medya İkonları */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.05);
    color: var(--epoch-main);
    margin-right: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background: linear-gradient(135deg, var(--epoch-main), var(--epoch-second));
        color: #ffffff;
        transform: translateY(-4px) rotate(8deg); /* Hafif yukarı kalkma ve dönme */
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    }

.fs-7 {
    font-size: 0.875rem;
}

.hover-primary:hover {
    color: var(--epoch-main) !important;
}

/* --- Giriş / Odak Kartı Özelleştirmesi --- */
.intro-glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-bottom: 4px solid var(--epoch-main); /* Alt kısımdan geçen şık marka rengi çizgisi */
    border-radius: 24px;
    padding: 3.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    margin-bottom: 4rem;
    transition: all 0.3s ease;
}

    .intro-glass-card:hover {
        box-shadow: 0 25px 50px rgba(99, 102, 241, 0.08);
        transform: translateY(-5px);
    }

.intro-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    color: var(--epoch-main);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.1);
}

/* --- Premium Navbar (Üst Menü) --- */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 9999 !important; /* Sayfa kayarken üstte kalmasını garanti eder */
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Düzeltilmiş Mobil Buton (Görünmezliği ve Siyah Kareyi Çözer) */
.custom-toggler {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 2.2rem; /* İkonu belirgin ve dokunulabilir yapar */
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

    /* Tıklanınca çıkan çirkin siyah çizgiyi (outline) tamamen kaldırır */
    .custom-toggler:focus, .custom-toggler:active {
        outline: none !important;
        box-shadow: none !important;
        color: var(--epoch-main);
    }

/* Premium Menü Linkleri ve Animasyonu */
.nav-link-premium {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    display: inline-block;
}

    .nav-link-premium:hover, .nav-link-premium.active {
        color: var(--epoch-main);
    }

    /* Linklerin altından kayarak çıkan şık renkli çizgi */
    .nav-link-premium::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background: linear-gradient(90deg, var(--epoch-main), var(--epoch-second));
        transition: width 0.3s ease;
    }

    .nav-link-premium:hover::after, .nav-link-premium.active::after {
        width: 100%;
    }

/* Navbar içindeki butonun menüye orantılı olması için ufak ayar */
.nav-btn {
    padding: 0.7rem 2rem !important;
    font-size: 1rem !important;
}

/* --- Navbar (Üst Menü) Epoch Otomat Logo Stili --- */
.navbar-brand-text {
    font-weight: 900;
    font-size: 1.4rem; /* Menüye taşıp yüksekliği bozmaması için optimize edildi */
    letter-spacing: 4px; /* Premium görünüm için zarif bir harf aralığı */
    text-transform: uppercase;
    /* Ana sayfadaki gibi Canlı Gradient Yazı Efekti */
    background: linear-gradient(135deg, var(--epoch-main) 0%, var(--epoch-second) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Yazının arkasına renklerinize uyumlu hafif bir parlama (glow) */
    text-shadow: 0px 2px 10px rgba(99, 102, 241, 0.3);
}
/* --- Hero Görseli Animasyonları ve Efektleri --- */
.hero-image-container {
    position: relative;
    z-index: 2;
}

/* Görselin arkasında duran neon parlama */
.image-glow-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(255,255,255,0) 70%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
}

/* Makinenin yavaşça havada süzülme efekti */
.floating-machine {
    animation: floatMachine 6s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.2)); /* Makineye derinlik katar */
}

@keyframes floatMachine {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.relative-z-index {
    z-index: 5;
    position: relative;
}

/* --- Ekmen Gıda Güven Mührü --- */
.parent-company-badge {
    display: flex;
    align-items: center;
    opacity: 0.7; /* Çok bağırmaması için hafif şeffaf */
    transition: opacity 0.3s ease;
    cursor: default;
}

    .parent-company-badge:hover {
        opacity: 1; /* Üzerine gelince belirginleşir */
    }

.parent-logo {
    height: 22px; /* Logoyu ana yazıyı ezmeyecek kadar zarif tuttuk */
    width: auto;
    /* Premium görünüm için başlangıçta siyah/beyaz (gri tonlamalı) yapar */
    /*filter: grayscale(100%) opacity(0.8);*/
    transition: all 0.4s ease;
}

/* Fare ile mührün üzerine gelindiğinde logo orijinal kendi renklerine döner */
.parent-company-badge:hover .parent-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* --- Premium Form Elemanları --- */
.premium-input {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

    .premium-input:focus {
        background-color: #ffffff;
        border-color: var(--epoch-main);
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
        outline: none;
    }

/* --- Premium Güvenlik Kutusu (Captcha) --- */
.premium-captcha-box {
    background: rgba(99, 102, 241, 0.05);
    border: 1px dashed rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

    .premium-captcha-box:hover {
        background: rgba(99, 102, 241, 0.08);
        border-style: solid;
    }