/* Google Font Yükleme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #1e62b4; /* Görseldeki lacivert */
    --accent-red: #da291c;   /* Görseldeki kırmızı */
    --light-bg: #f8fbff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    margin: 0;
    overflow-x: hidden;
}

/* --- HEADER --- */
.custom-navbar {
    padding: 15px 0;
    background: #fff;
}

.navbar-brand {
    font-weight: 700;
    line-height: 1;
}

.navbar-brand .brand-main {
    color: var(--primary-blue);
    font-size: 24px;
    letter-spacing: 1px;
}

.navbar-brand .brand-sub {
    color: #888;
    font-size: 11px;
    letter-spacing: 4px;
    display: block;
}

.nav-link {
    font-weight: 500;
    color: #444 !important;
    margin: 0 10px;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.btn-auth {
    background: var(--primary-blue);
    color: #fff !important;
    border-radius: 5px;
    padding: 8px 20px;
    font-weight: 600;
}

/* --- INDEX HERO SECTION --- */
.hero-section {
    background: linear-gradient(180deg, #d8e9f9 0%, #ffffff 100%);
    padding: 80px 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.edevlet-badge {
    background: #fff;
    border-radius: 50px;
    padding: 5px 20px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.edevlet-logo {
    height: 25px;
    margin-left: 10px;
}

/* --- ARAMA KUTUSU (GÖRSELDEKİ AYNI YAPI) --- */
.main-search-container {
    background: var(--primary-blue);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(30, 98, 180, 0.2);
}

.search-inner {
    display: flex;
    gap: 10px;
}

.search-input-group {
    flex: 2;
    position: relative;
}

.search-input-group i {
    position: absolute;
    right: 15px;
    top: 18px;
    color: #aaa;
}

.custom-select {
    flex: 1;
    border-radius: 8px !important;
    border: none;
    height: 55px;
    padding-left: 15px;
    font-size: 14px;
}

.custom-input {
    border-radius: 8px !important;
    border: none;
    height: 55px;
    font-size: 15px;
}

.btn-search {
    background: var(--accent-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 30px;
    font-weight: 700;
    height: 55px;
    transition: 0.3s;
}

.btn-search:hover {
    background: #b51f16;
    transform: translateY(-2px);
}

/* --- ALANLAR / KATEGORİLER --- */
.section-label {
    font-size: 16px;
    font-weight: 700;
    color: #555;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.sector-box {
    text-align: center;
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
}

.sector-box i {
    font-size: 35px;
    color: #3e88d3;
    margin-bottom: 15px;
    display: block;
}

.sector-box span {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.sector-box:hover {
    transform: translateY(-5px);
}

/* --- COUNTER (SAYAÇLAR) --- */
.stats-row {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item h2 {
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0;
}

.stat-item p {
    color: #777;
    font-size: 14px;
}

/* WhatsApp */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
/* --- FOOTER STYLES --- */
.site-footer {
    background-color: #11161e; /* Koyu premium kurumsal arka plan */
    color: #a3b1cc;
    font-size: 14px;
    padding-top: 60px;
    border-top: 4px solid var(--primary-blue);
}

.footer-top h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Başlıkların altındaki şık çizgi */
.footer-top h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-brand .brand-main {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-brand .brand-sub {
    color: #888;
    font-size: 11px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a3b1cc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #a3b1cc;
}

.footer-contact-info i {
    color: var(--primary-blue);
    font-size: 16px;
    margin-right: 12px;
    margin-top: 4px;
}

/* Sosyal Medya İkonları */
.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    background-color: #1c2330;
    color: #a3b1cc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links a:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-3px);
}

/* E-Bülten Kayıt Kutusu */
.footer-newsletter .form-control {
    background-color: #1c2330;
    border: 1px solid #2d3748;
    color: #ffffff;
    border-radius: 5px 0 0 5px;
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.footer-newsletter .btn {
    background-color: var(--primary-blue);
    color: #ffffff;
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
}

.footer-newsletter .btn:hover {
    background-color: #154785;
}

/* Alt Telif Hakları Alanı */
.footer-bottom {
    background-color: #0b0e14;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid #1c2330;
    font-size: 13px;
}

.footer-bottom a {
    color: #a3b1cc;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}
/* Masaüstü ekranlarda Kurumsal menüsünün üzerine gelince açılmasını sağlar */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Boşluk kalıp menü kapanmasın diye */
    }
}