:root {
    --gold: #D4AF37;
    --gold-light: #E6C158;
    --gold-dark: #B8941F;
    --black: #000000;
    --black-light: #111111;
    --black-lighter: #222222;
    --gray: #333333;
    --gray-light: #444444;
    --white: #FFFFFF;
    --white-dark: #F5F5F5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--gold-light), var(--gold));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
}

.logo-animation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(var(--black), var(--black)) padding-box,
                linear-gradient(135deg, var(--gold), var(--gold-dark), var(--gold)) border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    font-size: 48px;
    color: var(--gold);
}

.loading-text {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    height: 70px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    z-index: 1002;
}

.logo i {
    font-size: 1.5rem;
}

.desktop-nav {
    display: none;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.desktop-nav a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1001;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.fullscreen-menu.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.fullscreen-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.fullscreen-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.fullscreen-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fullscreen-nav {
    list-style: none;
    flex: 1;
}

.fullscreen-nav li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(20px);
    animation: menuItemReveal 0.5s forwards;
}

.fullscreen-nav li:nth-child(1) { animation-delay: 0.1s; }
.fullscreen-nav li:nth-child(2) { animation-delay: 0.2s; }
.fullscreen-nav li:nth-child(3) { animation-delay: 0.3s; }
.fullscreen-nav li:nth-child(4) { animation-delay: 0.4s; }
.fullscreen-nav li:nth-child(5) { animation-delay: 0.5s; }
.fullscreen-nav li:nth-child(6) { animation-delay: 0.6s; }

.fullscreen-nav a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fullscreen-nav a i {
    width: 30px;
    color: var(--gold);
    font-size: 1.3rem;
}

.fullscreen-nav a:hover,
.fullscreen-nav a.active {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateX(10px);
}

.fullscreen-contact {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fullscreen-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
}

.stats-counter {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

.fullscreen-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    z-index: -2;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2;
}

.slider-prev,
.slider-next {
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 500;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    min-width: 150px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Circuit Lines */
.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    height: 1px;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 100%;
}

.line-2 {
    top: 50%;
    left: 0;
    width: 80%;
}

.line-3 {
    top: 80%;
    right: 0;
    width: 70%;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
}

.node-1 {
    top: 20%;
    left: 30%;
}

.node-2 {
    top: 50%;
    left: 50%;
}

.node-3 {
    top: 80%;
    right: 40%;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--black-light);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 1.8rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: #bbb;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.service-list li:before {
    content: '✓';
    color: var(--gold);
    margin-right: 10px;
    font-weight: bold;
}

/* Achat/Vente Section */
.achat-vente {
    padding: 100px 0;
    background-color: var(--black);
    position: relative;
    overflow: hidden;
}

.achat-vente::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.03) 50%, transparent 52%);
    background-size: 50px 50px;
    pointer-events: none;
}

.av-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.av-card {
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.av-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.av-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.3));
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.5rem;
}

.av-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.av-card p {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.av-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: var(--black-light);
}

