/**
 * TAXI CLERMONT 63 - Services CSS
 * Styles spécifiques à la page Services
 */

/* ============================================
   HERO SECTION SERVICES
============================================= */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-clermont63.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.65) 30%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.7) 80%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* ============================================
   SERVICE DETAIL CARD
============================================= */
.service-detail-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 197, 24, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.service-detail-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(245, 197, 24, 0.25);
}

.service-icon {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================
   FEATURE LIST
============================================= */
.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 8px;
}

.feature-item:hover .feature-icon {
    background: rgba(245, 197, 24, 0.2);
}

.feature-icon {
    transition: background 0.3s ease;
}
