/* ROOT COLORS */
:root {
    --gold: #d4af37;
    --bg-dark: #111;
    --text-light: #fff;
    --muted: #777;
    --transition: 0.25s ease;
}

/* GLOBAL */
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Inter, system-ui, Arial, sans-serif;
    color: #222;
    background: #fff;
    width: 100%;
    
}

body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-menu {
    flex-direction: row-reverse;
}


/* ===========================
   HEADER
=========================== */
.header {
    background: rgba(0,0,0,0.88);
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1rem 0;
    z-index: 100;
    backdrop-filter: blur(6px);
}

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

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

/* NAV MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.nav-menu a:hover {
    color: var(--gold);
}

/* ACTIONS (LANGUE + CTA) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--gold), #f4d03f);
    color: #111;
    padding: .6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}
.cta-button:hover {
    filter: brightness(1.05);
}

/* ===========================
   LANGUAGE SELECTOR
=========================== */
.language-selector {
    position: relative;
}

.language-btn {
    background:#111;
    color: #FFf;
    padding: .5rem 1rem;
    border-radius: 20px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
    font-size: .9rem;
}

.language-flag {
    font-size: 1.1rem;
}

.language-arrow {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Dropdown */
.language-dropdown {
    position: absolute;
    display: none;
    top: 115%;
    right: 0;
    width: 220px;

    background: #fff;
    border-radius: 12px;
    padding: .5rem 0;
    box-shadow: 0 5px 25px rgba(0,0,0,.15);
    z-index: 200;
}
.language-dropdown.show {
    display: block !important;
}

.language-option {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.language-option:hover {
    background: #f3f3f3;
}

.language-option.active {
    background: #eee;
    font-weight: 600;
}

.language-info {
    display: flex;
    flex-direction: column;
    font-size: .8rem;
}

/* ===========================
   MOBILE MENU BUTTON
=========================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    height: 100vh;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.75)), url('../images/hero.png') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 8rem 1rem 4rem;
      animation: fadeInUp 1s ease-out;
      position: relative;
}

.hero-content{
     max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 3.5rem;
    letter-spacing: -1px;
            line-height: 1.2;
}

.hero .highlight {
    color: var(--gold);
    font-weight: 600;
}

.hero p {
   
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
        padding: 1rem 2.5rem;

    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    margin: 0 .4rem;
}

.btn-primary {
    background: var(--gold);
    color: #111;
}

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

/* ===========================
   SECTIONS (Services, Flotte…)
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}


/* --------------------------------------------- */
/* A PROPOS SECTION — PREMIUM GOLD STYLE         */
/* --------------------------------------------- */


#about {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

#about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

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

/* Header de section */
.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-header .subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Grille 3 colonnes */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.about-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #d4af37;
    transition: width 0.4s ease;
    border-radius: 2px;
}

.about-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.about-card:hover::before {
    width: 60px;
}

/* Icône */
.about-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-card:hover .about-card-icon {
    background: #d4af37;
}

.about-card-icon svg {
    width: 32px;
    height: 32px;
    fill: #d4af37;
    transition: fill 0.3s ease;
}

.about-card:hover .about-card-icon svg {
    fill: #0a0a0a;
}

/* Contenu card */
.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 300;
}

/* Liste dans les cards */
.about-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.about-card ul li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-card ul li:last-child {
    border-bottom: none;
}

.about-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    #about {
        padding: 70px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-card {
        padding: 35px 25px;
    }
}


/* --------------------------------------------- */
/* SERVICES SECTION — PREMIUM GOLD STYLE         */
/* --------------------------------------------- */

.services {
    padding: 6rem 0;
}

.services .section-title h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f1f1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
} */

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
    border: 3px solid #d4af37;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}




/* --------------------------------------------- */
/* FLEET SECTION — BLACK & GOLD LUXURY           */
/* --------------------------------------------- */

.fleet {
    padding: 6rem 0;
    background: #111;
    color: white;
}

.fleet .section-title h2 {
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 700;
}

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

