﻿/* ==========================================================
   iLanding-inspired Corporate UI (Bootstrap 5 overlay)
   Target: your current _Layout navbar structure
   ========================================================== */

/*:root {*/
    /* iLanding variable set (core palette & fonts) */
    /*--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif;
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #2d465e;
    --accent-color: #0d83fd;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-color: #212529;
    --nav-hover-color: #0d83fd;*/
    /* geometry + shadows */
    /*--r-sm: 10px;
    --r-md: 14px;
    --r-lg: 18px;
    --shadow-1: 0 10px 30px rgba(18, 66, 101, .10);
    --shadow-2: 0 14px 40px rgba(18, 66, 101, .14);
}*/

/* Base */
/*html, body {
    height: 100%;
}

body {
    font-family: var(--default-font);
    color: var(--default-color);
    background: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    letter-spacing: -.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    min-height: calc(100vh - 120px);
}*/

/* Slightly wider container like modern landing pages */
/*@media (min-width: 1400px) {
    .container {
        max-width: 1220px;
    }
}*/

/* ==========================================================
   HEADER / NAVBAR
   ========================================================== */
/* ==========================================================
   HEADER / NAVBAR (Modernized)
   ========================================================== */
/*header.navbar {
    position: sticky;
    top: 0;
    z-index: 1020;*/
    /* Ultra-clear glass effect */
    /*background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
    /* Soft, layered shadow for depth */
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03), 0 1px 0 rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease-in-out;
}*/

    /* Add this if you want the navbar to "shrink" or change on scroll via JS */
    /*header.navbar.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 0.5rem 1rem;
    }*/

    /* Brand - Modern spacing */
    /*header.navbar a.navbar-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        transition: transform 0.2s ease;
    }

        header.navbar a.navbar-brand:hover {
            transform: scale(1.02);
        }

        header.navbar a.navbar-brand img {
            height: 32px !important;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
        }*/

/* ==========================================================
   NAV LINKS (pill-style hover & soft accent)
   ========================================================== */
/*.navbar-nav .nav-link {
    font-family: var(--nav-font);
    font-weight: 500;*/ /* Slightly lighter for modern look */
    /*color: #1a1d20;
    padding: 0.6rem 1.1rem !important;
    margin: 0 2px;
    border-radius: 50px;*/ /* Pill shape */
    /*transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

    .navbar-nav .nav-link:hover {
        color: var(--accent-color);
        background: rgba(13, 131, 253, 0.08);
    }*/

    /* Modern Active State: Subtle dot instead of heavy underline */
    /*.navbar-nav .nav-link.active {
        color: var(--accent-color) !important;
        background: rgba(13, 131, 253, 0.05);
    }*/

    /* The Underline Effect (Updated for pill shape) */
    /*.navbar-nav .nav-link::after {
        display: none;*/ /* Removing the old bar for a cleaner pill look */
    /*}*/

/* ==========================================================
   DROPDOWN (The "Glass Slab" Look)
   ========================================================== */
/*.navbar .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.25rem;*/ /* Large rounded corners */
    /*padding: 0.75rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
    /* Animation: Slide up and fade in */
    /*display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar .dropdown-item {
    border-radius: 0.75rem;
    padding: 0.7rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .navbar .dropdown-item:hover {
        background: var(--accent-color);
        color: #fff !important;
        transform: translateX(5px);
    }*/

/* ==========================================================
   MOBILE MENU (Fullscreen overlay vibe)
   ========================================================== */
/*@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 1.5rem;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        padding: 1rem !important;
        border-radius: 12px;
    }
}*/

/* Toggler Refresh */
/*.navbar-toggler {
    border: none;
    background: rgba(13, 131, 253, 0.05);
    border-radius: 12px;
}*/
/* ==========================================================
   UI polish (cards/buttons/forms) — landing page feel
   ========================================================== */

