:root {
    /* Thème sombre (par défaut) */
    --bg-color: #000000;
    --text-color: #ffffff;
    --card-bg: #121212;
    --section-bg: #0a0a0a;
    --border-color: rgba(255, 255, 255, 0.1);
    /* Couleurs dorées selon l'image */
    --gold-color: #c0a46e;
    --gold-gradient: linear-gradient(135deg, #a88d56 0%, #e2d3a0 50%, #a88d56 75%, #e2d3a0 100%);
    --gold-gradient-hover: linear-gradient(135deg, #b99c61 0%, #d4c28e 30%, #a88d56 60%, #e2d3a0 100%);
    --gold-shadow: 0 0 10px rgba(184, 157, 98, 0.6);
    --gold-glow: 0 0 15px rgba(184, 157, 98, 0.5);
    --header-bg: rgba(0, 0, 0, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --card-hover: #1a1a1a;
    --input-bg: #1a1a1a;
    --input-text: #ffffff;
    --footer-bg: #000000;
    --section-title-color: #ffffff;
    --hero-overlay: rgba(0, 0, 0, 0.7);
    --dark-bg: #000000;
    --dark-card: #0a0a0a;
    --gray-light: #999;
    --transition: all 0.3s ease;
    --border-radius: 5px;
    --body-bg: var(--dark-bg);
}

/* Thème clair avec plus de blanc */
[data-theme="light"] {
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #ffffff;
    --section-bg: #f8f8f8;
    --border-color: rgba(0, 0, 0, 0.1);
    /* Couleurs dorées selon l'image */
    --gold-color: #c0a46e;
    --gold-gradient: linear-gradient(135deg, #a88d56 0%, #e2d3a0 50%, #a88d56 75%, #e2d3a0 100%);
    --gold-gradient-hover: linear-gradient(135deg, #b99c61 0%, #d4c28e 30%, #a88d56 60%, #e2d3a0 100%);
    --gold-shadow: 0 0 10px rgba(184, 157, 98, 0.6);
    --gold-glow: 0 0 15px rgba(184, 157, 98, 0.5);
    --header-bg: rgba(255, 255, 255, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.08);
    --card-hover: #f9f9f9;
    --input-bg: #ffffff;
    --input-text: #333333;
    --footer-bg: #ffffff;
    --section-title-color: #333333;
    --hero-overlay: rgba(255, 255, 255, 0.9);
    --dark-bg: #f8f8f8;
    --dark-card: #ffffff;
    --gray-light: #555555;
    --body-bg: var(--dark-bg);
}

/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Header et Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--header-bg);
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px var(--shadow-color);
    background-color: rgba(10, 10, 10, 0.9);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.visible {
    transform: translateY(0);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 400;
    color: transparent;
    transition: all 0.3s ease;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.logo .gold-effect {
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.gold-effect {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.main-title .gold-effect {
    display: inline;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

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

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

/* Bouton changement de thème */
.theme-toggle, .language-toggle {
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    z-index: 999;
}

.theme-toggle {
    bottom: 20px;
    right: 20px;
}

.language-toggle {
    bottom: 20px;
    left: 20px;
}

.theme-toggle i, .language-toggle i {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
}

.theme-toggle:hover, .language-toggle:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--gold-color);
}

.theme-toggle::after {
    content: attr(title);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card-bg);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.theme-toggle:hover::after {
    opacity: 1;
}

/* Sections */
section {
    padding: 80px 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--section-title-color);
    position: relative;
    display: inline-block;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Cartes et éléments */
.service-card, .feature-card, .testimonial-card, .floating-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover, .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

/* Formulaires */
input, textarea, select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: var(--input-bg);
    color: var(--input-text);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Pied de page */
.footer {
    background-color: var(--footer-bg);
    padding: 40px 0 20px;
    position: relative;
    border-top: 1px solid var(--border-color);
}

/* Animation de brillance pour le mode clair */
[data-theme="light"] .shine-element:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Mode clair spécifique pour certains composants */
[data-theme="light"] .hero::before {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9));
}

[data-theme="light"] .service-card, 
[data-theme="light"] .feature-card, 
[data-theme="light"] .testimonial-card, 
[data-theme="light"] .floating-card,
[data-theme="light"] .legal-block,
[data-theme="light"] .privacy-block {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .logo {
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .nav-link {
    color: #333;
}

[data-theme="light"] .gold-text,
[data-theme="light"] .gold-effect {
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Sélecteur de langue - Mode clair */
[data-theme="light"] .language-dropdown {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .language-option {
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Language Selector */
.language-selector {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.language-dropdown {
    position: absolute;
    bottom: 60px;
    left: 0;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 150px;
    z-index: 1001;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.language-dropdown.active {
    display: flex;
    animation: fadeIn 0.2s ease-in-out;
}

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

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-color);
}

.lang-option:hover {
    background-color: rgba(192, 164, 110, 0.1);
}

.lang-option.active {
    background-color: rgba(192, 164, 110, 0.2);
    font-weight: 500;
}

.lang-option img {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

/* Transition douce lors du changement de thème */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #000000;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    background-image: url('../img/luxury-pattern.png');
    background-repeat: repeat;
    background-size: 400px;
    background-blend-mode: overlay;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.85) 100%);
    pointer-events: none;
    z-index: -1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 50%, rgba(25, 25, 25, 0.2) 0%, rgba(10, 10, 10, 0) 50%),
                radial-gradient(circle at 85% 30%, rgba(30, 30, 30, 0.2) 0%, rgba(10, 10, 10, 0) 60%);
    z-index: -2;
    animation: backgroundShift 15s infinite alternate ease-in-out;
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 0%;
    }
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gold-effect {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--gold-shadow);
}

.shine-element {
    position: relative;
    overflow: hidden;
}

.shine-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: var(--transition);
}

.shine-element:hover::before,
.shine-element.shining::before {
    left: 100%;
    transition: 0.7s;
}

.cta-button, .submit-btn, .callback-btn {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before, .submit-btn::before, .callback-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-30deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover, .submit-btn:hover, .callback-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: var(--gold-gradient-hover);
}

.cta-button:hover::before, .submit-btn:hover::before, .callback-btn:hover::before {
    left: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: rgba(10, 10, 10, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px var(--shadow-color);
    background-color: rgba(10, 10, 10, 0.9);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.visible {
    transform: translateY(0);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.7;
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--gray-light);
    text-transform: uppercase;
    display: block;
    margin-top: -5px;
    padding-left: 2px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition);
    opacity: 0;
}

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

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
    opacity: 0.7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    width: 30px;
    height: 24px;
}

.toggle-bar {
    width: 30px;
    height: 2px;
    background-color: var(--gold-color);
    margin: 0;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.toggle-bar:nth-child(1) {
    top: 0;
}

.toggle-bar:nth-child(2) {
    top: 11px;
}

.toggle-bar:nth-child(3) {
    top: 22px;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    will-change: opacity, transform;
}

body:not(.loading) .hero {
    opacity: 1;
    transform: translateY(0);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/luxury-pattern.png') repeat center center;
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-out 0.6s, transform 1.5s ease-out 0.6s;
    will-change: opacity, transform;
}

.hero-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: 100%;
    word-wrap: break-word;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--gray-light);
    line-height: 1.5;
    width: 100%;
    word-wrap: break-word;
}

.cta-wrapper {
    margin-top: 30px;
}

/* Animated gold particles */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gold-particle {
    position: absolute;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(15px); }
    50% { transform: translateY(-15px) translateX(-15px); }
    75% { transform: translateY(30px) translateX(10px); }
}

.services {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-light);
}

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

