:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #00a8ff;
    --text-color: #333333;
    --light-text: #ffffff;
    --background-color: #f8f9fa;
    --section-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    height: 100%;
    min-height: 100vh;
    background-color: #f8f9fa;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

main {
    flex: 1 0 auto;
    min-height: calc(100vh - 60px - 80px);
    padding-bottom: 2rem;
    background-color: #f8f9fa;
}

body:not(.home-page) main {
    padding-top: 80px;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 60px;
}

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    color: var(--light-text);
    font-size: 1.5rem;
}

.logo a {
    text-decoration: none;
    color: var(--light-text);
}

.logo a:hover {
    text-decoration: none;
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
}

/* Style pour le numéro de téléphone dans la navbar */
.nav-links .phone-number {
    margin-left: 20px;
}

.nav-links .phone-number a {
    color: #fff;
    background-color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links .phone-number a:hover {
    background-color: #0097e6;
    transform: scale(1.05);
}

.nav-links .phone-number i {
    margin-right: 5px;
}

.back-button {
    display: none;
    color: var(--light-text);
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.back-button i {
    font-size: 1.1rem;
}

.back-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media screen and (min-width: 1200px) {
    .burger {
        display: none;
    }
}

@media screen and (max-width: 1050px) {
    .burger {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        right: 0;
        height: calc(100vh - 60px);
        top: 60px;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 2rem;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-active {
        display: flex !important;
    }

    .logo {
        margin: 0;
    }

    .back-button {
        position: absolute;
        left: 1rem;
    }
}

@media screen and (min-width: 1051px) {
    .burger {
        display: none;
    }
}

.nav-active {
    transform: translateX(0%);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/taxi.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

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

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

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

.cta-button:hover {
    background-color: #0097e6;
}

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

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-item p a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--accent-color);
}

.contact-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-link i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.contact-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.contact-link p {
    margin: 0;
    transition: color 0.3s ease;
}

/* Footer */
footer {
    flex-shrink: 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

/* Burger Menu */
.burger {
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1000;
    margin-left: auto;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Burger Animation */
.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Reservation Form */
.reservation-form {
    padding: 2rem;
    background-color: #f8f9fa;
}

.reservation-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.reservation-form form {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--section-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

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

/* Make certain form groups take full width */
.form-group:nth-last-child(2),
.form-group:last-child {
    grid-column: 1 / -1;
}

.submit-button {
    grid-column: 1 / -1;
    padding: 0.8rem;
    background-color: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
    .reservation-form form {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

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

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.services-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

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

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

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

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

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

@media screen and (max-width: 900px) {
    .services-container {
        flex-direction: column;
    }

    .service-card {
        margin-bottom: 1rem;
    }
}

/* Zone de couverture */
.coverage {
    padding: 5rem 0;
    background-color: #f8f9fa;
    perspective: 1000px;
}

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

.coverage p.subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.department-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

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

.department-card:hover::before {
    opacity: 1;
}

.department-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.department-card h3 span {
    background-color: var(--accent-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 0.8rem;
}

.department-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media screen and (max-width: 1200px) {
    .departments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .departments-grid {
        grid-template-columns: 1fr;
    }

    .department-card {
        padding: 1.5rem;
    }
}

/* Optimisation des performances */
.service-card,
.department-card {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: subpixel-antialiased;
}

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .department-card {
        transition: none;
        transform: none;
    }

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

    .department-card::before {
        transition: none;
    }
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

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

.legal-content {
    padding: 5rem 0;
}

.legal-content h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.legal-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Contact Section in Legal Mentions */
.contact-section {
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.contact-section h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-section p {
    margin-bottom: 1rem;
    color: #555;
}

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

.contact-section ul li {
    margin-bottom: 0.8rem;
    color: #555;
}

.contact-section .phone-number,
.contact-section .email {
    color: #007bff;
    font-weight: 500;
}

/* Media Queries for Contact Section */
@media screen and (max-width: 768px) {
    .contact-section {
        padding: 1.5rem;
        margin: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.3rem;
    }
}

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

.modal-content {
    position: relative;
    background-color: white;
    margin: 10% auto;
    padding: 1.5rem;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

@media screen and (max-height: 700px) {
    .modal-content {
        margin: 5% auto;
        max-height: 85vh;
        overflow-y: auto;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.estimation-details {
    margin-bottom: 1.5rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-of-type {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

#estimated-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-actions button {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#confirmReservation {
    background-color: var(--accent-color);
    color: white;
}

#confirmReservation:hover {
    background-color: #0097e6;
}

#cancelReservation {
    background-color: #dc3545;
    color: white;
}

#cancelReservation:hover {
    background-color: #c82333;
}

#min-price-info {
    margin-bottom: 0;
    padding: 0.5rem;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    color: #856404;
}

.price-info-note {
    margin-top: 1.2rem;
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #777;
    border-left: 2px solid #00a8ff;
}

.price-info-note i {
    color: #00a8ff;
    font-size: 0.9rem;
    margin-top: 0.05rem;
}

.price-info-note span {
    line-height: 1.2;
}

.modal.show {
    display: block;
}

/* Styles pour les notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(150%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    width: calc(100% - 40px);
    /* Largeur adaptative avec marges */
}

@media screen and (max-width: 768px) {
    .notification {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%) translateY(150%);
        width: calc(100% - 40px);
        max-width: 100%;
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .notification.show {
        transform: translateX(50%) translateY(0);
    }

    .notification-content {
        flex: 1;
        min-width: 0;
        /* Pour gérer le texte long */
    }

    .notification-title {
        font-size: 0.95rem;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .notification-message {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .notification i {
        font-size: 18px;
        flex-shrink: 0;
    }

    .notification-close {
        padding: 8px;
        margin: -8px;
        flex-shrink: 0;
    }
}

/* Animation de la notification */
.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

@media screen and (max-width: 768px) {
    .notification.success {
        border-left: none;
        border-top: 4px solid #28a745;
    }

    .notification.error {
        border-left: none;
        border-top: 4px solid #dc3545;
    }
}

.notification i {
    font-size: 20px;
}

.notification.success i {
    color: #28a745;
}

.notification.error i {
    color: #dc3545;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.notification-message {
    color: #666;
    font-size: 0.9em;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0;
    font-size: 18px;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #666;
}

/* Container pour les notifications */
.notification-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    width: 100%;
    height: 0;
}

.notification {
    pointer-events: auto;
}

/* Styles pour l'autocomplétion des adresses */
.suggestions-list {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 2px;
    list-style: none;
    padding: 0;
}

.suggestions-list li {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.suggestions-list li:last-child {
    border-bottom: none;
}

.suggestions-list li:hover {
    background-color: #f5f5f5;
}

/* Style pour le défilement de la liste */
.suggestions-list::-webkit-scrollbar {
    width: 8px;
}

.suggestions-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.suggestions-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.suggestions-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.help-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.3rem;
    font-style: italic;
}

/* Styles pour le message de confirmation */
.confirmation-message {
    text-align: center;
    padding: 2rem 1rem;
}

.confirmation-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.confirmation-message h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.confirmation-message p {
    color: #666;
    margin-bottom: 0.5rem;
}

.confirmation-message .confirmation-details {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}

@media screen and (max-width: 768px) {
    .confirmation-message {
        padding: 1.5rem 0.5rem;
    }

    .confirmation-message i {
        font-size: 2.5rem;
    }

    .confirmation-message h3 {
        font-size: 1.2rem;
    }
}

/* Styles pour la page de suivi des réservations */
.tracking-form {
    margin: 4rem auto 2rem auto;
    max-width: 600px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tracking-form h2 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.tracking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
}

.tracking-form input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.tracking-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.reservation-details {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.details-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.status-banner {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.status-banner.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-banner.confirmed {
    background-color: #d4edda;
    color: #155724;
}

.status-banner.cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.status-banner.completed {
    background-color: #cce5ff;
    color: #004085;
}

.details-content {
    padding: 1.5rem;
}

.detail-row {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    flex: 0 0 150px;
    font-weight: 500;
    color: #666;
}

.detail-value {
    flex: 1;
    color: #333;
}

.notes-row {
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 4px;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .tracking-form {
        margin: 1rem;
        padding: 1.5rem;
    }
}

/* Styles pour la liste des réservations */
.reservations-list {
    padding: 2rem 0;
}

.reservations-list h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
}

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

.reservation-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.reservation-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.reservation-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
}

.reservation-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
}

/* Couleurs des statuts */
.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background-color: #d4edda;
    color: #155724;
}

.status-completed {
    background-color: #cce5ff;
    color: #004085;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

/* Animation pour les statuts */
.status i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Mise à jour des styles de la carte */
.reservation-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.trip-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Accent color pour les icônes */
.accent-color {
    color: #007bff;
}