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

/* Variables */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a55c;
    --text-color: #333;
    --background-color: #fff;
    --accent-color: #e6c78b;
    --gray-light: #f5f5f5;
    --gray-dark: #666;
}

/* Style général */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(44, 62, 80, 0.95);
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(44, 62, 80, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c8a97e;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2c3e50;
    padding: 1rem;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0.5rem 0;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: #c8a97e;
}

.lang-switch {
    margin-left: 2rem;
}

.lang-switch a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.lang-switch a:hover {
    color: #c8a97e;
}

.burger-menu {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 992px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2c3e50;
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding: 0.5rem 0;
    }

    .lang-switch {
        margin: 1rem 0;
    }
}

/* Ajustement pour le contenu sous le header fixe */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../images/villas/sweet-hill-19-Kaye.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

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

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

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

.cta-button:hover {
    background-color: var(--accent-color);
}

/* Presentation Section */
.presentation {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--gray-light);
}

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

.presentation p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--gray-dark);
}

/* Featured Villas Section */
.featured-villas {
    padding: 3rem 0;
}

.featured-villas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.villa-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.villa-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.villa-kaye {
    background-image: url('../images/villas/Kaye332918344.jpg');
}

.villa-rosa {
    background-image: url('../images/villas/Rosa343526470.jpg');
}

.villa-cali {
    background-image: url('../images/villas/Cali354504134.jpg');
}

.villa-alba {
    background-image: url('../images/villas/Alba325177944.jpg');
}

.villa-pina {
    background-image: url('../images/villas/Pina332917307.jpg');
}

.villa-bali {
    background-image: url('../images/villas/Bali354507890.jpg');
}

.villa-card h3 {
    padding: 1.5rem;
    font-size: 1.5rem;
    margin: 0;
}

.villa-card p {
    padding: 0 1.5rem;
    color: var(--gray-dark);
}

.villa-link {
    display: block;
    padding: 1rem 1.5rem;
    text-align: right;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background-color: var(--gray-light);
}

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

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

.service-item {
    text-align: center;
    padding: 1.5rem;
}

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

.service-item h3 {
    margin-bottom: 0.75rem;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #c8a97e;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ecf0f1;
}

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

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c8a97e;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Villas Page Styles */
.villas-hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/villas/Domaine354505687.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.villas-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.villas-intro {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
}

.villas-intro .intro-content {
    max-width: 1200px;
}

.villas-intro h2 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.villas-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--secondary-color);
}

.villas-intro .lead {
    font-size: 1.4rem;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 4rem;
}

.villas-intro .intro-features {
    gap: 3rem;
    margin: 4rem 0;
}

.villas-intro .feature {
    padding: 2.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.villas-intro .feature:hover {
    transform: translateY(-10px);
}

.villas-intro .feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.villas-intro .feature:hover i {
    transform: scale(1.1);
}

.villas-intro .feature p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.7;
}

.villa-detail {
    margin-bottom: 6rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.villa-detail:hover {
    transform: translateY(-10px);
}

.villa-content {
    padding: 3rem;
}

.villa-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.villa-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
}

.villa-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 3rem;
}

.villa-features {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.feature-section h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.feature-section li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-section li:hover {
    transform: translateX(5px);
}

.feature-section i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

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

.villa-gallery img {
    border-radius: 12px;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.villa-gallery img:hover {
    transform: scale(1.03);
}

.villa-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.details-button, .cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.details-button:hover, .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
    .villas-hero {
        height: 80vh;
    }
    
    .villas-hero h1 {
        font-size: 2.5rem;
    }
    
    .villas-hero p {
        font-size: 1.4rem;
    }

    .villas-intro h2 {
        font-size: 2.4rem;
    }

    .villa-content {
        padding: 2rem;
    }

    .villa-gallery {
        grid-template-columns: 1fr;
    }

    .villa-gallery img {
        height: 300px;
    }

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

/* Services Page Styles */
.services-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../images/villas/L55.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
    background-color: var(--gray-light);
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-content li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-dark);
}

.service-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.service-cta {
    background-color: var(--gray-light);
    padding: 4rem 0;
    text-align: center;
    margin-top: 2rem;
}

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

