/* ===== COMMON.CSS - STYLES PARTAGÉS AÉRÉS =====
 * Styles communs à toutes les pages du site
 * Téléphone Rose Belgique - VERSION AÉRÉE
 */

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    background: radial-gradient(circle at 20% 80%, #120136 0%, #3b1c32 30%, #6a1b47 60%, #000000 100%);
    color: #fff;
    line-height: 1.7; /* Plus aéré */
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* Augmenté */
}

/* ===== HEADER ===== */
header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 25px 0; /* Augmenté */
    box-shadow: 0 4px 30px rgba(255, 20, 147, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 20, 147, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; /* Augmenté */
}

.logo {
    font-size: 2.4rem; /* Augmenté */
    font-weight: bold;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ffb6c1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.logo a {
    text-decoration: none;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ffb6c1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    gap: 35px; /* Augmenté */
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem; /* Augmenté */
    transition: left 0.6s ease;
}

.phone-number:hover::before {
    left: 100%;
}

.phone-number:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.6);
    background: linear-gradient(45deg, #ff1493, #dc143c, #ff1493);
}

.phone-number .number {
    font-size: 1.4rem; /* Augmenté */
    font-weight: bold;
}

.phone-number .price-mention {
    font-size: 1.1rem; /* Augmenté */
    font-weight: normal;
    opacity: 0.85;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: rgba(0, 0, 0, 0.5);
    padding: 18px 0; /* Augmenté */
    border-bottom: 1px solid rgba(255, 20, 147, 0.2);
}

.breadcrumb a {
    color: #ff69b4;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem; /* Augmenté */
}

.breadcrumb a:hover {
    color: #ff1493;
}

.breadcrumb span {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem; /* Augmenté */
}

/* ===== HERO SECTIONS - AÉRÉES ===== */
.hero, .page-hero {
    padding: 140px 0 100px 0; /* Augmenté pour plus d'air */
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh; /* Augmenté */
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.3), rgba(139, 0, 139, 0.3));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1, .page-hero h1 {
    font-size: 4.2rem; /* Augmenté */
    margin-bottom: 40px; /* Augmenté */
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ffb6c1, #ff1493);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(255, 20, 147, 0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.2; /* Plus aéré */
}

@keyframes titleGlow {
    from { text-shadow: 0 0 20px rgba(255, 20, 147, 0.8); }
    to { text-shadow: 0 0 40px rgba(255, 20, 147, 1), 0 0 60px rgba(255, 105, 180, 0.8); }
}

.subtitle {
    font-size: 1.6rem; /* Augmenté */
    margin-bottom: 60px; /* Augmenté */
    opacity: 0.9;
    font-style: italic;
    line-height: 1.5; /* Plus aéré */
}

.lead {
    font-size: 1.4rem; /* Augmenté */
    font-weight: bold;
    margin-bottom: 25px; /* Augmenté */
    color: #ff69b4;
    line-height: 1.6; /* Plus aéré */
}

/* ===== BOUTONS - AÉRÉS ===== */
.cta-button {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 25px 50px; /* Augmenté */
    border: none;
    border-radius: 50px;
    font-size: 1.3rem; /* Augmenté */
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Augmenté */
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px; /* Augmenté */
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
    background: linear-gradient(45deg, #ff1493, #dc143c, #ff1493);
}

.cta-button .number {
    font-size: 1.4rem; /* Augmenté */
    font-weight: bold;
}

.cta-button .price-mention {
    font-size: 1.1rem; /* Augmenté */
    font-weight: normal;
    opacity: 0.85;
    margin-left: 10px; /* Augmenté */
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: normal;
}

.service-link {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 22px 45px; /* Augmenté */
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Augmenté */
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px; /* Augmenté */
    font-size: 1.2rem; /* Augmenté */
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-link:hover::before {
    left: 100%;
}

.service-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.6);
    background: linear-gradient(45deg, #ff1493, #dc143c, #ff1493);
}

.service-link .number {
    font-size: 1.3rem; /* Augmenté */
    font-weight: bold;
}

.service-link .price-mention {
    font-size: 1rem; /* Augmenté */
    font-weight: normal;
    opacity: 0.85;
    margin-left: 10px; /* Augmenté */
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: normal;
}

.approach-link, .related-link {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    padding: 15px 30px; /* Augmenté */
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: bold;
    margin-top: 20px; /* Augmenté */
    font-size: 1.1rem; /* Augmenté */
}

.approach-link:hover, .related-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

/* ===== SECTIONS - AÉRÉES ===== */
section {
    padding: 100px 0; /* Augmenté pour plus d'air */
}

section h2 {
    font-size: 3.2rem; /* Augmenté */
    margin-bottom: 60px; /* Augmenté */
    text-align: center;
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3; /* Plus aéré */
}

.section-intro {
    text-align: center;
    font-size: 1.3rem; /* Augmenté */
    margin-bottom: 60px; /* Augmenté */
    opacity: 0.9;
    max-width: 900px; /* Augmenté */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8; /* Plus aéré */
}

/* ===== GRILLES - AÉRÉES ===== */
.services-grid, .approaches-list, .specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px; /* Augmenté pour plus d'air */
    margin-bottom: 80px; /* Augmenté */
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; /* Augmenté */
}