.service-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--gold-color);
    transition: var(--transition);
}

.service-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-description {
    color: var(--gray-light);
    font-size: 15px;
}

.why-us {
    padding: 100px 0;
    background-color: rgba(15, 15, 15, 0.5);
    position: relative;
}

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

.feature-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--gold-color);
}

.feature-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature-description {
    color: var(--gray-light);
    font-size: 15px;
}

.gallery-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover .gallery-caption {
    padding-bottom: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.8) 80%, transparent);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7) 80%, transparent);
    color: #ffffff;
    padding: 20px 15px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.gallery-caption::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: var(--gold-gradient);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-caption::after {
    transform: scaleX(1);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(var(--gold-rgb), 0.6);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--light-text);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author .name {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.testimonial-author .location {
    font-size: 0.9rem;
    color: var(--medium-text);
}

.about-section {
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
}

.contact-section {
    padding: 100px 0;
}

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

.contact-form-wrapper {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-icon i {
    font-size: 18px;
    color: var(--gold-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    outline: none;
    font-size: 15px;
}

.form-group textarea {
    height: 120px;
    resize: none;
    padding-top: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    background-color: rgba(0, 0, 0, 0.4);
}

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

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    transition: var(--transition);
}

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

.checkbox-container input[type="checkbox"]:checked:after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 12px;
}

.checkbox-container label {
    font-size: 13px;
    color: var(--gray-light);
    cursor: pointer;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
}

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

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #000;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text {
    color: var(--text-color);
}

