:root {
    /* Color Palette - LIGHT THEME (Rose Bonbon) */
    --gold: #FF69B4; /* Candy pink */
    /* Slightly lighter pink for better contrast on white */
    --gold-light: #FF99CC;
    --gold-dark: #D1478F;
    --black: #FFFFFF;
    /* Main background */
    --black-light: #F8F9FA;
    /* Section background */
    --black-lighter: #E9ECEF;
    --white: #121212;
    /* Text color */
    --gray: #666666;
    /* Secondary text */
    --white-pure: #FFFFFF;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default cursor for custom cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    background-image: url('luxury_white_marble_bg_1778420864728.png');
    background-attachment: fixed;
    background-size: cover;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 105, 180, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-hover {
    width: 15px;
    height: 15px;
}

.cursor-follower-hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 105, 180, 0.1);
    border-color: var(--gold);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    font-weight: 600;
}

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

.w-100 {
    width: 100%;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* Glassmorphism - Adjusted for Light Theme */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 105, 180, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader::before,
.preloader::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--black);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.preloader::before {
    left: 0;
    transform-origin: left;
}

.preloader::after {
    right: 0;
    transform-origin: right;
}

.preloader.hidden {
    pointer-events: none;
}

.preloader.hidden::before {
    transform: scaleX(0);
}

.preloader.hidden::after {
    transform: scaleX(0);
}

.preloader.hidden .preloader-content {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.preloader-content {
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.preloader h1 {
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
    transform: translateY(100%);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
    animation: expandLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes slideUpFade {
    to {
        transform: translateY(0);
    }
}

@keyframes expandLine {
    to {
        width: 200px;
    }
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-block;
    padding: 15px 35px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.15);
}

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

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.25);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 100;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Quand le menu mobile est ouvert, la navbar ne doit pas cacher les liens */
.navbar.scrolled .nav-links.mobile-open {
    background: rgba(10, 8, 5, 0.97) !important;
    z-index: 999 !important;
}

.navbar.scrolled .nav-links.mobile-open li a,
.navbar .nav-links.mobile-open li a {
    color: white !important;
}

.navbar.scrolled .nav-logo {
    color: var(--gold);
}

.navbar.scrolled .nav-links a {
    color: var(--white);
}

.navbar.scrolled .hamburger span {
    background-color: var(--white);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold) !important;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: white;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background-color: white;
    transition: var(--transition-fast);
}

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

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

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