/* Cards */
/*.card {
    border: 1px solid rgba(18,66,101,.10);
    border-radius: var(--r-lg);
    box-shadow: 0 10px 30px rgba(18,66,101,.08);
}

    .card:hover {
        box-shadow: var(--shadow-2);
    }*/

/* Buttons */
/*.btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: .15px;
    transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 10px 26px rgba(13,131,253,.22);
}

    .btn-primary:hover {
        background: #0a74e0;
        border-color: #0a74e0;
        transform: translateY(-1px);
        box-shadow: 0 14px 34px rgba(13,131,253,.26);
    }

.btn-outline-primary {
    border-color: rgba(13,131,253,.35);
    color: var(--accent-color);
}

    .btn-outline-primary:hover {
        background: rgba(13,131,253,.08);
        transform: translateY(-1px);
    }*/

/* Inputs */
/*.form-control, .form-select {
    border-radius: var(--r-md);
    border: 1px solid rgba(18,66,101,.14);
}

    .form-control:focus, .form-select:focus {
        border-color: rgba(13,131,253,.45);
        box-shadow: 0 0 0 .25rem rgba(13,131,253,.16);
    }*/

/* Footer */
/*footer {
    border-top: 1px solid rgba(18,66,101,.10);
    background: #fff;
}*/

/* Reduced motion */
/*@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.modern-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.img-hover-zoom {
    overflow: hidden;
}

    .img-hover-zoom img {
        transition: transform 0.5s ease;
    }

.modern-card:hover .img-hover-zoom img {
    transform: scale(1.1);
}

.btn-rounded {
    border-radius: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.section-title {
    position: relative;
    padding-bottom: 10px;
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: #0d6efd;
    }*/
/* ==========================================================
   FONE ENERGY - ULTRA MODERN UI CORE (FINAL REFINED)
   ========================================================== */

:root {
    --primary: #0d83fd;
    --primary-dark: #0061c9;
    --primary-light: rgba(13, 131, 253, 0.1);
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-600: #475569;
    --slate-100: #f1f5f9;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --r-pill: 100px;
    --r-lg: 24px;
    --r-md: 16px;
    --shadow-premium: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Base Reset */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--slate-600);
    background-color: #ffffff;
    background-image: radial-gradient(#e2e8f0 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    overflow-x: hidden;
}

/* ==========================================================
   HEADER / NAVBAR (Floating Fix)
   ========================================================== */
header.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 9999 !important; /* Her şeyin üstünde olmalı */
    padding: 12px 24px;
    border-radius: var(--r-pill);
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
}

    header.navbar.scrolled {
        top: 10px;
        width: 90%;
        background: rgba(255, 255, 255, 0.98) !important;
    }

.navbar-brand img {
    height: 32px !important;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--slate-900) !important;
    padding: 10px 18px !important;
    border-radius: var(--r-pill);
    transition: var(--transition);
}

    .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
        color: var(--primary) !important;
        background: var(--primary-light);
    }

/* ==========================================================
   SECTION SPACING (Üst Üste Binme Çözümü)
   ========================================================== */
section {
    position: relative;
    z-index: 1; /* Varsayılan z-index */
    background: white;
}

/* Navbar fixed olduğu için ilk bölüme extra padding */


/* ==========================================================
   MODERN BENTO & PROJECT CARDS
   ========================================================== */
.modern-card, .project-card {
    background: #ffffff;
    border: 1px solid var(--slate-100);
    border-radius: var(--r-lg);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

    .modern-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
        border-color: var(--primary-light);
    }

