/* ===== SERVICES.CSS - STYLES SPÉCIFIQUES PAGE SERVICES =====
 * Téléphone Rose Belgique - Page Services
 */

/* ===== HERO SERVICES ===== */
.services-hero {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08) 0%, rgba(139, 0, 139, 0.08) 100%);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.guarantee-item {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.guarantee-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.5);
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.7));
}

.guarantee-item h3 {
    font-size: 1.8rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.guarantee-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-features {
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .steps-grid {
        gap: 40px;
    }
    
    .step-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .service-categories,
    .pricing-section,
    .how-it-works,
    .guarantees {
        padding: 80px 0;
    }
    
    .category-card {
        margin-bottom: 30px;
    }
    
    .category-content {
        padding: 30px 25px;
    }
    
    .category-card h3 {
        font-size: 1.9rem;
    }
    
    .category-description {
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guarantee-item {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 12px 20px;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .category-card {
        border-radius: 20px;
    }
    
    .category-content {
        padding: 25px 20px;
    }
    
    .category-card h3 {
        font-size: 1.7rem;
    }
    
    .category-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-icon {
        font-size: 2.5rem;
    }
    
    .guarantee-item h3 {
        font-size: 1.5rem;
    }
}

/* ===== ANIMATIONS SPÉCIALES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-card {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.2s);
}

.pricing-card {
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.2s);
}

.step-item {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.15s);
}

.guarantee-item {
    animation: slideInRight 0.8s ease forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

/* ===== EFFETS HOVER AVANCÉS ===== */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 20, 147, 0.05), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.pricing-card:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

/* ===== MICRO-INTERACTIONS ===== */
.step-number {
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

.guarantee-icon {
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    transform: scale(1.2) rotate(10deg);
}

/* ===== FOCUS STATES ===== */
.category-cta:focus,
.category-link:focus,
.pricing-cta:focus {
    outline: 3px solid #ff69b4;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 105, 180, 0.3);
}

/* ===== LOADING STATES ===== */
.category-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.category-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 20, 147, 0.3);
    border-top: 3px solid #ff1493;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== THÈME SOMBRE AMÉLIORÉ ===== */
.dark-theme .category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 20, 147, 0.4);
}

.dark-theme .pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 20, 147, 0.4);
}

/* ===== PRINT STYLES ===== */
@media print {
    .category-card,
    .pricing-card,
    .guarantee-item {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .category-cta,
    .category-link,
    .pricing-cta {
        display: none;
    }
    
    .category-image,
    .guarantee-icon,
    .step-number {
        display: none;
    }
}(255, 20, 147, 0.5), rgba(139, 0, 139, 0.5)),
                radial-gradient(circle at 60% 30%, #2d1b2d 0%, #1a0033 50%, #000000 100%);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 20, 147, 0.15);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.7));
}

.feature-text {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

/* ===== CATÉGORIES DE SERVICES ===== */
.service-categories {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.1);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(139, 0, 139, 0.1) 100%);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    transform-style: preserve-3d;
}

.category-card.featured {
    border: 2px solid #ff1493;
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.4);
    transform: scale(1.02);
}

.category-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.03);
    box-shadow: 0 30px 80px rgba(255, 20, 147, 0.5);
    border-color: rgba(255, 20, 147, 0.7);
}

.category-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.8) saturate(1.1);
}

.category-card:hover .category-image img {
    transform: scale(1.1) rotate(1deg);
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.category-content {
    padding: 40px;
    position: relative;
}

.category-card h3 {
    font-size: 2.2rem;
    color: #ff1493;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.category-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.category-features {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-features span {
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.2));
    color: #ff69b4;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: bold;
    border: 1px solid rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(5px);
}

.category-cta {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.category-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

.category-link {
    background: linear-gradient(45deg, #673DE6, #4f46e5);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: all 0.3s ease;
}

.category-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(103, 61, 230, 0.5);
}

/* ===== TARIFICATION ===== */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05) 0%, rgba(139, 0, 139, 0.05) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 50px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.recommended {
    border: 2px solid #ff1493;
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 20, 147, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.pricing-header h3 {
    font-size: 2rem;
    color: #ff69b4;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 4rem;
    font-weight: bold;
    color: #ff1493;
    text-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.price-unit {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.8;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.pricing-cta.secondary {
    background: linear-gradient(45deg, #673DE6, #4f46e5);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

/* ===== COMMENT ÇA MARCHE ===== */
.how-it-works {
    padding: 120px 0;
    background: rgba(0, 0, 0, 0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #ff69b4;
    opacity: 0.6;
}

.step-item:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-content h3 {
    font-size: 1.8rem;
    color: #ff69b4;
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== GARANTIES ===== */
.guarantees {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba