/* ===================================
   PILOTIMMO – SERVICE PAGE STYLES
   Version: 1.0
   =================================== */

/* Hero Section */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 50%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 180px var(--spacing-lg) 140px;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
    z-index: 0;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease both;
}

.services-hero h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Section – reuse existing classes, optionally refine */
.services-grid .service-card {
    margin-top: var(--spacing-lg);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.trust-indicator {
    flex: 1 1 250px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.trust-indicator:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(245, 158, 11, 0.15));
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: var(--spacing-xs);
}

.trust-label {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
}

/* Section Titles (refinement) */
.section-title {
    font-size: var(--font-size-3xl);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text);
    text-align: center;
    opacity: 0.85;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

/* ==========================================================================
   CTA SECTION - Spécifique Services
   ========================================================================== */
.cta-section {
    background: var(--white);   /* Fond blanc */
    text-align: center;
    padding: 80px var(--spacing-lg);
}

/* Forcer la couleur du texte dans la CTA */
.cta-section h2,
.cta-section p {
    color: var(--text) !important;
}

/* Bouton bleu pour contraste */
.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--secondary), #2563eb);
    color: var(--white);
}