/* ===== CARTES - AÉRÉES ===== */
.service-card, .approach-item, .specialty-card {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, rgba(139, 0, 139, 0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 50px; /* Augmenté pour plus d'air */
    border-radius: 25px;
    color: white;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover, .approach-item:hover, .specialty-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 20, 147, 0.6);
}

.service-image, .approach-image {
    width: 100%;
    height: 220px; /* Augmenté */
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px; /* Augmenté */
}

.service-image img, .approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img,
.approach-item:hover .approach-image img {
    transform: scale(1.1);
}

.service-icon {
    font-size: 3rem; /* Augmenté */
    margin-bottom: 25px; /* Augmenté */
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.7));
}

.service-card h3, .approach-item h3, .specialty-card h3 {
    font-size: 2rem; /* Augmenté */
    margin-bottom: 20px; /* Augmenté */
    color: #ff69b4;
    line-height: 1.3; /* Plus aéré */
}

.service-card p, .approach-item p, .specialty-card p {
    line-height: 1.7; /* Plus aéré */
    margin-bottom: 20px; /* Augmenté */
}

/* ===== SPÉCIALITÉS ===== */
.specialty-image {
    width: 100%;
    height: 200px; /* Augmenté */
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px; /* Augmenté */
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-features {
    list-style: none;
    margin-top: 20px; /* Augmenté */
}

.specialty-features li {
    padding: 8px 0; /* Augmenté */
    padding-left: 25px; /* Augmenté */
    position: relative;
    line-height: 1.6; /* Plus aéré */
}

.specialty-features li::before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #ff69b4;
    font-size: 1.1rem; /* Augmenté */
}

/* ===== CONTENU SPÉCIALISÉ ===== */
.service-intro, .approach-method {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0; /* Augmenté */
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px; /* Augmenté */
    align-items: center;
}

.intro-image {
    border-radius: 20px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; /* Augmenté */
}

.method-item {
    text-align: center;
    padding: 40px; /* Augmenté */
}

.method-icon {
    font-size: 3.5rem; /* Augmenté */
    margin-bottom: 25px; /* Augmenté */
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.7));
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px; /* Augmenté */
}

.faq-item {
    background: rgba(255, 20, 147, 0.1);
    padding: 30px; /* Augmenté */
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.faq-item h3 {
    color: #ff69b4;
    margin-bottom: 18px; /* Augmenté */
    font-size: 1.3rem; /* Augmenté */
    line-height: 1.4; /* Plus aéré */
}

.faq-item p {
    line-height: 1.7; /* Plus aéré */
}

/* ===== CONTENU SEO ===== */
.seo-text, .seo-content-fetish {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0; /* Augmenté */
}

.seo-content, .seo-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px; /* Augmenté */
    align-items: start;
}

.seo-text-column h3, .seo-text h3 {
    color: #ff69b4;
    margin: 40px 0 20px 0; /* Augmenté */
    font-size: 1.6rem; /* Augmenté */
    line-height: 1.4; /* Plus aéré */
}