.callback-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

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

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

.callback-request {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
}

.callback-request h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer {
    padding: 40px 0;
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
}

.copyright, .tagline {
    color: var(--gray-light);
    font-size: 14px;
}

/* Empêcher le défilement pendant le chargement */
body.loading {
    overflow: hidden;
}

/* Effets dorés d'arrière-plan pour la page d'accueil */
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/luxury-pattern.png') repeat center center;
    opacity: 0.05;
    z-index: -1;
}

.golden-accent {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}

.accent-1 {
    top: 15%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 164, 110, 0.3) 0%, rgba(192, 164, 110, 0) 70%);
    animation: pulse 10s infinite alternate ease-in-out;
}

.accent-2 {
    bottom: 10%;
    right: 7%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(192, 164, 110, 0.2) 0%, rgba(192, 164, 110, 0) 65%);
    animation: pulse 8s infinite alternate-reverse ease-in-out;
}

.accent-3 {
    top: 40%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192, 164, 110, 0.25) 0%, rgba(192, 164, 110, 0) 60%);
    animation: pulse 12s infinite alternate ease-in-out;
}

.golden-line {
    position: absolute;
    background: var(--gold-gradient);
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}

.line-1 {
    top: 15%;
    left: 0;
    width: 30%;
    height: 1px;
    transform-origin: left;
    transform: scaleX(0);
    animation: lineReveal 5s 1s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.line-2 {
    top: 85%;
    right: 0;
    width: 40%;
    height: 1px;
    transform-origin: right;
    transform: scaleX(0);
    animation: lineReveal 5s 2s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.diagonal-line {
    position: absolute;
    width: 1px;
    height: 30%;
    background: var(--gold-gradient);
    transform-origin: top;
    transform: scaleY(0) rotate(45deg);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.diagonal-1 {
    top: 20%;
    left: 20%;
    animation: lineReveal 6s 3s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.diagonal-2 {
    bottom: 15%;
    right: 25%;
    animation: lineReveal 6s 4s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.gold-particle {
    position: absolute;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle-1 {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
}

.particle-2 {
    top: 40%;
    right: 15%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 30%;
    width: 6px;
    height: 6px;
    animation-delay: 4s;
}

.particle-4 {
    bottom: 15%;
    right: 10%;
    width: 7px;
    height: 7px;
    animation-delay: 6s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes lineReveal {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(15px); }
    50% { transform: translateY(-15px) translateX(-15px); }
    75% { transform: translateY(30px) translateX(10px); }
}

.footer-logo .logo {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1.8px;
}

.loader-metaphor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.loader-metaphor .gem-container {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 100px;
    height: 100px;
    z-index: 1;
    will-change: opacity;
}

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.8s, transform 0.8s;
}

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

/* Ajout des styles pour les Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-3px);
    border-color: var(--gold-color);
    box-shadow: var(--gold-shadow);
}

.trust-badge i {
    font-size: 20px;
}

.trust-badge span {
    font-size: 14px;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold-color);
    border-radius: 15px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Texte avec effet doré */
.gold-text {
    color: var(--gold-color);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* Animation pour les boutons */
.cta-button:active, 
.submit-btn:active, 
.callback-btn:active {
    transform: scale(0.98);
}

/* Effet de hover pour les cartes de témoignages */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

.testimonial-card:hover::after {
    width: 100%;
}

/* Améliorations pour la galerie avant-après */
.comparison-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    z-index: 10;
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.comparison-wrapper:hover::after {
    opacity: 0.8;
}

.comparison-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: var(--gold-gradient);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.comparison-wrapper:hover::before {
    opacity: 1;
}

/* Améliorations pour le footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

/* Floating Card */
.floating-card {
    position: absolute;
    right: 5%;
    bottom: 15%;
    width: 280px;
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: var(--border-radius);
    padding: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 157, 98, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    animation: floatCard 4s infinite ease-in-out;
    z-index: 3;
    max-width: 90%;
    overflow: hidden;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-icon {
    font-size: 36px;
    text-align: center;
    margin-bottom: 5px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-bottom: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.card-desc {
    font-size: 14px;
    color: var(--gray-light);
    text-align: center;
    margin-bottom: 10px;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-light);
}

/* Ajustements responsifs pour les nouveaux éléments */
@media (max-width: 1200px) {
    .floating-card {
        right: 3%;
        bottom: 15%;
        width: 240px;
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 100px 30px 30px;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        padding: 12px 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-link:after {
        bottom: 0;
    }

    .nav-toggle.active .toggle-bar:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }

    .nav-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .toggle-bar:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }

    .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 40px;
        animation: none;
        transform: none !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--gold-color);
    }
    
    .card-title {
        margin-bottom: 8px;
    }
    
    .card-desc {
        margin-bottom: 15px;
    }
    
    .card-stats {
        padding-top: 12px;
        border-top: 1px solid var(--gold-color);
    }
    
    .language-selector {
        left: 15px;
        bottom: 15px;
    }
    
    .language-dropdown {
        bottom: 50px;
        width: 140px;
        left: 0;
        max-height: 220px;
    }
    
    .language-dropdown.active {
        max-width: calc(100vw - 30px);
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .main-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
        overflow: visible;
        padding: 0 10px;
        line-height: 1.3;
        white-space: normal;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0 10px;
        white-space: normal;
        overflow: visible;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }

    .theme-toggle,
    .language-toggle {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .theme-toggle i,
    .language-toggle i {
        font-size: 1.1rem;
    }
    
    .theme-toggle {
        right: 15px;
        bottom: 15px;
    }
    
    .language-selector {
        left: 15px;
        bottom: 15px;
    }
    
    .language-dropdown {
        bottom: 50px;
        width: 140px;
        left: 0;
        max-height: 220px;
    }
    
    .language-dropdown.active {
        max-width: calc(100vw - 30px);
    }

    .floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 280px;
        margin: 20px auto 40px;
        animation: none;
        transform: none !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        border: 1px solid var(--gold-color);
    }
    
    /* Logo plus petit sur mobile */
    .logo {
        font-size: 1.2rem;
    }
    
    /* Désactiver les tooltips sur mobile */
    .theme-toggle::after,
    .language-toggle::after {
        display: none;
    }
    
    /* Améliorations pour le sélecteur de langue sur mobile */
    .language-toggle {
        width: 45px;
        height: 45px;
        background-color: var(--card-bg);
        border: 1px solid var(--gold-color);
    }
    
    .language-toggle:active {
        transform: scale(0.95);
    }
    
    .language-dropdown.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        max-width: calc(100vw - 30px);
        animation: fadeInDropdown 0.3s ease-out;
    }
    
    @keyframes fadeInDropdown {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .lang-option {
        padding: 12px;
        transition: background-color 0.2s ease;
    }
    
    .lang-option:active {
        background-color: var(--card-hover);
    }

    .hero {
        min-height: 100vh;
        padding-top: 70px;
        padding-bottom: 50px;
        height: auto;
        align-items: flex-start;
    }
    
    .hero-content {
        padding-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .main-title .gold-effect {
        display: inline;
        width: auto;
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .hero-title-wrapper {
        width: 100%;
        text-align: center;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid, .features-grid, .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

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

    .theme-toggle, 
    .language-toggle {
        width: 40px;
        height: 40px;
    }
    
    .lang-option {
        padding: 10px 12px;
    }
    
    .floating-card {
        padding: 15px;
        margin: 10px auto 30px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
        padding: 0 5px;
        width: 100%;
        overflow: visible;
        word-break: keep-all;
    }
    
    .subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
        width: 100%;
        overflow: visible;
    }
    
    .floating-card {
        padding: 15px;
        margin: 10px auto 30px;
        width: 90%;
    }
    
    .hero-trust-badges {
        margin-top: 30px;
    }
    
    .trust-badge {
        padding: 8px 12px;
    }
    
    .trust-badge i {
        font-size: 16px;
    }
    
    .trust-badge span {
        font-size: 12px;
    }
    
    .card-icon {
        font-size: 28px;
    }
    
    .card-stats {
        padding-top: 10px;
    }
}

/* Améliorations pour les services */
.services-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category {
    padding: 8px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.category:hover, .category.active {
    background: var(--gold-gradient);
    color: black;
    border-color: transparent;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover .service-overlay {
    bottom: 0;
    opacity: 1;
}

.service-learn-more {
    color: var(--gold-color);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-learn-more i {
    transition: var(--transition);
}

.service-learn-more:hover {
    color: white;
}

.service-learn-more:hover i {
    transform: translateX(5px);
}

/* Adaptation responsive */
@media (max-width: 768px) {
    .services-categories {
        gap: 10px;
    }
    
    .category {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .services-categories {
        flex-wrap: wrap;
    }
    
    .category {
        width: calc(50% - 5px);
        text-align: center;
    }
}

.gallery-caption {
    color: var(--gray-light);
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 10px;
}

/* Écran de chargement - Simplifié */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1.2s ease-out;
    will-change: opacity, visibility;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.5) 0%, rgb(0, 0, 0) 70%);
    opacity: 0.7;
    z-index: 1;
}

.loader-container {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loader-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 400;
    animation: logoAppear 0.8s ease-out;
}

.loader-logo .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--gold-shadow);
    font-weight: 400;
    letter-spacing: 1.8px;
}

.loader-text {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 8px;
    animation: textAppear 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(10px);
    font-weight: 500;
}

.backup-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 8px;
}

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

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

/* Transition page principale */
.hero {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    will-change: opacity, transform;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-out 0.6s, transform 1.5s ease-out 0.6s;
    will-change: opacity, transform;
}

.hero-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Empêcher le défilement pendant le chargement */
body.loading {
    overflow: hidden;
}

/* Effets dorés d'arrière-plan pour la page d'accueil */
.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/luxury-pattern.png') repeat center center;
    opacity: 0.05;
    z-index: -1;
}

.golden-accent {
    position: absolute;
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}

.accent-1 {
    top: 15%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 164, 110, 0.3) 0%, rgba(192, 164, 110, 0) 70%);
    animation: pulse 10s infinite alternate ease-in-out;
}

.accent-2 {
    bottom: 10%;
    right: 7%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(192, 164, 110, 0.2) 0%, rgba(192, 164, 110, 0) 65%);
    animation: pulse 8s infinite alternate-reverse ease-in-out;
}