.img-hover-zoom {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

    .img-hover-zoom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

.modern-card:hover .img-hover-zoom img {
    transform: scale(1.1);
}

/* ==========================================================
   FOOTER (Açık Renkli & Öne Geçme Çözümü)
   ========================================================== */
footer.footer-light {
    position: relative;
    z-index: 2; /* Kartların üzerine çıkmaması için */
    background: #f8fafc !important; /* Yumuşak gri */
    padding: 80px 0 40px;
    border-top: 1px solid var(--slate-100);
    margin-top: 0; /* Bento kartlardaki gap'i korur */
    clear: both;
}

.footer-light .text-dark {
    color: var(--slate-900) !important;
}

.footer-light .text-muted {
    color: var(--slate-600) !important;
}

/* Icon boxes in footer */
.icon-box {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid var(--slate-100);
}

/* ==========================================================
   UI POLISH (STAT CARDS & BUTTONS)
   ========================================================== */
.stat-card {
    background: white;
    border: 1px solid var(--slate-100);
    border-radius: var(--r-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
    }

.stat-value {
    color: var(--primary);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-600);
}

.btn-primary {
    background: var(--primary);
    box-shadow: 0 10px 20px -5px rgba(13, 131, 253, 0.3);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 15px 25px -5px rgba(13, 131, 253, 0.4);
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title, .hero-subtitle, .hero-actions {
    animation: fadeInUp 0.8s ease forwards;
}


/* ==========================================================
   PAGE CONTENT (Hakkımızda / Vizyon / Yatırımcı)
   ========================================================== */

/* Genel Konteynır */
.sheet {
    max-width: 1000px;
    margin: 0 auto;
}

/* Bölüm Numaralandırma Rozetleri */
.num-badge {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(13, 131, 253, 0.2);
}

/* Başlık Alt Çizgisi */
.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 10px;
    border-radius: 10px;
}

/* Gradient Yazı Efekti */
.text-gradient {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Alıntı Kartı (Quote Card) */
.quote-card {
    background-color: #f8fafc;
    border-left: 5px solid var(--primary);
    font-style: italic;
    line-height: 1.6;
    border-radius: 0 18px 18px 0 !important;
}

/* Vizyon & Misyon Kartları */
.vision-card, .mission-card {
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--slate-100);
}

.vision-card { background: #ffffff; }
.mission-card { 
    background: var(--slate-900); 
    color: rgba(255,255,255,0.8);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Yatırımcı Bilgi Hapları (Info Pills) */
.info-pill {
    background: white;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.info-pill i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-pill strong {
    display: block;
    color: var(--slate-900);
}

.hover-up:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-light);
}

/* Onay Maddeleri (Check Items) */
.check-item {
    background: rgba(13, 131, 253, 0.05);
    padding: 12px 20px;
    border-radius: 100px;
    color: var(--slate-900);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-item i {
    color: #10b981; /* Başarı Yeşili */
    font-size: 1.2rem;
}

/* Neden FONE? Özellik Kutuları */
.feature-box {
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--slate-100);
    height: 100%;
}

.feature-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Bölüm Ayırıcı Çizgi */
.section-divider {
    margin: 60px 0;
    border: 0;
    border-top: 1px solid var(--slate-100);
    opacity: 1;
}
/* Kariyer Sayfası Özel Stilleri */
.sheet {
    max-width: 1100px;
    margin: 0 auto;
}

/* İş İlanı Maddeleri */
.job-item {
    transition: all 0.3s ease;
    border: 1px solid #eee !important;
}

    .job-item:hover {
        border-color: var(--primary) !important;
        background-color: #fcfdfe !important;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

/* Badge Renkleri */
.bg-soft-success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Genel Başvuru Alanı (Dashed Border) */
.border-dashed {
    border: 2px dashed #dee2e6 !important;
    background-color: #f8fafc;
}

/* --- İşe Alım Süreci (Timeline) --- */
.timeline-container {
    position: relative;
    padding-top: 2rem;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: 800;
    transition: all 0.3s ease;
}

    .timeline-dot.highlight {
        background: var(--primary);
        color: #fff;
    }

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(13, 131, 253, 0.3);
}

/* Mobil için Timeline Ayarı */
@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }

    .timeline-item {
        margin-bottom: 2rem;
    }
}