.seo-text-column p, .seo-text p {
    line-height: 1.8; /* Plus aéré */
    margin-bottom: 20px; /* Augmenté */
}

.seo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; /* Augmenté */
    margin-top: 60px; /* Augmenté */
}

.feature {
    background: rgba(255, 20, 147, 0.1);
    padding: 35px; /* Augmenté */
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    text-align: center;
}

.feature h4 {
    color: #ff69b4;
    margin-bottom: 20px; /* Augmenté */
    font-size: 1.3rem; /* Augmenté */
    line-height: 1.4; /* Plus aéré */
}

.feature p {
    line-height: 1.7; /* Plus aéré */
}

.seo-image {
    border-radius: 20px;
    overflow: hidden;
}

.seo-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== CTA FINAL ===== */
.cta-final {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2) 0%, rgba(139, 0, 139, 0.2) 100%);
    text-align: center;
    padding: 100px 0; /* Augmenté */
}

.cta-content h2 {
    font-size: 2.8rem; /* Augmenté */
    margin-bottom: 30px; /* Augmenté */
    line-height: 1.3; /* Plus aéré */
}

.cta-content p {
    font-size: 1.2rem; /* Augmenté */
    line-height: 1.7; /* Plus aéré */
    margin-bottom: 20px; /* Augmenté */
}

.cta-buttons {
    margin: 40px 0; /* Augmenté */
}

.cta-info {
    margin-top: 40px; /* Augmenté */
    font-size: 1.2rem; /* Augmenté */
    opacity: 0.9;
    line-height: 1.6; /* Plus aéré */
}

/* ===== INFORMATIONS LÉGALES ===== */
.legal-info {
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 100px 0; /* Augmenté */
}

.legal-content {
    max-width: 1000px; /* Augmenté */
    margin: 0 auto;
    background: rgba(255, 20, 147, 0.1);
    backdrop-filter: blur(15px);
    padding: 60px; /* Augmenté */
    border-radius: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
}

.legal-content h2 {
    margin-bottom: 40px; /* Augmenté */
}

.legal-content p {
    line-height: 1.8; /* Plus aéré */
    margin-bottom: 25px; /* Augmenté */
}

.warning {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 30px; /* Augmenté */
    border-radius: 15px;
    margin: 50px 0; /* Augmenté */
    font-weight: bold;
    font-size: 1.3rem; /* Augmenté */
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    line-height: 1.5; /* Plus aéré */
}

.legal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Augmenté */
    margin-top: 50px; /* Augmenté */
    text-align: left;
}

.legal-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px; /* Augmenté */
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.2);
}

.legal-item h3 {
    color: #ff69b4;
    margin-bottom: 15px; /* Augmenté */
    font-size: 1.2rem; /* Augmenté */
    line-height: 1.4; /* Plus aéré */
}

.legal-item p {
    line-height: 1.7; /* Plus aéré */
}

/* ===== CLASSE UTILITAIRE POUR AFFICHAGE NUMÉRO ===== */
.phone-display {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Augmenté */
}

.phone-display .number {
    font-weight: bold;
    font-size: 1.1rem; /* Augmenté */
}

.phone-display .price-mention {
    font-size: 0.9rem; /* Augmenté */
    opacity: 0.85;
    color: #ff69b4;
    font-weight: normal;
}

