/* Variables */
:root {
    --primary-color: #FFB17A;
    --secondary-color: #efeee9;
    --dark-color: #1E1F28;
    --dark-secondary: #2A2C39;
    --dark-accent: #32344A;
    --light-color: #ffffff;
    --text-light: #F5F5F5;
    --text-muted: #9A9BA7;
    --gradient: linear-gradient(135deg, var(--primary-color), #FF9248);
    --nav-size: 60px;
    --background-light: var(--dark-color);
}

/* Style général */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    background-color: var(--background-light);
}

/* Bouton Menu Mobile */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-toggle:hover {
    background: #FF9248;
}

.mobile-nav-toggle i {
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

/* Gestion des icônes du burger menu */
.mobile-nav-toggle .fa-bars {
    display: block;
}

.mobile-nav-toggle .fa-times {
    display: none;
}

/* Styles quand le menu est ouvert */
.mobile-nav-toggle.active .fa-bars {
    display: none;
}

.mobile-nav-toggle.active .fa-times {
    display: block;
}

/* Animation de l'icône */
.mobile-nav-toggle.active i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.hero-image{
    filter: drop-shadow(5px 5px 10px rgba(255, 255, 255, 0.5));
}

/* Menu flottant moderne */
.floating-nav {
    position: fixed;
    top: 50%;
    left: -500px;
    transform: translateY(-50%);
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: left 0.3s ease;
}

.nav-brand {
    text-align: center;
    margin-bottom: 1rem;
}

.nav-brand span {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    margin: 0.5rem 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.nav-item:hover .nav-link {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* L'effet hover seulement sur desktop */
@media (min-width: 1024px) {
    .floating-nav:hover,
    .nav-indicator:hover + .floating-nav {
        left: 0.8rem;
    }

    .nav-indicator {
        display: block;
    }
}

/* Styles pour tablette et mobile */
@media (max-width: 1023px) {
    .floating-nav {
        left: -100%;
        top: 0;
        transform: none;
        height: 100vh;
        width: 250px;
        border-radius: 0;
        padding-top: 4rem;
    }

    .floating-nav.active {
        height: 11%;
        left: 0;
    }

    .nav-indicator {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }
}

/* Indicateur de navigation */
.nav-indicator {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
    z-index: 999;
    cursor: pointer;
    transition: width 0.3s ease;
}

@keyframes pulseIndicator {
    0% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 177, 122, 0.4);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 0 0 5px rgba(255, 177, 122, 0);
    }
    100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 177, 122, 0);
    }
}

@media (min-width: 1024px) {
    .nav-indicator {
        animation: pulseIndicator 2s infinite;
    }

    .nav-indicator:hover {
        animation: none;
        width: 12px;
    }

    /* Arrêter l'animation quand la nav est ouverte */
    .nav-indicator:hover + .floating-nav,
    .floating-nav:hover ~ .nav-indicator {
        animation: none;
    }
}

.nav-indicator:hover {
    width: 12px;
}

/* Section Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
    background-color: var(--dark-color);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, var(--dark-accent) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, var(--dark-secondary) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, var(--dark-accent) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, var(--dark-secondary) 0%, transparent 50%);
    opacity: 0.5;
    animation: bgAnimation 15s ease infinite alternate;
}

@keyframes bgAnimation {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Text gradient */
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
    animation: float 6s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Stats Section */
.stats-section {
    background: var(--dark-secondary);
    position: relative;
}