/* Buton Modernizasyonu */
.btn-modern {
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ==========================================================
   NEWS SECTION (Basında Biz)
   ========================================================== */
.news-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.badge-modern {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Filtre Butonları */
.filter-group .filter-btn {
    border: 1px solid #eef0f2;
    background: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--slate-600);
    transition: all 0.3s ease;
}

    .filter-group .filter-btn.active, .filter-group .filter-btn:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        box-shadow: 0 10px 20px rgba(13, 131, 253, 0.2);
    }

/* Haber Kartları */
.news-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}

    .news-card:hover {
        border-color: var(--primary-light);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    }

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.news-source-tag {
    font-weight: 700;
    color: var(--slate-900);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.news-date {
    font-size: 0.85rem;
    color: #94a3b8;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--slate-600);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 25px;
}

.news-read-more {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Grid Animasyonu */
.filter-item {
    transition: all 0.5s ease-in-out;
}
/* ==========================================================
   PAGE STRUCTURE & FORM ELEMENTS (Refined)
   ========================================================== */

/* Sayfa Başlığı: Navbar altında ezilmeyi önler, net hiyerarşi sağlar */
.page-header-wrap {
    padding: 140px 0 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

/* Modern Input: Soft odaklanma ve yüksek okunabilirlik */
.modern-input {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 12px !important;
    transition: all 0.2s ease-in-out;
    color: var(--slate-900);
}

    .modern-input:focus {
        background-color: #fff !important;
        border-color: var(--primary) !important;
        box-shadow: 0 0 0 4px rgba(13, 131, 253, 0.08) !important;
        outline: none;
    }

/* Modal Estetiği: "Glass" hissi ve kurumsal vurgu */
.modal-content.shadow-premium {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.modal-accent-line {
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
    width: 100%;
}

.form-icon-circle-modern {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 1.75rem;
}

/* İçerik Görselleri: CMS'den gelen resimleri otomatik hizalar */
.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Ekmek Kırıntısı (Breadcrumb) Sadeleştirme */
.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--slate-600);
}
/* ==========================================================
   PAGE STRUCTURE & FORM ELEMENTS (Refined)
   ========================================================== */

/* Sayfa Başlığı: Navbar altında ezilmeyi önler, net hiyerarşi sağlar */
.page-header-wrap {
    padding: 140px 0 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f5f9;
    position: relative;
}

/* Modern Input: Soft odaklanma ve yüksek okunabilirlik */
.modern-input {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 12px !important;
    transition: all 0.2s ease-in-out;
    color: var(--slate-900);
}

    .modern-input:focus {
        background-color: #fff !important;
        border-color: var(--primary) !important;
        box-shadow: 0 0 0 4px rgba(13, 131, 253, 0.08) !important;
        outline: none;
    }

/* Modal Estetiği: "Glass" hissi ve kurumsal vurgu */
.modal-content.shadow-premium {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.modal-accent-line {
    height: 5px;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
    width: 100%;
}

.form-icon-circle-modern {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 1.75rem;
}

/* İçerik Görselleri: CMS'den gelen resimleri otomatik hizalar */
.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 24px 0;
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Ekmek Kırıntısı (Breadcrumb) Sadeleştirme */
.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--slate-600);
}

/* Navbar Fixed olduğu için tüm sayfalara otomatik üst boşluk ekler */
body {
    padding-top: 100px; /* Navbar yüksekliğine göre ayarlandı */
}

/* Header her zaman en üstte kalmalı */
header.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999 !important;
}

/* Page Header Wrap (Ekmek kırıntısı alanı) */
.page-header-wrap {
    padding: 40px 0; /* İçerik zaten aşağı itildiği için buradaki devasa padding'i azalttık */
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

/* Footer'ın üstteki içerikle karışmasını engellemek için */
footer {
    clear: both;
    position: relative;
    z-index: 10;
    margin-top: 50px;
}