* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Sélecteur de langue en dropdown */
.lang-dropdown {
    position: relative;
    margin-left: 10px;
}

.lang-current {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.current-lang {
    margin-right: 8px;
}

.lang-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lang-dropdown:hover .lang-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-content li {
    display: block;
    width: 100%;
}

.lang-option {
    display: block;
    margin-left: 0;
    width: 100%;
    padding: 12px 0;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--primary-dark);
    transition: all 0.2s ease;
}

.lang-option:hover {
    color: var(--primary-light);
}

.lang-option.active {
    font-weight: 600;
    text-decoration: underline;
    color: var(--primary-light);
}
/* Barre promotionnelle */
.promo-bar {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 10px 0;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.promo-bar-content {
    display: inline-block;
    animation: scroll-left 100s linear infinite;
    padding-right: 50px;
}

.promo-bar-content span {
    margin-right: 20px;
}

.promo-button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: var(--primary-dark);;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.promo-button:hover {
    background-color: var(--primary-light);
    color: white;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Badge promotionnel -20% */
.promo-badge {
    position: fixed;
    top: 180px;
    right: 20px;
    background-color: #f1c40f;
    color: #001a33;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transform: rotate(15deg);
    animation: pulse-badge 2s infinite;
    border: 4px dashed #001a33;
}

@keyframes pulse-badge {
    0% {
        transform: rotate(15deg) scale(1);
    }
    50% {
        transform: rotate(15deg) scale(1.1);
    }
    100% {
        transform: rotate(15deg) scale(1);
    }
}

/* Style pour les prix barrés */
.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    display: inline;
    margin-right: 5px;
}

.price-new {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.1em;
    display: inline;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding-top: 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Variables de couleurs basées sur le logo */
:root {
    --primary-dark: #004279;    /* Bleu très foncé (presque noir) */
    --primary: #0a3d62;         /* Bleu foncé */
    --primary-light: #0984e3;   /* Bleu clair */
    --accent: #00a8ff;          /* Bleu vif */
    --light: #ffffff;           /* Blanc */
    --gray: #74b9ff;            /* Bleu gris clair */
    --dark-gray: #333;          /* Gris foncé */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

.btn {
    display: inline-block;
    background-color: var(--primary-dark);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

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

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--primary-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 120px 0;
    text-align: center;
    background: url('images/cars/vanLabGo.webp') no-repeat center center/cover;
    background-size: cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 26, 51, 0.8);
    z-index: 1;
    pointer-events: none;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

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

.service-card {
    background-color: rgba(191, 234, 255, 0.84);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
}

/* Tarifs Section */
.tarifs {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tarifs-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.tarifs-table th, .tarifs-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.tarifs-table th {
    background-color: var(--primary-dark);
    color: white;
    font-weight: 600;
}

.tarifs-table tr:last-child td {
    border-bottom: none;
}

.tarifs-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.extras, .maintenance {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.extras h3, .maintenance h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.extras ul {
    list-style: none;
}

.extras li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.extras li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    font-size: 0.9rem;
}

.price-note {
    font-size: 14px;
    color: #4A4A4A;
    background-color: #F3F4F6;
    padding: 8px 12px;
    border-left: 4px solid #3B82F6;
    border-radius: 4px;
    font-weight: 500;
    text-align: left;
    display: inline-block;
    margin-top: 10px;
}


/* Section Informations Importantes simplifiée */
.info-section {
    margin: 30px 0;
}

.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-light);
    padding: 20px;
    border-radius: 0 5px 5px 0;
}

.info-box p {
    margin: 0;
    line-height: 1.6;
}

.info-box i {
    color: var(--primary-light);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Galerie Section */
.galerie {
    padding: 80px 0;
    background-color: white;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.galerie-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.before-after {
    position: relative;
    display: flex;
    flex-direction: column;
}

.before, .after {
    position: relative;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 26, 51, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.galerie-item p {
    padding: 15px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

.contact-info {
    background-color: var(--primary-dark);
    color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info > p > i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-media {
    margin-top: 30px;
}

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

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

.social-icons a:hover {
    background-color: var(--primary-light);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 90px;
    width: auto;
}

.footer-links a {
    margin-left: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
}

.modal h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .hero h2 {
        font-size: 2.2rem;
    }

    .logo-img, .footer-logo-img {
        height: 50px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .footer-links {
        margin-top: 20px;
    }

    .footer-links a {
        margin: 0 10px;
    }

    .logo-img {
        height: 40px;
    }

    .footer-logo-img {
        height: 35px;
        margin-bottom: 15px;
    }

    .promo-bar {
        font-size: 0.9rem;
    }

    .promo-button {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    .promo-badge {
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
        top: 110px;
        right: 10px;
    }
    .nav-menu {
        padding-bottom: 20px;
    }

    .lang-dropdown {
        margin: 15px 0 0 0;
        width: 100%;
    }

    .lang-current {
        justify-content: center;
        width: 100%;
    }

    .lang-dropdown-content {
        position: relative;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        border: 1px solid #eee;
        /* Modifier le comportement sur mobile */
        opacity: 0;
        visibility: hidden;
        transform: translateY(0);
        max-height: 0;
        transition: all 0.3s ease;
    }

    /* Classe pour afficher le dropdown sur mobile */
    .lang-dropdown-content.show {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

    /* Désactiver le hover sur mobile */
    .lang-dropdown:hover .lang-dropdown-content {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .lang-dropdown:hover .lang-dropdown-content.show {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .service-card, .extras, .maintenance, .contact-form, .contact-info {
        padding: 20px;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
    }

    .logo-img {
        height: 35px;
    }

    .promo-bar {
        font-size: 0.8rem;
    }

    .promo-button {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    .promo-badge {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
        top: 100px;
        right: 5px;
    }
}

