/* ========================================
   RAKOTO CONSULTING GROUP - VERSION PRO
   ======================================== */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #f8f5f2 100%);
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* ========== NAVIGATION ========== */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4a574;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    color: #c8935f;
    transform: translateX(-5px);
}

/* ========== HERO PROFESSIONNEL ========== */
.hero-simple {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
}

.hero-simple__badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef8f1 0%, #fdf3e7 100%);
    color: #d4a574;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #d4a574;
}

.hero-simple__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-simple__subtitle {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: 600;
}

/* ========== CONTENU ========== */
.content-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 5rem;
    border: 2px solid rgba(212, 165, 116, 0.1);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.intro-text strong {
    color: #d4a574;
    font-weight: 700;
}

/* ========== SERVICES AVEC ICONS SVG ========== */
.services-summary {
    margin: 5rem 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-icon-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 165, 116, 0.1);
}

.service-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
    border-color: #d4a574;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fef8f1 0%, #fdf3e7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #d4a574;
    border: 3px solid #d4a574;
    transition: all 0.3s ease;
}

.service-icon-item:hover .service-icon-circle {
    background: linear-gradient(135deg, #d4a574 0%, #c8935f 100%);
    color: white;
    transform: scale(1.1);
}

.service-icon-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-icon-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ========== GALERIE AVEC OVERLAY ========== */
.content-section {
    margin: 5rem 0;
}

.photo-gallery-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.photo-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.4s ease;
}

/*
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 1.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
*/
.photo-item:hover img {
    transform: scale(1.1);
}
/*
.photo-item:hover .photo-overlay {
    transform: translateY(0);
}
*/
/* ========== CTA REDIRECT AMÉLIORÉ ========== */
.cta-redirect {
    text-align: center;
    background: linear-gradient(135deg, #d4a574 0%, #c8935f 100%);
    padding: 5rem 3rem;
    border-radius: 30px;
    color: white;
    margin: 5rem 0;
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.4);
    position: relative;
}

.cta-redirect__badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-redirect__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-redirect__text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.btn-website {
    display: inline-block;
    background: white;
    color: #d4a574;
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.btn-website:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.cta-redirect__secondary {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.btn-social-link:hover {
    background: rgba(255,255,255,0.25);
    border-color: white;
    transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 165, 116, 0.15);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-simple__title {
        font-size: 2.25rem;
    }
    
    .services-icons {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery-simple {
        grid-template-columns: 1fr;
    }
    
    .cta-redirect {
        padding: 4rem 2rem;
    }
    
    .cta-redirect__title {
        font-size: 2rem;
    }
    
    .cta-redirect__secondary {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}