:root {
    --primary: #d4af37; /* Elegant gold accent */
    --bg-light: #f8f9fa;
    --bg-dark: #121212;
    --text-light: #ffffff;
    --text-dark: #212529;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Fallback for smooth scroll if Lenis is disabled */
html {
    scroll-behavior: smooth;
}

/* =========================================
   Fixed Logo & Blend Mode Magic
   ========================================= */
.fixed-logo {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 140px;
    z-index: 9999;
    /* Smooth transition for the color change */
    transition: filter 0.5s ease, transform 0.3s ease;
    
    /* Default state: assumes logo is white and on a dark background */
    filter: none;
    transform-origin: top left;
}

.fixed-logo:hover {
    transform: scale(1.05);
}

/* Invert state: applied via JS when scrolling over light sections.
   Turns the white logo into a black logo. */
.fixed-logo.invert {
    filter: invert(1);
}

/* =========================================
   Header Navigation
   ========================================= */
.header-nav {
    position: fixed;
    top: 2.5rem;
    right: 3rem;
    z-index: 9999;
    transition: filter 0.5s ease;
}

.header-nav.invert {
    filter: invert(1);
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.header-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-nav ul li a:hover::after {
    width: 100%;
}


/* =========================================
   Main Seamless Scroll Section
   ========================================= */
section.main-scroll-section {
    position: relative;
    width: 100vw;
    height: 1200vh; /* 400vh for video 1, 400vh for video 2, 400vh for video 3 */
    padding: 0;
    background: var(--bg-dark);
}

.sticky-container {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content.hidden {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
    filter: blur(10px);
    pointer-events: none;
}

.hero-content-2 {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) translateX(40px);
    text-align: right;
    z-index: 3;
    max-width: 450px;
    padding: 0;
    opacity: 0;
    filter: blur(10px);
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content-2.visible {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    filter: blur(0);
    pointer-events: auto;
}

.hero-content-2 h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-content-2 p {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    font-weight: 300;
    color: #dcdcdc;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}



.hero-content p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--primary);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.1s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   Global Sections
   ========================================= */
.section {
    padding: 10rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60%;
    height: 5px;
    background-color: var(--primary);
    border-radius: 5px;
}


/* =========================================
   Text Reveal Section
   ========================================= */
.text-reveal-section {
    padding: 12rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.reveal-text {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--text-dark);
}

.reveal-text span {
    will-change: opacity, transform;
}


/* =========================================
   Light / Dark Themes
   ========================================= */
.section.light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section.dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.content-wrapper p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}


/* =========================================
   Services Grid
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a0a0a0;
}


/* =========================================
   Image / Parallax Section
   ========================================= */
.image-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%; /* Taller for parallax room */
    background-size: cover;
    background-position: center;
    z-index: 1;
    will-change: transform;
}

.image-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem 5rem;
    border-radius: 16px;
    
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.image-overlay h2 {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.image-overlay h2::after {
    display: none; /* Hide underline here */
}


/* =========================================
   Footer
   ========================================= */
.footer-section {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-section p {
    color: #666;
    font-size: 0.9rem;
}

/* =========================================
   Construction Page Specific Styles
   ========================================= */

/* Hero Construction */
.construction-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.construction-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}
.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 900px;
    margin-left: 0;
}
.hero-content-center h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
}
.hero-content-center p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #f0f0f0;
    margin-bottom: 3rem;
    max-width: 700px;
}
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cta-button.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta-button.secondary:hover {
    background: #fff;
    color: #000;
}

/* Split Section (Qui sommes-nous) */
.split-section {
    padding: 8rem 2rem;
}
.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}
.split-text h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 2rem;
    color: var(--text-dark);
}
.split-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}
.split-image img {
    width: 100%;
    
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Features Grid */
.features-section {
    padding: 8rem 2rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: rgba(255,255,255,0.05);
    padding: 3rem 2rem;
    
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}
.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.feature-card p {
    color: #ddd;
    line-height: 1.6;
}

/* Services Showcase */
.services-showcase {
    padding: 8rem 2rem;
    background: #f8f9fa;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}
.service-item {
    background: #fff;
    
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-image {
    height: 250px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-item:hover .service-image img {
    transform: scale(1.05);
}
.service-text {
    padding: 2.5rem;
}
.service-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.service-text p {
    color: #666;
    line-height: 1.6;
}

/* Projet Vedette */
.project-vedette {
    position: relative;
    padding: 10rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.project-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    background-attachment: fixed;
}
.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.project-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 0;
}
.project-details {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    
}
.project-details p {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
    }
    .hero-content-center h1 {
        font-size: 2.5rem;
    }
}


/* =========================================
   Vente Page Specific Styles
   ========================================= */

/* Hero */
.vente-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 50px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.vente-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.vente-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}
.vente-hero-content h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.vente-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #e0e0e0;
}
.vente-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Features (L'art de valoriser) */
.vente-why-section {
    padding: 8rem 2rem;
}
.vente-why-header {
    margin-bottom: 5rem;
}
.vente-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.vente-feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}
.vente-feature-card:hover {
    transform: translateY(-10px);
}
.vente-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.vente-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.vente-feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Processus de Vente (Infographie HTML) */
.vente-process-section {
    padding: 8rem 2rem;
    background: #111;
}
.vente-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}
.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    border: 4px solid #111;
}
.step-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.step-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}
.process-connector {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .vente-process-steps {
        flex-direction: column;
        align-items: center;
    }
    .process-connector {
        width: 2px;
        height: 50px;
        margin: 10px 0;
    }
}

