/* Premium Service List Styles */
.premium-services-section {
    background-color: #0A1628;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.premium-service-item {
    width: 100%;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: -1px; /* collapse borders */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    cursor: pointer;
    background: transparent;
}

.premium-service-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
    display: inline-block;
}

/* Hover Interactions - Desktop */
@media (hover: hover) and (pointer: fine) {
    .premium-service-item:hover {
        background: rgba(33, 212, 253, 0.03);
        box-shadow: inset 0 0 50px rgba(33, 212, 253, 0.05);
        border-color: rgba(33, 212, 253, 0.3);
        z-index: 2;
    }

    .premium-service-item:hover .premium-service-title {
        color: #21D4FD;
        -webkit-text-stroke: 2px #21D4FD;
        transform: translateX(20px) rotate(-3deg);
        text-shadow: 0 0 30px rgba(33, 212, 253, 0.4);
    }
}

/* Mobile Fallbacks */
@media (max-width: 768px) {
    .premium-services-section {
        padding: 60px 15px;
        gap: 20px;
    }
    
    .premium-service-item {
        padding: 30px 15px;
    }

    .premium-service-title {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    }

    .premium-service-item:active {
        background: rgba(33, 212, 253, 0.05);
        border-color: rgba(33, 212, 253, 0.2);
    }

    .premium-service-item:active .premium-service-title {
        color: #21D4FD;
        -webkit-text-stroke: 1px #21D4FD;
        transform: scale(0.98);
    }
}
