/* Breadcrumb Styles */
.breadcrumb {
    margin-bottom: 1.5rem;
    background: transparent;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    padding: 0 8px;
}

.breadcrumb-item.active {
    color: #fff;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    color: #fff;
    padding: 60px 0 60px;
}

.header-content {
    margin-bottom: 40px;
}

.header-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.header-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 1.7rem;
    }
}

.online-users {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    max-width: fit-content;
}

.online-users span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.user-avatars {
    display: flex;
    margin: 0 10px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid #fff;
    overflow: hidden;
    position: relative;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    z-index: 2;
}

.instagram-link {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Filter Navigation */
.filter-navigation {
    background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
    padding: 15px 0;
    position: relative;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: #fff;
    color: #0b5ed7;
    font-weight: 500;
}

/* Services Section Styles */
.services-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 102, 255, 0.02) 100%);
    z-index: 0;
}

.services-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.services-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
}

/* Service Cards */
.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* Yatay Kart Tasarımı */
.service-card.horizontal {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 16px;
    height: 100%;
    min-height: 90px;
}

.service-card.horizontal .service-card-icon {
    width: 42px;
    height: 42px;
    margin: 0;
    flex-shrink: 0;
    border-radius: 10px;
    background: #3c3d63;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.service-card.horizontal:hover .service-card-icon {
    transform: scale(1.1);
}

.service-card.horizontal h3 {
    flex: 1;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.service-card.horizontal .service-card-btn {
    margin: 0;
    padding: 6px 16px;
    border-radius: 20px;
    background: #3c3d63;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.service-card.horizontal .service-card-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-card.horizontal:hover .service-card-btn i {
    transform: translateX(3px);
}

/* Responsive Tasarım */
@media (max-width: 1199.98px) {
    .service-card.horizontal {
        padding: 14px;
        gap: 12px;
    }

    .service-card.horizontal .service-card-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .service-card.horizontal h3 {
        font-size: 14px;
    }

    .service-card.horizontal .service-card-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}

@media (max-width: 767.98px) {
    .service-card.horizontal {
        padding: 12px;
        gap: 10px;
    }

    .service-card.horizontal .service-card-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    .online-users {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .service-card.horizontal .service-card-btn span {
        display: none;
    }

    .service-categories {
        background-color: #f8f9fc;
        padding: 0px 0;
    }
    
    .service-card.horizontal .service-card-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .service-card.horizontal .service-card-btn i {
        margin: 0;
        font-size: 18px;
    }

    .service-card.horizontal:hover .service-card-btn i {
        transform: scale(1.2);
    }
}

/* Service Categories Section */
.service-categories {
    background-color: #f8f9fc;
    padding: 30px 0;
}

.service-categories .row {
    margin-right: -12px;
    margin-left: -12px;
}

.service-categories .col-lg-4,
.service-categories .col-md-6 {
    padding-right: 12px;
    padding-left: 12px;
}