:root {
    --primary-color: #1a73e8;
    --primary-dark: #1557b0;
    --secondary-color: #34a853;
    --text-color: #4a5568;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}


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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: rotate(0);
    }
}

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

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Application des animations */



.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-content p {
    animation: slideInRight 1s ease-out 0.6s both;
}

.cta-button {
    animation: pulse 2s infinite;
}

.service-card {
    animation: fadeInUp 0.6s ease-out both;
}


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

.service-card i {
    animation: float 3s ease-in-out infinite;
}

.price-card {
    animation: fadeInUp 0.6s ease-out both;
}

.price-card:nth-child(1) { animation-delay: 0.2s; }
.price-card:nth-child(2) { animation-delay: 0.4s; }
.price-card:nth-child(3) { animation-delay: 0.6s; }

.price-card.featured {
    animation: pulse 3s infinite;
}

.info-item i {
    animation: rotateIn 0.6s ease-out;
}

/* Hover Animations */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.service-card:hover i {
    animation: rotateIn 0.6s ease-out;
}

/* Scroll Animations */
.scroll-down {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.scroll-up {
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

/* Form Animation */
.form-group input,
.form-group select {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.submit-button {
    position: relative;
    overflow: hidden;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Social Links Animation */
.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

/* Bouton Trouver la laverie la plus proche */
.find-nearest-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.find-nearest-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Styles pour les adresses cliquables */
.location-address {
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: underline;
    text-decoration-color: transparent;
    padding: 0.5rem 0;
    display: inline-block;
}

.location-address:hover {
    text-decoration-color: var(--primary-color);
    color: var(--primary-dark);
}

.location-address:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Grille des locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.location {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.locations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map-container {
    width: 1000px;
    height: 400px;
    margin: 0 auto 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.locations-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--light-gray);
}

.locations-list::-webkit-scrollbar {
    width: 8px;
}

.locations-list::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.locations-list::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 4px;
}

.location {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.location:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: var(--light-gray);
}

.location h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.location a {
    color: inherit;
    text-decoration: none;
    display: block;
}

@media (max-width: 768px) {
    .locations-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
        margin-bottom: 2rem;
    }

    .locations-list {
        max-height: none;
    }
}

.locations {
    background-color: #18233E;
    padding: 0;
    position: relative;
}

.locations .container {
    max-width: 100%;
    padding: 0;
}

.locations h2 {
    text-align: center;
    color: white;
    padding: 2rem 0;
    margin: 0;
    font-size: 2.5rem;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 1;
}

#map {
    width: 100%;
    height: 100%;
}

/* Grid des locations */
.locations-grid {
    max-width: 1200px;
    margin: -50px auto 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Cards */
.location-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.location-card.coming-soon {
    opacity: 0.85;
    filter: grayscale(100%);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.location-info {
    padding: 1.5rem;
}

.location-info h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.location-info p {
    margin: 0.5rem 0;
    color: var(--text-color);
    line-height: 1.4;
}

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

/* Responsive */
@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }
}

.locations {
    background-color: var(--dark-blue);
    padding: 4rem 0;
    position: relative;
    color: white;
}

.locations h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.map-container {
    width: 100%;
    height: 500px;
    margin-bottom: 3rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 0;
}

.location-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.location-card .location-info {
    padding: 1.5rem;
    background: white;
    color: var(--text-color);
}

.location-card .location-info h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.location-card .location-info p {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.location-card .location-info i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 8px;
}

/* Style pour le badge Prochainement */
.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Style pour la card grisée */
.location-card.coming-soon {
    position: relative;
    opacity: 0.85;
    filter: grayscale(100%);
}

/* Responsive */
@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

.locations {
    background-color: var(--light-gray);
    padding: 5rem 0;
    position: relative;
}

.locations .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.locations h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.locations h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.locations-content {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.map-container {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 0;
}

.location-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.location {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.location:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: var(--light-gray);
}

.location h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.location a {
    color: inherit;
    text-decoration: none;
    display: block;
}

@media (max-width: 768px) {
    .locations-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }

    .locations-list {
        max-height: 500px;
    }
}

@media (max-width: 1024px) {
    .locations-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 400px;
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }

    .locations-list {
        max-height: 500px;
    }
}

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

    .locations .container {
        padding: 0 1rem;
    }

    .locations h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .location a {
        padding: 1.2rem;
    }

    .location h4 {
        font-size: 1.1rem;
    }

    .location p {
        font-size: 0.9rem;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .location {
        padding: 1rem;
    }
}

