/* EPPC Services 44 - Styles personnalisés */
:root {
    --eppc-blue: #1e73be;
    --eppc-orange: #ff6b35;
    --eppc-dark: #2c3e50;
    --eppc-light: #ecf0f1;
}

/* Hero Section avec gradient */
.eppc-hero {
    background: linear-gradient(135deg, var(--eppc-blue) 0%, #3498db 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eppc-hero h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.eppc-hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.eppc-cta {
    display: inline-block;
    background: var(--eppc-orange) !important;
    color: white !important;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
}

.eppc-cta:hover {
    background: #e55a2b !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    color: white !important;
}

/* Cards Services avec hover effects */
.eppc-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.eppc-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.eppc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--eppc-blue);
}

.eppc-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--eppc-blue), var(--eppc-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2em;
}

.eppc-service-card h3 {
    color: var(--eppc-dark);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.eppc-service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Bouton WhatsApp flottant */
.eppc-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.eppc-whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Témoignages */
.eppc-testimonials {
    padding: 80px 0;
    background: white;
}

.eppc-testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--eppc-blue);
}

.eppc-testimonial-content {
    font-style: italic;
    margin-bottom: 15px;
    color: #495057;
    font-size: 1.1em;
}

.eppc-testimonial-author {
    font-weight: 600;
    color: var(--eppc-dark);
}

/* Google Maps responsive */
.eppc-map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 30px;
}

.eppc-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .eppc-hero h1 {
        font-size: 2.5em;
    }
    
    .eppc-hero p {
        font-size: 1.1em;
    }
    
    .eppc-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
}