.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.project-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-category {
    background-color: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-content p {
    color: #bbb;
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.about-text .section-header {
    text-align: left;
}

.about-description p {
    margin-bottom: 20px;
    color: #ddd;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
}

.about-image {
    position: relative;
}

.image-frame {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--black-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: rgba(50, 50, 50, 0.7);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.3));
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-details p, .contact-details a {
    color: #ddd;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-details small {
    color: #aaa;
    font-size: 0.85rem;
}

.contact-form-container {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

.whatsapp-cta {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background-color: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-direct-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 10px;
}

.whatsapp-direct-btn:hover {
    background-color: #1da851;
}

/* Footer */
.footer {
    background-color: var(--black);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-brand {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-tagline {
    color: #aaa;
    max-width: 500px;
    margin: 0 auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 12px;
}

.link-group a {
    color: #bbb;
}

.link-group a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    color: #777;
    margin-bottom: 15px;
}

.copyright a {
    color: var(--gold);
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-seo p {
    color: #666;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.float-text {
    position: absolute;
    right: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .float-text {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
}

/* Media Queries */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .av-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 20px;
    }
    
    .fullscreen-nav a {
        font-size: 1.3rem;
        padding: 15px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat {
        min-width: 120px;
        padding: 15px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.8rem;
    }
    
    .slider-controls {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 15px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .projects-filter {
        gap: 5px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .stats-counter {
        flex-direction: column;
        gap: 20px;
    }
}

/* iPhone X and small screens */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .av-card,
    .contact-card,
    .contact-form-container {
        padding: 20px;
    }
    
    .fullscreen-menu {
        padding: 15px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stat {
        min-width: auto;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .back-to-top,
    .mobile-menu-toggle,
    .slider-controls,
    .slider-dots {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
}

/* Menu Mobile Full Height - CORRECTION */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--black);
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 1001;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow: visible; /* Pas de scroll dans le menu */
}

.fullscreen-menu.active {
    right: 0;
}

.fullscreen-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    flex-shrink: 0; /* Empêche le rétrécissement */
}

.fullscreen-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.fullscreen-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible; /* Pas de scroll */
    height: auto;
    max-height: calc(100vh - 150px); /* Ajuste la hauteur */
}

.fullscreen-nav {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px; /* Espacement réduit entre les éléments */
    overflow: visible; /* Pas de scroll */
    height: auto;
    min-height: 0; /* Permet au flex de fonctionner */
}

.fullscreen-nav li {
    margin-bottom: 0; /* Supprime l'espacement supplémentaire */
    opacity: 0;
    transform: translateX(20px);
    animation: menuItemReveal 0.5s forwards;
    flex-shrink: 0; /* Empêche le rétrécissement */
}

.fullscreen-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px; /* Padding réduit */
    font-size: 1.1rem; /* Taille de police réduite */
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: auto;
    min-height: 50px; /* Hauteur minimale */
}

.fullscreen-nav a i {
    width: 25px;
    color: var(--gold);
    font-size: 1.1rem;
}

.fullscreen-nav a:hover,
.fullscreen-nav a.active {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateX(5px);
}

.fullscreen-contact {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0; /* Empêche le rétrécissement */
    margin-top: auto; /* Pousse vers le bas */
}

.fullscreen-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--gold);
    width: 18px;
}

.stats-counter {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 45%;
}

.stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 3px;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: #aaa;
}

.fullscreen-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    .fullscreen-menu {
        width: 85%;
    }
    
    .fullscreen-nav a {
        padding: 10px 12px;
        font-size: 1rem;
        min-height: 45px;
    }
    
    .fullscreen-contact {
        padding: 20px 0;
    }
    
    .stats-counter {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100%;
    }
}

/* Pour les écrans très petits (iPhone 5/SE) */
@media (max-height: 600px) {
    .fullscreen-menu-content {
        max-height: calc(100vh - 120px);
    }
    
    .fullscreen-nav a {
        padding: 8px 10px;
        min-height: 40px;
    }
    
    .fullscreen-contact {
        padding: 15px 0;
    }
    
    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .stats-counter {
        margin: 15px 0;
        padding: 12px;
    }
}

/* =========================================== */
/* ANIMATIONS DES COMPTEURS STATISTIQUES */
/* =========================================== */

/* Animation de comptage */
.stat-number.counting {
    animation: countPulse 0.5s ease-in-out;
}

@keyframes countPulse {
    0% {
        transform: scale(1);
        color: var(--gold);
    }
    50% {
        transform: scale(1.1);
        color: var(--gold-light);
    }
    100% {
        transform: scale(1);
        color: var(--gold);
    }
}

/* Style des compteurs */
.stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    transition: all 0.3s ease;
}