.hero-slide.prev {
    opacity: 1;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide.active.trans-0 {
    animation: wipeInCenter 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-slide.active.trans-1 {
    animation: wipeInLeft 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-slide.active.trans-2 {
    animation: wipeInTop 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-slide.active.trans-3 {
    animation: wipeInCircle 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes wipeInCenter {
    0% {
        clip-path: inset(50% 50% 50% 50%);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes wipeInLeft {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes wipeInTop {
    0% {
        clip-path: inset(0 0 100% 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes wipeInCircle {
    0% {
        clip-path: circle(0% at 50% 50%);
    }

    100% {
        clip-path: circle(150% at 50% 50%);
    }
}

.slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    filter: blur(10px) brightness(1.2);
    transition: transform 10s linear, filter 1.5s ease-out;
}

.hero-slide.active .slide-img,
.hero-slide.prev .slide-img {
    transform: scale(1);
    filter: blur(0) brightness(1);
}


.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ── Disable parallax on mobile (not supported on iOS/Android) ── */
@media (hover: none), (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
    }

    /* Hero sous-pages (services, contact) : meilleure visibilité sur mobile */
    .hero .parallax-bg {
        background-position: center 30%;
    }

    /* Body background marble */
    body {
        background-attachment: scroll;
    }

    /* Footer background */
    footer {
        background-attachment: scroll;
    }
}

@keyframes subtleZoom {
    to {
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

@keyframes floatContent {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: white;
    animation: floatContent 6s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 300;
    animation: floatContent 6s ease-in-out infinite 1s;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: floatContent 6s ease-in-out infinite 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    z-index: 1;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 20px;
    height: 30px;
    border: 1px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--white);
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Background Giant Texts */
.bg-text-marquee {
    position: sticky;
    top: 50%;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
    margin-bottom: -15vw;
    /* Offset the sticky space */
}

.marquee-inner {
    display: inline-block;
    font-size: 15vw;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.bg-text-stroke {
    position: absolute;
    top: 10%;
    right: -5%;
    font-size: 12vw;
    font-family: var(--font-heading);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
    transform: rotate(90deg);
    transform-origin: right top;
}

/* Common Section Styles */
section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.services-preview {
    padding-top: 60px;
}

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

.section-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.separator {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 20px;
}

.separator-left {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 0 20px 0;
}

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

/* Services Alternate List (Zig-Zag) */
.services-alternate-list {
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 50px;
}

.service-alt-item {
    display: flex;
    align-items: center;
    gap: 80px;
}

.service-alt-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-alt-img {
    flex: 1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-alt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-alt-img:hover img {
    transform: scale(1.1);
}

.service-alt-img::after {
    display: none;
}

.service-alt-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 105, 180, 0.2);
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 700;
}

.service-alt-content h3 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.service-alt-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-prefix {
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-weight: 400;
}

.currency {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--gray);
    font-weight: 400;
}

.service-alt-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    width: fit-content;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.btn-text:hover::after {
    width: 100%;
}

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

.btn-text:hover {
    color: var(--white);
}

.btn-text:hover i {
    transform: translateX(8px);
}

/* Responsive for Services Alternate */
@media (max-width: 992px) {
    .services-alternate-list {
        gap: 100px;
    }

    .service-alt-item,
    .service-alt-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }

    .service-alt-img {
        width: 100%;
        height: 400px;
    }

    .service-alt-content {
        text-align: center;
        align-items: center;
    }

    .service-alt-content h3 {
        font-size: 2.2rem;
    }

    .service-alt-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .service-alt-img {
        height: 300px;
    }

    .service-num {
        font-size: 3rem;
    }

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

    .service-alt-price {
        font-size: 1.5rem;
    }
}

/* Pricing Section */
.pricing {
    background-color: var(--black);
}

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

.dark-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 100%);
}

.pricing-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pricing-text {
    flex: 1;
    color: #ffffff;
}

.pricing-text .section-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.pricing-text .section-desc {
    margin: 0 0 30px 0;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
}

.pricing-cards {
    flex: 1.5;
    display: flex;
    gap: 30px;
}

.price-card {
    flex: 1;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-slow);
    border-radius: 8px;
}

.price-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    background: rgba(25, 25, 25, 0.8);
}

.price-card.premium {
    border-color: rgba(255, 105, 180, 0.4);
    transform: scale(1.05);
    background: rgba(255, 105, 180, 0.05);
    backdrop-filter: blur(20px);
}

.price-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.1);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: var(--black);
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-header h4 {
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: #ffffff;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--gold);
    vertical-align: super;
}

.price-features {
    margin-bottom: 40px;
}

.price-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-features i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Maps Interface */
.map-interface {
    margin-bottom: 60px;
}

.map-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.map-tab {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 25px;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.map-tab i {
    margin-right: 8px;
    color: var(--gray);
    transition: var(--transition-fast);
}

.map-tab.active,
.map-tab:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.map-tab.active i,
.map-tab:hover i {
    color: var(--black);
}

.map-content-container {
    border-radius: 8px;
    padding: 20px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.map-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: row;
    height: 400px;
    gap: 30px;
}

.map-pane.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.map-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.map-info .loc-address {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.loc-yango {
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    margin-bottom: 30px;
    display: inline-block;
}

.map-info .loc-phone {
    font-size: 1.5rem;
    color: var(--white);
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.map-info .loc-phone:hover {
    color: var(--gold);
}

.map-info .loc-phone i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 10px;
}

.map-iframe {
    flex: 1.5;
    border-radius: 8px;
    overflow: hidden;
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
}

.hours-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
    border-radius: 8px;
}

.hours-inner h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--gold);
}

.hours-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.hour-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item .day {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    font-size: 0.9rem;
}

.hour-item .time {
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.hour-item.highlight .time {
    color: var(--gold);
}

/* Footer */
footer {
    background-color: var(--black-light);
    background-image: url('src/foot.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    position: relative;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--white);
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.85rem;
}

/* =======================================
   Reveal Animations — Directional System
   ======================================= */

/* Base hidden state */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Default: from bottom */
.reveal {
    transform: translateY(60px);
}

/* From left */
.reveal-left {
    transform: translateX(-80px);
}

/* From right */
.reveal-right {
    transform: translateX(80px);
}

/* From bottom (explicit) */
.reveal-up {
    transform: translateY(60px);
}

/* Visible state */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delay utilities */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

.delay-800 {
    transition-delay: 0.8s;
}

/* ================================================
   3D BACKGROUND SYSTEM
   ================================================ */

/* Canvas layer */
.bg-canvas-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Container for CSS 3D shapes */
.shapes-3d-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

/* Base geometric shape */
.geo-shape {
    position: absolute;
    transform-origin: center;
}

/* Diamond */
.geo-diamond {
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: geoDiamond linear infinite;
}

/* Ring */
.geo-ring {
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    animation: geoRing linear infinite;
}

/* Square (rotated wireframe) */
.geo-square {
    border: 1.5px solid var(--gold);
    background: transparent;
    animation: geoSquare ease-in-out infinite;
}

/* Triangle */
.geo-triangle {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--gold);
    animation: geoTriangle ease-in-out infinite;
}

/* ---- Keyframe animations ---- */
@keyframes geoDiamond {
    0% {
        transform: rotate(0deg) translateY(0px) scale(1);
    }

    25% {
        transform: rotate(90deg) translateY(-18px) scale(1.1);
    }

    50% {
        transform: rotate(180deg) translateY(-30px) scale(0.9);
    }

    75% {
        transform: rotate(270deg) translateY(-12px) scale(1.05);
    }

    100% {
        transform: rotate(360deg) translateY(0px) scale(1);
    }
}

@keyframes geoRing {
    0% {
        transform: rotate(0deg) scale(1) translateY(0);
    }

    33% {
        transform: rotate(120deg) scale(1.15) translateY(-20px);
    }

    66% {
        transform: rotate(240deg) scale(0.9) translateY(-10px);
    }

    100% {
        transform: rotate(360deg) scale(1) translateY(0);
    }
}

@keyframes geoSquare {
    0% {
        transform: rotate(0deg) translateY(0) scale(1);
    }

    25% {
        transform: rotate(45deg) translateY(-15px) scale(1.1);
    }

    50% {
        transform: rotate(90deg) translateY(-25px) scale(0.95);
    }

    75% {
        transform: rotate(135deg) translateY(-10px) scale(1.05);
    }

    100% {
        transform: rotate(180deg) translateY(0) scale(1);
    }
}

@keyframes geoTriangle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1);
    }
}

/* Ensure all white sections have proper stacking context */
.about-section,
.faq-section,
.services-page {
    isolation: isolate;
}

/* Content above the 3D layer */
.about-section>.container,
.faq-section>.container,
.services-page>.container {
    position: relative;
    z-index: 2;
}

/* ── CSS 3D Cube rotation ── */
@keyframes cssRotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    25% {
        transform: rotateX(90deg) rotateY(90deg) rotateZ(45deg);
    }

    50% {
        transform: rotateX(180deg) rotateY(180deg) rotateZ(90deg);
    }

    75% {
        transform: rotateX(270deg) rotateY(270deg) rotateZ(135deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg);
    }
}

