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

body {
    font-family: 'Taviraj', serif;
    line-height: 1.6;
    color: #454a4e;
    overflow-x: hidden;
    background-color: #081F1C;
}

.container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 7rem;
}



@media (max-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #454a4e;
}

h1 {
    font-size: 60px;
    line-height: 1.2;
}

h2 {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    line-height: 1.3;
    color: #454a4e;
}

h3 {
    font-size: 24px;
    line-height: 1.4;
}

p {
    font-family: 'Taviraj', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #454a4e;
}

/* Variables CSS inspirées de Dalhousie Castle */
:root {
    /* Couleurs principales */
    --primary-gold: #BFA282;
    --primary-grey: #454a4e;
    --accent-burgundy: #752a04;
    --light-grey: #f8f9fa;
    --dark-grey: #2c3e50;
    
    /* Palette étendue */
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --neutral-900: #171717;
    --stone-900: #1c1917;
    --amber-500: #BFA282;
    --amber-600: #BFA282;
    --emerald-500: #10b981;
    --teal-500: #14b8a6;
    --indigo-500: #6366f1;
    
    /* Gradients sophistiqués */
    --gradient-luxury: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.6) 0%, rgba(69, 74, 78, 0.4) 30%, rgba(117, 42, 4, 0.25) 60%, rgba(216, 135, 46, 0.15) 80%, rgb(0 0 0 / 0%) 100%);
    
    --gradient-overlay: linear-gradient(135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(69, 74, 78, 0.4) 30%,
        rgba(117, 42, 4, 0.25) 60%,
        rgba(216, 135, 46, 0.15) 80%,
        rgba(0, 0, 0, 0.5) 100%);
    
    /* Ombres élégantes */
    --shadow-natural: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-crisp: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-text: 2px 2px 8px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(69, 74, 78, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Header transparent pour la page d'accueil */
body.home .header {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
}

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

.logo h1 {
    font-size: 2rem;
    color: #454a4e;
    font-weight: 600;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
}

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

.nav-list a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
    position: relative;
}

/* Liens blancs pour la page d'accueil */
body.home .nav-list a {
    color: #fff;
}

@media (max-width: 768px) {
        .nav-list a {
            color: #081f1c;
        }

        body.home .nav-list a {
            color: #081f1c;;
        }
}

.nav-list a:hover {
    color: #BFA282;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BFA282;
    transition: width 0.3s ease-in-out;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-grey);
    transition: all 0.3s ease-in-out;
}

/* Menu mobile blanc pour la page d'accueil */
body.home .mobile-menu-toggle span {
    background: #fff;
}

/* Boutons */
.btn-gold, .btn-hero, .btn-discover {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background: #BFA282;
    color: white;
    box-shadow: 0 4px 15px rgba(216, 135, 46, 0.3);
}

.btn-gold:hover {
    background: #BFA282;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 135, 46, 0.4);
}

.btn-hero {
    background: transparent;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    text-shadow: none;
    box-shadow: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    
    /* Style minimaliste et luxueux */
    opacity: 1;
    transform: none;
    animation: none;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: none;
    box-shadow: none;
    text-shadow: none;
}

.btn-hero:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

.btn-discover {
    background: transparent;
    color: #BFA282;
    border: 2px solid #BFA282;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-discover:hover {
    background: #BFA282;
    color: white;
    transform: translateY(-2px);
}

/* Breadcrumb */





/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

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

}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    will-change: transform;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    z-index: 10;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    text-align: left;
    
    /* Design minimaliste et luxueux */
    opacity: 1;
    transform: translateX(-10%) translateY(8%);
    animation: none;
    margin-left: -15%;
    margin-bottom: -15%;
}

