/* ============================================================
   ANASAYFA'YA OZEL STILLER  (eski index.php <style> blogu)
   Ortak kurallar (.header/.footer/.navbar/.mobile-fixed-buttons)
   style.css + components.css icinde; buradan cikarildi.
   ============================================================ */
@import url('../hero-custom.css');   /* admin/hero.php tarafindan uretilir */

    /* Mobile Banner Styles */
    .mobile-banner-section {
        display: none;
        padding: 20px 0;
        background-color: var(--primary-color, #2563eb);
        color: white;
        text-align: center;
    }
    
    .mobile-banner-section h3 {
        font-size: 18px;
        margin-bottom: 5px;
        font-weight: 600;
    }
    
    .mobile-banner-section p {
        font-size: 14px;
        margin-bottom: 0;
        opacity: 0.9;
    }
    
    @media (max-width: 767px) {
        .mobile-banner-section {
            display: block;
        }
    }
    
    /* Hizmetler Bölümü Stilleri */
    .services-section {
        padding: 30px 0;
        background-color: #f9f9f9;
    }

    .section-title {
        text-align: center;
        margin-bottom: 25px;
        color: #333;
        font-weight: 600;
    }

    .service-category-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        padding: 25px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .service-category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .service-category-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--primary-color, #2563eb);
    }

    .service-category-desc {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

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

    .service-item {
        display: flex;
        align-items: flex-start;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .service-icon {
        width: 40px;
        margin-right: 15px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .service-icon i {
        font-size: 22px;
        color: var(--primary-color, #2563eb);
    }

    .service-info h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .service-info p {
        font-size: 14px;
        color: #777;
        margin: 0;
    }

    .no-services {
        font-style: italic;
        color: #999;
        text-align: center;
        padding: 15px 0;
    }

    /* Fiyatlandırma Bölümü Stilleri */
    .pricing-section {
        padding: 30px 0;
    }

    .price-table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border-radius: 10px;
        overflow: hidden;
    }

    .price-table thead {
        background-color: var(--primary-color, #2563eb);
        color: white;
    }

    .price-table th, .price-table td {
        padding: 15px;
        text-align: center;
    }

    .price-table th {
        font-weight: 600;
    }

    .price-table tbody tr:nth-child(odd) {
        background-color: #f9f9f9;
    }

    .price-table tbody tr:hover {
        background-color: #f0f0f0;
    }

    .price-item-name {
        font-weight: 600;
        text-align: left;
    }

    @media (max-width: 768px) {
        .price-table {
            display: block;
            overflow-x: auto;
        }
    }
    
    /* Yeni Liste Stili İçerik Menüsü */
    .contents-section {
        padding: 30px 0;
    }
    
    .contents-title {
        color: var(--primary-color, #2563eb);
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }
    
    .contents-title:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: var(--primary-color, #2563eb);
    }
    
    .content-item-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .content-category-item {
        margin-bottom: 15px;
    }
    
    .category-link {
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border-radius: 5px;
        display: flex;
        align-items: center;
        padding: 15px;
        color: #333;
        font-weight: 600;
        text-decoration: none;
        position: relative;
        transition: all 0.3s ease;
        border-left: 4px solid var(--primary-color, #2563eb);
    }
    
    .category-link:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transform: translateX(5px);
        color: var(--primary-color, #2563eb);
    }
    
    .category-link .category-number {
        background-color: var(--primary-color, #2563eb);
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .category-link .fa-chevron-right {
        position: absolute;
        right: 15px;
        opacity: 0.5;
        transition: all 0.3s ease;
    }
    
    .category-link:hover .fa-chevron-right {
        right: 10px;
        opacity: 1;
    }
    
    .content-detail-section {
        padding: 20px 0;
    }
    
    .content-detail-heading {
        font-size: 22px;
        font-weight: 700;
        color: var(--primary-color, #2563eb);
        margin-bottom: 20px;
        margin-top: 25px;
        position: relative;
        padding-left: 15px;
        border-left: 5px solid var(--primary-color, #2563eb);
    }
    
    @media (max-width: 767px) {
        .category-link {
            padding: 12px 15px;
        }
        
        .category-link .category-number {
            width: 26px;
            height: 26px;
            margin-right: 10px;
        }
    }
    
    /* FAQ Accordion düzeltmeleri */
    .faq-accordion .accordion-item {
        margin-bottom: 15px;
        border: none;
        border-radius: 5px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .faq-accordion .accordion-button {
        padding: 20px;
        font-weight: 600;
        border-radius: 5px;
        position: relative;
        background-color: white;
        color: var(--primary-color, #2563eb);
    }
    
    .faq-accordion .accordion-button:not(.collapsed) {
        background-color: white;
        color: var(--primary-color, #2563eb);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .faq-accordion .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0,0,0,0.125);
    }
    
    .faq-accordion .accordion-button::after {
        transition: transform 0.2s ease-in-out;
    }
    
    .faq-accordion .accordion-collapse {
        border: 0;
    }
    
    .faq-accordion .accordion-body {
        padding: 20px;
        background-color: white;
        border-top: 1px solid rgba(0,0,0,0.05);
        line-height: 1.7;
    }
    
    .back-to-top {
        position: fixed;
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: var(--primary-color, #2563eb);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 999;
        transition: all 0.3s ease;
    }
    
    .back-to-top:hover {
        background-color: var(--primary-color, #1d4ed8);
        color: white;
        transform: translateY(-5px);
    }
    
    @media (max-width: 767px) {
        .back-to-top {
            bottom: 100px;
        }
    }