/* L'aspect technique (Image full width with overlay) */
.vente-tech-section {
    position: relative;
    width: 100%;
    height: 600px;
}
.tech-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tech-overlay-text {
    position: absolute;
    bottom: 4rem;
    left: 10%;
    background: rgba(0,0,0,0.8);
    
    padding: 3rem;
    
    color: #fff;
    max-width: 500px;
}
.tech-overlay-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.tech-overlay-text p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Expertise / Ce que nous vendons */
.vente-expertise-section {
    padding: 8rem 2rem;
}
.vente-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 4rem auto 0 auto;
}
.expertise-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.expertise-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}
.expertise-item p {
    color: #666;
    font-size: 0.95rem;
}

/* =========================================
   Gestion Page Specific Styles
   ========================================= */

/* Hero */
.gestion-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 50px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.gestion-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}
.gestion-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}
.gestion-hero-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.gestion-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #f0f0f0;
}

/* Compare Section */
.gestion-compare-section {
    padding: 8rem 2rem;
}
.gestion-compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.compare-card {
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-top: 4px solid #eee;
    transition: transform 0.3s ease;
}
.compare-card.highlight {
    background: #1a1a1a;
    border-top: 4px solid var(--primary);
    color: #fff;
}
.compare-card:hover {
    transform: translateY(-10px);
}
.compare-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}
.compare-goal {
    font-size: 1.1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #555;
}
.compare-card.highlight .compare-goal {
    border-top-color: rgba(255,255,255,0.1);
}

/* List / Features */
.gestion-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}
.gestion-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.gestion-list li i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(255,255,255,0.8);
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.gestion-list li strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #222;
}
.gestion-list li p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Strategy Grid */
.gestion-strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.strategy-card {
    text-align: center;
    padding: 0 0 2rem 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: background 0.3s ease;
}
.strategy-card:hover {
    background: rgba(255,255,255,0.08);
}
.strategy-card h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.strategy-card p {
    color: #aaa;
    line-height: 1.6;
}
/* =========================================
   RENDEZ-VOUS PAGE STYLES (PREMIUM)
   ========================================= */

.xel-body {
    background-color: #050505;
    color: #f5f5f7;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.xel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(5, 5, 5, 0.8);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.xel-logo img {
    height: 40px;
    filter: invert(1);
    transition: transform 0.3s ease;
}

.xel-logo:hover img {
    transform: scale(1.05);
}

.xel-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.xel-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.xel-nav a:hover {
    color: #ff3b30;
}

.xel-nav-contact {
    padding: 0.6rem 1.5rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.xel-nav-contact:hover {
    background: #ff3b30;
    border-color: #ff3b30;
}

.xel-layout {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.xel-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.15) 0%, rgba(5, 5, 5, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.xel-container {
    width: 100%;
    max-width: 850px;
    position: relative;
    z-index: 2;
}

.xel-eyebrow {
    display: inline-block;
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.3);
    background: rgba(255, 59, 48, 0.05);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.xel-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1.2;
}

.xel-form-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3.5rem;
    
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.xel-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .xel-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.xel-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.xel-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #b0b0b0;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.req {
    color: #ff3b30;
}

.xel-group input,
.xel-group select,
.xel-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.xel-group input:focus,
.xel-group select:focus,
.xel-group textarea:focus {
    outline: none;
    border-color: #ff3b30;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.xel-group input::placeholder,
.xel-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.xel-group select option {
    background: #1a1a1a;
    color: #fff;
}

/* Fix for date picker icon on dark mode */
.xel-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.xel-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.xel-submit-wrapper {
    margin-top: 3rem;
    text-align: right;
}

.xel-submit {
    background: #fff;
    color: #000;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.xel-submit:hover {
    background: #ff3b30;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 59, 48, 0.2);
}
/* =========================================
   Luxury Rendez-Vous Page
   ========================================= */
.luxury-split-layout {
    display: flex;
    min-height: 100vh;
    background: #0a0a0a;
    color: #fff;
}
.luxury-image-side {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}
.luxury-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.luxury-back-link {
    position: absolute;
    top: 3rem;
    left: 4rem;
    z-index: 10;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.luxury-back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}
.luxury-image-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.luxury-eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}
.luxury-image-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.luxury-separator {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 2rem;
}
.luxury-image-content p {
    font-size: 1.2rem;
    color: #bbb;
    line-height: 1.8;
    font-weight: 300;
}

