/* Variables CSS */
:root {
    --primary-color: #FFFC00;
    --secondary-color: #5CD7B1;
    --white: #FFFFFF;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #f8f9fa;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animations enrichies */
@keyframes buttonHover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-2px);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 252, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 252, 0, 0.6), 0 0 30px rgba(92, 215, 177, 0.3);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes greenPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(40, 167, 69, 0.6), 0 0 30px rgba(32, 201, 151, 0.3);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    animation: fadeIn 1s ease;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    animation: fadeIn 1s ease 0.2s both;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Section Héro */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background-image: url('../images/comic/location.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Troisième élément décoratif avec taxi.svg */
.hero-container::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background-image: url('../images/comic/taxi.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.12;
    z-index: -1;
    animation: float 12s ease-in-out infinite;
}

.hero-content {
    animation: slideInFromLeft 1s ease 0.5s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.8s;
}

.title-line:nth-child(2) {
    animation-delay: 1.2s;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: glow 2s ease-in-out infinite;
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px) scale(1.02);
    animation: pulse 0.6s ease;
}

.hero-visual {
    text-align: center;
    animation: slideInFromRight 1s ease 0.8s both;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.hero-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
    animation: bounce 0.6s ease;
}

/* Sections communes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Section Services */
.services {
    padding: 5rem 0;
    background: var(--light-gray);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

.service-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1).animate { animation-delay: 0.1s; }
.service-card:nth-child(2).animate { animation-delay: 0.2s; }
.service-card:nth-child(3).animate { animation-delay: 0.3s; }
.service-card:nth-child(4).animate { animation-delay: 0.4s; }
.service-card:nth-child(5).animate { animation-delay: 0.5s; }

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: glow 2s ease-in-out infinite;
}

.service-icon {
    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: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
    animation: pulse 3s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    animation: bounce 0.8s ease;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Styles spéciaux pour WiiNek Green */
.green-service {
    border: 2px solid #28a745;
    position: relative;
    overflow: hidden;
}

.green-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997, #28a745);
    animation: shimmer 2s ease-in-out infinite;
}

.green-service:hover {
    border-color: #20c997;
    box-shadow: 0 20px 50px rgba(40, 167, 69, 0.2);
    animation: greenPulse 2s ease-in-out infinite;
}

.green-icon {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.green-service:hover .green-icon {
    background: linear-gradient(135deg, #20c997, #28a745) !important;
    transform: scale(1.15) rotate(-10deg);
}

.green-tag {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
}

.green-tag:hover {
    background: linear-gradient(135deg, #20c997, #28a745) !important;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Nouvelles fonctionnalités pour les services */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.feature-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Section avantages des services */
.services-benefits {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 252, 0, 0.05), rgba(92, 215, 177, 0.05));
    border-radius: 20px;
}

.services-benefits h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.benefit-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    min-width: 20px;
}

.benefit-item span {
    color: var(--dark);
    font-weight: 500;
}

/* Section Téléchargement Applications */
.app-download {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.download-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.download-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.download-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.app-icon.driver {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.download-card:hover .app-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 1s ease;
}

.download-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.download-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* QR Code Container */
.qr-code-container {
    margin: 2rem 0;
}

.qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

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

.qr-placeholder span {
    font-size: 0.9rem;
    font-weight: 600;
}

.qr-instruction {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}



/* Instructions de téléchargement */
.download-instructions {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 252, 0, 0.05);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.download-instructions h3 {
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

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

.instruction-step .step-number {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.instruction-step p {
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}



/* Section Utilisation de l'app */
.app-usage {
    padding: 5rem 0;
    background: var(--white);
}

.usage-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.usage-intro p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}



.usage-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 2px solid #eee;
    background: var(--white);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(92, 215, 177, 0.2), transparent);
    transition: left 0.5s;
}

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

.tab-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark);
    transform: scale(1.05);
    animation: pulse 0.6s ease;
}

.tab-btn i {
    transition: var(--transition);
}

.tab-btn:hover i {
    transform: scale(1.2);
}