.stat-card {
    background: var(--dark-color);
    border: 1px solid var(--dark-accent);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Services Preview */
.service-card {
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* CTA Section */
.cta-section {
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    transform: skewY(-5deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .floating-nav {
        height: 11%;
        bottom: 0;
        left: 0;
        top: auto;
        width: 100%;
        transform: none;
        border-radius: 1rem 1rem 0 0;
        padding: 1rem;
    }

    .nav-links {
        display: flex;
        justify-content: space-around;
    }

    .nav-text {
        display: none;
    }

    .nav-brand {
        display: none;
    }

    .hero-section {
        padding-top: 2rem;
    }
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background: white;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .floating-nav {
        display: none;
    }

    .floating-nav.active {
        height: 11%;
        display: block;
    }
}

/* Overlay pour le menu mobile */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.show {
    display: block;
    opacity: 1;
}

/* Sections */
section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Service Cards */
.service-card {
    padding: 30px;
    transition: all 0.3s ease;
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 177, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 238, 233, 0.08) 0%, transparent 50%);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu flottant */
#mainNav {
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNav .navbar-brand {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

#mainNav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

#mainNav .nav-link:hover {
    color: #FF9248;
}

/* Section Hero */
.hero-section {
    height: 100vh;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

/* Services */
.service-card {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color);
}

/* .service-card i {
    color: var(--secondary-color);
} */

/* Formules */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card.border-primary {
    border: 2px solid var(--secondary-color) !important;
}

/* Boutons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background: #FF9248;
    border-color: #FF9248;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Blog */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .floating-nav {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        padding: 10px 20px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-brand {
        display: none;
    }

    .nav-links {
        flex-direction: row;
        gap: 10px;
    }

    .nav-link {
        width: 40px;
        height: 40px;
    }

    .nav-link:hover {
        transform: translateY(-5px);
    }

    .nav-item[data-tooltip]:before {
        bottom: 120%;
        right: auto;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-item:hover[data-tooltip]:before {
        bottom: 130%;
        right: auto;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(0%);
        flex-direction: row;
        padding: 10px 20px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-brand {
        display: none;
    }

    .nav-links {
        flex-direction: row;
        gap: 10px;
    }

    .nav-link {
        width: 40px;
        height: 40px;
    }

    .nav-link:hover {
        transform: translateY(-5px);
    }

    .nav-item[data-tooltip]:before {
        bottom: 120%;
        right: auto;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-item:hover[data-tooltip]:before {
        bottom: 130%;
        right: auto;
    }
}

/* Animation pour le scroll */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Ajustements pour les grands écrans */
@media (min-width: 1400px) {
    .floating-nav {
        right: 40px;
        width: 11%;
    }

    .nav-link {
        width: 100%;
        height: 50px;
    }

    .nav-link i {
        font-size: 1.4rem;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 380px) {
    .floating-nav {
        bottom: 10px;
        padding: 8px 15px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-link {
        padding-left: 0.4rem !important;
        width: 35px;
        height: 35px;
    }

    .nav-link i {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-secondary);
    color: var(--text-light);
    padding: 60px 0 0;
    position: relative;
    margin-top: 100px;
}

.footer-content {
    padding-bottom: 40px;
}

.footer-brand h3,
.footer-nav h3,
.footer-contact h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-accent);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-nav .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-cta {
    margin-top: 2rem;
}

.footer-cta .btn-gradient {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-cta .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 177, 122, 0.3);
}

.footer-bottom {
    background-color: var(--dark-accent);
    padding: 20px 0;
    position: relative;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-nav,
    .footer-contact {
        margin-top: 2rem;
    }

    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }
}

/* Sections */
section {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

/* Service Cards */
.service-card {
    padding: 30px;
    transition: all 0.3s ease;
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 177, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 238, 233, 0.08) 0%, transparent 50%);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu flottant */
#mainNav {
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNav .navbar-brand {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

#mainNav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

#mainNav .nav-link:hover {
    color: #FF9248;
}

/* Section Hero */
.hero-section {
    height: 100vh;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

/* Services */
.service-card {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-color);
}

/* .service-card i {
    color: var(--secondary-color);
} */

/* Formules */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card.border-primary {
    border: 2px solid var(--secondary-color) !important;
}

/* Boutons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background: #FF9248;
    border-color: #FF9248;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Blog */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .floating-nav {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        padding: 10px 20px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-brand {
        display: none;
    }

    .nav-links {
        flex-direction: row;
        gap: 10px;
    }

    .nav-link {
        width: 40px;
        height: 40px;
    }

    .nav-link:hover {
        transform: translateY(-5px);
    }

    .nav-item[data-tooltip]:before {
        bottom: 120%;
        right: auto;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-item:hover[data-tooltip]:before {
        bottom: 130%;
        right: auto;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(0%);
        flex-direction: row;
        padding: 10px 20px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-brand {
        display: none;
    }

    .nav-links {
        flex-direction: row;
        gap: 10px;
    }

    .nav-link {
        width: 40px;
        height: 40px;
    }

    .nav-link:hover {
        transform: translateY(-5px);
    }

    .nav-item[data-tooltip]:before {
        bottom: 120%;
        right: auto;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-item:hover[data-tooltip]:before {
        bottom: 130%;
        right: auto;
    }
}

/* Animation pour le scroll */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Ajustements pour les grands écrans */
@media (min-width: 1400px) {
    .floating-nav {
        right: 40px;
        width: 11%;
    }

    .nav-link {
        width: 100%;
        height: 50px;
    }

    .nav-link i {
        font-size: 1.4rem;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 380px) {
    .floating-nav {
        bottom: 10px;
        padding: 8px 15px;
    }

    .nav-links {
        gap: 5px;
    }

    .nav-link {
        padding-left: 0.4rem !important;
        width: 35px;
        height: 35px;
    }

    .nav-link i {
        font-size: 1rem;
    }
}

/* Liens */
a {
    color: var(--primary-color);
}

a:hover {
    color: #FF9248;
}

/* Styles pour la pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.pagination-button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-button:hover {
    background-color: #0056b3;
}

.pagination-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#page-info {
    font-size: 1rem;
    color: #666;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.blog-post {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.blog-post iframe {
    width: 100%;
    height: 600px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
}

.pagination-button {
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.pagination-button:hover {
    background-color: #0056b3;
}

.pagination-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#page-info {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Highlight */
.section-highlight {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.section-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 0%, rgba(255, 177, 122, 0.1), transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(239, 238, 233, 0.1), transparent 50%);
    z-index: 1;
}

.section-highlight h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-highlight h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    animation: titleLine 0.6s ease forwards;
}

@keyframes titleLine {
    to {
        transform: scaleX(1);
    }
}

.service-card, .formule-card {
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card::before, .formule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover, .formule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.service-card:hover::before, .formule-card:hover::before {
    opacity: 0.1;
}

.service-icon, .formule-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon,
.formule-card:hover .formule-icon {
    transform: scale(1.1);
}

.service-title, .formule-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-description, .formule-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price, .formule-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation d'apparition */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délai d'animation pour les cartes */
.fade-up-delay-1 { animation-delay: 0.2s; }
.fade-up-delay-2 { animation-delay: 0.4s; }
.fade-up-delay-3 { animation-delay: 0.6s; }

/* Blog Cards */
.blog-card {
    background: var(--dark-secondary);
    border: 1px solid var(--dark-accent);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.blog-category span {
    background: var(--gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.blog-tags span {
    background: var(--dark-accent);
    color: var(--text-muted);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-tags span {
    background: var(--primary-color);
    color: var(--dark-color);
}

.btn-gradient {
    background: var(--gradient);
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 177, 122, 0.3);
    color: white;
}

.btn-gradient.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(rgba(30, 31, 40, 0.95), rgba(30, 31, 40, 0.98));
    padding-top: 5rem;
    margin-top: 5rem;
    position: relative;
}

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

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-brand .logo span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
}

.brand-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, var(--primary-color), #FF9248);
    color: white;
    transform: translateY(-3px);
}

.footer-nav h3,
.footer-contact h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-cta {
    margin-top: 2rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-nav,
    .footer-contact {
        margin-top: 2rem;
    }

    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .copyright {
        text-align: center;
    }
}

/* Section légale */
body .legal-section {
    background-color: var(--dark-color) !important;
    color: var(--text-light) !important;
}

body .legal-section .container .rounded-3 {
    background-color: var(--dark-secondary) !important;
    border: 1px solid var(--dark-accent) !important;
    color: var(--text-light) !important;
}

body .legal-section h2.text-gradient,
body .legal-section h3.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

body .legal-section .text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body .legal-section ul li i {
    color: var(--primary-color) !important;
}

body .legal-section ul.list-unstyled li {
    margin-bottom: 0.5rem;
    color: var(--text-light) !important;
}

body .legal-section a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

body .legal-section a:hover {
    color: #FF9248 !important;
}

/* Pagination moderne */
.blog-pagination {
    margin-top: 4rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.pagination .page-item {
    margin: 0 2px;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0;
}

.pagination .page-item.active .page-link {
    background: var(--gradient);
    color: white;
    border: none;
}

.pagination .page-item:not(.active) .page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--text-color);
    color: var(--text-color);
}

/* Boutons précédent/suivant */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: auto;
    border-radius: 20px;
    padding: 0 20px;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
}

.pagination .page-item:first-child:not(.disabled) .page-link:hover,
.pagination .page-item:last-child:not(.disabled) .page-link:hover {
    background: var(--gradient);
    border: none;
    padding: 2px 22px;
}

/* Blob animé pour la photo de profil */
.blob-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: var(--gradient);
    animation: blobAnimation 8s ease-in-out infinite;
    transition: all 1s ease-in-out;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.blob img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    height: 94%;
    object-fit: cover;
    border-radius: 58% 38% 28% 68% / 58% 28% 68% 38%;
    transition: all 0.3s ease;
    z-index: 1;
}

@keyframes blobAnimation {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }
    75% {
        border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.blob-container:hover .blob {
    transform: translate(-50%, -50%) scale(1.05);
}

.blob-container:hover img {
    transform: translate(-50%, -50%) scale(0.98);
}

/* Lottie overlay */
.lottie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.8;
}


.platform-card {
    display: block;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.platform-card:hover {
    transform: translateY(-5px);
}

.platform-content {
    color: #333;
}

.platform-content i {
    color: #1dbf73; /* Couleur Fiverr */
}