.service-cta p {
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-content ul {
        grid-template-columns: 1fr;
    }

    .service-content li {
        text-align: left;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../images/villas/Domaine354505638.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.contact-content {
    padding: 4rem 0;
}

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

.contact-info {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    padding: 4rem 0;
    background-color: var(--gray-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

/* About Page Styles */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../images/villas/Domaine332920533.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 4rem;
}

.about-story {
    padding: 4rem 0;
}

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

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-values {
    padding: 4rem 0;
    background-color: var(--gray-light);
}

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

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.value-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.about-team {
    padding: 4rem 0;
}

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

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

.team-member {
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0 0.5rem;
}

.team-member .role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member .description {
    color: var(--gray-dark);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.about-testimonials {
    padding: 4rem 0;
    background-color: var(--gray-light);
}

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

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

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

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-story .container {
        grid-template-columns: 1fr;
    }

    .story-content {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .values-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

/* Service Highlight Sections */
.service-highlight {
    padding: 6rem 0;
    position: relative;
}

.service-highlight:nth-child(even) {
    background-color: var(--gray-light);
}

.service-highlight-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-highlight h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-tagline {
    font-size: 1.4rem;
    color: var(--gray-dark);
    text-align: center;
    margin-bottom: 3rem;
}

/* Chef Service Styles */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.service-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-gallery img:hover {
    transform: scale(1.05);
}

/* Yacht Service Styles */
.yacht-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.yacht-section h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.yacht-description {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.yacht-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.yacht-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.yacht-gallery img:hover {
    transform: scale(1.05);
}

.yacht-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    list-style: none;
}

.yacht-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.yacht-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.yacht-cta {
    text-align: center;
    margin: 3rem 0;
}

/* Responsive Design for Yacht Section */
@media (max-width: 768px) {
    .yacht-gallery {
        grid-template-columns: 1fr;
    }

    .yacht-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .yacht-section h3 {
        font-size: 1.8rem;
    }

    .yacht-description {
        font-size: 1.1rem;
    }
}

/* Car Service Styles */
.car-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.benefit {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.car-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* Additional Services Styles */
.additional-services {
    padding-top: 2rem;
    padding-bottom: 6rem;
    background-color: var(--gray-light);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

/* Services CTA Styles */
.services-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/services/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.services-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .service-gallery,
    .yacht-section,
    .car-benefits {
        grid-template-columns: 1fr;
    }

    .yacht-features {
        grid-template-columns: 1fr;
    }

    .service-highlight h2 {
        font-size: 2.2rem;
    }

    .service-tagline {
        font-size: 1.2rem;
    }

    .services-cta h2 {
        font-size: 2.2rem;
    }

    .services-cta p {
        font-size: 1.2rem;
    }
}

.chef-preparation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.chef-preparation img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.chef-preparation img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .chef-preparation {
        grid-template-columns: 1fr;
    }
    
    .chef-preparation img {
        height: 300px;
    }
}

/* Car Service Styles */
.car-service {
    margin-bottom: 0;
}

.car-service .service-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.car-service .partner-logo {
    height: 40px;
    width: auto;
}

.car-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.car-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.car-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1rem;
}

.car-card p {
    color: var(--gray-dark);
    margin: 0 1rem 1rem;
}

.car-cta {
    text-align: center;
    margin: 3rem 0;
}

/* Responsive Design for Car Section */
@media (max-width: 768px) {
    .car-service .service-tagline {
        flex-direction: column;
        text-align: center;
    }
    
    .car-gallery {
        grid-template-columns: 1fr;
    }
    
    .car-card img {
        height: 250px;
    }
}

/* Partner Logos */
.service-tagline .partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.yacht-service .service-tagline .partner-logo {
    max-width: 150px;
}

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

.details-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.details-button:hover {
    background-color: #333;
}

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

@media (max-width: 768px) {
    .villa-buttons {
        flex-direction: column;
    }
    
    .details-button, .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Styles pour la page détaillée de villa */
.villa-hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.villa-intro {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    text-align: center;
}

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

.villa-intro h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 300;
}

.villa-intro .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
}

.villa-feature-section {
    padding: 6rem 0;
    background-color: #fff;
}

.villa-feature-section.light {
    background-color: #f8f9fa;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-content.reverse {
    direction: rtl;
}

.feature-text {
    direction: ltr;
    padding: 2rem;
}

.feature-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

.villa-amenities {
    padding: 6rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.villa-amenities h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 300;
}

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

.amenity-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.amenity-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.amenity-item h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 400;
}

.amenity-item p {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
}

.villa-gallery {
    padding: 6rem 0;
    background-color: #fff;
}

.villa-gallery h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.villa-cta {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/villas/Kaye332918344.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.villa-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

@media (max-width: 992px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-content.reverse {
        direction: ltr;
    }

    .feature-image img {
        height: 400px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .villa-hero {
        height: 60vh;
    }

    .villa-intro h2,
    .feature-text h2,
    .villa-amenities h2,
    .villa-gallery h2,
    .villa-cta h2 {
        font-size: 2rem;
    }

    .feature-text {
        padding: 1rem;
    }

    .feature-image img {
        height: 300px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }
}

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

.villa-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.villa-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animation Script */
document.addEventListener('DOMContentLoaded', function() {
    const observer = new IntersectionObserver((entries) => {
        entries.forEach(entry => {
            if (entry.isIntersecting) {
                entry.target.classList.add('visible');
            }
        });
    }, {
        threshold: 0.1
    });

    document.querySelectorAll('.villa-card').forEach((card) => {
        observer.observe(card);
    });
});

/* Studios Page Styles */
.villa-card {
    margin: 4rem 0;
    padding: 2rem;
    background-color: #fff;
}

.villa-card-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.villa-card-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.villa-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.villa-card-text {
    padding: 1rem;
}

.villa-card-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.villa-card-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.villa-card-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.villa-card-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.villa-card-features .feature img {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.villa-card-features .feature span {
    font-size: 0.9rem;
    color: #666;
}

.villa-card-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.villa-card-gallery a {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 4px;
}

.villa-card-gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.villa-card-gallery img:hover {
    transform: scale(1.05);
}

.btn.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c8a97e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn.btn-primary:hover {
    background-color: #b69468;
}

/* Responsive Design */
@media (max-width: 992px) {
    .villa-card-content {
        grid-template-columns: 1fr;
    }

    .villa-card-image {
        margin-bottom: 2rem;
    }

    .villa-card-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .villa-card {
        padding: 1rem;
    }

    .villa-card-text h2 {
        font-size: 2rem;
    }

    .villa-card-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .villa-card-features {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .villa-card-gallery {
        grid-template-columns: 1fr;
    }

    .villa-card-text h2 {
        font-size: 1.8rem;
    }
}

/* Hero Section Styles */
.villas-hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.villas-intro {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.intro-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Call to Action Section */
.villas-cta {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f8f9fa;
}

.villas-cta h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.villas-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Art de Vivre Page Styles */
.lifestyle-hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/lifestyle/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.lifestyle-section {
    padding: 6rem 0;
}

.lifestyle-section:nth-child(even) {
    background-color: #f8f9fa;
}

.lifestyle-section h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.experience-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.experience-card.reverse {
    direction: rtl;
}

.experience-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

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

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

.experience-content {
    padding: 3rem;
    direction: ltr;
}

.experience-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.highlights {
    list-style: none;
    padding: 0;
}

.highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.highlights li::before {
    content: "•";
    color: #c8a97e;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.event-card i {
    font-size: 3rem;
    color: #c8a97e;
    margin-bottom: 1.5rem;
}

.event-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.event-card p {
    color: #666;
    line-height: 1.6;
}

.experience-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.experience-slide {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.experience-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lifestyle-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/lifestyle/cta-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.lifestyle-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

@media (max-width: 992px) {
    .experience-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-image {
        min-height: 300px;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lifestyle-hero {
        height: 60vh;
    }

    .lifestyle-section h2 {
        font-size: 2.2rem;
    }

    .experience-content {
        padding: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .experience-slide {
        height: 400px;
    }

    .slide-content h3 {
        font-size: 1.8rem;
    }

    .lifestyle-cta h2 {
        font-size: 2.2rem;
    }
} 