/* service-detail.css */
.service-detail-page {
    background-color: var(--bg-dark, #05070A);
    color: #FFF;
    overflow-x: hidden;
}

.service-hero {
    min-height: 60vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12rem 2rem 4rem;
    text-align: center;
    z-index: 10;
}

.service-hero-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: #00AEEF;
    text-shadow: 0 0 25px rgba(0, 174, 239, 0.6);
    animation: bounceIcon 4s infinite ease-in-out;
}

@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.service-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #FFF, #A0AAB2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #A0AAB2;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.service-content-section {
    padding: 2rem 2rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(10, 15, 25, 0.6);
    border: 1px solid rgba(0, 174, 239, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 174, 239, 0.4);
    box-shadow: 0 10px 40px rgba(0, 174, 239, 0.15), inset 0 0 20px rgba(0, 174, 239, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: #00AEEF;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFF;
}

.feature-text {
    color: #A0AAB2;
    line-height: 1.6;
    font-size: 1rem;
}

/* Background Effects */
.detail-bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.amb-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 174, 239, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.amb-glow:nth-child(1) { top: -20%; left: -10%; }
.amb-glow:nth-child(2) { bottom: -20%; right: -10%; animation-delay: -5s; background: radial-gradient(circle, rgba(160, 170, 178, 0.1) 0%, transparent 60%); }

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, 100px) scale(1.2); }
}
