.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
.transition-all {
    transition: all 0.3s ease;
}

/* Premium Hizmet Card Styles */
.premium-hizmet-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(195, 0, 47, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

    .premium-hizmet-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(195, 0, 47, 0.05) 0%, rgba(255, 81, 47, 0.05) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 25px;
    }

    .premium-hizmet-card:hover::before {
        opacity: 1;
    }

    .premium-hizmet-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow: 0 25px 50px rgba(195, 0, 47, 0.2);
        border-color: rgba(195, 0, 47, 0.3);
    }

/* Card Header Section */
.card-header-section {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c3002f;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Icon Container */
.hizmet-icon-container {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(195, 0, 47, 0.3);
    transition: all 0.4s ease;
}

.icon-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    animation: iconGlow 3s infinite;
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hizmet-icon-container i {
    color: white;
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.premium-hizmet-card:hover .hizmet-icon-container {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 40px rgba(195, 0, 47, 0.4);
}

/* Card Content Section */
.card-content-section {
    text-align: center;
    margin-bottom: 2rem;
}

.hizmet-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c3002f;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.premium-hizmet-card:hover .hizmet-title {
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(195, 0, 47, 0.2);
}

.hizmet-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.premium-hizmet-card:hover .hizmet-description {
    color: #333;
}

/* Features Section */
.hizmet-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(195, 0, 47, 0.1) 0%, rgba(255, 81, 47, 0.1) 100%);
    color: #c3002f;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(195, 0, 47, 0.2);
    transition: all 0.3s ease;
}

    .feature-tag:hover {
        background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(195, 0, 47, 0.3);
    }

/* Action Section */
.card-action-section {
    text-align: center;
}

.premium-button {
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 10px 25px rgba(195, 0, 47, 0.3);
}

    .premium-button::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.6s ease;
    }

    .premium-button:hover::before {
        left: 100%;
    }

    .premium-button:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 35px rgba(195, 0, 47, 0.4);
    }

.button-text {
    z-index: 2;
    position: relative;
}

.button-icon {
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.premium-button:hover .button-icon {
    transform: translateX(5px);
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    overflow: hidden;
}

.decoration-line {
    height: 2px;
    background: linear-gradient(90deg, #c3002f 0%, #ff512f 50%, #c3002f 100%);
    animation: decorationFlow 3s linear infinite;
}

@keyframes decorationFlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.decoration-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

    .decoration-dots span {
        width: 6px;
        height: 6px;
        background: #c3002f;
        border-radius: 50%;
        animation: dotPulse 2s infinite;
    }

        .decoration-dots span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .decoration-dots span:nth-child(3) {
            animation-delay: 0.6s;
        }

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Shimmer Loading Styles */
.hizmet-shimmer-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .hizmet-shimmer-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
        animation: shimmer 2s infinite;
    }

.shimmer-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.shimmer-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.shimmer-title {
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    border-radius: 4px;
    margin-bottom: 1rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.shimmer-description {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.shimmer-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.shimmer-feature-tag {
    height: 24px;
    width: 60px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    border-radius: 12px;
}

.shimmer-button {
    height: 50px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    border-radius: 25px;
    width: 100%;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Hizmet Card Animations */
.hizmet-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

    .hizmet-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hizmet-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .hizmet-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .hizmet-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .hizmet-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .hizmet-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .hizmet-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .hizmet-card:nth-child(8) {
        animation-delay: 0.8s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yan Yana Liste Stilleri */
#hizmetlerContent .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

#hizmetlerContent .col-12,
#hizmetlerContent .col-sm-6,
#hizmetlerContent .col-md-4,
#hizmetlerContent .col-lg-4,
#hizmetlerContent .col-xl-4 {
    display: flex;
    margin-bottom: 1.5rem;
}

.hizmet-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.premium-hizmet-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hizmet-card {
        animation-delay: 0.1s !important;
    }

    .premium-hizmet-card {
        padding: 1.5rem;
    }

    .hizmet-icon-container {
        width: 80px;
        height: 80px;
    }

        .hizmet-icon-container i {
            font-size: 2rem;
        }

    .hizmet-title {
        font-size: 1.2rem;
    }

    .premium-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    /* Mobilde 2 s�tun */
    #hizmetlerContent .col-12 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    /* Tablet'te 3 s�tun */
    #hizmetlerContent .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* Desktop'ta 3 s�tun */
    #hizmetlerContent .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 1200px) {
    /* B�y�k ekranlarda 3 s�tun */
    #hizmetlerContent .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Shimmer Yan Yana Liste Stilleri */
#hizmetlerShimmer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

#hizmetlerShimmer .col-12,
#hizmetlerShimmer .col-sm-6,
#hizmetlerShimmer .col-md-4,
#hizmetlerShimmer .col-lg-4,
#hizmetlerShimmer .col-xl-4 {
    display: flex;
    margin-bottom: 1.5rem;
}

.hizmet-shimmer-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Loading State Management */
#hizmetlerShimmer {
    display: none;
}

#hizmetlerContent {
    display: block;
}

    #hizmetlerContent.loaded {
        display: flex !important;
    }

/* Hizmet Kartları */
.hizmet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    height: 100%;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.hizmet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(195, 0, 47, 0.2);
    border-color: #c3002f;
}

.hizmet-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.hizmet-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.hizmet-card:hover .hizmet-image {
    transform: scale(1.1);
}

.hizmet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(195, 0, 47, 0.8), rgba(255, 81, 47, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hizmet-card:hover .hizmet-overlay {
    opacity: 1;
}

.hizmet-overlay-btn {
    background: white;
    color: #c3002f;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    transform: translateY(20px);
}

.hizmet-card:hover .hizmet-overlay-btn {
    transform: translateY(0);
}

.hizmet-overlay-btn:hover {
    background: #c3002f;
    color: white;
    transform: scale(1.05);
}

.hizmet-content {
    padding: 1.5rem;
}

.hizmet-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hizmet-category {
    color: #c3002f;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hizmet-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hizmet-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.hizmet-status {
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hizmet-actions {
    display: flex;
    gap: 10px;
}

.hizmet-btn {
    padding: 6px 12px;
    border: 1px solid #c3002f;
    background: transparent;
    color: #c3002f;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hizmet-btn:hover {
    background: #c3002f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.3);
}

.hizmet-btn i {
    margin-right: 5px;
}

/* Shimmer Loading */
.shimmer-container {
    display: none;
}

.shimmer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.shimmer-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.shimmer-content {
    padding: 1.5rem;
}

.shimmer-title {
    height: 20px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 80%;
}

.shimmer-category {
    height: 16px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 10px;
    width: 60%;
}

.shimmer-description {
    height: 16px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.shimmer-description:last-child {
    width: 70%;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border: none;
}

.modal-title {
    color: white;
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
    line-height: 1.6;
}

.modal-body strong {
    color: #c3002f;
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hizmet-content {
        padding: 1rem;
    }
    
    .hizmet-title {
        font-size: 1.1rem;
    }
    
    .hizmet-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .hizmet-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hizmet-image-container {
        height: 150px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}
