/* ========================================
   AMÉLIORATIONS & ANIMATIONS AVANCÉES
   Navigation + Professionnalisme + Dynamisme
   ======================================== */

/* ========================================
   SCROLL PADDING POUR MENU FIXE
   ======================================== */
html {
    scroll-padding-top: 90px;
}

/* ========================================
   MENU DE NAVIGATION FIXE
   ======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;\n    background: rgba(251, 244, 238, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    background: rgba(251, 244, 238, 0.98);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #3D2E24;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-placeholder i {
    font-size: 1.8rem;
    color: #D7B089;
}

.logo-placeholder span {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: #4A3C31;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D7B089;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #D7B089;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Bouton Navigation */
.btn-nav {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.95rem !important;
    white-space: nowrap;
}

/* Menu Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #3D2E24;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO AMÉLIORATIONS
   ======================================== */
.hero-section {
    padding-top: calc(5rem + 80px) !important;
    overflow: hidden;
}

/* Effet de particules/bulles en arrière-plan */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215, 176, 137, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(207, 174, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

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

/* Effet brillant sur la photo placeholder */
.hero-photo,
.histoire-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(215, 176, 137, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hero-photo:hover,
.histoire-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(215, 176, 137, 0.5);
}

.hero-photo-placeholder,
.histoire-photo-placeholder {
    box-shadow: 0 20px 60px rgba(215, 176, 137, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.hero-photo-placeholder::before,
.histoire-photo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* ========================================
   ANIMATIONS AVANCÉES DES CARTES
   ======================================== */
.problem-card,
.benefice-card,
.valeur-card,
.trust-card,
.offre-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.problem-card:hover,
.benefice-card:hover,
.valeur-card:hover,
.trust-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(215, 176, 137, 0.3) !important;
}

.offre-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    box-shadow: 0 30px 60px rgba(215, 176, 137, 0.4) !important;
}

/* Animation des icônes au hover */
.problem-icon,
.benefice-icon,
.valeur-icon,
.trust-icon,
.offre-icon {
    transition: all 0.4s ease !important;
}

.problem-card:hover .problem-icon,
.benefice-card:hover .benefice-icon,
.valeur-card:hover .valeur-icon,
.trust-card:hover .trust-icon,
.offre-card:hover .offre-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ========================================
   SECTION QUI SUIS-JE AMÉLIORÉE
   ======================================== */
.histoire-section {
    position: relative;
    overflow: hidden;
}

.histoire-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(215, 176, 137, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s infinite ease-in-out;
}

.histoire-strengths {
    margin-top: 2rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.strength-item {
    background: #FAF7F4;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.strength-item:hover {
    border-color: #D7B089;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(215, 176, 137, 0.2);
}

.strength-item i {
    font-size: 2rem;
    color: #D7B089;
    margin-bottom: 0.5rem;
    display: block;
}

.strength-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.strength-item strong {
    display: block;
    color: #3D2E24;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

/* ========================================
   AVIS CLIENTS MANUELS
   ======================================== */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(215, 176, 137, 0.25);
    border-color: #D7B089;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D7B089, #CFAE88);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: #3D2E24;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #4A3C31;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-date {
    color: #D7B089;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ========================================
   WIDGET AVIS GOOGLE (ANCIEN - CONSERVÉ)
   ======================================== */
.google-reviews-widget {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Responsive widget */
@media (max-width: 768px) {
    .google-reviews-widget {
        padding: 1rem;
        margin: 0 auto 2rem;
    }
}

/* ========================================
   PLACEHOLDER AVIS GOOGLE (ANCIEN)
   ======================================== */
.google-reviews-placeholder {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #FBF4EE 0%, #FFFFFF 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 2px dashed #D7B089;
}

.reviews-placeholder-content i {
    font-size: 3rem;
    color: #D7B089;
    margin-bottom: 1rem;
}

.reviews-placeholder-content h3 {
    color: #3D2E24;
    margin-bottom: 0.5rem;
}

.reviews-placeholder-content p {
    color: #4A3C31;
    opacity: 0.7;
}

/* ========================================
   FOOTER SIMPLIFIÉ
   ======================================== */
.footer-info {
    display: flex;
    justify-content: center;
}

.footer-contact {
    text-align: center;
}

/* ========================================
   ANIMATIONS SUPPLÉMENTAIRES
   ======================================== */

/* Pulsation douce sur les badges */
.offre-badge {
    animation: gentle-pulse 2s infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
    }
}

.offre-badge-premium {
    animation: premium-pulse 2s infinite;
}

@keyframes premium-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(215, 176, 137, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(215, 176, 137, 0.6);
    }
}

/* Effet de brillance sur les titres de section */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 10px;
    height: 10px;
    background: #D7B089;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Effet de gradiant animé sur les boutons principaux */
.btn-primary {
    background: linear-gradient(135deg, #D7B089, #CFAE88, #D7B089);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ========================================
   RESPONSIVE MENU MOBILE
   ======================================== */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(251, 244, 238, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(215, 176, 137, 0.1);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .btn-nav {
        display: none;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0.8rem 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-placeholder span {
        font-size: 1.2rem;
    }
    
    .logo-placeholder i {
        font-size: 1.5rem;
    }
    
    .hero-photo,
    .histoire-photo {
        max-width: 100%;
        border-radius: 15px;
    }
}

/* ========================================
   AMÉLIORATION PROFESSIONNELLE GÉNÉRALE
   ======================================== */

/* Espacements plus généreux */
section {
    padding: 5rem 0;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Ombres plus douces et élégantes */
.offre-card,
.benefice-card,
.valeur-card,
.problem-card {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06) !important;
}

/* Typographie plus raffinée */
.section-title {
    font-weight: 500;
    letter-spacing: 1px;
}

.section-subtitle {
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Amélioration des transitions globales */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
