/* Variables de couleur */
:root {
    --gold: #D4AF37;
    --black: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

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

/* En-tête */
.luxury-header {
    background-color: var(--black);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.luxury-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.luxury-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.luxury-nav a:hover, 
.luxury-nav a.active {
    color: var(--gold);
}

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

.luxury-nav a:hover::after,
.luxury-nav a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('WhatsApp Image 2025-05-16 at 16.42.43 (2).jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* Boutons */
.btn-gold, .btn-black {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

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

.btn-black:hover {
    background-color: transparent;
    color: var(--black);
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    color: var(--black);
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
}

.about-section {
    background-color: var(--light-gray);
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Carrousel de propriétés */
.property-carousel {
    background-color: var(--white);
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 20px 0;
}

.property-card {
    min-width: calc(33.333% - 14px);
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.property-image {
    height: 250px;
    overflow: hidden;
}

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

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
}

.property-price {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.property-actions {
    display: flex;
    justify-content: space-between;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--black);
    color: var(--gold);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Services */
.services {
    background-color: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

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

/* Formulaire de réservation */
.booking-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('WhatsApp Image 2025-05-16 at 16.43.47.jpeg') no-repeat center center/cover;
    color: var(--white);
}

.booking-section h2 {
    color: var(--white);
}

.booking-section h2::after {
    background: var(--gold);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
}

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

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

/* Localisation */
.location-info {
    margin-bottom: 30px;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.location-info i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.location-map {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Pied de page */
.luxury-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-section p, 
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
    text-decoration: none;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

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

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

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .property-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .luxury-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }

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

    .luxury-nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .property-card {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}/* Détails de la propriété */
.property-details {
    padding: 60px 0;
}

.property-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.property-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnails img {
    height: 80px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnails img:hover {
    transform: scale(1.05);
}

.property-info h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.property-price-location {
    margin-bottom: 30px;
}

.property-price {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
}

.property-description {
    margin-bottom: 30px;
}

.property-description h2,
.property-details h2,
.property-features h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.property-description p {
    line-height: 1.8;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 4px;
}

.detail-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.property-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.property-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-features i {
    color: var(--gold);
}

.property-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp, .btn-cart {
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.btn-whatsapp:hover {
    background: #128C7E;
}

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

.btn-cart:hover {
    background: var(--dark-gray);
}

/* Responsive */
@media (max-width: 992px) {
    .property-main {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    .btn-whatsapp, .btn-cart {
        width: 100%;
        justify-content: center;
    }
}/* Styles pour about.html */
.about-hero {
    height: 60vh;
    background: url('WhatsApp Image 2025-05-16 at 16.42.43 (4).jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-list {
    list-style: none;
    margin: 25px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-list i {
    color: var(--gold);
    margin-top: 3px;
}

.difference-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

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

.difference-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-10px);
}

.difference-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.difference-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.promise-section {
    padding: 80px 0;
}

.promise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.promise-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--black);
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 25px 0;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.team-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

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

.team-member {
    background: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
}

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

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
}

.position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Styles pour contact.html */
.contact-hero {
    height: 60vh;
    background: url('WhatsApp Image 2025-05-16 at 16.42.43.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding: 40px;
    background: var(--light-gray);
    border-radius: 8px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.social-contact {
    margin-top: 40px;
}

.social-contact .social-icons {
    margin-top: 15px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox input {
    width: auto;
}

.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.location-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.location-map {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Styles pour register.html */
.register-hero {
    height: 60vh;
    background: url('_.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.register-benefits {
    padding: 40px;
    background: var(--light-gray);
    border-radius: 8px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.already-member {
    margin-top: 40px;
    text-align: center;
}

.already-member a {
    color: var(--gold);
    font-weight: 600;
}

.register-form {
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.register-form small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.trust-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-logos img {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .contact-content,
    .register-content,
    .promise-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .promise-image {
        order: -1;
    }
    
    .contact-info,
    .register-benefits {
        order: 1;
    }
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-logos {
        gap: 20px;
    }
    
    .trust-logos img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .about-hero,
    .contact-hero,
    .register-hero {
        height: 50vh;
    }
    
    .about-content,
    .contact-content,
    .register-content,
    .promise-content {
        gap: 30px;
    }
    
    .contact-info,
    .contact-form,
    .register-benefits,
    .register-form {
        padding: 30px 20px;
    }
}/* Styles pour login.html */
.login-hero {
    height: 50vh;
    background: url('WhatsApp Image 2025-05-16 at 16.42.42.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
}

.login-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.login-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--black);
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
}

.forgot-password {
    text-align: right;
    margin-top: 5px;
}

.forgot-password a {
    color: var(--gold);
    font-size: 0.9rem;
}

.social-login {
    margin: 30px 0;
    text-align: center;
}

.social-login p {
    margin-bottom: 15px;
    color: var(--dark-gray);
    position: relative;
}

.social-login p::before,
.social-login p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: #ddd;
}

.social-login p::before {
    left: 0;
}

.social-login p::after {
    right: 0;
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-social {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-social.google {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.btn-social.google:hover {
    background: #f5f5f5;
}

.btn-social.facebook {
    background: #3b5998;
    color: white;
}

.btn-social.facebook:hover {
    background: #344e86;
}

.register-link {
    text-align: center;
    margin-top: 20px;
}

.register-link a {
    color: var(--gold);
    font-weight: 600;
}

.login-benefits {
    padding: 40px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.benefits-list h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--black);
}

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

@media (max-width: 576px) {
    .login-form,
    .login-benefits {
        padding: 30px 20px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
}/* Styles spécifiques pour la page Contact */
.contact-hero {
    height: 60vh;
    background: url('WhatsApp Image 2025-05-16 at 16.43.46.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 90px;
}

.contact-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.main-contact-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--black);
}

.btn-call, .btn-email {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-call:hover {
    background: var(--dark-gray);
}

.btn-email {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-email:hover {
    background: transparent;
    color: var(--gold);
}

.contact-form-section {
    padding: 80px 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--black);
}

.form-intro p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #25D366;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.luxury-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black);
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.hours-section {
    padding: 80px 0;
}

.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hours-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--black);
}

.hours-list {
    list-style: none;
    margin-bottom: 40px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li span:first-child {
    font-weight: 600;
}

.emergency-contact {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.emergency-contact p {
    margin-bottom: 10px;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--black);
}

.hours-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .hours-container {
        grid-template-columns: 1fr;
    }
    
    .hours-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        height: 50vh;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 40vh;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .luxury-form {
        padding: 30px 20px;
    }
    
    .map-container {
        height: 300px;
    }
}/* Nouveau style pour l'en-tête */
.luxury-header {
    background-color: var(--black);
    color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo à droite */
.logo-container {
    order: 2; /* Déplace le logo à droite */
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
}

/* Navigation stylisée */
.luxury-nav {
    order: 1; /* Déplace la nav à gauche */
}

.luxury-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.luxury-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.luxury-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    transition: 0.5s;
}

.luxury-nav a:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.luxury-nav a:hover::before {
    left: 100%;
}

.luxury-nav a.active {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}/* Menu mobile */
.mobile-menu {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    order: 3;
}

/* Animation au scroll */
.scrolled-header {
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 992px) {
    .luxury-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        z-index: 999;
    }

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

    .luxury-nav ul {
        flex-direction: column;
        gap: 25px;
        width: 90%;
        max-width: 400px;
    }

    .luxury-nav a {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 1.1rem;
    }

    .mobile-menu {
        display: block;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .logo-text {
        display: none; /* Cache le texte sur mobile très petit */
    }
}
.container {
  width: 90%; /* au lieu de 900px */
  margin: 0 auto;
}
