:root {
    --primary-color: #e67e22;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-bg: #34495e;
    --text-dark: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

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

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

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

.btn-reservation {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: var(--transition);
}

.btn-reservation:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeIn 1.5s ease;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Mission Section */
.mission {
    background: var(--light-bg);
    padding: 4rem 0;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Services Section */
.services, .vehicules {
    padding: 5rem 0;
}

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

.service-card, .vehicule-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.service-card p, .vehicule-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.service-link:hover {
    color: #d35400;
    transform: translateX(5px);
}

/* Véhicules Cards */
.vehicule-card {
    padding: 1.5rem;
}

.vehicule-image {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.vehicule-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

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

.vehicule-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.vehicule-features {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.vehicule-features i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

/* Why Us Section */
.why-us {
    background: var(--light-bg);
    padding: 5rem 0;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature p {
    color: var(--text-light);
}

/* ==================== ÉVÉNEMENTIEL SECTION ==================== */
div.container h4 {
    text-align: center;
    margin-top: 0;

}
.evenementiel {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   
}

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

/* Catégories d'événements */
.event-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.category-card:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: white;
}

.category-card:hover i {
    color: white;
}

.category-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.category-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.category-card.active {
    background: var(--primary-color);
    color: white;
}

.category-card.active i {
    color: white;
}

/* Galerie Événementielle */
.event-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    height: 515px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-small:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Services Événementiels */
.event-services {
    margin-bottom: 4rem;
}

.event-services h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

.service-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.service-item h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Call to Action */
.event-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), #d35400);
    border-radius: 10px;
    color: white;
}

.event-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.event-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.event-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

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

/* Responsive */
@media (max-width: 992px) {
    .event-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.featured {
        grid-column: span 2;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .event-categories {
        gap: 1rem;
    }
    
    .category-card {
        min-width: 120px;
        padding: 1rem;
    }
    
    .event-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
        height: 250px;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .event-cta {
        padding: 2rem 1rem;
    }
    
    .event-cta h3 {
        font-size: 1.5rem;
    }
}

.text-center {
    text-align: center;
}

/* Guest House Section */
.guest-house {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 5rem 0;
}


.guest-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
   
}

.guest-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.guest-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.guest-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.guest-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guest-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}


/* ==================== CONTACT SECTION ÉLÉGANTE ==================== */
.contact-elegant {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Header avec décoration */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    
    text-align: center;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: lowercase;
    margin-bottom: 0.5rem;
}

.section-title-elegant {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title-decoration .line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.title-decoration i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Wrapper principal */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Carte d'information */
.contact-info-elegant {
    position: relative;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(230, 126, 34, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(230, 126, 34, 0.1);
}

.card-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(230, 126, 34, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.card-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
}

.icon-box {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #f39c12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.info-value:hover {
    color: var(--primary-color);
}

/* Section sociale */
.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(230, 126, 34, 0.1);
}

.social-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

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

/* Formulaire élégant */
.contact-form-elegant {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.required {
    color: var(--primary-color);
}

.input-wrapper, .textarea-wrapper, .select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i, .textarea-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.select-wrapper i:first-child {
    position: absolute;
    left: 15px;
    color: var(--text-light);
    z-index: 1;
}

.select-arrow {
    position: absolute;
    right: 15px;
    color: var(--text-light);
    pointer-events: none;
}

.input-wrapper input,
.textarea-wrapper textarea,
.select-wrapper select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8f9fa;
    font-family: inherit;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.input-wrapper input:focus,
.textarea-wrapper textarea:focus,
.select-wrapper select:focus {
    border-color: var(--primary-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.input-wrapper input:focus + i,
.textarea-wrapper textarea:focus + i {
    color: var(--primary-color);
}

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

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-submit-elegant {
    background: linear-gradient(135deg, var(--primary-color), #f39c12);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-submit-elegant:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
}

.btn-submit-elegant i {
    transition: var(--transition);
}

.btn-submit-elegant:hover i {
    transform: translateX(5px);
}

/* Message de confirmation */
.form-message-elegant {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    display: none;
}

.form-message-elegant.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-elegant.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Carte */
.map-container {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(230, 126, 34, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section-title-elegant {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-submit-elegant {
        width: 100%;
        justify-content: center;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-elegant {
        padding: 4rem 0;
    }
    
    .section-title-elegant {
        font-size: 2rem;
    }
    
    .info-card,
    .contact-form-elegant {
        padding: 1.5rem;
    }
}

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

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close:hover {
    color: var(--primary-color);
}

.modal h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}


/* ==================== FOOTER ÉLÉGANT ==================== */
.footer-elegant {
    background: linear-gradient(135deg, #1a2634 0%, #0f1a2a 100%);
    color: #ffffff;
    position: relative;
    padding: 4rem 0 0;
    font-family: 'Arial', sans-serif;
}

/* Décoration supérieure */
.footer-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-decoration .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.5), transparent);
}

.footer-decoration i {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Contenu principal */
.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Section Marque */
.brand-section {
    padding-right: 2rem;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    color: var(--primary-color);
    -webkit-text-fill-color: initial;
    background: none;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact-compact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-compact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-compact i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1rem;
}

/* Section Liens */
.links-section h3,
.services-section h3,
.newsletter-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.links-section h3::after,
.services-section h3::after,
.newsletter-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Section Services */
.services-list-compact {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.services-list-compact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.services-list-compact li i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1rem;
}

.services-list-compact li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Section Newsletter */
.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.newsletter-form-compact {
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 45px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.btn-subscribe {
    background: linear-gradient(135deg, var(--primary-color), #f39c12);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-subscribe i {
    font-size: 1rem;
}

.privacy-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Séparateur */
.footer-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.3), transparent);
    margin: 2rem 0;
}

/* Footer Bottom */
.footer-bottom-elegant {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px 20px 0 0;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1rem;
}

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

.copyright strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brand-section {
        padding-right: 0;
    }
    
    .links-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-decoration .line {
        width: 40px;
    }
}

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .legal-links .separator {
        display: none;
    }
}

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

.footer-section {
    animation: fadeInUp 0.5s ease forwards;
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .guest-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-grid,
    .vehicules-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-wa, .float-chat {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-wa {
    background: #25D366;
}

.float-chat {
    background: var(--primary-color);
}

.float-wa:hover, .float-chat:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.float-wa:hover {
    background: #128C7E;
}

.float-chat:hover {
    background: #d35400;
}

/* Pulse animation for WhatsApp */
.float-wa {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==================== LIVE CHAT MODAL ==================== */
.chat-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
}

.chat-modal-content {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    animation: slideInUp 0.3s ease;
    overflow: hidden;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-header h3 i {
    margin-right: 8px;
}

.close-chat {
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.close-chat:hover {
    opacity: 0.8;
}

.chat-body {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    display: flex;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.bot-message .message-content {
    background: white;
    border: 1px solid #e0e0e0;
    border-top-left-radius: 5px;
}

.user-message .message-content {
    background: var(--primary-color);
    color: white;
    border-top-right-radius: 5px;
}

.message-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.user-message .message-content strong {
    color: rgba(255,255,255,0.9);
}

.message-content p {
    margin: 0;
    line-height: 1.4;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
}

#chatForm {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#chatInput {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

#chatInput:focus {
    outline: none;
    border-color: var(--primary-color);
}

#chatForm button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

#chatForm button:hover {
    background: #d35400;
}

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-reply {
    background: #f0f0f0;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.quick-reply:hover {
    background: var(--primary-color);
    color: white;
}

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

/* Responsive for mobile */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-wa, .float-chat {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .chat-modal-content {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
    
    .chat-body {
        height: 250px;
    }
}

/* Notification badge for chat (optional) */
.float-chat {
    position: relative;
}

.float-chat::after {
    display: none;
}


/* ==================== GUEST HOUSES GALLERY ==================== */
.guest-houses-gallery {
    padding: 5rem 0;
    background: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.guest-houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guest-house-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.guest-house-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.guest-house-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    z-index: 1;
}

.guest-house-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.guest-house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-house-card:hover .image-overlay {
    opacity: 1;
}

.btn-view {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.guest-house-card:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: #d35400;
}

.guest-house-info {
    padding: 1.5rem;
}

.guest-house-info h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.guest-house-location {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.guest-house-location i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.guest-house-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0;
}

.guest-house-price span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.guest-house-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.guest-house-amenities span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.guest-house-amenities i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.guest-house-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.guest-house-buttons {
    display: flex;
    gap: 1rem;
}

.btn-details, .btn-book {
    flex: 1;
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-book {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-book:hover {
    background: #d35400;
}

.text-center {
    text-align: center;
}

/* Guest House Details Modal */
.guest-details-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    animation: fadeIn 0.3s ease;
}

.guest-details-content {
    background: var(--white);
    margin: 3% auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 15px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.guest-details-header {
    position: relative;
    height: 400px;
}

.guest-details-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-details-header .close-details {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.guest-details-header .close-details:hover {
    background: rgba(0,0,0,0.8);
}

.guest-details-body {
    padding: 2rem;
}

.guest-details-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.guest-details-title h2 {
    color: var(--secondary-color);
}

.guest-details-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.guest-details-price span {
    font-size: 1rem;
    color: var(--text-light);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-thumbnail {
    height: 100px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 768px) {
    .guest-houses-grid {
        grid-template-columns: 1fr;
    }
    
    .guest-details-header {
        height: 250px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .guest-details-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .guest-house-buttons {
        flex-direction: column;
    }
}


/* Badge développeur */
.developer-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.developer-badge:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.badge-content i {
    color: var(--primary-color);
    font-size: 1rem;
}

.badge-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .developer-badge {
        bottom: 10px;
        left: 10px;
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}