.legal-price-info {
    font-size: 1rem; /* Augmenté */
    color: #ff69b4;
    text-align: center;
    margin: 25px 0; /* Augmenté */
    padding: 20px; /* Augmenté */
    background: rgba(255, 20, 147, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    line-height: 1.7; /* Plus aéré */
}

/* ===== FOOTER - AÉRÉ ===== */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 80px 0 30px; /* Augmenté */
    border-top: 1px solid rgba(255, 20, 147, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px; /* Augmenté */
    margin-bottom: 50px; /* Augmenté */
}

.footer-main {
    text-align: center;
}

.footer-phone {
    font-size: 2.8rem; /* Augmenté */
    font-weight: bold;
    margin-bottom: 20px; /* Augmenté */
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Augmenté */
    line-height: 1.2; /* Plus aéré */
}

.footer-phone .number {
    font-size: 2.8rem; /* Augmenté */
}

.footer-phone .price-mention {
    font-size: 2rem; /* Augmenté */
    opacity: 0.8;
    color: #ff69b4;
    -webkit-text-fill-color: #ff69b4;
    font-weight: normal;
}

.price-info {
    font-size: 1.4rem; /* Augmenté */
    opacity: 0.8;
    margin-bottom: 25px; /* Augmenté */
    line-height: 1.5; /* Plus aéré */
}

.footer-main p {
    font-size: 1.1rem; /* Augmenté */
    line-height: 1.6; /* Plus aéré */
}

.footer-links h4, .footer-services h4, .footer-other h4 {
    color: #ff69b4;
    margin-bottom: 25px; /* Augmenté */
    font-size: 1.3rem; /* Augmenté */
    line-height: 1.4; /* Plus aéré */
}

.footer-links ul, .footer-services ul, .footer-other ul {
    list-style: none;
}

.footer-links li, .footer-services li, .footer-other li {
    margin-bottom: 12px; /* Augmenté */
}

.footer-links a, .footer-services a, .footer-other a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem; /* Augmenté */
    line-height: 1.5; /* Plus aéré */
}

.footer-links a:hover, .footer-services a:hover, .footer-other a:hover {
    color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px; /* Augmenté */
    border-top: 1px solid rgba(255, 20, 147, 0.2);
    opacity: 0.7;
}

.footer-bottom p {
    font-size: 1rem; /* Augmenté */
    line-height: 1.6; /* Plus aéré */
}

/* ===== RESPONSIVE - AÉRÉ ===== */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .legal-content, .service-card, .approach-item, .specialty-card {
        padding: 35px 25px;
    }
    
    section {
        padding: 70px 0;
    }
    
    section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .section-intro {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero h1, .page-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .phone-number .number {
        font-size: 1.1rem;
    }
    
    .phone-number .price-mention {
        font-size: 0.9rem;
    }
    
    .service-link, .cta-button {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .service-link .number, .cta-button .number {
        font-size: 1.1rem;
    }
    
    .service-link .price-mention, .cta-button .price-mention {
        font-size: 0.8rem;
    }
    
    .footer-phone .number {
        font-size: 2rem;
    }
    
    .footer-phone .price-mention {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero, .page-hero {
        padding: 100px 0 70px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }
    
    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .service-card, .approach-item, .specialty-card {
        padding: 30px 20px;
    }
    
    .legal-content {
        padding: 40px 25px;
    }
    
    .cta-final {
        padding: 70px 0;
    }
    
    .legal-info {
        padding: 70px 0;
    }
    
    footer {
        padding: 60px 0 25px;
    }
}

/* ===== EFFETS SPÉCIAUX ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatUp {
    to {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.floating-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(255, 20, 147, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: floatUp 8s linear forwards;
}

/* ===== ANIMATIONS D'ENTRÉE ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ÉTATS FOCUS POUR L'ACCESSIBILITÉ ===== */
a:focus, button:focus {
    outline: 2px solid #ff69b4;
    outline-offset: 2px;
}

/* ===== PRÉFÉRENCES UTILISATEUR ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    body {
        background: white;
        color: black;
    }
    
    header, footer, .cta-button, .phone-number {
        display: none;
    }
    
    .hero-overlay, .hero-background {
        display: none;
    }
}

/* ===== STYLES POUR IMAGES MANQUANTES ===== */
img {
    max-width: 100%;
    height: auto;
    background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), rgba(139, 0, 139, 0.1));
    border-radius: 10px;
}

img::before {
    content: "🖼️ Image";
    display: block;
    padding: 40px;
    text-align: center;
    color: #ff69b4;
    font-size: 1.2rem;
    background: rgba(255, 20, 147, 0.1);
}