.tab-btn.active i {
    animation: bounce 0.8s ease;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.tab-panel.active {
    display: block;
    animation: slideInFromBottom 0.8s ease forwards;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: glow 2s ease-in-out infinite;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    animation: scaleIn 0.6s ease forwards;
}

.step-card:hover .step-number {
    transform: translateX(-50%) scale(1.2);
    background: var(--primary-color);
    color: var(--dark);
    animation: bounce 0.6s ease;
}

.step-icon {
    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: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
    animation: pulse 2s ease-in-out infinite;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    animation: bounce 0.6s ease;
}

.step-icon i {
    transition: var(--transition);
}

.step-card:hover .step-icon i {
    transform: scale(1.2);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Section avantages chauffeur */
.driver-benefits {
    margin-top: 3rem;
    padding: 2rem 0;
}

.driver-benefits h3 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.benefit-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 24px;
}

.benefit-item span {
    color: var(--dark);
    font-weight: 500;
}

.cta-driver {
    text-align: center;
}

.cta-driver .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark);
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(255, 252, 0, 0.3);
    transition: var(--transition);
}

.cta-driver .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.4);
}

/* Section À propos */
.about {
    padding: 5rem 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    opacity: 1;
    transform: translateX(0);
}

.about-text.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

.app-features {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 252, 0, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.app-features h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.app-features ul {
    list-style: none;
    padding: 0;
}

.app-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-weight: 500;
}

.about-visual {
    text-align: center;
    opacity: 1;
    transform: translateX(0);
}

.about-visual.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-svg {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.about-svg:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

/* Section Contact */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    opacity: 1;
    transform: translateX(0);
}

.contact-info.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-right: 1.5rem;
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.contact-form {
    opacity: 1;
    transform: translateX(0);
}

.contact-form.animate {
    animation: fadeInUp 0.6s ease forwards;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(92, 215, 177, 0.1);
}

/* Lien vers la politique de confidentialité */
.privacy-link {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: rgba(92, 215, 177, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.privacy-link p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.privacy-link i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.privacy-link-text {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.privacy-link-text:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer .logo {
    margin-bottom: 1rem;
}

.footer .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    margin-right: 12px;
}

.footer .logo:hover .logo-img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
    transform: scale(1.1);
}

.footer .logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.footer .logo:hover span {
    transform: scale(1.05);
    filter: brightness(1.2);
    animation: pulse 1s ease;
}

/* Animation subtile pour le logo du footer */
.footer .logo {
    cursor: pointer;
    transition: var(--transition);
}

.footer .logo:hover {
    transform: translateY(-2px);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-credits {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.wico-link {
    color: #9966CC;  /* Couleur mauve */
    text-decoration: none;
    font-weight: 700;  /* Plus gras */
    font-size: 1.2rem;  /* Plus grand */
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wico-link:hover {
    color: #7B4397;  /* Mauve plus foncé au hover */
    text-decoration: underline;
    transform: translateY(-2px) scale(1.05);  /* Élévation + agrandissement */
}

.wico-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
    border-radius: 3px;
}

.wico-link:hover .wico-logo {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
    transform: scale(1.1);
}

.wico-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #9966CC, #7B4397);  /* Dégradé mauve */
    transition: width 0.3s ease;
}

.wico-link:hover::before {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .car-animation {
        font-size: 4rem;
    }

    .logo-img {
        height: 35px;
    }

    .footer .logo-img {
        height: 35px;
        margin-right: 10px;
    }

    .footer .logo span {
        font-size: 1.6rem;
    }

    .footer-credits {
        font-size: 0.8rem;
    }

    .wico-link {
        font-size: 1rem;  /* Taille maintenue sur mobile */
        gap: 0.3rem;
        font-weight: 700;
    }

    .wico-logo {
        height: 16px;
    }

    .hero-svg {
        max-height: 250px;
    }

    .hero::before {
        width: 250px;
        height: 250px;
        opacity: 0.08;
    }

    .hero::after {
        width: 200px;
        height: 200px;
        top: 15%;
        right: 5%;
        opacity: 0.12;
    }

    .hero-container::before {
        width: 180px;
        height: 180px;
        bottom: 5%;
        left: 2%;
        opacity: 0.1;
    }

    .privacy-link p {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
    }

    .privacy-link {
        padding: 0.8rem;
        margin-top: 1rem;
    }

    .about-svg {
        max-height: 200px;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .services-benefits {
        margin-top: 2rem;
        padding: 2rem 1rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .service-features {
        gap: 0.3rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .qr-placeholder i {
        font-size: 2rem;
    }

    .instructions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }


}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .pricing-card.featured {
        transform: none;
    }

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