/* Form Side */
.luxury-form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: #0a0a0a;
}
.luxury-form-container {
    width: 100%;
    max-width: 500px;
}
.luxury-form-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}
.luxury-form-header p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.luxury-form-row {
    display: flex;
    gap: 2rem;
}
.luxury-input-group {
    position: relative;
    margin-bottom: 2.5rem;
    flex: 1;
}
.luxury-input-group input,
.luxury-input-group textarea,
.luxury-input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 0.5rem 0;
    color: #fff;
    font-size: 1.1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.luxury-input-group input:focus,
.luxury-input-group textarea:focus,
.luxury-input-group select:focus {
    outline: none;
    border-bottom-color: var(--primary);
}
.luxury-input-group label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: #666;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating label effect */
.luxury-input-group input:focus ~ label,
.luxury-input-group input:valid ~ label,
.luxury-input-group textarea:focus ~ label,
.luxury-input-group textarea:valid ~ label,
.luxury-input-group select:focus ~ label,
.luxury-input-group select:valid ~ label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Select appearance */
.luxury-input-group select {
    appearance: none;
    cursor: pointer;
}
.luxury-input-group select option {
    background: #111;
    color: #fff;
}

.luxury-submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    padding: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1rem;
}
.luxury-submit-btn svg {
    transition: transform 0.4s ease;
}
.luxury-submit-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.luxury-submit-btn:hover svg {
    transform: translateX(10px);
}

@media (max-width: 992px) {
    .luxury-split-layout {
        flex-direction: column;
    }
    .luxury-image-side {
        padding: 3rem 2rem;
        min-height: 50vh;
    }
    .luxury-form-side {
        padding: 3rem 2rem;
    }
    .luxury-back-link {
        top: 2rem; left: 2rem;
    }
    .luxury-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* =========================================
   PREMIUM BUTTON STYLES (VENTE & LOCATION)
   ========================================= */

.vente-hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.loc-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.loc-btn.primary {
    background: linear-gradient(135deg, #ff3b30 0%, #d62828 100%);
    color: #fff;
    border: none;
}

.loc-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 59, 48, 0.4);
    background: linear-gradient(135deg, #ff4b40 0%, #e63838 100%);
}

.loc-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    
}

.loc-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

/* =========================================
   GLOBAL MOBILE RESPONSIVENESS & HAMBURGER
   ========================================= */

/* Hamburger Button */
.hamburger {
    display: none;
    position: fixed;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 10000;
    width: 35px;
    height: 35px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    padding: 5px;
    background: rgba(0, 0, 0, 0.4);
    
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: left;
}

/* Hamburger animation to X */
.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 992px) {
    .hamburger {
        display: flex; /* Show on mobile/tablet */
    }

    /* Fixed Logo Adjustment */
    .fixed-logo {
        top: 1.5rem;
        left: 1.5rem;
        width: 100px;
        z-index: 10000;
    }
    .xel-logo {
        z-index: 10000;
        position: relative;
    }

    /* Fullscreen Mobile Menu Overlay */
    .header-nav, .xel-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 0;
        margin: 0;
    }
    
    .header-nav.mobile-menu-active, .xel-nav.mobile-menu-active {
        transform: translateY(0);
    }
    
    .header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .header-nav ul li a, .xel-nav a {
        font-size: 1.5rem;
        letter-spacing: 2px;
        color: #fff;
    }
    
    /* XEL Header Reset */
    .xel-header {
        position: fixed;
        top: 0; left: 0; width: 100%;
        padding: 1.5rem;
        z-index: 9998;
    }

    /* Text Resizing to prevent hiding screen */
    h1 { font-size: clamp(2rem, 6vw, 2.5rem); line-height: 1.2; }
    h2 { font-size: clamp(1.8rem, 5vw, 2.2rem); line-height: 1.3; }
    .reveal-text { font-size: clamp(1.5rem, 5vw, 2rem) !important; line-height: 1.4; }
    
    .vente-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .loc-btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}