.accent-3 {
    top: 40%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192, 164, 110, 0.25) 0%, rgba(192, 164, 110, 0) 60%);
    animation: pulse 12s infinite alternate ease-in-out;
}

.golden-line {
    position: absolute;
    background: var(--gold-gradient);
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}

.line-1 {
    top: 15%;
    left: 0;
    width: 30%;
    height: 1px;
    transform-origin: left;
    transform: scaleX(0);
    animation: lineReveal 5s 1s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.line-2 {
    top: 85%;
    right: 0;
    width: 40%;
    height: 1px;
    transform-origin: right;
    transform: scaleX(0);
    animation: lineReveal 5s 2s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.diagonal-line {
    position: absolute;
    width: 1px;
    height: 30%;
    background: var(--gold-gradient);
    transform-origin: top;
    transform: scaleY(0) rotate(45deg);
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.diagonal-1 {
    top: 20%;
    left: 20%;
    animation: lineReveal 6s 3s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.diagonal-2 {
    bottom: 15%;
    right: 25%;
    animation: lineReveal 6s 4s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.gold-particle {
    position: absolute;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle-1 {
    top: 20%;
    left: 10%;
    width: 8px;
    height: 8px;
}

.particle-2 {
    top: 40%;
    right: 15%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 30%;
    width: 6px;
    height: 6px;
    animation-delay: 4s;
}

.particle-4 {
    bottom: 15%;
    right: 10%;
    width: 7px;
    height: 7px;
    animation-delay: 6s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes lineReveal {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(15px); }
    50% { transform: translateY(-15px) translateX(-15px); }
    75% { transform: translateY(30px) translateX(10px); }
}

.footer-logo .logo {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1.8px;
}

.loader-metaphor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.loader-metaphor .gem-container {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 100px;
    height: 100px;
    z-index: 1;
    will-change: opacity;
} 