/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb; /* Bleu foncé */
    --secondary-color: #7c3aed; /* Bleu plus clair */
    --accent-color: #1f2937; /* Gris foncé */
    --text-color: #1f2937; /* Gris texte */
    --light-gray: #f3f4f6; /* Gris clair */
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header et Navigation */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-item-senior {
    display: none !important; /* Bouton Site Senior caché pour le moment */
}

.senior-link {
    background: linear-gradient(135deg, #f59e0b, #e58e00);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.senior-link:hover {
    background: linear-gradient(135deg, #e58e00, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Hero */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(26, 74, 107, 0.8), rgba(26, 74, 107, 0.8)), 
                url('../../images/Reparation-Smartphone.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    width: 150px;
    padding: 10px 16px;
    font-size: 0.9rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-sizing: border-box;
}

/* Style spécifique pour le bouton "Mes services" dans la section hero */
.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin-top: 3rem;
}

.hero-image i {
    font-size: 8rem;
    opacity: 0.8;
}

/* Page Hero pour les pages internes */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(rgba(26, 74, 107, 0.8), rgba(26, 74, 107, 0.8)), 
                url('../../images/4498903.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Page Hero spécifique pour Services */
.page-hero.services-hero {
    background: linear-gradient(rgba(26, 74, 107, 0.8), rgba(26, 74, 107, 0.8)), 
                url('../../images/1327.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.page-hero-description {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Sections générales */
section {
    padding: 80px 0;
}

section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Services Preview */
.services-preview {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Services Overview pour la page services */
.services-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-overview .services-grid {
    margin-top: 2rem;
}

.services-overview .service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-overview .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s ease;
}

.services-overview .service-card:hover::before {
    left: 100%;
}

.services-overview .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.services-overview .service-icon {
    margin-bottom: 1.5rem;
}

.services-overview .service-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.services-overview .service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.services-overview .service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.services-overview .service-card:hover h4 {
    color: var(--secondary-color);
}

.services-overview .service-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Services CTA Section */
.services-cta-section {
    background: linear-gradient(rgba(26, 74, 107, 0.8), rgba(26, 74, 107, 0.8)), 
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.services-cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.services-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.services-cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Style spécifique pour le bouton "Appeler maintenant" dans services */
.services-cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.services-cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section À propos */
.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-header .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.about-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.about-image {
    flex-shrink: 0;
    line-height: 0;
}

.about-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    display: block;
}

.about-text {
    flex: 1;
    min-width: 0;
    max-width: 520px;
}

.about-presentation-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-align: center;
}

.about-presentation-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.about-presentation-body {
    text-align: center;
}

.about-presentation-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #475569;
}

.about-presentation-body p:last-child {
    margin-bottom: 0;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    color: #475569;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.08);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.15);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .about-presentation-title,
    .about-presentation-subtitle {
        text-align: center;
    }
    .about-presentation-body {
        text-align: center;
    }
    .about-text p,
    .about-presentation-body p {
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        width: auto;
        height: auto;
        max-height: 450px;
        object-fit: contain;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }
}

/* Services détaillés */
.services-detailed {
    padding: 4rem 0;
}

.service-detailed {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-detailed-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-detailed-content.reverse {
    flex-direction: row-reverse;
}

.service-detailed-text {
    flex: 1;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.service-detailed h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

.service-features h3,
.service-pricing h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-features ul,
.service-pricing ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li,
.service-pricing li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.service-features i {
    color: #28a745;
    font-size: 1.1rem;
}

.service-pricing strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive pour services détaillés */
@media (max-width: 768px) {
    .service-detailed-content,
    .service-detailed-content.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .service-icon-large {
        margin: 0 auto 1.5rem auto;
    }
    
    .service-detailed {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Section Produits */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Section Avis Clients */
.reviews {
    background-color: var(--light-gray);
}

.google-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-score {
    text-align: center;
}

.rating-score .score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-score .total {
    font-size: 1.5rem;
    color: var(--text-color);
}

.rating-count {
    text-align: center;
    color: var(--text-color);
}

.rating-count .count {
    font-weight: 600;
    color: var(--primary-color);
}

.google-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.google-logo {
    height: 30px;
    width: auto;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--text-color);
    font-weight: 500;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar i {
    font-size: 3rem;
    color: var(--primary-color);
}

.reviewer-name {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.8;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
}

.review-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.review-service i {
    font-size: 1.2rem;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reviews-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.product-category:hover {
    transform: translateY(-5px);
}

.product-category i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Section Contact */
.contact {
    background: #f8f9fa;
    padding: 4rem 0;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Styles pour les cartes de contact */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "form coordonnees"
        "garanties social";
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-form {
    grid-area: form;
}

.contact-card {
    grid-area: coordonnees;
    align-self: start;
}

.contact-guarantees {
    grid-area: garanties;
    align-self: start;
}

.contact-social {
    grid-area: social;
    align-self: start;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-card h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-card h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Éléments de contact individuels */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.05);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-color);
    color: white;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-details h5 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-value {
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-note {
    color: #718096;
    font-size: 0.9rem;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.contact-note i {
    font-size: 0.8rem;
}

/* Réseaux sociaux */
.contact-social {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-social h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-social h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.social-link:hover {
    background: rgba(102, 126, 234, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link.facebook:hover {
    color: #1877f2;
    border-color: #1877f2;
}

.social-link.linkedin:hover {
    color: #0077b5;
    border-color: #0077b5;
}

.social-link.instagram:hover {
    color: #e4405f;
    border-color: #e4405f;
}

.social-link.whatsapp:hover {
    color: #25d366;
    border-color: #25d366;
}

/* Garanties */
.contact-guarantees {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-guarantees h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-guarantees h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(102, 126, 234, 0.05);
}

.guarantee-item i {
    color: #48bb78;
    font-size: 1.1rem;
}

.guarantee-item span {
    color: #4a5568;
    font-weight: 500;
}

/* Formulaire de contact */
.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    align-self: start;
}

.contact-form h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-form h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.form-notes {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.form-note i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Carte Google Maps */
.map-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.map-container h4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.map-container h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.map-container p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.map {
    border-radius: 8px;
    overflow: hidden;
}

.map iframe {
    border-radius: 8px;
}

/* Section Avis dans Contact */
.reviews-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.reviews-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.reviews-section .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Footer simplifié */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 2rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Rend le logo blanc */
}

.footer-logo h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo i {
    color: #60a5fa;
    font-size: 1.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    padding: 0.3rem 0;
}

.legal-link:hover {
    color: #60a5fa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-legal {
        gap: 1rem;
    }
}

/* Formulaire de contact ultra-moderne */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 2,5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: formGlow 4s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.form-icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    animation: formIconGlow 2s ease-in-out infinite alternate;
}

@keyframes formIconGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.form-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.contact-form h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.form-subtitle {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
}

/* Structure du formulaire ultra-moderne */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.form-group label i {
    color: #667eea;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #2d3748;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
    transform: translateY(-2px);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.input-wrapper input:focus ~ .input-focus-border,
.input-wrapper select:focus ~ .input-focus-border,
.input-wrapper textarea:focus ~ .input-focus-border {
    width: 100%;
}

/* Validation des champs */
.input-validation {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.input-wrapper input:valid ~ .input-validation,
.input-wrapper select:valid ~ .input-validation,
.input-wrapper textarea:valid ~ .input-validation {
    opacity: 1;
}

/* Compteur de caractères ultra-moderne */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #718096;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.current-count {
    color: #667eea;
    font-weight: 600;
}

.counter-bar {
    width: 100px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-left: 1rem;
}

.counter-fill {
    height: 100%;
    background: linear-gradient(90deg, #48bb78, #667eea);
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* Actions du formulaire ultra-modernes */
.form-actions {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.btn-submit::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;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
}

.btn-content,
.btn-loading,
.btn-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-loading,
.btn-success {
    display: none;
}

.btn-submit.loading .btn-content {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: flex;
}

.btn-submit.success .btn-content,
.btn-submit.success .btn-loading {
    display: none;
}

.btn-submit.success .btn-success {
    display: flex;
}

/* Notes du formulaire */
.form-notes {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.9rem;
}

.form-note i {
    color: #667eea;
    font-size: 0.8rem;
}

/* Section inférieure ultra-moderne */
.contact-bottom {
    margin-top: 4rem;
}

.map-container {
    margin-bottom: 3rem;
}

.map-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.map-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.map-icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    animation: mapIconGlow 2s ease-in-out infinite alternate;
}

@keyframes mapIconGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.map-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.map-header h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.map-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Informations de zone */
.zone-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.zone-item i {
    color: #ffd700;
}

.map {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.map:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map:hover .map-overlay {
    opacity: 1;
}

.map-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

/* Contrôles de la carte */
.map-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Statistiques de contact ultra-modernes */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
    position: relative;
}

.stat-icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(15px);
    animation: statIconGlow 2s ease-in-out infinite alternate;
}

@keyframes statIconGlow {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
    font-size: 1rem;
}

/* Barre de progression des statistiques */
.stat-progress {
    margin-top: 1rem;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease;
}

/* Responsive Design ultra-moderne */
@media (max-width: 1024px) {
    .contact-content {
        gap: 2rem;
    }
    
    .contact-card,
    .contact-form-container {
        padding: 2rem;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "form"
            "coordonnees"
            "garanties"
            "social";
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .header-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .zone-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .map-controls {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .contact .section-header h2 {
        font-size: 2rem;
    }
    
    .contact .section-header p {
        font-size: 1rem;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-action {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.service-detail,
.product-category {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Animations simples pour la section contact */
.contact-item:hover {
    background: rgba(102, 126, 234, 0.05);
}

.contact-card:hover,
.contact-social:hover,
.contact-guarantees:hover,
.contact-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
    transform: translateY(-2px);
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.3rem;
        padding: 0.4rem;
    }
    
    .nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-link span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header {
        border-radius: 0 0 15px 15px;
    }
    
    .nav {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 90%;
        justify-content: center;
        padding: 1.2rem;
        border-radius: 15px;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        margin: 0.2rem 0;
    }
    
    .nav-link:hover {
        transform: translateX(10px);
        background: rgba(37, 99, 235, 0.08);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 58, 237, 0.1));
        transform: translateX(15px);
    }
    
    .nav-contact {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-link:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.8rem 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 0.9rem;
        width: 95%;
    }
    
    .nav-toggle {
        padding: 0.6rem;
    }
    
    .bar {
        width: 24px;
        height: 2.5px;
    }
}





/* Responsive Design amélioré */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.3rem;
        padding: 0.4rem;
    }
    
    .nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav-link span {
        font-size: 0.9rem;
    }
    
    .nav-phone {
        padding: 0.7rem 1.3rem;
    }
}

@media (max-width: 768px) {
    .header {
        border-radius: 0 0 15px 15px;
    }
    
    .nav {
        padding: 1rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 90%;
        justify-content: center;
        padding: 1.2rem;
        border-radius: 15px;
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        margin: 0.2rem 0;
    }
    
    .nav-link:hover {
        transform: translateX(10px);
        background: rgba(37, 99, 235, 0.08);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 58, 237, 0.1));
        transform: translateX(15px);
    }
    
    .nav-contact {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-link:hover {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 0.8rem 0;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 0.9rem;
        width: 95%;
    }
    
    .nav-toggle {
        padding: 0.6rem;
    }
    
    .bar {
        width: 24px;
        height: 2.5px;
    }
}

/* Styles responsifs pour les pages internes */
@media (max-width: 1024px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .page-hero-description {
        font-size: 1.2rem;
    }
    
    .services-overview .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .services-overview .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-overview .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero-description {
        font-size: 1rem;
    }
    
    .services-overview .service-card {
        padding: 1.5rem 1rem;
    }
    
    .services-overview .service-icon i {
        font-size: 3rem;
    }
    
    .services-overview .service-card h4 {
        font-size: 1.2rem;
    }
}

/* Page Conditions générales (CGV) */
.legal-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-content-inner {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-intro {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: 1rem;
}

.legal-intro a {
    color: var(--primary-color);
}

.legal-article {
    margin-bottom: 2.5rem;
}

.legal-article h2 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.legal-article p,
.legal-article ul {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.legal-article ul {
    padding-left: 1.5rem;
}

.legal-article li {
    margin-bottom: 0.5rem;
}

.legal-article a {
    color: var(--primary-color);
}

.legal-footer-info {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #64748b;
}

.legal-footer-info strong {
    color: #334155;
}

@media (max-width: 768px) {
    .legal-content-inner {
        padding: 2rem 1.5rem;
    }
}

/* Section Contact Preview */
.contact-preview {
    background: linear-gradient(rgba(26, 74, 107, 0.8), rgba(26, 74, 107, 0.8)), 
                url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=1920&h=1080&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
}

.contact-preview-content {
    text-align: center;
}

.contact-preview-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-preview-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-preview-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-preview-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-preview-actions .btn-primary {
    background: white;
    color: var(--primary-color);
}

.contact-preview-actions .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-preview-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-preview-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ========== Page d'accueil : mise en page resserrée et professionnelle ========== */
.page-accueil .hero.hero-accueil {
    padding: 90px 0 50px;
}
.page-accueil .hero-content h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}
.page-accueil .hero-content p {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}
.page-accueil .hero-actions {
    margin-top: 0.25rem;
}
.page-accueil section {
    padding: 48px 0;
}
.page-accueil section h3 {
    margin-bottom: 1.25rem;
}
.page-accueil .section-subtitle {
    margin-bottom: 1.75rem;
    font-size: 1.1rem;
}
.page-accueil .about {
    padding: 2.5rem 0;
}
.page-accueil .about-header {
    margin-bottom: 1.5rem;
}
.page-accueil .about-card {
    padding: 2rem 2.5rem;
}
.page-accueil .about-text p {
    margin-bottom: 1rem;
}
.page-accueil .about-features {
    margin-top: 1.5rem;
    gap: 1rem;
}
.page-accueil .about-feature {
    padding: 1rem 1.25rem;
}
.page-accueil #valeurs.services-overview {
    padding: 2.5rem 0;
}
.page-accueil #valeurs .services-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.25rem;
    gap: 1.25rem;
}
.page-accueil .services-overview .services-grid {
    margin-top: 1.25rem;
    gap: 1.25rem;
}
.page-accueil .services-overview .service-card {
    padding: 1.5rem 1.25rem;
}
.page-accueil .service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.page-accueil .service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}
.page-accueil #contact-preview.contact-preview {
    padding: 2.5rem 0;
}
.page-accueil .contact-preview-text h3 {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}
.page-accueil .contact-preview-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
    .page-accueil .hero.hero-accueil {
        padding: 85px 0 40px;
    }
    .page-accueil .hero-content h2 {
        font-size: 1.75rem;
    }
    .page-accueil section {
        padding: 36px 0;
    }
    .page-accueil .about {
        padding: 2rem 0;
    }
    .page-accueil .about-card {
        padding: 1.5rem 1rem;
    }
    .page-accueil #valeurs .services-grid {
        grid-template-columns: 1fr;
    }
    .page-accueil #contact-preview.contact-preview {
        padding: 2rem 0;
    }
}
