:root {
    --color-black: #0a0a0a;
    --color-gold: #D4AF37;
    --color-gold-light: #e6c75c;
    --color-gold-dark: #b8941f;
    --color-off-white: #f5f5f5;
    --color-smoke-gray: #4a4a4a;
}

body {
    background-color: var(--color-black);
    color: var(--color-off-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Hero Section améliorée */
.services-hero {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        rgba(10, 10, 10, 0.9) 100%),
        url('img1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(10, 10, 10, 0.8) 70%);
}

/* Ligne de séparation dorée améliorée */
.gold-divider {
    height: 2px;
    width: 80%;
    max-width: 1200px;
    margin: 4rem auto;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-gold) 50%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    position: relative;
}

.gold-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-gold);
}

/* Animations améliorées */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity  0.3s ease-out, transform 1s ease-out;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity  0.3s ease-out, transform 1s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity  0.3s ease-out, transform 1s ease-out;
}

.slide-in-left.active,
.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Bouton de réservation premium */
.reserve-btn {
    background: linear-gradient(145deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    padding: 1rem 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    display: inline-block;
}

.reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left  0.3s ease;
}

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

.reserve-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Cartes de services premium */
.service-card {
    background: linear-gradient(145deg, 
        rgba(26, 26, 26, 0.8), 
        rgba(15, 15, 15, 0.9));
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: left  0.3s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1.5rem;
    position: relative;
    z-index: 2;
}

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

/* Section avantages premium */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(212, 175, 55, 0.05), 
        transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--color-gold);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon i {
    color: var(--color-black);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--color-gold);
    transition: all 0.4s ease;
}

/* Section CTA améliorée */
.cta-section {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(10, 10, 10, 0.9) 50%),
        url('img1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

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

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}
