:root {
    --primary-color: #D4AF37;
    --secondary-color: #1a1a1a;
    --accent-color: #000000;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #D4AF37 0%, #F4E09A 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #000000;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.logo h2::after {
    content: 'VEGALYS';
    position: absolute;
    top: 40%;
    left: 0;
    transform: scaleY(-1);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.3;
    pointer-events: none;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
}

.logo h2:hover {
    transform: scale(1.05);
    letter-spacing: 3px;
}

.logo h2:hover::after {
    letter-spacing: 3px;
    opacity: 0.5;
}

.logo .brand-logo {
    height: 60px; /* Augmentation de la taille du logo de 40px à 60px */
    width: auto;
    transition: transform 0.3s ease;
    /* Animation respirante avec lueur dorée */
    animation: logoBreathing 4s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6))
           drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.logo:hover .brand-logo {
    transform: scale(1.05);
}

/* Animation simple pour le logo */
@keyframes logoGlow {
    0%, 100% {
        text-shadow: 
            0 0 5px rgba(212, 175, 55, 0.3),
            0 0 10px rgba(212, 175, 55, 0.2),
            0 0 15px rgba(212, 175, 55, 0.1);
        transform: scale(1);
    }
    50% {
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.6),
            0 0 20px rgba(212, 175, 55, 0.4),
            0 0 30px rgba(212, 175, 55, 0.2),
            0 0 40px rgba(212, 175, 55, 0.1);
        transform: scale(1.02);
    }
}

/* Animation respirante pour le logo */
@keyframes logoBreathing {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.3))
               drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7))
               drop-shadow(0 0 12px rgba(212, 175, 55, 0.5))
               drop-shadow(0 0 16px rgba(212, 175, 55, 0.3));
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

/* Navigation active state */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

.btn-primary {
    background: var(--gradient);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.nav-menu .btn-primary {
    background: var(--white);
    color: #000000;
    padding: 0.4rem 1.5rem;
    min-width: 110px;
}

.nav-menu .btn-primary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 140%;
    height: 450px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary {
    background: var(--white);
    color: #000000;
    padding: 0.8rem 2rem;
    min-width: 180px;
}

.hero .btn-primary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Reservation Section */
.reservation {
    padding: 4rem 0; /* Restauration du padding original */
    background: #000; /* Fond noir au lieu de #fff */
}

.reservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start; /* Changé de center à start pour un meilleur alignement */
}

.reservation-form {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reservation-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #2a2a2a;
    color: var(--white);
}

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

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

.contact-options {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    /* Centrage vertical sur desktop */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;
}

.contact-options:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-options h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--gradient);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #000000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author strong {
    color: var(--white);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

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

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

.contact-form {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Style spécial pour le bouton contact identique à la navigation */
.contact-form .btn-primary.nav-style {
    background: var(--white);
    color: #000000;
    padding: 0.8rem 1.5rem;
    min-width: 180px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.contact-form .btn-primary.nav-style:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white); /* Changé de var(--primary-color) à var(--white) */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Couleurs réelles des réseaux sociaux */
.social-links a.facebook {
    background: #1877f2;
}

.social-links a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a.linkedin {
    background: #0077b5;
}

.social-links a.twitter {
    background: #1da1f2;
}

.social-links a:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

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

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: #000000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: #1a1a1a;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.pricing-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.price-list {
    margin-bottom: 2rem;
}

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

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.price-item span:last-child {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.price-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.pricing-footer {
    text-align: center;
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-footer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Forfait Section */
.forfait {
    padding: 4rem 0; /* Restauration du padding original */
    background: #000; /* Fond noir au lieu de #f8f9fa */
}

.forfait-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

/* Espace supplémentaire sur desktop pour éviter le chevauchement avec le texte informatif */
@media (min-width: 769px) {
    .forfait-grid {
        margin-bottom: 8rem;
    }
}

.forfait-category {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.forfait-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    padding: 2rem;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 150px;
    text-align: center;
}

.forfait-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f 0%, #e6c547 100%);
}

.forfait-btn i {
    font-size: 3rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.forfait-btn span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

/* Styles pour l'effet hover des aéroports - Version améliorée */
.forfait-btn-hover {
    position: relative;
    display: block;
    width: 100%;
}

.forfait-btn-hover .forfait-btn {
    border-radius: 15px;
    transition: border-radius 0.3s ease;
}

.forfait-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    max-height: 300px;
    overflow: visible;
    display: block !important;
}

.forfait-btn-hover .forfait-btn {
    border-radius: 15px 15px 0 0 !important;
}

.forfait-btn-hover:hover .forfait-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    max-height: 300px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.forfait-sub-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-decoration: none;
}