.stat-number.counted {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Animation spécifique pour les compteurs */
[data-animation="count"].animated {
    animation: countAppear 1s ease-out forwards;
}

@keyframes countAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation des cartes de statistiques */
.stat.animate-on-scroll[data-animation="count"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat.animate-on-scroll[data-animation="count"].animated {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================== */
/* CORRECTION SPÉCIFIQUE POUR LES COMPTEURS */
/* =========================================== */

/* Assurer que les statistiques sont visibles */
.about-stats {
    opacity: 1 !important;
    visibility: visible !important;
}

/* S'assurer que les compteurs peuvent être animés */
.stat-number {
    min-width: 80px;
    text-align: center;
}

/* Debug - bordure rouge pour voir les éléments */
.debug-stat {
    border: 2px solid red !important;
}

/* S'assurer que la section À Propos est visible */
#about {
    position: relative;
    z-index: 1;
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
        min-width: 70px;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Styles pour les projets - AJOUTER À VOTRE FICHIER CSS */
.project-card {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    animation: projectCardAppear 0.6s ease-out forwards;
}

@keyframes projectCardAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Pour les projets non trouvés */
.no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.no-projects i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-projects p {
    font-size: 1.1rem;
}

/* S'assurer que la grille est visible */
#projectsGrid {
    min-height: 300px;
    position: relative;
}

/* =========================================== */
/* STYLES POUR LES PROJETS - AJOUTER */
/* =========================================== */

#projectsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    min-height: 500px;
}

.project-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.project-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.project-category {
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
}

.project-content p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================== */
/* CORRECTION SLIDER */
/* =========================================== */

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1 !important;
    z-index: 1;
}

/* =========================================== */
/* CORRECTION COMPTEURS */
/* =========================================== */

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    transition: all 0.3s ease;
}

.stat-number.counted {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Force l'affichage des statistiques */
.about-stats {
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 1 !important;
    transform: none !important;
}

/* =========================================== */
/* DEBUG - À RETIRER APRÈS TEST */
/* =========================================== */

.debug-border {
    border: 2px solid red !important;
}

#projectsGrid:empty::before {
    content: 'Chargement des projets...';
    color: var(--gold);
    font-style: italic;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

/* =========================================== */
/* ANIMATIONS POUR LES COOKIES ET MODALS */
/* =========================================== */

/* Animation du banner cookies */
@keyframes slideUpIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-banner {
    animation: slideUpIn 0.5s ease-out forwards;
}

.cookie-banner:not(.show) {
    animation: slideDownOut 0.5s ease-out forwards;
    animation-fill-mode: forwards;
}

/* Animation des modals */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
}

.modal-overlay.show .modal {
    animation: modalFadeIn 0.4s ease-out forwards;
}

.modal-overlay:not(.show) .modal {
    animation: modalFadeOut 0.4s ease-out forwards;
}

/* Animation de la notification */
@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.cookie-notification.show {
    animation: notificationSlideIn 0.4s ease-out forwards;
}

.cookie-notification:not(.show) {
    animation: notificationSlideOut 0.4s ease-out forwards;
}

/* =========================================== */
/* CORRECTIONS SPÉCIFIQUES */
/* =========================================== */

/* S'assurer que le banner est visible quand show est ajouté */
.cookie-banner {
    display: none; /* Caché par défaut */
    bottom: -100%;
}

.cookie-banner.show {
    display: block; /* Affiché quand show est ajouté */
    bottom: 0;
}

/* S'assurer que les modals sont cachés par défaut */
.modal-overlay {
    display: none;
}

.modal-overlay.show {
    display: flex;
}

/* Style pour les notifications */
.cookie-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black-light);
    border-left: 4px solid;
    border-radius: 5px;
    padding: 15px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9997;
    display: none;
}

.cookie-notification.show {
    display: block;
}

.cookie-notification-success {
    border-left-color: #25D366;
}

.cookie-notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.cookie-notification-content i {
    font-size: 1.2rem;
}

.cookie-notification-success .cookie-notification-content i {
    color: #25D366;
}

/* =========================================== */
/* BOUTON CLOSE POUR LE MENU MOBILE */
/* =========================================== */

.close-menu {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1002;
}