@media (max-width: 768px) {
    .hero-content {
        transform: translateX(10%) translateY(0%);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(56px, 9vw, 84px);
    margin-bottom: 2rem;
    font-weight: 400;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    
    /* Typographie luxueuse et sobre */
    opacity: 1;
    transform: none;
    animation: none;
}

.hero-subtitle {
    font-family: 'Scheherazade New', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    margin-bottom: 4rem;
    opacity: 0.9;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    line-height: 1.4;
    position: relative;
    
    /* Style minimaliste */
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
    transform: none;
    animation: none;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 3;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero:hover .hero-overlay {
    opacity: 0.6;
}

/* Section Avis */
.reviews-widget {
    padding: 0.3rem 0;
    background-color: #081F1C;
}

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

.main-rating {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.rating-score {
    display: flex;
    align-items: baseline;
    font-family: 'Playfair Display', serif;
}

.average-score {
    font-size: 32px;
    font-weight: 400;
    color: white;
    line-height: 1;
}

.rating-divider,
.max-score {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-note {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.rating-based {
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.ranking {
    text-align: center;
}

.ranking-text {
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.ranking-text em {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-gold);
}

.provider-ratings {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.provider-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.provider-name {
    font-family: 'Taviraj', serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.provider-score {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.provider-max {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.reviews-cta {
    flex-shrink: 0;
    cursor: pointer;
}

.btn-reviews {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-reviews:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive pour la section avis */
@media (max-width: 1024px) {
    .reviews-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .main-rating {
        justify-content: center;
    }
    
    .provider-ratings {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .reviews-widget {
        padding: 1.5rem 0;
    }
    
    .reviews-content {
        gap: 1.5rem;
    }
    
    .main-rating {
        flex-direction: column;
        gap: 1rem;
    }
    
    .provider-ratings {
        gap: 1rem;
    }
    
    .provider-item {
        min-width: 80px;
    }
}

/* Section Introduction */
.intro-block {
    padding: 5rem 0 0rem;
    background-color: #081F1C;
    position: relative;
}

.intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro-col-6 {
    padding-right: 2rem;
}

.intro-col-3 {
    display: flex;
    flex-direction: column;
}

.star-rating {
    margin-bottom: 1.5rem;
}

.star-rating i {
    color: var(--primary-gold);
    font-size: 14px;
    margin-right: 0.2rem;
}

.intro-col-6 .section-subtitle {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.intro-col-6 .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.intro-col-6 p {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.reservations {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reservation-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reservation-icon i {
    color: #081F1C;
    font-size: 18px;
}

.reservation-text p {
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-text a {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reservation-text a:hover {
    color: var(--primary-gold);
}

.intro-image {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

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

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

.intro-image-top {
    aspect-ratio: 5/8;
    width: 100%;
    margin-top: 20%;
    margin-bottom: 2rem;
}

.intro-image-bottom {
    aspect-ratio: 5/8;
    width: 100%;
}

/* Responsive pour la section intro */
@media (max-width: 1024px) {
    .intro-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .intro-col-6 {
        padding-right: 0;
        order: 1;
    }
    
    .intro-col-3 {
        order: 0;
    }
    
    .intro-col-3:last-child {
        display: none;
    }
    
    .intro-image-top {
        height: 240px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .intro-block {
        padding: 3rem 0 4rem;
    }
    
    .intro-col-6 .section-title {
        font-size: clamp(28px, 7vw, 36px);
        margin-bottom: 1.5rem;
    }
    
    .intro-col-6 p {
        font-size: 15px;
        margin-bottom: 1.2rem;
    }
    
    .reservations {
        margin-top: 2rem;
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .reservation-icon {
        width: 40px;
        height: 40px;
    }
    
    .reservation-icon i {
        font-size: 16px;
    }
    
    .reservation-text a {
        font-size: 18px;
    }
    
    .intro-image-top {
        height: 200px;
    }
}

/* Section Chambres & Suites */
.rooms-section {
    padding: 6rem 0;
    background-color: #081F1C;
    position: relative;
}

.rooms-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: start;
}

.room-item {
    position: relative;
}

.room-col-4 {
    grid-column: span 4;
}

.room-col-6 {
    grid-column: span 6;
}

.room-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 320px;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
}

.room-card:hover .room-overlay {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.room-content {
    color: white;
    z-index: 2;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin: 0 0 0.8rem 0;
    transition: color 0.3s ease;
}

.room-description {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

/* Responsive pour la section chambres */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }
    
    .room-col-4 {
        grid-column: span 4;
    }
    
    .room-col-6 {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .rooms-section {
        padding: 4rem 0;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-col-4,
    .room-col-6 {
        grid-column: span 1;
    }
    
    .room-image {
        height: 240px;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-facilities {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .facilities-icons ul {
        gap: 1.5rem;
    }
}

/* Section Citation */
.quote-block {
    padding: 8rem 0 10rem;
    background-color: #081F1C;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.quote-block .container {
    text-align: left;
    padding-left: 0rem;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1.3;
    letter-spacing: -0.01em;
    max-width: 940px;
    margin: 0 0 3rem 0;
    position: relative;
    text-align: left;
}

.quote-line {
    display: block;
    position: relative;
    margin-bottom: 0.5rem;
}

.quote-line:last-child {
    margin-bottom: 0;
}

.quote-link {
    display: inline-block;
    font-family: 'Taviraj', serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.quote-link:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Animation subtile pour la citation */
.quote-text {
    opacity: 0;
    transform: translateY(30px);
    animation: quoteAppear 2s ease-out 0.5s forwards;
}

@keyframes quoteAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-link {
    opacity: 0;
    animation: linkAppear 1.5s ease-out 1.5s forwards;
}

@keyframes linkAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour la section citation */
@media (max-width: 768px) {
    .quote-block {
        padding: 5rem 4%;
    }
    
    .quote-text {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 2rem;
    }
    
    .quote-link {
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* Section Offres */
.latest-offers {
    background-color: white;
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.offers-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.offers-text-container {
    color: var(--primary-grey);
}

.offers-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.offers-copy {
    margin: 2rem 0 3rem;
    max-width: 324px;
}

.offers-copy p {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
}

.offers-link {
    display: inline-block;
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-grey);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(69, 74, 78, 0.3);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.offers-link:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
    transform: translateY(-2px);
}

.offers-container {
    display: flex;
    gap: 3rem;
    min-width: 100%;
}

.offer-card {
    flex: 1;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.offer-image {
    aspect-ratio: 530/340;
    position: relative;
    width: 100%;
    overflow: hidden;
}

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

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

.offer-content {
    background: white;
    color: var(--primary-grey);
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-grey);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.offer-description {
    margin: 1rem 0 3rem;
    flex-grow: 1;
}

.offer-description p {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
}

.offer-link {
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    width: fit-content;
    cursor: pointer;
    transition: color 0.3s ease;
}

.offer-card:hover .offer-link {
    color: var(--primary-gold);
}

/* Responsive pour la section offres */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .offers-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .offers-copy {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .latest-offers {
        padding: 4rem 0 5rem;
    }
    
    .offers-container {
        gap: 1.5rem;
    }
    
    .offer-content {
        padding: 1.5rem 1rem;
    }
    
    .offers-title {
        font-size: clamp(28px, 6vw, 36px);
    }
}

/* Section Témoignages */
.testimonials-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #081F1C;
}

.testimonials-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.testimonial.active {
    opacity: 1;
}

.testimonial-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.testimonial-image {
    display: none;
}

.testimonial-image img {
    display: none;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    color: white;
    background: rgba(8, 31, 28, 0.8);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: 4rem;
    border-radius: 8px;
}

.testimonial-category {
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    font-style: italic;
    color: white;
    line-height: 1.3;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.testimonial-description {
    font-family: 'Taviraj', serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.testimonial-author {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

/* Images de fond spécifiques pour chaque témoignage */
.testimonial-1 {
    background-image: url('/assets/images/20240606_150712.webp');
}

.testimonial-2 {
    background-image: url('/assets/images/IMG_20230712_220744_313.webp');
}

.testimonial-3 {
    background-image: url('/assets/images/cheneviere-185.webp');
}

/* Contrôles du slider */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(191, 162, 130, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: scale(1.1);
}

/* Points de navigation */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: rgba(191, 162, 130, 0.7);
}

/* Responsive pour les témoignages */
@media (max-width: 1024px) {
    .testimonial-content {
        padding: 3rem 4rem;
        max-width: 500px;
        margin-left: 2rem;
    }
    
    .testimonial-title {
        font-size: clamp(24px, 4vw, 32px);
    }
    
    .testimonial-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        height: auto;
        min-height: 50vh;
    }

    .testimonials-container {
        padding: 50% 0px;
    }
    
    .testimonial {
        justify-content: center;
    }
    
    .testimonial-inner {
        justify-content: center;
    }
    
    .testimonial-content {
        padding: 2rem;
        margin-left: 0;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .slider-controls {
        padding: 0 0.2rem;
    }
    
    .slider-dots {
        bottom: 2rem;
    }
}

/* Section Actualités */
.news-section {
    background: #081F1C;
    padding-bottom: 8rem;
    position: relative;
}

.news-header {
    text-align: left;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: visible;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 6rem;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(191, 162, 130, 0.3);
}

.news-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 2px;
}

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

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(191, 162, 130, 0.95);
    color: #081F1C;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    text-align: center;
    font-family: 'Taviraj', serif;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.news-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

.news-date .day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

.news-content {
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    padding: 1.5rem;
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 2px;
    margin-bottom: -5rem;
}

.news-category {
    display: inline-block;
    margin-bottom: 1rem;
}

.news-category a {
    font-family: 'Taviraj', serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.news-category a:hover {
    color: rgba(191, 162, 130, 0.8);
}

.news-title {
    margin: 0;
    line-height: 1.4;
}

.news-title a {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-grey);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.news-title a:hover {
    color: var(--primary-gold);
}

/* Responsive pour la section actualités */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .news-section {
        padding: 6rem 0;
    }
    
    .news-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-section {
        padding: 4rem 0;
    }
    
    .news-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .news-image {
        height: 280px;
    }
    
    .news-content {
        left: 0.8rem;
        right: 0.8rem;
        padding: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .news-title a {
        font-size: 18px;
    }
    
    .section-subtitle {
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .news-date {
        top: 15px;
        right: 15px;
        padding: 0.6rem 0.8rem;
    }
    
    .news-date .month {
        font-size: 10px;
    }
    
    .news-date .day {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background: white;
    color: var(--primary-grey);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(69, 74, 78, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.footer-address {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-grey);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact-info {
    font-family: 'Taviraj', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-grey);
    margin-bottom: 0;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(69, 74, 78, 0.05);
    border: 1px solid rgba(69, 74, 78, 0.1);
    border-radius: 50%;
    color: var(--primary-grey);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(191, 162, 130, 0.3);
}

.footer-tagline {
    font-family: 'Taviraj', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--primary-grey);
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 162, 130, 0.3);
    cursor: pointer;
}

.contact-button:hover {
    background: rgba(191, 162, 130, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 162, 130, 0.4);
}

.contact-button i {
    font-size: 16px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(69, 74, 78, 0.1);
    font-family: 'Taviraj', serif;
    font-size: 14px;
    color: var(--primary-grey);
    opacity: 0.7;
}

/* Responsive pour le footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .footer-info h3 {
        font-size: 24px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-button {
        padding: 1rem 2.5rem;
    }
}

/* ===== STYLES POUR LA PAGE ESPACES ===== */

/* Hero Section Espaces */
.spaces-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spaces-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.spaces-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.spaces-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 31, 28, 0.7) 0%, rgba(8, 31, 28, 0.3) 100%);
}

.spaces-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.spaces-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.spaces-hero-description {
    font-family: 'Taviraj', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* Section Espaces Principaux */
.main-spaces {
    padding: 8rem 0;
    background: white;
}

.spaces-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.spaces-intro .section-title {
    color: var(--primary-grey);
}

.spaces-intro .section-description {
    color: var(--primary-grey);
    opacity: 0.8;
}

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

.space-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.space-card.large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.space-image {
    height: 300px;
    overflow: hidden;
}

.space-card.large .space-image {
    height: 100%;
}

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

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

.space-content {
    padding: 2.5rem;
}

.space-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.space-description {
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #081f1c;
    opacity: 0.8;
}

.space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    color: var(--primary-grey);
}

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

/* Section Espaces Extérieurs */
.outdoor-spaces {
    padding: 8rem 0;
    background: #f8f9fa;
}

.outdoor-spaces .spaces-intro .section-title {
    color: var(--primary-grey);
}

.outdoor-spaces .spaces-intro .section-description {
    color: var(--primary-grey);
    opacity: 0.8;
}

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

.outdoor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.outdoor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

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

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

.outdoor-card:hover .outdoor-image img {
    transform: scale(1.08);
}

.outdoor-content {
    padding: 2rem;
}

.outdoor-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.outdoor-description {
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.outdoor-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    padding: 0.4rem 1rem;
    background: rgba(191, 162, 130, 0.1);
    color: var(--primary-gold);
    font-family: 'Taviraj', serif;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid rgba(191, 162, 130, 0.2);
}

/* Section Pages Sœurs */
.sibling-pages {
    padding: 8rem 0;
    background: var(--primary-dark);
    color: white;
}

.sibling-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.sibling-intro .section-title {
    color: white;
    margin-bottom: 2rem;
}

.sibling-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.sibling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.sibling-card {
    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sibling-card:hover {
    transform: translateY(-8px);

    border-color: rgba(191, 162, 130, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sibling-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sibling-card:hover::before {
    opacity: 1;
}

.sibling-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    border: 3px solid rgba(191, 162, 130, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.sibling-card:hover .sibling-image {
    border-color: var(--primary-gold);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(191, 162, 130, 0.4);
}

.sibling-card:hover .sibling-image img {
    transform: scale(1.2);
}

.sibling-content {
    flex: 1;
}

.sibling-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.sibling-text {
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.availability-card .sibling-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
}

.availability-card .sibling-text {
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.sibling-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.sibling-link:hover {
    transform: translateX(5px);
}

.sibling-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.sibling-link:hover i {
    transform: translateX(3px);
}

/* Carte Disponibilité - Design Spécial */
.availability-card {
    background: linear-gradient(135deg, rgba(191, 162, 130, 0.15) 0%, rgba(191, 162, 130, 0.05) 100%);
    border: 2px solid rgba(191, 162, 130, 0.3);
    position: relative;
}

.availability-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-gold), transparent, var(--primary-gold));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.availability-card:hover::after {
    opacity: 0.3;
}

.availability-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.availability-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 8px 25px rgba(191, 162, 130, 0.4);
    transition: all 0.3s ease;
}


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

.availability-card:hover .availability-image {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(191, 162, 130, 0.5);
}

.availability-card:hover .availability-image img {
    transform: scale(1.2);
}

.availability-badge {
    background: var(--primary-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Taviraj', serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(191, 162, 130, 0.3);
}

.availability-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.availability-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

.availability-feature i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.availability-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(191, 162, 130, 0.4);
    width: 100%;
    justify-content: center;
}

.availability-cta:hover {
    background: rgba(191, 162, 130, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(191, 162, 130, 0.5);
}

.availability-cta i {
    font-size: 1rem;
}

/* Section Contact */
.spaces-contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, rgba(191, 162, 130, 0.8) 100%);
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: white;
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.contact-cta i {
    font-size: 1.1rem;
    cursor: pointer;
}

/* Navigation active state */
.nav-list a.active {
    color: var(--primary-gold);
    position: relative;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
}

/* Responsive Design pour la page Espaces */
@media (max-width: 1024px) {
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .space-card.large {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .outdoor-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sibling-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .spaces-hero {
        height: 60vh;
    }
    
    .spaces-hero-title {
        font-size: 2.5rem;
    }
    
    .spaces-hero-description {
        font-size: 1rem;
    }
    
    .main-spaces,
    .outdoor-spaces,
    .wellness-spaces {
        padding: 5rem 0;
    }
    
    .spaces-intro {
        margin-bottom: 4rem;
    }
    
    .spaces-grid {
        gap: 2rem;
    }
    
    .space-content {
        padding: 2rem;
    }
    
    .space-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .outdoor-grid {
        gap: 2rem;
    }
    
    .sibling-grid {
        gap: 2rem;
    }
    
    .sibling-card {
        padding: 2.5rem 2rem;
    }
    
    .availability-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .availability-cta {
        padding: 1.2rem 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-cta {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

/* ===== STYLES POUR LA PAGE SINGLE ESPACE ===== */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #999;
    font-size: 1.1rem;
}

.breadcrumb-list li a {
    color: #8b7355;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.breadcrumb-list li a:hover {
    color: #5a4a3a;
    text-decoration: underline;
}

.breadcrumb-list li span {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: #999;
}

/* Hero Section Single Space */
.single-space-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    background: white;
}

.single-hero-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-image {
    flex: 1;
    overflow: hidden;
}

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

.gallery-thumbnails {
    display: flex;
    height: 120px;
    background: rgba(0, 0, 0, 0.05);
}

.thumbnail {
    width: 24% !important;
    height: 100px !important;
    margin:auto;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex: none;
}

.thumbnail.active {
    border-color: var(--primary-gold);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.single-hero-content {
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.hero-info {
    max-width: 500px;
}

.space-category {
    color: var(--primary-gold);
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.space-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.space-tagline {
    font-family: 'Taviraj', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.space-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
}

.highlight-label {
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    color: var(--primary-grey);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 162, 130, 0.3);
}

.btn-primary:hover {
    background: rgba(191, 162, 130, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 162, 130, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-grey);
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(69, 74, 78, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Section Description */
.space-description {
    padding: 1rem 0;
}

.description-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.description-intro {
    font-family: 'Taviraj', serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #bcbcbc;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-style: italic;
}

.description-details p {
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #bcbcbc;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #bcbcbc;
    margin-bottom: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa38;
    border-radius: 8px;
    border-left: 4px solid #bfa28269;
}

.feature-item i {
    color: #bfa28269;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-grey);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-family: 'Taviraj', serif;
    font-size: 0.95rem;
    color: var(--primary-grey);
    opacity: 0.8;
    margin: 0;
}







/* Section Header (utilisé par plusieurs sections) */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header .section-title {
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
}

.section-header .section-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    color: var(--primary-grey);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Espaces Similaires */
.related-spaces {
    padding: 8rem 0;
    background: #f8f9fa;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

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

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

.related-content {
    padding: 2rem;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.related-description {
    font-family: 'Taviraj', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.related-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.related-link:hover {
    color: var(--primary-grey);
}

/* Responsive Design pour Single Space */
@media (max-width: 1024px) {
    .single-space-hero {
        grid-template-columns: 1fr;
    }
    
    .single-hero-content {
        padding: 3rem 0;
    }
    
    .space-name {
        font-size: 2.5rem;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    

    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .space-name {
        font-size: 2rem;
    }
    
    .space-highlights {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-thumbnails {
        height: 80px;
    }
    
    .space-description,
    .related-spaces {
        padding: 5rem 0;
    }
}

/* Page Services */
.services-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 31, 28, 0.8) 0%, rgba(8, 31, 28, 0.6) 100%);
    z-index: 2;
}

.services-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    text-align: center;
}

@media (max-width: 768px) {
    .services-hero-content {
        margin-top: 5rem;
    }
}

.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
}

.services-hero-description {
    font-family: 'Taviraj', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    color: white;
}

/* Services Principaux */
.main-services {
    padding: 2rem 0;
    background: var(--primary-dark);
}

.services-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.services-intro .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.services-intro .section-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    color: white;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
}

.service-card.large {
    grid-row: span 1;
}

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

.service-card.large .service-image {
    height: 300px;
}

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

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

.service-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.service-description {
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    color: var(--primary-grey);
}

.service-features .feature i {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* Services Techniques */
.technical-services {
    padding: 8rem 0;
    background: #f8f9fa;
}

.technical-services .services-intro .section-title {
    color: var(--primary-grey);
}

.technical-services .services-intro .section-description {
    color: var(--primary-grey);
}

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

.technical-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.technical-image {
    height: 200px;
    overflow: hidden;
}

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

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

.technical-content {
    padding: 2.5rem;
}

.technical-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.technical-description {
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.technical-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-tag {
    background: var(--primary-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Taviraj', serif;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Services Premium */
.premium-services {
    padding: 8rem 0;
    background: var(--primary-dark);
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.premium-text .section-title {
    color: white;
    margin-bottom: 2rem;
}

.premium-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.premium-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.premium-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.premium-feature p {
    font-family: 'Taviraj', serif;
    color: white;
    opacity: 0.8;
    line-height: 1.5;
}

.premium-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

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

/* Section Tarification */
.pricing-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-gold);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 2.5rem;
}

.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-grey);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-family: 'Taviraj', serif;
    color: var(--primary-grey);
    opacity: 0.7;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Taviraj', serif;
    color: var(--primary-grey);
}

.pricing-features i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.pricing-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-grey);
    color: var(--primary-grey);
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Taviraj', serif;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-button:hover {
    background: var(--primary-grey);
    color: white;
}

.pricing-button.primary {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}

.pricing-button.primary:hover {
    background: #a08660;
    border-color: #a08660;
}

/* Section Contact Services */
.services-contact {
    padding: 6rem 0;
    background: var(--primary-dark);
    text-align: center;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-gold);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-cta:hover {
    background: #a08660;
    transform: translateY(-2px);
}

.contact-cta i {
    font-size: 1.2rem;
}

/* Navigation active state */
.nav-list a.active {
    color: var(--primary-gold);
}

body.home .nav-list a.active {
    color: var(--primary-gold);
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .service-card.large {
        grid-column: span 2;
    }
    
    .technical-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .premium-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.large {
        grid-column: span 1;
    }
    
    .service-content,
    .technical-content {
        padding: 2rem;
    }
    
    .main-services,
    .technical-services,
    .premium-services,
    .pricing-section {
        padding: 5rem 0;
    }
    
    .premium-features {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* Page Single Service */
.service-hero {
    padding: 8rem 0 6rem;
    background: #f8f9fa;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.service-hero-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-main-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

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

.service-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}


.service-hero-info {
    padding: 2rem 0;
}

.service-category {
    color: var(--primary-gold);
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.service-hero-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-grey);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.service-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Taviraj', serif;
    color: var(--primary-grey);
}

.highlight i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.service-cta .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Description Détaillée */
.service-description {
    padding: 1rem 0;
    background: var(--primary-dark);
}

.description-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: start;
}

.description-text {
    color: white;
}

.description-text .section-title {
    color: white;
    margin-bottom: 2rem;
}

.description-text p {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-features-detailed h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

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

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.5rem;
    width: 24px;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-family: 'Taviraj', serif;
    color: white;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Nos Menus */
.service-menus {
    padding: 8rem 0;
    background: #f8f9fa;
}

.menus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.menu-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
}

.menu-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-gold);
}

.menu-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.menu-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Taviraj', serif;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
}

.menu-image {
    height: 200px;
    overflow: hidden;
}

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

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

.menu-content {
    padding: 2rem;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.menu-description {
    font-family: 'Taviraj', serif;
    color: var(--primary-grey);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(69, 74, 78, 0.1);
}

.menu-courses {
    font-family: 'Taviraj', serif;
    color: var(--primary-grey);
    font-size: 0.9rem;
}

.menu-price {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Notre Équipe */
.service-team {
    padding: 8rem 0;
    background: var(--primary-dark);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.team-text .section-title {
    color: white;
    margin-bottom: 2rem;
}

.team-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    opacity: 0.9;
    margin-bottom: 3rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Taviraj', serif;
    color: white;
    opacity: 0.8;
    font-size: 0.9rem;
}

.team-quote {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.team-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-quote cite {
    font-family: 'Taviraj', serif;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-style: normal;
}

.team-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

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

/* Services Similaires */
.related-services {
    padding: 8rem 0;
    background: #f8f9fa;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

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

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

.related-content {
    padding: 2rem;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-grey);
    margin-bottom: 1rem;
}

.related-description {
    font-family: 'Taviraj', serif;
    color: var(--primary-grey);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.related-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #a08660;
}

/* Responsive Single Service */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .menus-grid,
    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .menu-card.featured {
        transform: none;
    }
    
    .menu-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 5rem 0 4rem;
    }
    
    .service-hero-title {
        font-size: 2.2rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-description,
    .service-menus,
    .service-team,
    .related-services {
        padding: 5rem 0;
    }
    
    .menus-grid,
    .related-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-content,
    .related-content {
        padding: 1.5rem;
    }
    
    .team-quote {
        padding: 1.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Galerie Photos */
.gallery-section {
    padding: 8rem 0 6rem;
    background: #f8f9fa;
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gallery-description {
    font-family: 'Taviraj', serif;
    font-size: 1.2rem;
    color: var(--primary-grey);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Filtres de galerie */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-grey);
    color: var(--primary-grey);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
}

/* Grille de galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-elevated);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

/* Overlay de galerie */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 31, 28, 0.8) 0%, rgba(8, 31, 28, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-family: 'Taviraj', serif;
    color: white;
    opacity: 0.9;
    font-size: 1rem;
}

.gallery-zoom {
    align-self: flex-end;
    background: var(--primary-gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom:hover {
    background: #a08660;
    transform: scale(1.1);
}

/* Modal de galerie */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10000;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

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

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.modal-prev,
.modal-next {
    background: rgba(191, 162, 130, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.modal-prev {
    margin-left: -25px;
}

.modal-next {
    margin-right: -25px;
}

/* Responsive Galerie */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 5rem 0 4rem;
    }
    
    .gallery-title {
        font-size: 2.5rem;
        margin-top: 5rem;
    }
    
    .gallery-description {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-info h3 {
        font-size: 1.3rem;
    }
    
    .gallery-filters {
        margin-bottom: 3rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .modal-prev,
    .modal-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modal-close {
        top: -40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-header {
        margin-bottom: 3rem;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-info h3 {
        font-size: 1.2rem;
    }
    
    .gallery-zoom {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Page Contact */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 31, 28, 0.8) 0%, rgba(8, 31, 28, 0.6) 100%);
    z-index: 2;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    text-align: center;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
}

.contact-hero-description {
    font-family: 'Taviraj', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

/* Section Contact Principal */
.contact-main {
    padding: 8rem 0;
    background: #f8f9fa;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Formulaire de Contact */
.contact-form-section .section-title {
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
}

.form-description {
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    color: var(--primary-grey);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

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

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

.form-group label {
    display: block;
    font-family: 'Taviraj', serif;
    font-weight: 500;
    color: var(--primary-grey);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: 'Taviraj', serif;
    font-size: 1rem;
    color: var(--primary-grey);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(191, 162, 130, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

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

/* Checkbox personnalisé */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-family: 'Taviraj', serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-link {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #a08660;
    text-decoration: underline;
}

/* Bouton de soumission */
.form-submit {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-family: 'Taviraj', serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.form-submit:hover {
    background: #a08660;
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Informations de Contact */
.contact-page-info-section .section-title {
    color: var(--primary-grey);
    margin-bottom: 3rem;
}

.contact-page-info-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-page-info-item {
    margin-bottom: 2.5rem;
}

.contact-page-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-grey);
    margin-bottom: 0.5rem;
}

.contact-page-details p {
    font-family: 'Taviraj', serif;
    color: var(--primary-grey);
    line-height: 1.6;
    margin: 0;
}

.contact-page-details a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-page-details a:hover {
    color: #a08660;
    text-decoration: underline;
}

.contact-page-hours {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Réseaux Sociaux */
.contact-page-social {
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.contact-page-social h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
}

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

.contact-page-social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-page-social-link:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

/* Section Carte */
.contact-map {
    background: var(--primary-dark);
    padding: 0;
}

.map-container {
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}


.map-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.map-content p {
    font-family: 'Taviraj', serif;
    opacity: 0.8;
    margin-bottom: 2rem;
    color: white;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gold);
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Taviraj', serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link i {
    font-size: 1.2rem;
    color: white;
}

.map-link:hover {
    background: #a08660;
    transform: translateY(-2px);
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-main {
        padding: 5rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        gap: 0;
    }
    
    .contact-page-info-grid {
        gap: 2rem;
    }
    
    .contact-page-info-item {
        margin-bottom: 2rem;
    }
    
    .contact-page-social-links {
        justify-content: start;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-content i {
        font-size: 2.5rem;
    }
    
    .map-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .form-submit {
        padding: 1rem 2rem;
    }
    
    .contact-page-info-item {
        margin-bottom: 1.5rem;
        text-align: left;
    }
}

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

/* Parallax effect */
.hero {
    transform: translate3d(0, 0, 0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 1.5rem;
    }
    
    .produits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    p {
        font-size: 16px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .produits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-image {
        height: 300px;
    }
    
    .event-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .event-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .event-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* AOS Animations Override */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Hover effects */
.produit-card,
.services-image {
    transition: all 0.3s ease-in-out;
}

/* Focus states for accessibility */
.btn-gold:focus,
.btn-hero:focus,
.btn-discover:focus,
.nav-list a:focus {
    outline: 2px solid #d8872e;
    outline-offset: 2px;
}