.fleet-card {
    background: #1c1c1c;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

/* .fleet-image {
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a, #444);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #d4af37;
} */

/* Fleet Image → Real Vehicle Photo */
.fleet-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 3px solid #d4af37;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.fleet-info {
    padding: 1.6rem;
    text-align: left;
}

.fleet-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.fleet-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.fleet-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    color: #b1b1b1;
    font-size: 0.8rem;
}

/* ===========================
   BOOKING FORMS
=========================== */
/* ===========================
   BOOKING SECTION PREMIUM
=========================== */

.booking {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-title h2 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .highlight {
    color: var(--gold);
}

/* ==== Booking Methods (Form / Calendly / Express) ==== */

.booking-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.method-btn {
    padding: 0.8rem 1.2rem;
    border-radius: 30px;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.method-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.method-btn.active {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

/* ===========================
   BOOKING FORM
=========================== */

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    max-width: 850px;
    margin: 0 auto;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* ===========================
   PRICE ESTIMATE BOX
=========================== */

.price-estimate {
    background: linear-gradient(135deg, #fff, #f1f1f1);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.estimate-content {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
}

.estimate-label {
    color: #333;
    font-weight: 600;
}

.estimate-price {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
}

/* ===========================
   BUTTONS (Calculate / Confirm / WhatsApp)
=========================== */

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.submit-btn {
    padding: 0.9rem 1.6rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.3s ease;
    background: var(--gold);
    color: #111;
}

.submit-btn:hover {
    filter: brightness(1.1);
}

/* ===========================
   CALENDAR BOOKING STYLE
=========================== */

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .5rem;
    padding: 1rem;
}

.calendar-day {
    background: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #eee;
    transition: 0.3s ease;
}

.calendar-day.available:hover {
    border-color: var(--gold);
    background: #fdf7e3;
}

.calendar-day.unavailable {
    opacity: 0.45;
    cursor: not-allowed;
}

.time-slots {
    margin-top: 1.5rem;
}

.time-slot {
    padding: 0.7rem 1rem;
    border-radius: 10px;
    border: 2px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.time-slot:hover {
    border-color: var(--gold);
    background: #fff7da;
}

.back-to-calendar {
    margin-top: 1rem;
    padding: .6rem 1rem;
    background: #eee;
    border-radius: 10px;
}

/* ===========================
   INSTANT BOOKING
=========================== */

.instant-booking-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.instant-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.instant-btn {
    padding: 0.9rem 1.6rem;
    background: var(--gold);
    color: #111;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.instant-btn:hover {
    filter: brightness(1.1);
}


/* ===========================
   FOOTER
=========================== */
.footer {
    background: #111;
    color: #fff;
    margin-top: 3rem;
    padding: 2rem 1rem;
}

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

        .footer-section h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #d4af37;
        }

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


    

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

        @keyframes slideDown {
  from {
    transform: translate(-50%, -100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -100px);
    opacity: 0;
  }
}


/* ==============================
   MESSAGES PAIEMENT
============================== */
.success-message,
.cancel-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin: 15px 0;
  animation: fadeIn 0.4s ease;
}

/* Succès - Vert doré */
.success-message {
  background: #f0faf0;
  color: #1a6b1a;
  border: 1px solid #d4af37;
  border-left: 4px solid #d4af37;
}

/* Annulé - Rouge élégant */
.cancel-message {
  background: #fdf0f0;
  color: #8b1a1a;
  border: 1px solid #e0a0a0;
  border-left: 4px solid #c0392b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/*.btn-stripe {
    background-color: #6772e5; /* Couleur Stripe (Bleu violacé) 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-stripe:hover {
    background-color: #5469d4;
}

/* Pour désactiver le bouton pendant le chargement 
.btn-stripe:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.payment-message {
  margin: 20px 0;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.payment-message.success {
  background: #e6f9f0;
  color: #0f5132;
}

.payment-message.cancel {
  background: #fdecea;
  color: #842029;
}*/