/* ===== STYLES SPÉCIAUX POUR LE CONTENU ADULTE ===== */
.adult-warning {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    padding: 25px;
    text-align: center;
    font-weight: bold;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 68, 68, 0.3);
    font-size: 1.1rem;
    line-height: 1.6;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.verification-modal {
    background: linear-gradient(135deg, #1a1a1a, #2d1b2d);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #ff1493;
    max-width: 550px;
    margin: 25px;
}

.verification-modal h2 {
    color: #ff1493;
    margin-bottom: 25px;
    font-size: 2rem;
    line-height: 1.3;
}

.verification-modal p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.verification-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.verification-buttons button {
    padding: 18px 35px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-yes {
    background: linear-gradient(45deg, #00aa00, #008800);
    color: white;
}

.btn-no {
    background: linear-gradient(45deg, #aa0000, #880000);
    color: white;
}

.btn-yes:hover, .btn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== MICRO-INTERACTIONS AVANCÉES ===== */
.service-card, .approach-item, .specialty-card {
    position: relative;
    overflow: hidden;
}

.service-card::after, .approach-item::after, .specialty-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after, .approach-item:hover::after, .specialty-card:hover::after {
    opacity: 1;
}

/* ===== AMÉLIORATIONS TYPOGRAPHIQUES ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== OPTIMISATIONS PERFORMANCE ===== */
.service-card, .approach-item, .specialty-card, .testimonial {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* ===== SMOOTH SCROLL AMÉLIORÉ ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Compensation pour header fixe */
}

/* ===== ANIMATIONS DE CHARGEMENT ===== */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, rgba(255, 20, 147, 0.1) 25%, rgba(255, 105, 180, 0.2) 50%, rgba(255, 20, 147, 0.1) 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
    height: 20px;
    margin: 10px 0;
}

/* ===== FOCUS AVANCÉ POUR ACCESSIBILITÉ ===== */
.phone-number:focus, .service-link:focus, .cta-button:focus, .approach-link:focus {
    outline: 3px solid #ff69b4;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 105, 180, 0.3);
}

/* ===== THEME VARIABLES (POUR FUTURE EXTENSION) ===== */
:root {
    --primary-pink: #ff1493;
    --secondary-pink: #ff69b4;
    --light-pink: #ffb6c1;
    --dark-purple: #8b008b;
    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 100px;
    --border-radius: 25px;
    --transition: all 0.3s ease;
}

/* ===== UTILITAIRES POUR ESPACEMENT ===== */
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.p-xs { padding: var(--spacing-xs); }
.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); } 25px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .intro-content, .seo-content, .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .services-grid, .approaches-list, .specialties-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1, .page-hero h1 {
        font-size: 3rem;
        margin-bottom: 30px;
    }
    
    .subtitle {
        font-size: 1.3rem;
        margin-bottom: 40px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 15px;
    }
    
    .main-nav a {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
    
    .phone-number {
        font-size: 1.2rem;
        padding: 15px 30px;
        flex-direction: row;
        gap: 8px;
        white-space: nowrap;
        align-items: center;
    }
    
    .phone-number .number {
        font-size: 1.2rem;
    }
    
    .phone-number .price-mention {
        font-size: 1rem;
        margin-left: 0;
    }
    
    .service-link, .cta-button {
        padding: 20px 35px;
        font-size: 1.1rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .service-link .number, .cta-button .number {
        font-size: 1.2rem;
    }
    
    .service-link .price-mention, .cta-button .price-mention {
        font-size: 0.9rem;
        margin-left: 0;
    }
    
    .services-grid, .approaches-list, .specialties-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .method-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-details, .seo-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-phone {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-phone .number {
        font-size: 2.2rem;
    }
    
    .footer-phone .price-mention {
        font-size: 1.7rem;
    }
    
    .phone-display {
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: : all 0.3s ease;
    padding: 12px 18px; /* Augmenté */
    border-radius: 25px;
}

.main-nav a:hover {
    background: rgba(255, 20, 147, 0.2);
    color: #ff69b4;
    transform: translateY(-2px);
}

/* ===== STYLES POUR NUMÉROS AVEC MENTION TARIFAIRE ===== */
.phone-number {
    background: linear-gradient(45deg, #ff1493, #dc143c);
    color: white;
    padding: 20px 40px; /* Augmenté */
    border-radius: 50px;
    font-size: 1.4rem; /* Augmenté */
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important; /* Augmenté */
    white-space: nowrap !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.phone-number-content {
    display: flex;
    align-items: center;
    gap: 10px; /* Augmenté */
    justify-content: center;
    white-space: nowrap;
}

.phone-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition