/* gosport-enhanced.css - Améliorations du style pour GoSport */

:root {
    --primary: #0B8143; /* Vert GoSport */
    --primary-dark: #096d37; /* Vert foncé */
    --primary-light: #e6f7ee; /* Vert très clair */
    --secondary: #ffc107; /* Jaune GoSport */
    --secondary-dark: #e0a800; /* Jaune foncé */
    --dark: #333333;
    --gray: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

/* Préchargeur */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin-bottom: 20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1.0s;
}

.preloader-logo {
    max-width: 120px;
}

.preloader-logo img {
    width: 100%;
    height: auto;
}

@keyframes bounce {
    0%, 100% { transform: scale(0.0); }
    50% { transform: scale(1.0); }
}

/* Styles généraux améliorés */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.section-title .subtitle:before,
.section-title .subtitle:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transform: translateY(-50%);
}

.section-title .subtitle:before {
    left: 0;
}

.section-title .subtitle:after {
    right: 0;
}

.section-title h3 {
    color: var(--dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Navbar améliorée */
#mainNav {
    transition: var(--transition);
    /*padding: 15px 0;*/
    padding: 12px 0; /* Légèrement réduire le padding vertical si nécessaire */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#mainNav.navbar-scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand img {
    height: 50px;
}

.navbar-brand h1 {
    display: inline-block;
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    margin-left: 10px;
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand h1 {
    font-size: 22px;
}

.nav-link {
    position: relative;
    color: var(--dark) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-buttons {
    transition: var(--transition);
}

.navbar-scrolled .nav-buttons .btn {
    padding: 0.375rem 0.75rem;
}

/* Hero section améliorée */
.hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));*/
}

