/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    max-width: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu > li > a:hover {
    color: #4a90e2;
}

.nav-menu > li > a.blog-link {
    font-size: inherit;
    font-weight: 500;
    color: #333;
}

.nav-menu > li > a.blog-link:hover {
    color: #4a90e2;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 10px;
    color: #666;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e8e8e8;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f7fa;
    color: #4a90e2;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
    padding: 15px 0;
}

.breadcrumb a {
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #357abd;
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
    margin: 0 8px;
}

/* Arama Formu */
.arama-form-container {
    margin: 30px 0 40px;
}

.arama-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.arama-form:focus-within {
    border-color: #4a90e2;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
}

.arama-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
    outline: none;
    color: #333;
}

.arama-input::placeholder {
    color: #999;
}

.arama-buton {
    padding: 15px 30px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.arama-buton:hover {
    background-color: #357abd;
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin: -40px 0 60px 0;
    border-bottom: 1px solid #e8e8e8;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 16px;
}

/* Rota Listesi */
.rota-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    box-sizing: border-box;
}

.rota-kart {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rota-kart:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #4a90e2;
}

.rota-kart a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.rota-kart h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.rota-kart .rota-bilgi {
    color: #666;
    font-size: 14px;
}

/* Sefer Saatleri */
.sefer-listesi {
    margin-top: 30px;
}

.guncelleme-tarihi {
    text-align: center;
    color: #666;
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 14px;
}

.sefer-kart {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.sefer-kart:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #4a90e2;
}

.sefer-bilgi {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

.kalkis, .varis {
    text-align: center;
}

.kalkis h4, .varis h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.kalkis p, .varis p {
    font-size: 14px;
    color: #666;
}

.sefer-detay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 0 20px;
}

.sefer-cizgi {
    width: 100px;
    height: 2px;
    background-color: #e8e8e8;
    position: relative;
}

.sefer-cizgi::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #4a90e2;
    border-radius: 50%;
}

