/* Service Detail Page Styles */

.service-detail-section {
    background: transparent;
    transform: translateZ(0);
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.service-detail-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-detail-image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.placeholder-icon {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.placeholder-icon i {
    font-size: 4rem;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.service-detail-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-icon-large i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-detail-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.service-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.service-benefits-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.service-benefits-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.service-benefits-box h3 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
    color: #10B981;
}

.service-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-cta-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
}

.service-cta-box h4 {
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.service-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.service-cta-box .btn-primary,
.service-cta-box .btn-quote {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    color: white;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.service-cta-box .btn-primary:hover,
.service-cta-box .btn-quote:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

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

.service-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.service-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.service-info-card h4 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.info-item strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.info-item strong i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-item span {
    color: rgba(255, 255, 255, 0.8);
}

.other-services-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.other-services-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.3);
}

.other-services-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.other-services-card h4 i {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.other-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.other-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.other-service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px) translateZ(0);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.2);
    border-color: rgba(79, 70, 229, 0.3);
}

.other-service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.other-service-icon i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.other-service-content {
    flex: 1;
}

.other-service-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.other-service-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.other-service-arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.other-service-item:hover .other-service-arrow {
    background: linear-gradient(135deg, #4F46E5 0%, #10B981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .service-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .service-detail-card {
        padding: 30px 20px;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail-icon-large {
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .service-detail-title {
        font-size: 1.5rem;
    }
    
    .service-detail-content {
        font-size: 1rem;
    }
    
    .service-benefits-box {
        padding: 20px;
    }
    
    .service-cta-box {
        padding: 20px;
        text-align: center;
    }
    
    .service-detail-image-placeholder {
        height: 300px;
    }
    
    .placeholder-icon {
        width: 100px;
        height: 100px;
    }
    
    .placeholder-icon i {
        font-size: 3rem;
    }
}