.close-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    transform: rotate(90deg);
}

/* =========================================== */
/* RESPONSIVE ADJUSTMENTS */
/* =========================================== */

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-text i {
        margin-bottom: 10px;
        margin-top: 0;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-notification {
        min-width: auto;
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        bottom: 80px; /* Au-dessus du bouton WhatsApp */
    }
    
    .modal {
        max-width: 95%;
        margin: 0 10px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .cookie-banner {
        padding: 12px;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-buttons .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        padding: 20px 15px;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .legal-content table {
        font-size: 0.85rem;
    }
    
    .legal-content th,
    .legal-content td {
        padding: 6px 8px;
    }
}

/* =========================================== */
/* ACCESSIBILITÉ */
/* =========================================== */

/* Focus visible pour l'accessibilité */
.modal-close:focus,
.close-menu:focus,
.cookie-accept:focus,
.cookie-customize:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Animation pour les utilisateurs qui préfèrent les réductions de mouvement */
@media (prefers-reduced-motion: reduce) {
    .cookie-banner,
    .modal-overlay .modal,
    .cookie-notification,
    .modal-close,
    .close-menu {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================== */
/* IMPRESSION */
/* =========================================== */

@media print {
    .cookie-banner,
    .cookie-notification,
    .modal-overlay,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
}

/* =========================================== */
/* NOTIFICATIONS COOKIES */
/* =========================================== */

.cookie-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black-light);
    border-left: 4px solid;
    border-radius: 5px;
    padding: 15px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9997;
    display: none;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.cookie-notification.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.cookie-notification-success {
    border-left-color: #25D366;
}

.cookie-notification-info {
    border-left-color: var(--gold);
}

.cookie-notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.cookie-notification-content i {
    font-size: 1.2rem;
}

.cookie-notification-success .cookie-notification-content i {
    color: #25D366;
}

.cookie-notification-info .cookie-notification-content i {
    color: var(--gold);
}

/* =========================================== */
/* CORRECTION DU BANNER COOKIES */
/* =========================================== */

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--black-light);
    border-top: 2px solid var(--gold);
    padding: 20px;
    z-index: 9998;
    transition: bottom 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    display: block; /* IMPORTANT: Toujours visible dans le flux */
    opacity: 0; /* Caché par défaut */
    visibility: hidden; /* Caché par défaut */
}

.cookie-banner.show {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-text i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 3px;
}

.cookie-text p {
    color: #ddd;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-link {
    color: var(--gold);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--gold-light);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* =========================================== */
/* PAGES POLITIQUES ET CONDITIONS */
/* =========================================== */

.legal-page {
    padding-top: 120px;
    min-height: 100vh;
    background-color: var(--black);
}

.legal-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.legal-header p {
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.legal-content-page {
    background: var(--black-light);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-content-page h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.legal-content-page h2:first-child {
    margin-top: 0;
}

.legal-content-page h3 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.legal-content-page p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ddd;
}

.legal-content-page ul, .legal-content-page ol {
    margin: 15px 0 15px 30px;
    padding: 0;
}

.legal-content-page li {
    margin-bottom: 10px;
    color: #ddd;
    line-height: 1.6;
}

.legal-content-page strong {
    color: var(--gold);
}

.legal-content-page a {
    color: var(--gold);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.legal-content-page a:hover {
    color: var(--gold-light);
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* Table pour politique cookies */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table th {
    background: var(--gold);
    color: var(--black);
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookies-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive pour pages légales */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 100px;
    }
    
    .legal-header {
        padding: 40px 20px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content-page {
        padding: 25px;
    }
    
    .legal-content-page h2 {
        font-size: 1.5rem;
    }
    
    .legal-content-page h3 {
        font-size: 1.2rem;
    }
    
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .legal-content-page {
        padding: 20px 15px;
    }
    
    .cookies-table {
        display: block;
        overflow-x: auto;
    }
    
    .legal-content-page ul,
    .legal-content-page ol {
        margin-left: 20px;
    }
}