/* ========================================
   Hizmetler Sayfası Stilleri
   ======================================== */

/* Breadcrumb */
.hizmet-breadcrumb {
    background: linear-gradient(135deg, #0B0C0D 0%, #131518 100%);
    padding: 40px 0;
    margin-bottom: 48px;
    border-radius: 0 0 30px 30px;
}

.hizmet-breadcrumb .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hizmet-breadcrumb .breadcrumb a {
    color: #9B30FF;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hizmet-breadcrumb .breadcrumb a:hover {
    color: #F8F8FF;
}

.hizmet-breadcrumb .breadcrumb span {
    color: #7A7F85;
}

.hizmet-breadcrumb h1 {
    color: #F8F8FF;
    font-size: 36px;
    margin-top: 16px;
    font-weight: 700;
}

/* Container */
.hizmet-container {
    padding: 40px 0 80px;
}

/* Grid Layout */
.hizmet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

/* Hizmet Kartı */
.hizmet-card {
    background: #131518;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(155, 48, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hizmet-card:hover {
    transform: translateY(-8px);
    border-color: rgba(155, 48, 255, 0.4);
    box-shadow: 0 12px 40px rgba(155, 48, 255, 0.25);
}

/* Resim Wrapper */
.hizmet-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: block;
}

.hizmet-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hizmet-card:hover .hizmet-image-wrapper img {
    transform: scale(1.1);
}

