/**
 * Main Stylesheet
 * SEO optimized, fast loading, modern design
 *
 * @package TurkiyeRehberSEO
 */

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: #005177;
    text-decoration: underline;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.site-main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

.content-area {
    padding: 2rem 0;
}

/* ==========================================================================
   Header - Masaüstü Varsayılan Stilleri
   ========================================================================== */

.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
}

.header-wrapper {
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
}

/* ==========================================================================
   Masaüstü Header - Temiz Tasarım (min-width: 769px)
   ========================================================================== */

@media (min-width: 769px) {
    /* Header Container - Tek Satır */
    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        flex-wrap: nowrap;
    }
    
    /* Sol: Logo/Title */
    .site-branding {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .site-branding .custom-logo {
        max-height: 52px;
        width: auto;
        height: auto;
        display: block;
    }
    
    .site-title {
        font-size: 1.875rem;
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .site-title a {
        color: #fff;
        text-decoration: none;
    }
    
    .site-description {
        display: none;
    }
    
    /* Sağ: Arama + Menü */
    .header-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-shrink: 0;
    }
    
    /* Arama Kutusu */
    .header-search {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .header-search .search-form {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .header-search .search-field {
        padding: 0.625rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        width: 240px;
    }
    
    .header-search .search-field::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .header-search .search-submit {
        padding: 0.625rem 1.25rem;
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        white-space: nowrap;
    }
    
    /* Menü */
    .main-navigation {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2rem;
        align-items: center;
    }
    
    .nav-menu li {
        margin: 0;
        white-space: nowrap;
    }
    
    .nav-menu a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        display: block;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Masaüstü Koruma - Site Stats */
@media (min-width: 769px) {
    .site-stats {
        flex-wrap: nowrap !important;
        gap: 3rem !important;
    }
    
    .stat-item {
        flex: 0 0 auto !important;
    }
}


.nav-menu a::after {
    display: none;
}

.nav-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: absolute;
    transition: transform 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    top: 8px;
}

/* ==========================================================================
   Content
   ========================================================================== */

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    margin-bottom: 0.5rem;
}

.entry-title a {
    color: #1a1a1a;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-meta {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.entry-content {
    margin-bottom: 2rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.post-thumbnail {
    margin-bottom: 1.5rem;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* İçerikteki görsel */
.post-thumbnail-in-content {
    margin: 2.5rem auto;
    max-width: 100%;
    text-align: center;
}

.post-thumbnail-in-content img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   Posts Grid
   ========================================================================== */

.posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.posts-container article {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.posts-container article:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #e0e0e0;
    margin-top: 4rem;
    padding: 0;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

.footer-wrapper {
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-branding {
    max-width: 300px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem 0;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-widget-area h3,
.footer-widget-area h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.footer-widget-area ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget-area ul li {
    margin-bottom: 0.5rem;
}

.footer-widget-area a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-widget-area a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
}

.footer-copyright {
    margin: 0;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.875rem;
    color: #b0b0b0;
}

.footer-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-separator {
    color: #666;
    pointer-events: none;
    user-select: none;
}

.footer-links-nav {
    display: flex;
    align-items: center;
}

.footer-widget-area a {
    color: #ccc;
}

.footer-widget-area a:hover {
    color: #fff;
}

.site-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.875rem;
}

.footer-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-menu a {
    color: #ccc;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 999;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ==========================================================================
   Single Post Pages (Makale & Firma)
   ========================================================================== */

.single-makale-page,
.single-firma-page {
    padding: 2rem 0;
}

.makale-single,
.firma-single {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.makale-single .entry-header,
.firma-single .entry-header {
    margin-bottom: 2rem;
}

.makale-single .post-thumbnail,
.firma-single .post-thumbnail {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

/* İçerikteki görsel */
.post-thumbnail-in-content {
    margin: 2.5rem auto;
    max-width: 100%;
    text-align: center;
}

.post-thumbnail-in-content img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.makale-single .post-thumbnail img,
.firma-single .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.entry-header-content {
    margin-top: 1.5rem;
}

.makale-single .entry-title,
.firma-single .entry-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.makale-single .entry-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.meta-icon {
    font-size: 1.2rem;
}

.makale-single .entry-content,
.firma-single .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.makale-single .entry-content p,
.firma-single .entry-content p {
    margin-bottom: 1.5rem;
}

.makale-single .entry-content h2,
.firma-single .entry-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.makale-single .entry-content h3,
.firma-single .entry-content h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.makale-single .entry-content ul,
.makale-single .entry-content ol,
.firma-single .entry-content ul,
.firma-single .entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.makale-single .entry-content li,
.firma-single .entry-content li {
    margin-bottom: 0.5rem;
}

.makale-single .entry-footer,
.firma-single .entry-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.cat-links,
.tags-links {
    margin-bottom: 1rem;
}

.cat-links strong,
.tags-links strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.category-tag,
.tag-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.category-tag:hover,
.tag-link:hover {
    background: #0073aa;
    color: #fff;
    transform: translateY(-2px);
}

/* Firma Specific Styles */
.firma-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.firma-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.firma-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0073aa;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.info-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.info-content a {
    color: #0073aa;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.type-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #0073aa;
    color: #fff;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Post Navigation */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.nav-previous,
.nav-next {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.nav-previous a,
.nav-next a {
    display: block;
    text-decoration: none;
    color: #333;
}

.nav-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.nav-next {
    text-align: right;
}

/* ==========================================================================
   MOBİL OPTİMİZASYONLARI (768px ve altı)
   ========================================================================== */

@media (max-width: 768px) {
    /* Genel Mobil Düzeltmeler */
    .site {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .site-main {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* ==========================================================================
       Header Mobil - Sadece Mobil İçin (!important ile)
       ========================================================================== */
    
    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    
    .header-container {
        padding: 0.75rem 1rem !important;
        min-height: 56px !important;
        gap: 0.75rem !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: space-between !important;
    }
    
    /* Mobil Logo/Branding - Sol tarafta */
    .site-branding {
        flex: 0 0 auto !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        visibility: visible !important;
        margin-right: auto !important;
    }
    
    .site-branding .custom-logo {
        max-height: 36px !important;
        width: auto !important;
        height: auto !important;
    }
    
    .site-title {
        font-size: 1.125rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    
    .site-title a {
        color: #fff !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        max-width: 180px !important;
    }
    
    .site-description {
        display: none !important; /* Mobilde gizle */
    }
    
    /* Mobil Header-right - Sağ tarafta menü toggle */
    .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        flex: 0 0 auto !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
    }
    
    /* Mobil Arama Kutusu - Kompakt */
    .header-search {
        display: flex !important;
        order: 2 !important;
        flex: 1 !important;
        min-width: 0 !important;
        margin: 0 0.5rem !important;
        max-width: 200px !important;
    }
    
    .header-search .search-form {
        display: flex !important;
        gap: 0.25rem !important;
        width: 100% !important;
    }
    
    .header-search .search-field {
        flex: 1 !important;
        padding: 0.4rem 0.5rem !important;
        font-size: 0.85rem !important;
        min-width: 0 !important;
        width: auto !important;
    }
    
    .header-search .search-submit {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobil Main Navigation */
    .main-navigation {
        flex: 0 0 auto !important;
    }
    
    /* Mobil Menu Toggle Butonu - Görünür ve Büyük */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 0.5rem !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        z-index: 1002 !important;
        transition: all 0.3s ease !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .menu-toggle:hover,
    .menu-toggle:focus {
        background: rgba(255, 255, 255, 0.25) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        transform: scale(1.05) !important;
    }
    
    .menu-toggle span {
        width: 22px !important;
        height: 2.5px !important;
        background: #fff !important;
        border-radius: 2px !important;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        display: block !important;
    }
    
    .menu-toggle[aria-expanded="true"] {
        background: rgba(255, 255, 255, 0.25) !important;
    }
    
    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    
    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-10px) !important;
    }
    
    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
    }
    
    /* Mobil Nav Menu - Full Screen Overlay */
    .nav-menu {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        flex-direction: column !important;
        padding: 80px 1.5rem 2rem !important;
        gap: 0 !important;
        overflow-y: auto !important;
        z-index: 1001 !important;
        -webkit-overflow-scrolling: touch !important;
        opacity: 0 !important;
        transform: translateX(-100%) !important;
        transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    }
    
    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
    }
    
    
    .nav-menu li {
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-menu li:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu a {
        color: #fff !important;
        padding: 1.25rem 1rem !important;
        font-size: 1.125rem !important;
        font-weight: 600 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 56px !important;
        border-radius: 8px !important;
        margin: 0.25rem 0 !important;
        transition: all 0.2s ease !important;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2) !important;
    }
    
    .nav-menu a:active {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: scale(0.98) !important;
    }
    
    .nav-menu a::after {
        content: '→' !important;
        font-size: 1.25rem !important;
        opacity: 0.7 !important;
        transition: transform 0.2s ease !important;
    }
    
    .nav-menu a:active::after {
        transform: translateX(4px) !important;
    }
    
    /* Mobil Menü Backdrop */
    .nav-menu::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: -1 !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
    }
    
    .nav-menu.active::before {
        opacity: 1 !important;
    }
    
    /* Container Mobil */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .content-area {
        padding: 1.5rem 0;
    }
    
    /* Hero Section Mobil - Sadece Mobil İçin */
    .hero-section {
        padding: 2rem 0 1.5rem !important;
        margin-bottom: 2rem !important;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 0 !important;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 1rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5;
    }
    
    /* Mobil Site İstatistikleri - Sadece Mobil İçin */
    .site-stats {
        gap: 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 1.5rem 0 0 !important;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 0.5rem) !important;
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        padding: 1rem;
        margin: 0;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.875rem !important;
    }
    
    @media (max-width: 480px) {
        .stat-item {
            flex: 1 1 100% !important;
            min-width: 100%;
            max-width: 100%;
        }
    }
    
    .search-form-wrapper {
        max-width: 100%;
    }
    
    .search-field {
        font-size: 16px; /* iOS zoom önleme */
        padding: 0.875rem 1rem;
        min-height: 48px;
    }
    
    .search-submit {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Section Titles Mobil */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    /* Popular Searches Mobil */
    .popular-searches-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .search-item-card {
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .search-link {
        padding: 1.25rem;
        min-height: 80px;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .search-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .search-query {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .search-description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-top: 0.5rem;
    }
    
    /* İçerikteki görsel mobil */
    .post-thumbnail-in-content {
        margin: 2rem auto;
    }
    
    .post-thumbnail-in-content img {
        border-radius: 8px;
        max-width: 100%;
    }
    
    /* Articles Grid Mobil */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .post-card {
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .post-thumbnail {
        height: 200px;
    }
    
    .post-card-content {
        padding: 1.25rem;
    }
    
    .post-card-title {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .post-card-excerpt {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Categories Grid Mobil */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-card {
        padding: 1.5rem;
        border-radius: 12px;
        min-height: 120px;
    }
    
    .category-card-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    /* Recent Comments Mobil */
    .comments-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .comment-item-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .comment-header {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .commenter-avatar-small {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .commenter-name {
        font-size: 1rem;
    }
    
    .comment-date {
        font-size: 0.8125rem;
    }
    
    .comment-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Footer Mobil */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .footer-menu {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Single Pages Mobil */
    .makale-single,
    .firma-single {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin: 1rem 0;
    }
    
    .makale-single .entry-title,
    .firma-single .entry-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .makale-single .entry-meta,
    .firma-single .entry-meta {
        font-size: 0.875rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .firma-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .firma-info-card {
        position: static;
        margin-top: 2rem;
    }
    
    /* Reviews Mobil */
    .firma-reviews-section,
    .makale-reviews-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .reviews-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .review-card {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    /* Table of Contents Mobil */
    .table-of-contents {
        margin: 1.5rem 0;
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .toc-title {
        font-size: 1.125rem;
    }
    
    .toc-list {
        font-size: 0.9375rem;
    }
    
    /* Pagination Mobil */
    .pagination {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-link {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
        font-size: 0.9375rem;
    }
    
    /* Touch-Friendly Butonlar */
    button,
    .button,
    a.button,
    input[type="submit"],
    .search-submit {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
    }
    
    /* Form Elements Mobil */
    input[type="text"],
    input[type="search"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px; /* iOS zoom önleme */
        padding: 0.875rem 1rem;
        min-height: 44px;
        border-radius: 8px;
    }
    
    /* Typography Mobil */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9375rem; }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Spacing Mobil */
    .entry-content {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .entry-content p {
        margin-bottom: 1rem;
    }
    
    .entry-content h2 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .entry-content h3 {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    /* Cards Mobil */
    .card,
    .post-card,
    .category-card,
    .search-item-card,
    .comment-item-card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .card:active,
    .post-card:active,
    .category-card:active,
    .search-item-card:active {
        transform: scale(0.98);
    }
    
    /* Smooth Scrolling Mobil */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Body Scroll Lock (Menü Açıkken) */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}
    
    .firma-sidebar {
        position: static;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
    
    /* Bu bölüm yukarıda mobil için tanımlandı, tekrar tanımlamaya gerek yok */
    
    .hero-section .search-form {
        flex-direction: column;
    }
    
    .hero-section .search-form input[type="search"],
    .hero-section .search-form input[type="submit"] {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Homepage Styles
   ========================================================================== */

.homepage {
    padding-top: 0;
}

/* Masaüstü Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    pointer-events: none; /* Overlay'in tıklamaları engellemesini önle */
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Overlay'in üzerinde olmasını sağla */
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Masaüstü Site İstatistikleri */
.site-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
}

.stat-item {
    text-align: center;
    color: #fff;
    flex: 0 0 auto;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-section .search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
}

.hero-section .search-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hero-section .search-form input[type="submit"]:hover {
    transform: translateY(-2px);
}

.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 100%;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    pointer-events: auto; /* Tıklamaları etkinleştir */
}

.search-submit {
    padding: 0.75rem 1.5rem;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-submit:hover {
    background: #005177;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.categories-section,
.recent-posts-section,
.recent-firms-section {
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    opacity: 1;
}

.category-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.category-description {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    margin: 3rem 0;
    text-align: center;
}

.pagination-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-link {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.pagination-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.pagination-link.current {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    cursor: default;
    transform: none;
}

.pagination-link.prev,
.pagination-link.next {
    padding: 0.75rem 1.5rem;
}

.pagination-dots {
    padding: 0.75rem 0.5rem;
    color: #666;
}

/* ==========================================================================
   Popular Searches Section
   ========================================================================== */

.popular-searches-section {
    margin: 3rem 0;
}

.popular-searches-grid,
.search-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.search-list-page {
    padding: 2rem 0;
}

.search-list-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-list-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-list-page .page-description {
    font-size: 1.1rem;
    color: #666;
}

/* ==========================================================================
   Recent Articles Section
   ========================================================================== */

.recent-articles-section {
    margin: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.articles-grid .post-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.articles-grid .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
}

.articles-grid .post-thumbnail {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.articles-grid .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.articles-grid .post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.articles-grid .post-card .entry-header {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
}

.articles-grid .post-card .entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.articles-grid .post-card .entry-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.articles-grid .post-card .entry-title a:hover {
    color: #667eea;
}

.articles-grid .post-card .entry-meta {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.articles-grid .post-card .entry-summary {
    padding: 0 1.5rem;
    flex: 1;
    color: #555;
    line-height: 1.6;
}

.articles-grid .post-card .entry-footer {
    padding: 1.5rem;
    padding-top: 1rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.articles-grid .post-card .read-more {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.articles-grid .post-card .read-more:hover {
    color: #764ba2;
}

/* Son Firmalar Bölümü */
.recent-firms-section {
    margin: 4rem 0;
}

.firms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.firms-grid .post-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.firms-grid .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
    border-left-color: #ef4444;
}

.firms-grid .post-thumbnail {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.firms-grid .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.firms-grid .post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.firms-grid .post-card .entry-header {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
}

.firms-grid .post-card .entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.firms-grid .post-card .entry-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.firms-grid .post-card .entry-title a:hover {
    color: #f59e0b;
}

.firms-grid .post-card .entry-summary {
    padding: 0 1.5rem;
    flex: 1;
    color: #555;
    line-height: 1.6;
}

.firms-grid .post-card .entry-footer {
    padding: 1.5rem;
    padding-top: 1rem;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.firms-grid .post-card .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.firms-grid .post-card .location-icon {
    font-size: 1rem;
}

.firms-grid .post-card .read-more {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.firms-grid .post-card .read-more:hover {
    color: #ef4444;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .firms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Firma Reviews
   ========================================================================== */

/* ==========================================================================
   Reviews Section (Firma & Makale)
   ========================================================================== */

.firma-reviews-section,
.makale-reviews-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e8e8e8;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: #1a1a1a;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.rating-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.rating-stars {
    display: inline-flex;
    gap: 3px;
    align-items: center;
}

.rating-stars .star {
    color: #ddd;
    font-size: 22px;
    line-height: 1;
    transition: color 0.2s ease;
}

.rating-stars .star.filled {
    color: #ffc107;
}

.review-count {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    margin-left: 0.25rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.review-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: #d0d0d0;
}

.review-item:hover::before {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.reviewer-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.review-date {
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

.review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}

.rating-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: #667eea;
    background: #f0f4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.review-rating .stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.review-rating .star {
    color: #ddd;
    font-size: 18px;
    line-height: 1;
    transition: color 0.2s ease;
}

.review-rating .star.filled {
    color: #ffc107;
}

.review-text {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
    padding-left: 64px; /* Avatar genişliği + gap */
}

.no-reviews {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #e8e8e8;
}

.no-reviews p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .firma-reviews-section,
    .makale-reviews-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .reviews-title {
        font-size: 1.75rem;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .average-rating {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .rating-value {
        font-size: 1.5rem;
    }
    
    .review-item {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .review-rating {
        align-items: flex-start;
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .review-text {
        padding-left: 0;
        margin-top: 0.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

.search-item-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.search-item-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.search-link {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    gap: 1rem;
    transition: all 0.2s ease;
}

.search-link:hover {
    color: #fff;
    text-decoration: none;
}

.search-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.search-item-card:hover .search-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(10deg);
}

.search-content {
    flex: 1;
    min-width: 0;
}

.search-query {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.search-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-arrow {
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.search-item-card:hover .search-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.no-searches {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* ==========================================================================
   Arama Sayfası Gelişmiş Özellikler
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

/* Filtreleme ve Sıralama */
.search-filters {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filters-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.search-box-group {
    flex: 2;
    min-width: 300px;
}

.search-form-inline {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.clear-search {
    padding: 0.5rem;
    color: #999;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.clear-search:hover {
    color: #667eea;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-form label {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.sort-form select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 180px;
}

.sort-form select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Harf Navigasyonu */
.alphabet-nav {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.alphabet-nav-wrapper {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.alphabet-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0.5rem 0.75rem;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    position: relative;
    border: 2px solid transparent;
}

.alphabet-letter:hover {
    background: #e0e0e0;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.alphabet-letter.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.alphabet-letter.empty {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
}

.alphabet-letter.empty:hover {
    transform: none;
    box-shadow: none;
}

.letter-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f5576c;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    line-height: 1.2;
}

.alphabet-letter.active .letter-count {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Arama Meta Bilgileri */
.search-meta {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.search-count {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .popular-searches-grid {
        grid-template-columns: 1fr;
    }
    
    .search-link {
        padding: 1.25rem;
    }
    
    .search-icon {
        width: 45px;
        height: 45px;
    }
}

/* ==========================================================================
   Son Yapılan Yorumlar
   ========================================================================== */

.recent-comments-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.comment-item-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comment-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
}

.comment-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.commenter-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.commenter-info {
    flex: 1;
    min-width: 0;
}

.commenter-name {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.comment-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
}

.comment-rating-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.comment-rating-small .rating-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
}

.stars-small {
    display: flex;
    gap: 2px;
}

.stars-small .star {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1;
}

.stars-small .star.filled {
    color: #ffc107;
}

.comment-content {
    margin-bottom: 1rem;
}

.comment-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

.comment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.comment-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-type-badge.firma {
    background: #e3f2fd;
    color: #1976d2;
}

.comment-type-badge.makale {
    background: #f3e5f5;
    color: #7b1fa2;
}

.comment-post-title {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    flex: 1;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.no-comments {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .comments-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .comment-header {
        flex-wrap: wrap;
    }
    
    .comment-rating-small {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .comment-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comment-post-title {
        text-align: left;
        width: 100%;
    }
        font-size: 1.5rem;
    }
    
    .search-query {
        font-size: 1rem;
    }
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.post-card .post-thumbnail {
    margin: 0;
    overflow: hidden;
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-card .entry-header {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
}

.post-card .entry-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.post-card .entry-title a {
    color: #1a1a1a;
}

.post-card .entry-meta {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.post-card .entry-summary {
    padding: 0 1.5rem;
    flex: 1;
}

.post-card .entry-footer {
    padding: 1.5rem;
    padding-top: 1rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.post-card .cat-links {
    font-size: 0.875rem;
}

.post-card .read-more {
    color: #0073aa;
    font-weight: 500;
    text-decoration: none;
}

.post-card .read-more:hover {
    text-decoration: underline;
}

.firma-card .location {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.firma-card .location-icon {
    margin-right: 0.25rem;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    margin: 3rem 0;
    text-align: center;
}

.pagination-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-link {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.pagination-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: #fff;
}

.pagination-link.current {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    cursor: default;
    transform: none;
}

.pagination-link.prev,
.pagination-link.next {
    padding: 0.75rem 1.5rem;
}

.pagination-dots {
    padding: 0.75rem 0.5rem;
    color: #666;
}

.view-all-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.view-all-button:hover {
    background: #005177;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* ==========================================================================
   Arama Sonuç Sayfası
   ========================================================================== */

.search-results-page {
    padding: 2rem 0;
}

.search-breadcrumb {
    margin-bottom: 1.5rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-list li a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-list .separator {
    color: #999;
    margin: 0 0.25rem;
}

.breadcrumb-list .current {
    color: #333;
    font-weight: 500;
}

.search-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.search-header-content {
    margin-bottom: 1.5rem;
}

.search-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.search-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.search-query-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.search-stats {
    margin-top: 1rem;
}

.results-count {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.results-count strong {
    font-size: 1.3rem;
    font-weight: 700;
}

.results-range {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-left: 0.5rem;
}

.search-form-wrapper {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.search-form-wrapper form {
    display: flex;
    gap: 1rem;
}

.search-form-wrapper input[type="search"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    color: #333;
}

.search-form-wrapper input[type="search"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: #fff;
}

.search-form-wrapper input[type="submit"] {
    padding: 0.875rem 2rem;
    background: #fff;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form-wrapper input[type="submit"]:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-results-container {
    margin-bottom: 3rem;
}

.results-section {
    margin-bottom: 3rem;
}

.results-section .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a1a1a;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e8e8e8;
}

.section-icon {
    font-size: 1.5rem;
}

.count-badge {
    background: #667eea;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.search-result-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
}

.result-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.result-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-result-card:hover .result-thumbnail img {
    transform: scale(1.05);
}

.thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-result-card:hover .thumbnail-overlay {
    opacity: 1;
}

.view-link {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.result-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.result-header {
    margin-bottom: 1rem;
}

.result-type-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.result-type-makale {
    background: #f3e5f5;
    color: #7b1fa2;
}

.result-type-firma {
    background: #e3f2fd;
    color: #1976d2;
}

.result-type-post {
    background: #fff3e0;
    color: #e65100;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.result-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.result-title a:hover {
    color: #667eea;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.result-date,
.result-category {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.result-category a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.result-category a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.result-special-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.special-info-item {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.result-excerpt {
    flex: 1;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.result-excerpt p {
    margin: 0;
}

.result-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.result-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.result-read-more:hover {
    color: #764ba2;
    gap: 0.75rem;
}

.result-read-more .arrow {
    transition: transform 0.2s ease;
}

.result-read-more:hover .arrow {
    transform: translateX(4px);
}

/* No Results */
.no-results-section {
    padding: 4rem 2rem;
    text-align: center;
}

.no-results-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.no-results-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.no-results-suggestions {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.no-results-suggestions h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.no-results-suggestions li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.no-results-search {
    max-width: 500px;
    margin: 0 auto;
}

/* Pagination */
.search-pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.search-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
    background: #667eea;
    color: #fff;
    border-color: #667eea;
}

@media (max-width: 768px) {
    .search-header {
        padding: 1.5rem;
    }
    
    .search-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .search-icon {
        font-size: 2rem;
    }
    
    .search-form-wrapper form {
        flex-direction: column;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-thumbnail {
        height: 180px;
    }
    
    .result-special-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Ek Mobil Optimizasyonlar */
    
    /* Scrollbar Mobil */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #5568d3;
    }
    
    /* Safe Area Support (iPhone X ve üzeri) */
    .site-header {
        padding-top: env(safe-area-inset-top);
    }
    
    
    .site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    /* Text Selection Mobil */
    ::selection {
        background: rgba(102, 126, 234, 0.3);
        color: #1a1a1a;
    }
    
    /* Focus States Mobil */
    a:focus,
    button:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }
    
    /* Loading States */
    img {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    img.loaded {
        opacity: 1;
    }
    
    /* Swipe Gestures için hazırlık */
    .swipeable {
        touch-action: pan-y;
    }
}

/* ==========================================================================
   Social Share Buttons
   ========================================================================== */

.social-share-buttons {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.share-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: currentColor;
}

.share-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.share-text {
    font-size: 0.9rem;
}

/* Facebook */
.share-facebook {
    color: #1877f2;
    border-color: #1877f2;
}

.share-facebook:hover {
    background: #1877f2;
    color: #fff;
}

/* Twitter/X */
.share-twitter {
    color: #000;
    border-color: #000;
}

.share-twitter:hover {
    background: #000;
    color: #fff;
}

/* LinkedIn */
.share-linkedin {
    color: #0a66c2;
    border-color: #0a66c2;
}

.share-linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

/* WhatsApp */
.share-whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.share-whatsapp:hover {
    background: #25d366;
    color: #fff;
}

/* Copy Link */
.share-copy {
    color: #667eea;
    border-color: #667eea;
}

.share-copy:hover {
    background: #667eea;
    color: #fff;
}

.share-copy.copied {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.share-copy.copied .share-text::after {
    content: ' ✓';
    margin-left: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .social-share-buttons {
        padding: 1.25rem;
        margin: 2rem 0;
    }
    
    .share-buttons {
        gap: 0.5rem;
    }
    
    .share-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        flex: 1;
        min-width: calc(50% - 0.25rem);
        justify-content: center;
    }
    
    .share-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .share-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .share-btn {
        min-width: 100%;
    }
}

/* ==========================================================================
   Category Archive Page - Professional Design
   ========================================================================== */

.category-archive-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Hero Section */
.category-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.category-hero-image {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 12px;
    z-index: 2;
}

.category-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.category-hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.category-hero .category-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-hero .category-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.category-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.category-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.category-breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb-separator {
    opacity: 0.6;
}

.breadcrumb-current {
    color: #fff;
    font-weight: 500;
}

.category-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1.2;
}

.category-icon {
    font-size: 3.5rem;
    opacity: 0.9;
}

.category-hero .category-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.category-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Buttons */
.category-filters {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: #e9ecef;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.filter-icon {
    font-size: 1.25rem;
}

.filter-text {
    font-weight: 600;
}

.filter-count {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.filter-btn.active .filter-count {
    opacity: 0.9;
}

/* Posts Grid */
.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Enhanced Post Cards */
.category-posts-grid .post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.category-posts-grid .post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-posts-grid .post-card:hover::before {
    transform: scaleX(1);
}

.category-posts-grid .post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.category-posts-grid .post-card .post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

.category-posts-grid .post-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-posts-grid .post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

/* Makale Card Specific */
.category-posts-grid .post-card:not(.firma-card) .entry-header {
    padding: 1.5rem 1.5rem 1rem;
}

.category-posts-grid .post-card:not(.firma-card) .entry-title {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.category-posts-grid .post-card:not(.firma-card) .entry-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-posts-grid .post-card:not(.firma-card) .entry-title a:hover {
    color: #667eea;
}

.category-posts-grid .post-card:not(.firma-card) .entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
}

.category-posts-grid .post-card:not(.firma-card) .entry-summary {
    padding: 0 1.5rem;
    flex: 1;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-posts-grid .post-card:not(.firma-card) .entry-footer {
    padding: 1rem 1.5rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-posts-grid .post-card:not(.firma-card) .read-more {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.category-posts-grid .post-card:not(.firma-card) .read-more:hover {
    color: #764ba2;
    gap: 0.75rem;
}

/* Firma Card Specific */
.category-posts-grid .firma-card {
    border-left: 4px solid #f59e0b;
}

.category-posts-grid .firma-card::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.category-posts-grid .firma-card .entry-header {
    padding: 1.5rem 1.5rem 1rem;
}

.category-posts-grid .firma-card .entry-title {
    font-size: 1.35rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.category-posts-grid .firma-card .entry-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-posts-grid .firma-card .entry-title a:hover {
    color: #f59e0b;
}

.category-posts-grid .firma-card .entry-summary {
    padding: 0 1.5rem;
    flex: 1;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-posts-grid .firma-card .entry-footer {
    padding: 1rem 1.5rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-posts-grid .firma-card .location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.category-posts-grid .firma-card .location-icon {
    font-size: 1rem;
}

.category-posts-grid .firma-card .read-more {
    color: #f59e0b;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.category-posts-grid .firma-card .read-more:hover {
    color: #ef4444;
    gap: 0.75rem;
}

/* Pagination */
.category-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 1rem;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.pagination-link:hover {
    background: #e9ecef;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.pagination-link.current {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    cursor: default;
}

.pagination-link.prev,
.pagination-link.next {
    font-weight: 700;
}

.pagination-dots {
    color: #999;
    padding: 0 0.5rem;
}

/* Empty State */
.category-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.empty-state-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-state-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-state-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-hero {
        padding: 2.5rem 0 2rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .category-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-pagination {
        padding: 1.5rem;
    }
    
    .pagination-link {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.9rem;
    }
}

/* Category Header Styles */
.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 6rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.category-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 1;
}

.category-header .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.category-header-content {
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.category-header-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 0.6s ease-out;
}

.category-header .category-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.category-header .category-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.98;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .category-header {
        padding: 4rem 0;
        min-height: 300px;
    }
    
    .category-header-content {
        padding: 1.5rem;
    }
    
    .category-header-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .category-header .category-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .category-header .category-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .category-header {
        padding: 3rem 0;
        min-height: 250px;
    }
    
    .category-header-icon {
        font-size: 3rem;
    }
    
    .category-header .category-title {
        font-size: 1.75rem;
    }
    
    .category-header .category-description {
        font-size: 1rem;
    }
}