.forfait-sub-btn:last-child {
    border-bottom: none;
    border-radius: 0 0 15px 15px;
}

.forfait-sub-btn:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: var(--primary-color);
    padding-left: 25px;
    transform: translateX(5px);
}

.forfait-sub-btn::before {
    content: '✈';
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.forfait-sub-btn:hover::before {
    opacity: 1;
    left: 15px;
}

/* Assurer la compatibilité sur tous les navigateurs */
.forfait-category:has(.forfait-btn-hover) {
    overflow: visible;
}

/* Version mobile - sous-menu toujours visible aussi */
@media (max-width: 768px) {
    .forfait-sub-menu {
        position: static;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        overflow: visible;
        transition: all 0.4s ease;
    }
    
    .forfait-btn-hover .forfait-btn {
        border-radius: 15px;
    }
    
    .forfait-sub-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Desktop - sous-menu toujours visible */
@media (min-width: 769px) {
    /* Position de base pour le container aéroports */
    .forfait-btn-hover {
        position: relative;
    }
    
    /* Sous-menu visible en permanence sur desktop */
    .forfait-btn-hover .forfait-sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-top: none;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        max-height: 300px;
        overflow: visible;
        display: block !important;
    }
    
    /* Bouton principal avec coins arrondis seulement en haut */
    .forfait-btn-hover .forfait-btn {
        border-radius: 15px 15px 0 0 !important;
    }
    
    /* Effet hover pour améliorer l'interactivité */
    .forfait-btn-hover:hover .forfait-sub-menu {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    }
    
    /* S'assurer que le container est assez haut */
    .forfait-category {
        margin-bottom: 2rem;
    }
    
    /* Espace supplémentaire pour le container avec sous-menu aéroports */
    .forfait-category:has(.forfait-btn-hover) {
        margin-bottom: 12rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .forfait-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .forfait-category {
        max-width: 100%;
        width: 100%;
    }
}

/* Page forfaits */
.forfaits-page {
    padding: 6rem 0;
    background: #000000;
    min-height: 100vh;
}

.forfaits-table-container {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    margin-bottom: 3rem;
    overflow-x: auto;
}

.forfaits-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.forfaits-table thead tr {
    background: var(--gradient);
}

.forfaits-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
    border: none;
}

.forfaits-table th:first-child {
    text-align: left;
    width: 50%;
}

.forfaits-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    color: var(--white);
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.forfaits-table td:first-child {
    text-align: left;
    color: var(--text-light);
    font-weight: 500;
}

.forfaits-table td:nth-child(2),
.forfaits-table td:nth-child(3) {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.forfaits-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

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

.aeroports-page {
    padding: 6rem 0;
    background: #000000;
    min-height: 100vh;
}

.aeroports-table-container {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    margin-bottom: 3rem;
    overflow-x: auto;
}

.aeroports-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.aeroports-table thead tr {
    background: var(--gradient);
}

.aeroports-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
    border: none;
}

.aeroports-table th:first-child {
    text-align: left;
    width: 50%;
}

.aeroports-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    color: var(--white);
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.aeroports-table td:first-child {
    text-align: left;
    color: var(--text-light);
    font-weight: 500;
}

.aeroports-table td:nth-child(2),
.aeroports-table td:nth-child(3) {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.aeroports-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

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

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

/* Page loisirs */
.loisirs-page {
    padding: 6rem 0;
    background: #000000;
    min-height: 100vh;
}

.loisirs-table-container {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    margin-bottom: 3rem;
    overflow-x: auto;
}

.loisirs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.loisirs-table thead tr {
    background: var(--gradient);
}

.loisirs-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
    border: none;
}

.loisirs-table th:first-child {
    text-align: left;
    width: 50%;
}

.loisirs-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    color: var(--white);
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.loisirs-table td:first-child {
    text-align: left;
    color: var(--text-light);
    font-weight: 500;
}

.loisirs-table td:nth-child(2),
.loisirs-table td:nth-child(3) {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
}

.loisirs-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

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

.loisirs-footer {
    text-align: center;
    background: #1a1a1a;
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loisirs-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loisirs-note p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.loisirs-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Responsive pour la page loisirs */
@media (max-width: 768px) {
    .loisirs-table-container {
        padding: 2rem 1.5rem;
    }
    
    .loisirs-table th,
    .loisirs-table td {
        padding: 1rem 0.5rem;
        font-size: 1rem;
    }
    
    .loisirs-table th {
        font-size: 1rem;
    }
    
    .loisirs-table td:nth-child(2),
    .loisirs-table td:nth-child(3) {
        font-size: 1.1rem;
    }
    
    .loisirs-footer {
        padding: 2rem 1.5rem;
    }
    
    .loisirs-note {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .loisirs-table th,
    .loisirs-table td {
        padding: 0.8rem 0.3rem;
        font-size: 0.9rem;
    }
    
    .loisirs-table td:nth-child(2),
    .loisirs-table td:nth-child(3) {
        font-size: 1rem;
    }
    
    .loisirs-note p {
        font-size: 1rem;
    }
}

/* Styles pour les onglets */
.tabs-container {
    margin-top: 2rem;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e1e5e9;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #6c757d;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.tab-btn:hover {
    color: var(--primary-color, #2c5282);
    background-color: #f8f9fa;
}

.tab-btn.active {
    color: var(--primary-color, #2c5282);
    border-bottom-color: var(--primary-color, #2c5282);
    font-weight: 600;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

/* Responsive pour les onglets */
@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
        padding: 0.75rem 1rem;
    }
}

/* Styles pour les onglets de tarifs */
.tarifs-tabs-container {
    margin-top: 3rem;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.tarifs-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #333;
    padding-bottom: 1rem;
}

.tarifs-tab-btn {
    background: transparent;
    border: 2px solid #333;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tarifs-tab-btn i {
    font-size: 1.1rem;
}

.tarifs-tab-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.tarifs-tab-btn.active {
    color: var(--secondary-color);
    background: var(--gradient);
    border-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.tarifs-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.tarifs-tab-content.active {
    display: block;
}

.tarifs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
}

.tarifs-table thead tr {
    background: var(--gradient);
}

.tarifs-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    border: none;
}

.tarifs-table th:last-child {
    text-align: center;
    width: 25%;
}

.tarifs-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #444;
    color: var(--white);
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.tarifs-table td:last-child {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.tarifs-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

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

.zone-description {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.zone-description h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.zone-description p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Calculateur Section */
.calculateur {
    padding: 6rem 0;
    background: #000000;
}

.calculateur-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.calculateur-form {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculateur-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.calculateur-form h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.resultat-container {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resultat-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.resultat-container h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.resultat-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.distance-info,
.duree-info,
.prix-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.distance-info:hover,
.duree-info:hover,
.prix-info:hover {
    background: rgba(212, 175, 55, 0.15);
}

.distance-info i,
.duree-info i,
.prix-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.distance-info span,
.duree-info span,
.prix-info span {
    color: var(--white);
    font-size: 1.1rem;
}

.prix-info {
    border: 2px solid var(--primary-color);
}

.prix-info strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.tarifs-info {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarifs-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.tarifs-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tarif-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.tarif-card:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.02);
}

.tarif-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tarif-card p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.tarif-card strong {
    color: var(--primary-color);
}

.note {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* Styles pour les nouveaux champs du calculateur */
.supplements-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-group label input[type="time"] {
    width: 100%;
}

/* Animation de loading pour le bouton */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages temporaires pour le calculateur */
.temp-message {
    animation: slideInFromTop 0.3s ease-out;
    margin-bottom: 1rem;
}

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

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #dc3545;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    padding: 1rem;
    color: #28a745;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== CALCULATEUR GOOGLE MAPS ===== */

/* Conteneur de carte Google Maps */
#map-container {
    height: 300px;
    width: 100%;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

/* Suggestions d'adresses Google */
.google-address-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.suggestion-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background-color: #f5f5f5;
}

.suggestion-item:last-child {
    border-bottom: none;
}

/* Messages du calculateur */
.calculateur-message {
    padding: 12px;
    margin: 10px 0;
    border-radius: 4px;
    display: none;
    font-weight: 500;
}

.calculateur-message.error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.calculateur-message.success {
    background-color: #efe;
    color: #383;
    border: 1px solid #cfc;
}

.calculateur-message.info {
    background-color: #eef;
    color: #338;
    border: 1px solid #ccf;
}

/* Résultats de calcul améliorés */
.calculation-success {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.calculation-success h3 {
    color: var(--primary-color, #2c5282);
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    text-align: center;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease;
}

.result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.result-item.highlight {
    background: linear-gradient(135deg, var(--primary-color, #2c5282) 0%, #3d72a8 100%);
    color: white;
    border-color: var(--primary-color, #2c5282);
    font-weight: 600;
}

.result-label {
    font-weight: 500;
    color: #495057;
}

.result-item.highlight .result-label {
    color: #e9ecef;
}

.result-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color, #2c5282);
}

.result-item.highlight .result-value {
    color: white;
    font-size: 1.3rem;
}

.route-details {
    background: white;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.route-details p {
    margin: 8px 0;
    line-height: 1.5;
}

.route-details strong {
    color: var(--primary-color, #2c5282);
}

/* Responsive pour le calculateur Google Maps */
@media (max-width: 768px) {
    #map-container {
        height: 250px;
        margin-top: 15px;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .calculation-success {
        padding: 16px;
        margin-top: 15px;
    }
    
    .calculation-success h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .result-item {
        padding: 10px 12px;
    }
    
    .route-details {
        padding: 12px;
    }
}

/* Loader pour Google Maps */
.google-maps-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    flex-direction: column;
    gap: 10px;
}

.google-maps-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color, #2c5282);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== FIN CALCULATEUR GOOGLE MAPS ===== */

/* ===== HARMONISATION DES BOUTONS AVEC LE STYLE RÉSERVER ===== */

/* Bouton "Calculer le prix" */
.btn-calculate {
    background: var(--white) !important;
    color: #000000 !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    font-size: 1rem !important;
    min-width: auto !important;
}

.btn-calculate:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Bouton "Réserver cette course" */
.btn-primary[onclick*="reserverCourse"] {
    background: var(--white) !important;
    color: #000000 !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
}

.btn-primary[onclick*="reserverCourse"]:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Boutons "Demander un devis" et "Envoyer le message" */
.btn-nav-style {
    background: var(--white) !important;
    color: #000000 !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    font-size: 1rem !important;
    min-width: auto !important;
}

.btn-nav-style:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Liens avec la classe btn-nav-style (comme les boutons de contact) */
a.btn-nav-style {
    text-align: center !important;
    vertical-align: middle !important;
}

a.btn-nav-style:hover {
    color: var(--secondary-color) !important;
}

/* ===== FIN HARMONISATION DES BOUTONS ===== */

/* ===== MASQUAGE DES ONGLETS SUPERFLUS SUR MOBILE ===== */
/* Masquer uniquement "À propos" et "Avis" sur mobile et tablette */
@media (max-width: 1024px) {
    /* Masquer seulement les liens "À propos" et "Avis" sur mobile/tablette */
    .nav-menu a[href="#a-propos"], 
    .nav-menu a[href="#avis"] {
        display: none !important;
    }
    
    /* Supprimer les espaces vides laissés par les éléments masqués */
    .nav-menu {
        gap: 1rem !important; /* Réduction de l'espace entre les éléments visibles */
    }
    
    /* Forcer la compression des éléments pour éviter les trous */
    .nav-menu li:has(a[href="#a-propos"]),
    .nav-menu li:has(a[href="#avis"]) {
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* ===== FIN MASQUAGE ONGLETS MOBILE ===== */

/* Styles pour les icônes multiples dans les boutons forfait */
.forfait-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.forfait-icons i {
    font-size: 3rem;
    color: #000;
}

/* Responsive pour les icônes multiples */
@media (max-width: 768px) {
    .forfait-icons {
        gap: 0.3rem;
    }
    
    .forfait-icons i {
        font-size: 2.5rem;
    }
}

/* ===== CENTRAGE VERTICAL SECTION CONTACT POUR DESKTOP ===== */
/* Uniquement pour les écrans desktop (1024px et plus) */
@media (min-width: 1024px) {
    .reservation-content {
        align-items: center; /* Centrage vertical sur desktop */
    }
    
    .contact-options {
        align-self: center; /* S'assurer que l'élément est centré */
        min-height: auto; /* Hauteur automatique */
    }
}
/* ===== FIN CENTRAGE VERTICAL DESKTOP ===== */