/* =========================================
   SCROLL INDICATOR
   ========================================= */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-indicator.hidden-scroll {
    opacity: 0 !important;
    pointer-events: none;
    transform: translate(-50%, 20px);
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-arrow {
    animation: premiumBounce 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes premiumBounce {
    0% { transform: translateY(-5px); opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* =========================================
   CINEMA HERO TEXT (Minimalist)
   ========================================= */
.cinema-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.cinema-hero-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem) !important; /* Smaller, elegant */
    font-weight: 300 !important; /* Thin */
    letter-spacing: 8px !important; /* Wide spacing */
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1.5 !important;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.9);
}
.cinema-hero-text p {
    font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
    font-weight: 300 !important;
    letter-spacing: 2px;
    line-height: 2 !important;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 3rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cinema-hero-text .hero-buttons {
    justify-content: center; /* Center the buttons */
    gap: 2rem;
}

/* =========================================
   BOTTOM LEFT HERO TEXT
   ========================================= */
.bottom-left-hero {
    position: absolute;
    bottom: 8%; /* near the bottom */
    left: 5%; /* near the left edge */
    z-index: 2;
    text-align: left;
    max-width: 35vw; /* around 1/3 or 1/4 of the screen depending on resolution */
    min-width: 320px;
    padding: 0 0 2rem 2rem;
    /* removed background */ /* slight glass effect to ensure readability */
    
    
    
}
    /* Restore full brightness to images on mobile by hiding the dark overlay */
    .hero-overlay, .loc-hero-overlay, .vente-hero-overlay, .gestion-hero-overlay {
        display: none !important;
    }

.bottom-left-hero h1 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}
.bottom-left-hero p {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 2rem;
}
.bottom-left-hero .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: flex-start;
}
.bottom-left-hero .cta-button {
    padding: 1rem 2rem;
    text-align: center;
    width: 100%;
}
@media (max-width: 992px) {
    .bottom-left-hero {
        max-width: 90%;
        bottom: 5%;
    }
    /* Restore full brightness to images on mobile by hiding the dark overlay */
    .hero-overlay, .loc-hero-overlay, .vente-hero-overlay, .gestion-hero-overlay {
        display: none !important;
    }

}


/* =========================================
   MOBILE HERO UN-ZOOM (Cinematic)
   ========================================= */
@media (max-width: 992px) {
    .hero-video {
        object-fit: fill !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        background-color: #000;
    }
    .video-container {
        background-color: #000;
    }
    .hero-bg, .loc-hero, .vente-hero, .gestion-hero, .project-bg {
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: top center !important;
        background-color: #000 !important;
    }
    .construction-hero, .vente-hero, .loc-hero, .gestion-hero {
        background-color: #000 !important;
    }
    .bottom-left-hero {
        bottom: 5% !important;
        left: 5% !important;
        max-width: 90% !important;
        /* Add a small dark gradient behind text just in case */
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    }
    /* Restore full brightness to images on mobile by hiding the dark overlay */
    .hero-overlay, .loc-hero-overlay, .vente-hero-overlay, .gestion-hero-overlay {
        display: none !important;
    }

    .hero-content {
        /* for index.html */
        bottom: 10% !important;
        top: auto !important;
        transform: translateY(0) !important;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Portfolio Gallery */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.image-slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

.slider-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
    color: #222;
    font-size: 1.4rem;
}

.portfolio-info .location {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.portfolio-info .desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 10vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

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

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 30px;
    transition: background 0.3s ease;
    border-radius: 5px;
}

.lightbox-btn:hover {
    background: var(--primary);
}

.lightbox-btn.prev {
    left: 5%;
}

.lightbox-btn.next {
    right: 5%;
}

@media (max-width: 768px) {
    .lightbox-btn.prev { left: 10px; padding: 10px 15px; }
    .lightbox-btn.next { right: 10px; padding: 10px 15px; }
    .lightbox-close { top: 10px; right: 20px; }
}

/* Trusted By / Logos Section */
.trusted-section {
    padding: 3rem 0;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    overflow: hidden;
}

.trusted-title {
    text-align: center;
    font-size: 1rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.logos-marquee {
    display: flex;
    gap: 4rem;
    align-items: center;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.logos-marquee:hover {
    animation-play-state: paused;
}

.logos-marquee-wrapper {
    overflow: hidden;
    display: flex;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: var(--primary);
}

.logo-item svg {
    width: 30px;
    fill: currentColor;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Needs duplicate content for seamless */
}

.logo-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    padding: 0 1rem;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Custom Cursor */
@media (min-width: 769px) {
    *, *::before, *::after {
        cursor: none !important;
    }
}
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    display: none;
}
.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}
.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    display: none;
}
@media (min-width: 769px) {
    .custom-cursor, .custom-cursor-dot {
        display: block;
    }
}