/* Style pour les fenêtres d'info Google Maps */
.gm-style .gm-style-iw-c {
    padding: 12px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.1) !important;
}

.info-window {
    padding: 5px;
}

.info-window h3 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.info-window p {
    color: var(--text-color);
    margin: 0 0 12px 0;
    font-size: 0.9rem;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.directions-link:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.direction-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.direction-link i {
    font-size: 1.1rem;
}

/* Masquer les éléments par défaut de Google Maps */
.gm-style-cc {
    display: none;
}

.gm-style a[href^="https://maps.google.com/maps"] {
    display: none !important;
}

/* Root Styles */
:root {
    --primary-color: #2C3E50;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --background-color: #F8F9FA;
    --text-color: #2C3E50;
    --light-gray: #ECF0F1;
    --white: #FFFFFF;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

/* Header & Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

/* Menu button */
.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
}

.menu-button i {
    font-size: 1.5rem;
    color: var(--text-color);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .menu-button {
        display: block;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)),
                url('images/AUBERGENVILLE_012.jpg');
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

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

.services h2,
.pricing h2,
.booking h2,
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 1rem;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 993px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid .price-card:last-child {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid .price-card:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 1200px) {
    .pricing-center {
        justify-self: center;
    }
}

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

.price-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.price-card h3 {
    margin: 1rem 0;
    color: var(--text-color);
}

.price-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-card p {
    color: var(--text-color);
    margin: 0.5rem 0;
}

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

@media (max-width: 768px) {
    .pricing {
        padding: 3rem 1rem;
    }
    
    .pricing-grid {
        gap: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .price-card i {
        font-size: 2rem;
    }
    
    .price-card .price {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 2rem 1rem;
    }
    
    .section-description br {
        display: none;
    }
    
    .pricing-grid {
        gap: 1rem;
        margin: 1rem auto;
    }
    
    .price-card {
        padding: 1.25rem;
    }
    
    .price-card i {
        font-size: 1.75rem;
    }
    
    .price-card .price {
        font-size: 1.5rem;
    }
}

/* Grille de prix par défaut */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Positionnement spécifique pour les écrans entre 768px et 992px */
@media (min-width: 768px) and (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-grid .price-card:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Carousel styles */
.location-carousel {
    position: relative;
    height: 540px;
    overflow: hidden;
}

.carousel-inner {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.carousel-item.active {
    opacity: 1;
    display: block;
    z-index: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: white;
    transform: scale(1.2);
}

.location-info {
    padding: 2rem;
    background: white;
}

/* Booking Section */
.booking {
    padding: 5rem 1rem;
    background: var(--light-gray);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
}

/* Galerie */
.gallery {
    padding: 5rem 1rem;
    background: var(--light-gray);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Présentation Section */
.presentation {
    padding: 5rem 1rem;
    background: var(--white);
}

.presentation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.presentation-text {
    text-align: left;
}

.presentation h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.highlight {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.expertise-block {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.expertise-block h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 0.5rem;
}

.expertise-list li i {
    color: var(--primary-color);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-form .submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-form .submit-button i {
    transition: transform 0.3s ease;
}

.contact-form .submit-button:hover i {
    transform: translateX(5px);
}

/* Style pour la description de la section */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: -2rem auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        margin: -1rem auto 2rem;
        padding: 0 1rem;
    }
}

/* Style pour les champs invalides */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #dc2626;
}

.form-group input:invalid:focus,
.form-group textarea:invalid:focus {
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
}

.help-section {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.help-section p {
    font-weight: 500;
}

.help-section a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.help-section a:hover {
    opacity: 0.8;
}

@media (min-width: 500px) and (max-width: 600px) {
    .help-section {
        font-size: 12px;
    }
}

@media (min-width: 400px) and (max-width: 500px) {
    .help-section {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .help-section {
        font-size: 9px;
    }
}

/* Locations Section */
.locations-flex-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.map-container {
    flex: 0 0 400px;
    max-width: 510px;
    position: relative;
    z-index: 1;
}

.map-container #map {
    width: 100%;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-card {
    flex: 0 0 400px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.location-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.carousel-item.active {
    opacity: 1;
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    padding: 1.5rem;
    background: white;
}

.location-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-info p {
    margin: 0.5rem 0 0;
    color: var(--text-color);
}

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-control:hover {
    background: white;
}

.carousel-indicators {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 20px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    transform: scale(1.3);
}

@media (max-width: 968px) {
    .locations-flex-container {
        flex-direction: column;
        align-items: center;
    }
    
    .map-container,
    .location-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.location {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.location-carousel {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.location-info {
    padding: 1.5rem;
    background: white;
}

.location-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-info p {
    margin: 0.5rem 0 0;
    color: var(--text-color);
}

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-control:hover {
    background: white;
}

.carousel-indicators {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 20px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .locations-list {
        grid-template-columns: 1fr;
    }
}

#map {
    position: relative;
    z-index: 1;
}

/* Modal Mentions Légales */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: var(--white);
    margin: 5vh auto;
    padding: 3rem;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-bg);
}

.close-modal:hover {
    color: var(--primary-color);
    background-color: rgba(26, 115, 232, 0.1);
}

.modal-body {
    margin-top: 2rem;
}

.modal-body h2 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.modal-body h3 {
    color: var(--text-color);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.modal-body p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2vh auto;
        padding: 2rem;
    }
    
    .modal-body h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
        margin: 2rem 0 1rem;
    }
    
    .modal-body p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Entrepreneurs Section */
.entrepreneurs {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--light-bg), white);
}

.entrepreneurs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.entrepreneurs h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: zoomPulse 2s ease-in-out infinite;
}

.entrepreneurs .section-intro {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

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

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

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

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

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

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

.cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cta-button.linkedin {
    background: #0077b5;
    color: white;
}

.cta-button.linkedin:hover {
    background: #006396;
    transform: translateY(-2px);
}

.cta-button i {
    font-size: 1.2rem;
}

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

    .entrepreneurs h2 {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        justify-content: center;
    }
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.location {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.location-carousel {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.location-info {
    padding: 1.5rem;
    background: white;
}

.location-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.location-info p {
    margin: 0.5rem 0 0;
    color: var(--text-color);
}

.carousel-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-control:hover {
    background: white;
}

.carousel-indicators {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    border-radius: 20px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .locations-list {
        grid-template-columns: 1fr;
    }
}

.simple-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
    display: none;
}

.carousel-image.active {
    opacity: 1;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 2;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.location-card.coming-soon {
    position: relative;
    opacity: 0.8;
    filter: grayscale(100%);
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Ajout du responsive pour la carte */
@media (max-width: 1100px) {
    .map-container {
        width: 90%;
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .map-container {
        width: 95%;
        height: 350px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

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

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .baseline {
        font-size: 1.2rem;
    }

    .map-container {
        width: 90%;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        width: 95%;
        height: 350px;
    }

    .location-card {
        margin: 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .baseline {
        font-size: 1rem;
    }

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

    .map-container {
        height: 300px;
    }

    .location-card {
        margin: 0 0.5rem;
    }

    .simple-carousel {
        height: 200px;
    }

    .footer {
        padding: 2rem 0;
    }
}

/* Navigation mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -225px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu .nav-links a {
    color: white;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1028px) {
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid .feature-card:last-child {
        grid-column: 1 / -1;
        width: 50%;
        margin: 0 auto;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
    z-index: 1001;
    position: relative;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    transform: translateX(100%);
}

.mobile-menu.active {
    transform: translateX(0);
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
    margin-top: 60px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
}

.hamburger-menu {
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-menu i {
    font-size: 1.5rem;
}

.mobile-menu, .hamburger-menu {
    display: none;
}

/* Styles du menu */
.menu-button {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-button i {
    font-size: 24px;
    color: var(--text-color);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .menu-button {
        display: block;
    }
}

@media (min-width: 900px) {
    .baseline-mobile {
        display: none;
    }
}

@media (max-width: 900px) {
    .baseline-desktop {
        display: none;
    }
}

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

/* Styles du menu mobile */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 50px;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 1000;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 80px;
}

.mobile-menu ul li {
    margin: 30px 0;
}

.mobile-menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
}

.mobile-menu ul li a:hover {
    color: var(--primary-color);
}

.hamburger-menu {
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-menu i {
    font-size: 1.5rem;
}

.mobile-menu, .hamburger-menu {
    display: none;
}

/* Styles du menu */
.menu-button {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-button i {
    font-size: 24px;
    color: var(--text-color);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    min-width: 200px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .menu-button {
        display: block;
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

main {
    padding-top: 80px;
}