.sure {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.tip {
    font-size: 12px;
    color: #999;
}

.tren-adi {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.fiyat-buton {
    background-color: #4a90e2;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fiyat-buton:hover {
    background-color: #357abd;
}

/* İçerik Bölümü */
.icerik-bolumu {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    line-height: 1.8;
    border: 1px solid #e8e8e8;
}

.icerik-bolumu h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.icerik-bolumu p {
    color: #666;
    font-size: 15px;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8e8e8;
}

.footer-col h3 a.footer-title-link {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-col h3 a.footer-title-link:hover {
    color: #4a90e2;
}

.footer-content-link {
    color: #666;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-content-link:hover {
    color: #4a90e2;
}

.footer-read-more {
    color: #4a90e2;
    font-weight: 500;
    margin-left: 5px;
}

.footer-content-link:hover .footer-read-more {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #4a90e2;
    padding-left: 5px;
}

.footer-text {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
    margin-top: 30px;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Reklam Alanları */
.reklam-alani {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.reklam-alani img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.reklam-alani .reklam-bos-alan {
    min-height: 100px;
    background: #f8f9fa;
    border: 1px dashed #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border-radius: 4px;
}

.reklam-header {
    margin-top: 0;
    margin-bottom: 20px;
}

.reklam-header .reklam-bos-alan {
    min-height: 120px;
}

.reklam-footer {
    margin-top: 40px;
    margin-bottom: 0;
}

.reklam-footer .reklam-bos-alan {
    min-height: 120px;
}

.reklam-sefer-arasi,
.reklam-sefer-1,
.reklam-sefer-2,
.reklam-sefer-3,
.reklam-sefer-4,
.reklam-sefer-5 {
    margin: 20px 0;
}

.reklam-sefer-1 .reklam-bos-alan,
.reklam-sefer-2 .reklam-bos-alan,
.reklam-sefer-3 .reklam-bos-alan,
.reklam-sefer-4 .reklam-bos-alan,
.reklam-sefer-5 .reklam-bos-alan {
    min-height: 100px;
}

.reklam-anasayfa {
    margin: 30px 0;
}

.reklam-anasayfa .reklam-bos-alan {
    min-height: 120px;
}

/* Blog Stilleri */
.blog-listesi {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-kart {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 20px;
}

.blog-kart:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: #4a90e2;
}

.blog-resim {
    flex: 0 0 300px;
    overflow: hidden;
}

.blog-resim img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-kart:hover .blog-resim img {
    transform: scale(1.05);
}

.blog-icerik {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.blog-icerik h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.blog-icerik h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.blog-icerik h2 a:hover {
    color: #4a90e2;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-tarih {
    color: #999;
}

.blog-etiketler {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.etiket {
    background-color: #f0f0f0;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.blog-ozet {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    flex: 1;
}

.blog-devam {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.blog-devam:hover {
    color: #357abd;
}

/* Blog Detay */
.blog-detay {
    background-color: #ffffff;
}

.blog-yazi {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
}

.blog-detay-resim {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-detay-resim img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-yazi h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.blog-icerik-detay {
    margin-top: 30px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.blog-goruntuleme {
    color: #999;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-bolum {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
}

.sidebar-bolum h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.son-yazilar-listesi {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.son-yazilar-listesi li {
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.son-yazilar-listesi li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.son-yazilar-listesi a {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.son-yazilar-listesi a:hover {
    color: #0066cc;
}

.yazi-tarih {
    display: block;
    font-size: 12px;
    color: #999;
}

/* Sıkça Sorulan Sorular */
.sss-bolumu {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.sss-baslik {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.sss-listesi {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sss-item {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sss-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #4a90e2;
}

.sss-soru {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.sss-soru:hover {
    background-color: #f0f0f0;
}

.sss-soru-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    padding-right: 20px;
}

.sss-icon {
    font-size: 24px;
    font-weight: 300;
    color: #4a90e2;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #0066cc;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sss-soru:hover .sss-icon {
    background-color: #4a90e2;
    color: #ffffff;
}

.sss-cevap {
    padding: 0 25px 20px 25px;
    background-color: #ffffff;
}

.sss-cevap p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
    padding-top: 15px;
}

/* Sayfalama */
.sayfalama {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}

.sayfa-link {
    padding: 10px 15px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sayfa-link:hover,
.sayfa-link.aktif {
    background-color: #0066cc;
    color: #ffffff;
    border-color: #0066cc;
}

.sayfa-nokta {
    padding: 10px 5px;
    color: #999;
}


/* Mobil Menü */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 8px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Admin Panel - Orta ekranlar (tablet) */
@media (max-width: 992px) {
    .admin-sidebar {
        transform: translateX(-100%);
        width: 280px;
        max-width: 85%;
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
        width: 100%;
    }

    .admin-menu-toggle {
        display: flex;
    }

    .admin-topbar {
        padding: 15px 20px;
    }

    .admin-content {
        padding: 20px;
    }

    .admin-container {
        padding: 20px;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .table-container {
        overflow-x: auto;
    }

    table {
        min-width: 600px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo h1 {
        font-size: 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        padding: 0;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        padding: 20px 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
    }

    .nav-menu > li:first-child {
        border-top: 1px solid #e8e8e8;
    }

    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        width: 100%;
        font-size: 15px;
    }

    .nav-menu > li > a.blog-link {
        font-size: 15px;
        font-weight: 500;
    }

    .dropdown-arrow {
        font-size: 12px;
        margin-left: auto;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background-color: #f8f9fa;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown:not(.active) .dropdown-menu {
        max-height: 0;
    }

    .dropdown-menu li {
        border-bottom: 1px solid #e8e8e8;
    }

    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        color: #666;
    }

    .dropdown-menu a:hover {
        background-color: #f0f0f0;
        color: #4a90e2;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .main-content {
        padding: 20px 0;
    }

    .page-header {
        margin-bottom: 30px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .page-header p {
        font-size: 14px;
    }

    .hero-section {
        padding: 40px 0;
        margin: -20px 0 40px 0;
    }

    .hero-section h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .arama-form-container {
        margin: 20px 0 30px;
    }

    .arama-form {
        flex-direction: column;
        border-radius: 8px;
        padding: 8px;
    }

    .arama-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .arama-buton {
        width: 100%;
        padding: 12px;
        margin-top: 5px;
    }

    .rota-listesi {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .rota-kart {
        padding: 20px;
    }

    .rota-kart h3 {
        font-size: 16px;
    }

    .sefer-kart {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        margin-bottom: 15px;
    }

    .sefer-bilgi {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .kalkis, .varis {
        width: 100%;
    }

    .kalkis h4, .varis h4 {
        font-size: 18px;
    }

    .sefer-detay {
        padding: 15px 0;
    }

    .sefer-cizgi {
        width: 100%;
        height: 2px;
    }

    .sefer-cizgi::before {
        left: 50%;
        top: 50%;
    }

    .fiyat-buton {
        width: 100%;
        padding: 12px;
    }

    .icerik-bolumu {
        padding: 20px;
        margin-bottom: 30px;
    }

    .icerik-bolumu h2 {
        font-size: 20px;
    }

    .guncelleme-tarihi {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .sss-bolumu {
        margin-top: 40px;
        padding-top: 30px;
    }

    .sss-baslik {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .sss-soru {
        padding: 15px 20px;
    }

    .sss-soru-text {
        font-size: 15px;
    }

    .sss-cevap {
        padding: 15px 20px;
    }
    
    .blog-kart {
        flex-direction: column;
    }
    
    .blog-resim {
        flex: 1;
        width: 100%;
    }
    
    .blog-resim img {
        height: 200px;
        width: 100%;
    }

    .blog-icerik {
        padding: 20px;
    }

    .blog-icerik h2 {
        font-size: 20px;
    }
    
    .main-content .container[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    .reklam-alani {
        padding: 15px;
        margin: 15px 0;
    }

    .reklam-alani .reklam-bos-alan {
        min-height: 80px;
        font-size: 12px;
    }

    .footer {
        padding: 25px 0;
        margin-top: 40px;
    }

    .footer p {
        font-size: 13px;
    }

    .breadcrumb {
        font-size: 12px;
        padding: 10px 0;
    }

    .breadcrumb a {
        word-break: break-word;
    }

    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    /* Admin Panel Mobile */
    .admin-sidebar {
        transform: translateX(-100%);
        width: 280px;
        max-width: 85%;
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
        width: 100%;
    }

    .admin-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
    }

    .admin-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .admin-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .admin-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .admin-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .admin-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .admin-sidebar-overlay.active {
        display: block;
    }

    .admin-topbar {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .admin-topbar-left h1 {
        font-size: 20px;
    }

    .admin-content {
        padding: 20px 15px;
    }

    .admin-container {
        padding: 20px 15px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .admin-stat-card {
        padding: 20px;
    }

    .stat-content h3 {
        font-size: 28px;
    }

    .admin-welcome-card {
        padding: 20px;
    }

    .admin-welcome-card h2 {
        font-size: 20px;
    }

    /* Tablolar için mobil görünüm */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 600px;
    }

    table th,
    table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    table .actions {
        flex-direction: column;
        gap: 5px;
    }

    table .actions .btn {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
    }

    /* Formlar için mobil */
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }

    /* Arama ve butonlar */
    div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column;
        align-items: stretch !important;
        gap: 15px;
    }

    div[style*="display: flex"][style*="gap: 10px"] {
        flex-direction: column;
        width: 100%;
    }

    input[type="text"][id*="arama"],
    input[type="text"][placeholder*="ara"] {
        width: 100% !important;
        min-width: auto !important;
    }

    /* Login sayfası */
    .login-wrapper {
        max-width: 100%;
    }

    .login-container {
        padding: 30px 20px;
    }

    .login-header h1 {
        font-size: 24px;
    }

    .login-header p {
        font-size: 13px;
    }
}

/* Küçük ekranlar için ekstra stiller */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header {
        padding: 12px 0;
    }

    .logo h1 {
        font-size: 18px;
    }

    .main-nav {
        width: 260px;
        max-width: 90%;
    }

    .hero-section {
        padding: 30px 0;
        margin: -12px -10px 30px -10px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .page-header h1 {
        font-size: 20px;
    }

    .rota-kart {
        padding: 15px;
    }

    .rota-kart h3 {
        font-size: 15px;
    }

    .sefer-kart {
        padding: 15px;
    }

    .kalkis h4, .varis h4 {
        font-size: 16px;
    }

    .icerik-bolumu {
        padding: 15px;
    }

    .sss-soru {
        padding: 12px 15px;
    }

    .sss-soru-text {
        font-size: 14px;
    }

    .blog-icerik {
        padding: 15px;
    }

    .blog-icerik h2 {
        font-size: 18px;
    }

    .admin-menu-toggle {
        display: flex;
    }

    .admin-topbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .admin-topbar-left h1 {
        font-size: 20px;
    }

    .admin-content {
        padding: 20px;
    }

    .admin-container {
        padding: 20px;
    }

    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .breadcrumb {
        font-size: 12px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .sefer-kart {
        padding: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .main-content {
        padding: 20px 0;
    }

    /* Admin Panel - Küçük ekranlar */
    .admin-sidebar {
        width: 260px;
        max-width: 90%;
    }

    .admin-sidebar-header {
        padding: 20px 15px;
    }

    .admin-sidebar-header h2 {
        font-size: 18px;
    }

    .admin-sidebar-nav a {
        padding: 10px 15px;
        font-size: 13px;
    }

    .admin-topbar {
        padding: 12px 15px;
    }

    .admin-topbar-left h1 {
        font-size: 18px;
    }

    .admin-user-name {
        font-size: 12px;
    }

    .admin-content {
        padding: 15px 10px;
    }

    .admin-container {
        padding: 15px 10px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .admin-stat-card {
        padding: 15px;
    }

    .stat-content h3 {
        font-size: 24px;
    }

    .stat-content p {
        font-size: 12px;
    }

    .admin-welcome-card {
        padding: 15px;
    }

    .admin-welcome-card h2 {
        font-size: 18px;
    }

    .admin-welcome-card p {
        font-size: 13px;
    }

    table {
        min-width: 500px;
        font-size: 12px;
    }

    table th,
    table td {
        padding: 8px 5px;
        font-size: 12px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px;
        font-size: 13px;
    }

    .btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .login-wrapper {
        max-width: 100%;
        padding: 10px;
    }

    .login-container {
        padding: 25px 20px;
    }

    .login-header h1 {
        font-size: 22px;
    }

    .login-header p {
        font-size: 12px;
    }

    .login-form .form-group input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-login {
        padding: 12px;
        font-size: 15px;
    }

    /* Admin sayfalarındaki özel stiller */
    h2 {
        font-size: 18px;
    }

    div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column;
        align-items: stretch !important;
    }

    div[style*="display: flex"][style*="gap: 10px"] {
        flex-direction: column;
        width: 100%;
    }

    input[type="text"][id*="arama"],
    input[type="text"][placeholder*="ara"] {
        width: 100% !important;
        min-width: auto !important;
        margin-bottom: 10px;
    }

    button[onclick*="Temizle"],
    .btn-secondary {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Admin panel ekstra mobil düzeltmeler */
    .admin-sidebar-header {
        padding: 20px 15px;
    }

    .admin-sidebar-header h2 {
        font-size: 18px;
    }

    .admin-sidebar-nav a {
        padding: 10px 15px;
        font-size: 13px;
    }

    .admin-topbar-right {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .admin-user-info {
        flex-direction: column;
        gap: 5px;
    }

    .admin-container h1 {
        font-size: 20px;
    }

    .admin-container h2 {
        font-size: 18px;
    }

    /* Tablolar için ekstra mobil düzeltmeler */
    .table-container {
        margin: 0 -10px;
        border-radius: 0;
    }

    table {
        font-size: 12px;
    }

    table th,
    table td {
        padding: 8px 5px;
        white-space: nowrap;
    }

    table th:first-child,
    table td:first-child {
        padding-left: 10px;
    }

    table th:last-child,
    table td:last-child {
        padding-right: 10px;
    }

    /* Formlar için ekstra mobil düzeltmeler */
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px;
    }

    /* Butonlar için mobil */
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .btn:last-child {
        margin-bottom: 0;
    }

    /* Alert mesajları */
    .alert {
        padding: 12px 15px;
        font-size: 13px;
    }

    .alert-icon {
        font-size: 18px;
    }
}

/* Admin Panel Stilleri */
.admin-body {
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: #2c3e50;
    color: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.admin-sidebar-header {
    padding: 25px 20px;
    background-color: #1a252f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #34495e;
}

.admin-sidebar-header h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.admin-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.admin-menu-toggle:hover {
    opacity: 0.8;
}

.admin-sidebar-nav ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.admin-sidebar-nav li {
    margin: 2px 0;
}

.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border-left: 3px solid transparent;
}

.admin-sidebar-nav a:hover {
    background-color: #34495e;
    color: #ffffff;
    border-left-color: #3498db;
}

.admin-sidebar-nav a.active {
    background-color: #34495e;
    color: #ffffff;
    border-left-color: #3498db;
    font-weight: 600;
}


.admin-sidebar-nav .menu-logout {
    color: #e74c3c;
}

.admin-sidebar-nav .menu-logout:hover {
    background-color: #c0392b;
    color: #ffffff;
    border-left-color: #e74c3c;
}

.admin-sidebar-nav .menu-divider {
    height: 1px;
    background-color: #34495e;
    margin: 10px 0;
    padding: 0;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    background-color: #ffffff;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topbar-left h1 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-user-name {
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
}

.admin-content {
    flex: 1;
    padding: 30px;
    background-color: #f5f7fa;
}

.admin-container {
    max-width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.admin-stat-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.admin-stat-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.admin-stat-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-content {
    width: 100%;
}

.stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #ffffff;
}

.stat-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}

.admin-welcome-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-welcome-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.admin-welcome-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-danger {
    background-color: #cc0000;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #aa0000;
}

.btn-secondary {
    background-color: #666;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #555;
}

/* Tablo Stilleri */
.table-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

table tr:hover {
    background-color: #f9f9f9;
}

table .actions {
    display: flex;
    gap: 10px;
}

/* Alert Mesajları */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Login Sayfası */
.login-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
}

.login-wrapper {
    width: 100%;
    max-width: 450px;
}

.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.login-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.login-form {
    margin-top: 30px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.login-form .form-group .label-icon {
    font-size: 16px;
}

.login-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.login-form .form-group input::placeholder {
    color: #999;
}

.btn-login {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.btn-login .btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-login:hover .btn-arrow {
    transform: translateX(5px);
}

.login-footer {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.back-to-site {
    color: #4a90e2;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.back-to-site:hover {
    color: #357abd;
}

.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-icon {
    font-size: 20px;
}