/* Overlay */
.hizmet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 48, 255, 0.8) 0%, rgba(189, 95, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hizmet-card:hover .hizmet-overlay {
    opacity: 1;
}

.hizmet-overlay i {
    color: #fff;
    font-size: 48px;
    transform: translateX(-20px);
    transition: transform 0.4s ease;
}

.hizmet-card:hover .hizmet-overlay i {
    transform: translateX(0);
}

/* İçerik */
.hizmet-content {
    padding: 28px;
}

.hizmet-title {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.hizmet-title a {
    color: #F8F8FF;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hizmet-title a:hover {
    color: #9B30FF;
}

.hizmet-excerpt {
    color: #9FA4AA;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hizmet-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9B30FF;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hizmet-read-more:hover {
    gap: 12px;
    color: #BD5FFF;
}

.hizmet-read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hizmet-read-more:hover i {
    transform: translateX(4px);
}

/* Boş Durum */
.hizmet-empty {
    text-align: center;
    padding: 80px 20px;
    background: #131518;
    border-radius: 24px;
    border: 2px dashed rgba(155, 48, 255, 0.2);
}

.hizmet-empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(155, 48, 255, 0.15) 0%, rgba(189, 95, 255, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(155, 48, 255, 0.3);
}

.hizmet-empty-icon i {
    font-size: 56px;
    color: #9B30FF;
}

.hizmet-empty h4 {
    color: #F8F8FF;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.hizmet-empty p {
    color: #9FA4AA;
    font-size: 16px;
    margin: 0;
}

/* ========================================
   Hizmet Detay Sayfası
   ======================================== */

/* Sidebar */
.hizmet-sidebar {
    position: sticky;
    top: 100px;
}

.hizmet-sidebar-widget {
    background: #131518;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(155, 48, 255, 0.1);
    transition: all 0.3s ease;
}

.hizmet-sidebar-widget:hover {
    border-color: rgba(155, 48, 255, 0.3);
    box-shadow: 0 8px 24px rgba(155, 48, 255, 0.15);
}

.hizmet-sidebar-title {
    color: #F8F8FF;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(155, 48, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hizmet-sidebar-title i {
    color: #9B30FF;
    font-size: 20px;
}

.hizmet-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hizmet-sidebar-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(155, 48, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hizmet-sidebar-item:hover {
    background: rgba(155, 48, 255, 0.08);
    border-color: rgba(155, 48, 255, 0.3);
    transform: translateX(4px);
}

.hizmet-sidebar-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.hizmet-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hizmet-sidebar-item:hover .hizmet-sidebar-image img {
    transform: scale(1.1);
}

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

.hizmet-sidebar-item-title {
    color: #F8F8FF;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hizmet-sidebar-excerpt {
    color: #9FA4AA;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* İletişim Widget */
.contact-widget {
    background: linear-gradient(135deg, rgba(155, 48, 255, 0.1) 0%, rgba(189, 95, 255, 0.1) 100%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.contact-item i {
    color: #9B30FF;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    color: #9FA4AA;
    font-size: 12px;
    font-weight: 500;
}

.contact-item a,
.contact-item span:not(.contact-label) {
    color: #F8F8FF;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #9B30FF;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #9B30FF 0%, #BD5FFF 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 48, 255, 0.4);
}

/* Detay Kartı */
.hizmet-detail-card {
    background: #131518;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(155, 48, 255, 0.1);
}

/* Galeri */
.hizmet-detail-gallery {
    position: relative;
}

.hizmet-detail-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #0a0b0d;
}

.hizmet-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hizmet-detail-thumbnails {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto;
}

.hizmet-detail-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.hizmet-detail-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.hizmet-detail-thumbnails::-webkit-scrollbar-thumb {
    background: #9B30FF;
    border-radius: 3px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: #9B30FF;
    box-shadow: 0 4px 12px rgba(155, 48, 255, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Detay İçerik */
.hizmet-detail-content {
    padding: 40px;
}

.hizmet-detail-title {
    color: #F8F8FF;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.hizmet-detail-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(155, 48, 255, 0.1);
}

.hizmet-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9FA4AA;
    font-size: 14px;
}

.hizmet-detail-meta-item i {
    color: #9B30FF;
    font-size: 16px;
}

.hizmet-detail-text {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hizmet-detail-text p {
    margin-bottom: 16px;
}

.hizmet-detail-text h2,
.hizmet-detail-text h3 {
    color: #F8F8FF;
    margin-top: 28px;
    margin-bottom: 16px;
}

.hizmet-detail-text ul,
.hizmet-detail-text ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.hizmet-detail-text li {
    margin-bottom: 8px;
}

/* CTA Butonları */
.hizmet-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hizmet-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hizmet-cta-btn.primary {
    background: linear-gradient(135deg, #9B30FF 0%, #BD5FFF 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(155, 48, 255, 0.3);
}

.hizmet-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(155, 48, 255, 0.5);
}

.hizmet-cta-btn.secondary {
    background: rgba(155, 48, 255, 0.1);
    color: #9B30FF;
    border: 2px solid rgba(155, 48, 255, 0.3);
}

.hizmet-cta-btn.secondary:hover {
    background: rgba(155, 48, 255, 0.2);
    border-color: rgba(155, 48, 255, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .hizmet-breadcrumb {
        padding: 32px 0;
    }
    
    .hizmet-breadcrumb h1 {
        font-size: 28px;
    }
    
    .hizmet-sidebar {
        position: relative;
        top: 0;
    }
    
    .hizmet-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .hizmet-detail-main-image {
        height: 400px;
    }
    
    .hizmet-detail-content {
        padding: 32px;
    }
    
    .hizmet-detail-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hizmet-breadcrumb {
        padding: 24px 0;
    }
    
    .hizmet-breadcrumb h1 {
        font-size: 24px;
    }
    
    .hizmet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hizmet-card {
        border-radius: 16px;
    }
    
    .hizmet-image-wrapper {
        height: 220px;
    }
    
    .hizmet-content {
        padding: 20px;
    }
    
    .hizmet-title {
        font-size: 18px;
    }
    
    .hizmet-sidebar-widget {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .hizmet-sidebar-title {
        font-size: 16px;
    }
    
    .hizmet-sidebar-image {
        width: 70px;
        height: 70px;
    }
    
    .hizmet-detail-card {
        border-radius: 20px;
    }
    
    .hizmet-detail-main-image {
        height: 300px;
    }
    
    .hizmet-detail-content {
        padding: 24px 20px;
    }
    
    .hizmet-detail-title {
        font-size: 24px;
    }
    
    .hizmet-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hizmet-detail-text {
        font-size: 15px;
    }
    
    .hizmet-cta {
        flex-direction: column;
    }
    
    .hizmet-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hizmet-sidebar-image {
        width: 60px;
        height: 60px;
    }
    
    .hizmet-detail-main-image {
        height: 250px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
    }
    
    .hizmet-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}