.hero h2 {
    font-size: 3.0rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.search-box {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}
.search-box .input-group {
    position: relative;
    z-index: 1;
}
.search-button {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 12px 0;
    border: none;
    transition: background-color 0.3s;
    border-radius: var(--border-radius);
}

.search-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.input-group {
    position: relative;
}

.input-group-text {
    background-color: transparent;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.location-btn {
    border-left: none;
    background-color: transparent;
    color: var(--primary);
}

.location-btn:hover {
    color: var(--primary-dark);
    background-color: transparent;
    border-color: #ced4da;
}

/* Compteurs dans Hero */
.hero-stats {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 40px;
    color: var(--dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    margin-top: 5px;
}

/* Vague en bas du hero */
.hero-wave {
    position: absolute;
    bottom: -2px; /* Ajuster à -2px pour éviter l'écart blanc */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg); /* Optionnel: inverser la vague si nécessaire */
}

.hero-wave svg {
    width: 100%;
    height: 100px; /* Ajuster la hauteur selon vos besoins */
}

/* Animation de pulsation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 129, 67, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(11, 129, 67, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(11, 129, 67, 0);
    }
}

/* Section Features améliorée */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.feature-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background-color: rgba(11, 129, 67, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Terrains populaires améliorés */
.popular-terrains {
    padding: 100px 0;
    background-color: var(--light);
}

.terrain-filters {
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    margin: 0 5px 10px;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.terrain-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.terrain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.terrain-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.terrain-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.terrain-card:hover .terrain-image img {
    transform: scale(1.1);
}

.terrain-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.terrain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.terrain-card:hover .terrain-overlay {
    opacity: 1;
}

.btn-view-details {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

.terrain-details {
    padding: 25px;
    position: relative;
}

.terrain-favorite {
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 1;
}

.btn-favorite {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.btn-favorite:hover,
.btn-favorite.active {
    background-color: #ff5e5e;
    color: var(--white);
}

.terrain-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-weight: 600;
}

.terrain-location {
    display: flex;
    align-items: center;
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.terrain-location i {
    margin-right: 8px;
    color: var(--primary);
}

.terrain-feature {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 14px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.terrain-feature i {
    margin-right: 8px;
    color: var(--primary);
}

.terrain-rating {
    margin-bottom: 20px;
}

.terrain-rating i {
    color: var(--secondary);
}

.rating-count {
    color: var(--gray);
    font-size: 14px;
    margin-left: 5px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
}

.price {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
}

.btn-terrain {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-terrain:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    margin-top: 80px;
}

.map-title {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    z-index: 2;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* How it works section améliorée */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.step {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(11, 129, 67, 0.1);
    color: var(--primary);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step:hover .step-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 100%;
    width: 70%;
    height: 2px;
    background-color: var(--primary-light);
    display: none;
}

@media (min-width: 992px) {
    .step:not(:last-child)::after {
        display: block;
    }
}

.step h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.process-link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.process-link:hover {
    color: var(--primary-dark);
    letter-spacing: 1px;
}

/* Video Container */
.video-container {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse-border 2s linear infinite;
}

.play-button:hover {
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Advantages section améliorée */
.advantages {
    padding: 100px 0;
    background-color: var(--light);
}

.nav-tabs {
    justify-content: center;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    border: none;
    border-bottom: 3px solid transparent;
    margin: 0 15px;
    transition: var(--transition);
}

.nav-tabs .nav-link.active, 
.nav-tabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: transparent;
}

.advantage-card {
    display: flex;
    padding: 25px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.advantage-icon {
    min-width: 60px;
    height: 60px;
    background-color: rgba(11, 129, 67, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    margin-right: 20px;
    font-size: 24px;
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    background-color: var(--primary);
    color: var(--white);
}

.advantage-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* CTA Section améliorée */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/02.png') center/cover no-repeat;
    padding: 120px 0;
    color: var(--white);
    position: relative;
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-cta {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-user:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

.btn-manager {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
}

.btn-manager:hover {
    background-color: var(--secondary-dark);
    color: var(--dark);
    transform: translateY(-5px);
}

/* Testimonials améliorés */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-slider {
    padding-bottom: 60px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.testimonial-quote {
    font-size: 3rem;
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(11, 129, 67, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-stats {
    margin-top: 5px;
}

.badge {
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* App Download Section améliorée */
.app-download {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.app-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/02.png') center/cover no-repeat;
    opacity: 0.08;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.app-feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.app-feature i {
    margin-right: 8px;
    color: var(--secondary);
}

.app-store-btn {
    display: inline-block;
    background-color: var(--dark);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.app-store-btn:hover {
    opacity: 0.9;
    color: var(--white);
    transform: translateY(-5px);
}

.app-icon {
    font-size: 30px;
    margin-right: 10px;
}

.app-phone-slider {
    position: relative;
    height: 600px;
}

.phone-frame {
    background: url('../img/phone-frame.png') no-repeat center;
    background-size: contain;
    padding: 20px;
    height: 600px;
    position: relative;
}

.app-screen {
    width: 270px;
    height: 580px;
    object-fit: cover;
    border-radius: 30px;
    margin: 0 auto;
    display: block;
}

.app-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    transform: rotate(15deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.app-qr-codes {
    display: flex;
    gap: 20px;
}

.qr-item {
    text-align: center;
}

.qr-code {
    width: 100px;
    height: 100px;
    padding: 5px;
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 5px;
}

/* FAQ Section améliorée */
.faq-section {
    background-color: var(--light);
    padding: 100px 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-button {
    padding: 20px;
    font-weight: 600;
    color: var(--dark);
    background-color: var(--white);
    border: none;
    border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(11, 129, 67, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(11, 129, 67, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B8143'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    color: var(--gray);
    background-color: var(--white);
}

/* Newsletter section améliorée */
.newsletter {
    background-color: var(--white);
    padding: 80px 0;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    overflow: hidden;
}

.newsletter-form .input-group-text {
    background-color: var(--primary-light);
    color: var(--primary);
    border: none;
    padding-left: 20px;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    height: auto;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

.newsletter-success-message {
    margin-top: 15px;
    color: var(--primary);
    font-weight: 500;
}

.newsletter-success-message i {
    margin-right: 5px;
}

/* Partners section améliorée */
.partners {
    padding: 80px 0;
    background-color: var(--light);
}

.partners-slider {
    padding: 20px 0;
}

.partner-logo {
    max-width: 80%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

/* Footer amélioré */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 28px;
    margin: 0;
}

.footer-about p {
    margin-bottom: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

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

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact i {
    min-width: 30px;
    color: var(--primary);
    margin-top: 5px;
}

.language-selector {
    margin-top: 20px;
}

.language-selector .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 10px 15px;
    font-size: 14px;
}

.language-selector .form-select:focus {
    box-shadow: none;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-app-links {
    display: flex;
    gap: 15px;
}

.footer-app-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: var(--transition);
}

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

/* Scroll to top button amélioré */
#scrollTopBtn {
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
    cursor: pointer;
}

#scrollTopBtn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Countdown Banner amélioré */
.countdown-banner {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.countdown-timer {
    margin: 0 10px;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.timer-box {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: var(--border-radius);
    min-width: 45px;
    text-align: center;
}

.promotion-btn {
    background-color: var(--secondary);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
    text-decoration: none;
    margin-left: 15px;
    font-weight: bold;
    transition: var(--transition);
}

.promotion-btn:hover {
    background-color: var(--secondary-dark);
    color: var(--dark);
    transform: scale(1.05);
}

/* Modal Vidéo */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title {
    color: var(--primary);
    font-weight: 600;
}

/* Animations AOS */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* Media Queries */
@media (max-width: 1199.98px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .cta-section h3 {
        font-size: 2.2rem;
    }
    
    .step:not(:last-child)::after {
        width: 50%;
    }
    
    .app-phone-slider {
        height: 500px;
    }
    
    .phone-frame {
        height: 500px;
    }
    
    .app-screen {
        width: 230px;
        height: 480px;
    }
}

@media (max-width: 991.98px) {
    .hero {
        height: auto;
        min-height: 600px;
        padding: 120px 0 80px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .nav-buttons {
        margin-top: 15px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .advantage-card {
        margin-bottom: 20px;
    }
    
    .app-qr-codes {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-stats {
        margin-top: 30px;
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .autocomplete-suggestions {
        max-height: 200px;
    }
    
    .autocomplete-item {
        padding: 12px 15px;
    }

    .hero h2 {
        font-size: 2rem;
    }
    
    .search-box {
        padding: 20px 15px;
    }
    
    .section-title h3 {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .advantage-card,
    .terrain-card,
    .testimonial-card {
        margin-bottom: 20px;
    }
    
    .app-feature {
        margin-bottom: 10px;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 16px;
        margin: 0 5px;
    }
    
    .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-app-links {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-box {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .section-title .subtitle {
        font-size: 14px;
    }
    
    .section-title h3 {
        font-size: 1.6rem;
    }
    
    .feature-icon,
    .advantage-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .btn-cta {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .app-store-btn {
        width: 100%;
    }
    
    .app-phone-slider {
        height: 400px;
    }
    
    .phone-frame {
        height: 400px;
    }
    
    .app-screen {
        width: 180px;
        height: 380px;
    }
    
    #scrollTopBtn {
        bottom: 70px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}
/* Autocomplétion */
.autocomplete-suggestions {
    z-index: 9999 !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-height: 250px;
    overflow-y: auto;
    display: none;
}
.autocomplete-item {
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}
.autocomplete-item:last-child {
    border-bottom: none;
}
.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: #f8f9fa !important;
}
.autocomplete-item .text-primary {
    color: var(--primary) !important;
    font-size: 16px;
    margin-right: 10px;
}
.autocomplete-item .fw-medium {
    color: #333;
    font-weight: 600;
    font-size: 15px;
}
.autocomplete-item .text-muted {
    color: #666 !important;
    font-size: 13px;
    margin-top: 2px;
}

.autocomplete-item:hover {
    background-color: var(--primary-light) !important;
}

/* Animation du bouton de recherche */
.search-button.searching {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.search-button.searching i {
    animation: pulse 1s infinite;
}

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