/* ── Floating pulse for shapes ── */
@keyframes geoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ── Disable canvas 3D on small screens for performance ── */
@media (max-width: 768px) {
    .bg-canvas-3d {
        display: none;
    }

    .shapes-3d-layer {
        opacity: 0.5;
    }
}

/* ── Respect reduced-motion preferences ── */
@media (prefers-reduced-motion: reduce) {

    .geo-shape,
    .shapes-3d-layer>div {
        animation: none !important;
    }

    .bg-canvas-3d {
        display: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }

    .pricing-wrapper {
        flex-direction: column;
    }

    .pricing-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .pricing-text .separator-left {
        margin: 0 auto 20px;
    }

    .map-pane {
        flex-direction: column;
        height: auto;
    }

    .map-iframe {
        height: 300px;
    }

    .bg-text-stroke {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    /* Menu mobile ouvert */
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 8, 5, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 99;
        justify-content: center;
        animation: slideInMenu 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

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

    .nav-links.mobile-open li a {
        font-size: 1.6rem;
        font-weight: 600;
        padding: 22px 40px;
        color: white;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-links.mobile-open li a::after {
        display: none;
    }

    /* Bouton Réserver visible dans le menu mobile */
    .nav-btn.mobile-open {
        display: inline-flex;
        margin-top: 24px;
        z-index: 100;
    }

    /* Animation hamburger → croix */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        z-index: 101;
        position: relative;
    }

    .hamburger span {
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .pricing-cards {
        flex-direction: column;
        width: 100%;
    }

    .price-card.premium {
        transform: none;
    }

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

    .map-tabs {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* About Section */
.about-section {
    padding: 150px 0 60px;
    background-color: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 600px;
}

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

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 150px 0;
    background-color: var(--black-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white-pure);
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img {
        height: 400px;
    }
}
/* WhatsApp Float */
/* Float buttons hidden until scroll (index only) */
.float-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(20px) !important;
}
.float-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: #FFF;
}

.contact-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 110px;
    right: 45px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50px;
    text-align: center;
    font-size: 22px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.contact-float:hover {
    transform: scale(1.1);
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.services-float {
    position: fixed;
    width: auto;
    padding: 0 20px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.services-float:hover {
    transform: scale(1.1);
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
