:root {
    --black-deep: #0a0a0a;
    --white-pure: #ffffff;
    --white-off: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; list-style: none; text-decoration: none; }

body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--black-deep); color: var(--white-pure); line-height: 1.6; }

html {
    scroll-behavior: smooth; 
}


section[id] {
    scroll-margin-top: 100px; 
}
/* --- NAVBARR --- */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(25px);
    padding: 0.5rem 0; display: flex; justify-content: space-between; align-items: center;
    z-index: 2000; border-bottom: 1px solid var(--border);
}

.nav-left { margin-left: 120px; }
.navbar-logo { height: 80px; filter: grayscale(100%) brightness(0) invert(1); }


.logo-link {
    display: inline-block; 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.logo-link:hover {
    
    transform: scale(1.05); 
    
    
    filter: brightness(1.2); 
}

.navbar-logo {
    
    transition: opacity 0.3s ease;
}

.logo-link:active {
    
    transform: scale(0.98);
}


.nav-right { 
    display: flex; align-items: center; 
    gap: 3rem; 
    margin-right: 250px; 
}

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

.nav-links a {
    color: var(--white-pure); font-size: 0.95rem; font-weight: 300;
    position: relative; padding: 8px 0; opacity: 0.7; transition: 0.3s;
}
.nav-links a:hover { opacity: 1; }


.nav-links > li > a:not(.cta-button)::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--white-pure); transition: width 0.4s;
}
.nav-links > li > a:hover::after { width: 100%; }


.dropdown { 
    position: relative; 
}

.dropdown-content {
    display: block; 
    position: absolute; 
    top: 100%; 
    left: 0;
    background: rgba(15, 15, 15, 0.98); 
    min-width: 260px; 
    padding: 1.2rem 0;
    border: 1px solid var(--border); 
    opacity: 0; 
    visibility: hidden;
    transform: translateY(10px); 
    transition: var(--transition); 
    pointer-events: none;
    z-index: 2001;
}


.dropdown:hover .dropdown-content { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(0); 
    pointer-events: auto; 
}


.dropdown-content li {
    width: 100%;
}

.dropdown-content a { 
    padding: 0.8rem 2rem; 
    width: 100%; 
    display: block; 
    font-size: 0.85rem; 
    color: var(--white-off) !important;
    position: relative;
    transition: color 0.3s ease;
}


.dropdown-content a::after {
    content: ''; 
    position: absolute; 
    bottom: 8px; 
    left: 2rem; 
    width: 0; 
    height: 1px; 
    background: var(--white-pure); 
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown-content a:hover { 
    color: var(--white-pure) !important; 
    opacity: 1; 
}


.dropdown-content a:hover::after { 
    width: calc(100% - 4rem); 
}


.chevron {
    display: inline-block; 
    width: 6px; 
    height: 6px; 
    border-right: 1px solid var(--white-pure); 
    border-bottom: 1px solid var(--white-pure);
    transform: rotate(-45deg); 
    margin-left: 8px; 
    transition: transform 0.4s ease; 
    vertical-align: middle; 
    margin-top: -3px;
}


.dropdown:hover .chevron { 
    transform: rotate(45deg); 
}


.cta-button {
    background: var(--white-pure); color: var(--black-deep) !important;
    padding: 0.6rem 1.4rem; font-size: 0.85rem; font-weight: 600; 
    border-radius: 8px; border: 1px solid var(--white-pure); transition: 0.3s;
    display: inline-block; opacity: 1 !important;
}
.cta-button:hover { background: transparent; color: var(--white-pure) !important; }

.desktop-only { display: inline-block; }
.mobile-only-btn { display: none; }


.burger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 3000; }



.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}


.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.burger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--white-pure);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}

@media (max-width: 1024px) {
    .nav-right { margin-right: 60px; } 
}

@media (max-width: 916px) {
    .nav-left { margin-left: 20px; }
    .nav-right { margin-right: 20px; gap: 1rem; }
    .navbar-logo { height: 50px; }
    .burger { display: flex; }
    .desktop-only { display: none !important; }
    
    .mobile-only-btn { display: block; margin-top: 1rem; }
    .mobile-only-btn .cta-button { padding: 0.5rem 1.2rem; font-size: 0.85rem; } 

    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: var(--black-deep); flex-direction: column; justify-content: center; align-items: center;
        gap: 1.5rem; transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    
    
    .dropdown-content {
        position: static; opacity: 1; visibility: visible; transform: none; 
        display: none; background: transparent; border: none; text-align: center; padding: 0;
    }
    .dropdown.active-mobile .dropdown-content { display: block; }
    .dropdown.active-mobile .chevron { transform: rotate(45deg); }
    .dropdown-content a { padding: 0.5rem 0; opacity: 0.6; }
    .nav-links > li > a::after {
        display: none !important;
    }

    .dropdown-content a::after {
        display: none !important;
    }
    .nav-links a:hover, .dropdown-content a:hover {
        opacity: 0.7; 
    }
}



/* --- FOOTER SECTION --- */
.footer {
    background-color: #050505;
    padding: 45px 0 0 0;
    border-top: 1px solid var(--border);
    margin-top: 0px;
}

.map-boxx {
    margin-bottom: 20px;
    width: 350px; 
}

.footer-map {
    width: 100%;
    height: auto;
    display: block;
}


.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 3%;
}


.footer-logo {
    height: 70px;
    width: auto;
    filter: grayscale(100%) brightness(0) invert(1);
    margin-bottom: 25px;
}

.footer-intro {
    color: var(--white-off);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-cta {
    display: inline-block;
    margin-bottom: 10px;
}


.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 45px; 
}

.social-link {
    width: 55px; 
    height: 55px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-off);
    font-size: 1.5rem; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-link:hover {
    color: var(--white-pure);
    border-color: var(--white-pure);
    transform: scale(1.15); 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}


.footer-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    color: var(--white-pure);
    font-weight: 600;
}

.footer-info li, .footer-hours li {
    color: var(--white-off);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-info span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--white-pure);
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-info a {
    color: var(--white-off);
    transition: color 0.3s;
    text-decoration: none;
}

.footer-info a:hover {
    color: var(--white-pure);
}

.hour-highlight {
    color: var(--white-pure);
}

.closed {
    opacity: 0.5;
    font-size: 0.8rem !important;
}


.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.3); 
    text-decoration: none;           
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white-pure);        
}


@media (max-width: 992px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
    
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .footer-intro { margin: 0 auto 30px; }
    .footer-socials { justify-content: center; }
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }
    .map-boxx {

    padding-left: 60px;
}
}




.contact-page {
    padding-top: 100px; 
}

.contact-main {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.expertise-text {
    font-size: 1.1rem;
    color: var(--white-off);
    line-height: 1.8;
    margin-bottom: 35px;
}

.info-group h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: var(--white-pure);
}

.map-google {
    margin: 40px 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: 0.5s;
}

.static-map { width: 100%; display: block; }

.rgpd-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    font-style: italic;
}


.form-wrapper {
    background: #0d0d0d;
    padding: 60px;
    border: 1px solid var(--border);
    border-radius: 2px;
}

.field { margin-bottom: 25px; }
.field label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--white-off);
}

.field input, .field select, .field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.field input:focus, .field textarea:focus {
    border-bottom-color: var(--white-pure);
}

.submit-btn {
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
}


@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .page-title { font-size: 2.5rem; }
}

/* --- SECTION CONFIANCE SIMPLE & CHIC --- */
.trust-section {
    padding: 100px 0;
    
    background: radial-gradient(circle at center, #111111 0%, #050505 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.trust-main-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px; 
}


.trust-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6); 
    text-transform: uppercase;
    letter-spacing: 2px; 
    font-weight: 300;
    margin-bottom: 20px;
}

.trust-line {
    width: 50px;
    height: 3px;
    background: #fff;
    margin: 0 auto;
}


.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

.trust-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.trust-card.highlight {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 2rem;
    color: var(--white-pure);
    margin-bottom: 25px;
    opacity: 0.9;
}

.trust-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--white-pure);
}


.trust-list {
    list-style: none;
}

.trust-list li {
    color: var(--white-off);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-list li::before {
    content: "-";
    color: var(--white-pure);
    opacity: 0.5;
}

.check-list li::before {
    content: "✓";
    opacity: 1;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.3rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.6rem; text-transform: uppercase; opacity: 0.5; letter-spacing: 1px; }


.zone-content { display: flex; flex-direction: column; gap: 20px; }
.zone-item strong { display: block; font-size: 1.1rem; color: #fff; }
.zone-item span { font-size: 0.85rem; color: var(--white-off); }
.pro-highlight { padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.05); }


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



.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0a0a0a; 
    
    background-image: url('images/hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    padding-top: 88px;
    padding-bottom: 40px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 5%;
    margin-top: 42px;
}


.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 30px;
}

.hero-title .word {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white-pure);

  opacity: 0;
  transform: translateY(12px);
  animation: fadeUpSoft 1.2s ease-out forwards;
}

.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) { animation-delay: 0.4s; }
.hero-title .word:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUpSoft {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tagline — medium, élégante, lisible */
.hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  text-align: center;
}

/* Description — plus petite et subtile */
.hero-description {
  font-size: clamp(0.95rem, 1.9vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 35px;
  line-height: 1.6;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Emphase sur certains mots */
.hero-description strong {
  color: #ffffff;
  font-weight: 500;
}

.hero-actionsp1 {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 40px;
}

.hero-btn {
  padding: 0.9rem 2rem; 
  font-size: clamp(0.8rem, 2vw, 0.95rem); 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px; 
  border-radius: 4px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block; 
  white-space: nowrap; 
}

.hero-btn.primary {
    background: var(--white-pure);
    color: var(--black-deep);
}

.hero-btn.secondary {
    background: transparent;
    color: var(--white-pure);
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white-pure);
}


.scroll-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.72;
    pointer-events: none;
}

/* Visible on desktop, hidden only when viewport is constrained. */
@media (min-width: 1025px) {
    .scroll-indicator { display: flex; }
}

@media (max-height: 640px) {
    .scroll-indicator { display: none; }
}

@media (max-height: 820px) and (min-width: 1025px) {
    .hero-content {
        margin-top: 58px;
    }

    .hero-title .word {
        font-size: clamp(1.8rem, 5vw, 3.2rem);
    }

    .hero-actionsp1 {
        padding-top: 26px;
    }

    .hero-badges {
        margin-top: 24px;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white-pure);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--white-pure);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--white-pure);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}


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

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

@media (max-width: 768px) {
    .hero-actionsp1 { flex-direction: column; width: 100%; align-items: center;margin-top: 80px; }
    .hero-btn { width: 70%; text-align: center; }
    .hero-content {
        margin-top: 35px;
    }

    .scroll-indicator {
        display: flex;
        bottom: 28px;
        opacity: 0.68;
    }

}

/* --- SECTION PRÉSENTATION --- */
.about-section {
    padding: 100px 0;
    background-color: #050505;
    color: var(--white-pure);
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

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


.about-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white-off);
    margin-bottom: 20px;
    opacity: 0.6;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 35px;
    font-weight: 800;
}

.about-title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--white-off);
    margin-bottom: 20px;
    opacity: 0.8;
}


.about-stats-mini {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mini-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.mini-stat span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}


.about-btn {
    display: inline-block;
    padding: 18px 35px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.about-btn:hover {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}


.about-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 70%; height: 70%;
    border-top: 2px solid rgba(255,255,255,0.1);
    border-right: 2px solid rgba(255,255,255,0.1);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fff;
    color: #000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}


@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-visual {
        order: -1;
    }
    .image-wrapper img {
        height: 400px;
    }
}

/* ==========================================================================
   SECTION PRESTATIONS - LUXURY EDITION
   ========================================================================== */

.services-section {
    padding: 60px 0; 
    background: radial-gradient(circle at center, #111 0%, #050505 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.services-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 5%;
}


.section-header {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.ghost-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: clamp(2.5rem, 10vw, 8rem); 
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: 4px; 
}

.main-title {
    position: relative;
    z-index: 2;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white-pure);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

.title-separator {
    width: 50px;
    height: 2px;
    background: var(--white-pure);
    margin: 15px auto 0;
    opacity: 0.6;
}


.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.services-slider {
    flex: 1;
    overflow: hidden;
}

.services-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; 
    padding: 10px 0 40px;
}

.services-track::-webkit-scrollbar {
    display: none; 
}

/* --- CARTES DE PRESTATIONS --- */
.service-card {
    flex: 0 0 380px; 
    height: 550px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    scroll-snap-align: center;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transition: transform 1.2s ease, opacity 0.6s ease;
    z-index: 1;
}

.service-card:hover .card-bg {
    opacity: 1;
    transform: scale(1.1);
}


.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, #000 5%, transparent 60%);
    z-index: 2;
}

.card-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
}

.card-content h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-card {
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-card:hover {
    border-bottom-color: #fff;
    letter-spacing: 3px;
}


.nav-btn {
    width: 55px; height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: #fff;
    color: #000;
}


.swipe-hint {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.2);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .service-card { flex: 0 0 320px; height: 500px; }
}

@media (max-width: 768px) {
    .services-section { padding: 40px 0; }
    
    
    .ghost-text {
        font-size: 3rem; 
        letter-spacing: 2px;
        opacity: 0.4;
    }
    
    .section-header { margin-bottom: 30px; }
    
    
    .nav-btn { display: none; }
    .swipe-hint { display: flex; }
    
    .service-card { flex: 0 0 85vw; }
    .slider-wrapper { gap: 0; }
    .services-track { padding-left: 5vw; }
}



/* --- SECTION LOGOS XL (LOGOS COLLÉS) --- */
.logos-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.logos-container {
    max-width: 1300px; 
    margin: 0 auto;
}

.logos-main-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white-pure);
    margin-bottom: 50px;
}

.logos-main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--white-pure);
    margin: 15px auto 0;
}


.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    
    width: calc(290px * 18); 
    animation: scrollLogosSlow 40s linear infinite;
}

.logo-slide {
    width: 290px; 
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px; 
}

.logo-slide img {
    max-width: 400px; 
    max-height: 200px;
    object-fit: contain;
    filter: grayscale(1) invert(1) brightness(2.2);
    opacity: 0.7;
    pointer-events: none;
}


@keyframes scrollLogosSlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-290px * 9)); } 
}


@media (max-width: 768px) {
    .logos-section { padding: 50px 0; }
    
    .logo-slide { width: 190px; }
    .logo-slide img { max-width: 130px; }

    @keyframes scrollLogosSlow {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-190px * 9)); }
    }
}



.reviews-section {
    padding: 100px 0;
    background-color: #050505;
}

.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}


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

.reviews-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white-pure);
    margin-bottom: 15px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white-off);
    font-size: 0.9rem;
    opacity: 0.8;
}

.google-rating i {
    color: #4285F4; 
    font-size: 1.2rem;
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.client-name {
    display: block;
    font-weight: 700;
    color: var(--white-pure);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.review-date {
    display: block;
    font-size: 0.75rem;
    color: var(--white-off);
    opacity: 0.5;
}

.stars {
    color: #FFD700; 
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--white-off);
    font-style: italic;
    opacity: 0.9;
}

.google-icon {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 1.2rem;
    opacity: 0.2;
    color: var(--white-pure);
}


@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .reviews-grid { 
        grid-template-columns: 1fr; 
    }
    
    .review-card { 
        padding: 25px; 
    }

    
    
    .review-card:nth-child(n+4) {
        display: none;
    }
}



/* --- PAGE CONTACT --- */
.contact-page { padding-top: 100px; }

.contact-main {
    max-width: 1300px;
    margin: 60px auto 100px;
    padding: 0 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.page-title { font-size: 3rem; font-weight: 800; margin-bottom: 30px; }

.expertise-text {
    font-size: 1.05rem;
    color: var(--white-off);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hours-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: var(--white-pure);
}

.hours-detail { color: var(--white-off); margin-bottom: 30px; }


.map-box {
    margin: 30px 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.static-map {
    width: 100%;
    display: block;
    
}

.rgpd-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1.5;
}


.form-wrapper {
    background: #0d0d0d;
    padding: 50px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field { margin-bottom: 25px; }

.field label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--white-off);
}

.field input, .field textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 12px 15px;
    color: white;
    font-family: inherit;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.field input:focus, .field textarea:focus {
    border-color: var(--white-pure);
    background: rgba(255,255,255,0.06);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    cursor: pointer;
}

.contact-grid a {
    color: grey;
    transition: color 0.3s;
    text-decoration: none;
}

.contact-grid a:hover {
    color: var(--white-pure);
}

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




/* --- PAGE MENTIONS LÉGALES --- */
.legal-page { padding-top: 100px; }

.legal-main {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 5%;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 80px;
    align-items: start;
}


.legal-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 1.2rem;
    color: var(--white-pure);
    margin-bottom: 15px;
}

.legal-sub {
    color: var(--white-off);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.help-box {
    background: #0d0d0d;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.help-box h3 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.help-box p {
    font-size: 0.9rem;
    color: var(--white-off);
    margin-bottom: 20px;
}


.legal-content article {
    margin-bottom: 60px;
    
}
.legal-content  {
    background: #0d0d0d;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.legal-content h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white-pure);
    margin-bottom: 25px;
    border-left: 2px solid var(--white-pure);
    padding-left: 15px;
}

.legal-content p {
    color: var(--white-off);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    color: var(--white-off);
    font-size: 0.9rem;
    margin-bottom: 10px;
    list-style: disc;
}


.legal-content a {
    color: var(--white-pure);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.legal-content a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white-pure);
    transition: width 0.3s ease;
}

.legal-content a:hover::after {
    width: 100%;
}




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




.container-large {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 3%; 
}


.reali-page-header {
    padding: 140px 0 80px;

}

.reali-page-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
}

.reali-page-title span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.reali-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7); 
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #fff;
    margin-top: 30px;
}


.projects-showcase{ margin-top: 0pc;}

.project-block {
    margin-bottom: 120px;
    
}
.project-block:last-child {
  margin-bottom: 0;
  padding-bottom: 100px;
}

.project-info {
    margin-bottom: 40px;
    display: flex;            
    flex-direction: column;   
    align-items: flex-start;  
}

.project-cat {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;    
    line-height: 1.4;        
}

.project-name {
    
    display: block;           
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}


.project-gallery {
    padding: 0 3%; 
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 15px;
}


.img-box {
    height: 500px;
    overflow: hidden;
    background: #111;
    
    
    border-radius: 15px; 
    
    
    border: 2px solid transparent; 
    
    
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}


.img-box:hover {
    
    border-color: #ffffff; 
    
    
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.img-box:hover img {
    
    filter: grayscale(0);
}


@media (max-width: 768px) {
    .reali-page-title { font-size: 2.5rem; }

    .gallery-grid {
        display: flex;
        overflow-x: auto; 
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }


    .gallery-grid .img-box {
        flex: 0 0 85%; 
        scroll-snap-align: start;
        height: 350px; 
    }
    

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }
    .img-box { height: 350px; }

    .project-name {
        display: block ;
    }

}


.slider-container.custom-slider {
    position: relative;
    max-width: 1500px; 
    margin: 0 auto;    
    width: 100%;
    padding: 0 3%;    
}


.custom-slider .gallery-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0 30px 0;
    scrollbar-width: none;
}

.custom-slider .img-box {
    flex: 0 0 31.5%;
    height: 500px;
    scroll-snap-align: start;
    border-radius: 15px; 
}


.custom-slider .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-slider:hover .nav-btn {
    opacity: 1;
    visibility: visible;
}


.custom-slider .nav-btn.prev { 
    left: 0px; 
}

.custom-slider .nav-btn.next { 
    right: 0px; 
}

@media (max-width: 768px) {
    .custom-slider .nav-btn {
        display: none; 
    }
    .custom-slider .img-box {
        flex: 0 0 85%; 
        height: 350px;
    }
}





.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

/* --- HERO SECTION --- */
.service-hero {
    padding: 140px 0 80px;
    background-color: radial-gradient(circle at center, #111111 0%, #050505 100%);
}

.service-tag {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}



.service-hero .container-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: left;
}

.reali-page-title {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 20px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 20px;
    margin-top: 10px;
}

.hero-actions p {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.service-content {
    background-color: radial-gradient(circle at center, #111111 0%, #050505 100%);
    padding-bottom: 100px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}


.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-image { order: 1; }

.section-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.highlight-quote {
    padding: 20px 0 20px 25px;
    border-left: 2px solid #fff;
    font-style: italic;
    font-size: 1.15rem;
    color: #fff !important;
    margin: 35px 0;
}


.img-box {
    height: 550px;
    overflow: hidden;
    background: #0d0d0d;
    border-radius: 15px;
    border: 2px solid transparent; 
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.img-box:hover {
    border-color: #ffffff; 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: filter 0.4s ease;
}

.img-box:hover img {
    filter: grayscale(0);
}


.service-info-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 80px;
}

.info-card {
    padding: 45px;
    background: #0d0d0d;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}


.info-card.highlight-gray {
    background: #1a1a1a; 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}


.inline-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.inline-link:hover {
    border-bottom-color: #fff;
    opacity: 0.8;
}


.cta-simple-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px; 
    margin-top: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 8px;
}


.cta-simple-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px; 
    height: 1px;
    background-color: #fff;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-simple-modern:hover::after {
    width: 100%;
}


.cta-simple-modern i {
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

.cta-simple-modern:hover i {
    transform: translateX(8px);
}



@media (max-width: 1024px) {
    .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .service-row.reverse .service-text { order: 1; }
    .service-row.reverse .service-image { order: 2; }
    .img-box { height: 400px; }
}

@media (max-width: 768px) {
    .reali-page-title { font-size: 2.5rem; }
    .service-hero { padding: 100px 0 50px; }
}

/* --- SECTION DES BADGES (CENTRE) --- */
.hero-badges {
    margin-top: 35px; /* Espace entre les boutons et le logo */
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
}

/* --- STYLE DU LOGO RGE (TOUT BLANC) --- */
.rge-logo {
    max-height: 70px;  /* Hauteur maximale */
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}



@media (max-width: 768px) {
    .hero-badges {
        margin-top: 25px;
    }
    
    .rge-logo {
        max-height: 60px; 
    }
}

.hero-tagline strong {
    font-weight: 800; /* Un gras bien marqué */
    color: #fff;      /* Reste en blanc pur */
}

/* --- STYLE DU LIEN TÉLÉPHONE --- */
.phone-link {
    color: inherit; /* Reprend la couleur du texte (blanc) */
    text-decoration: none; /* Enlève le trait sous le numéro */
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8; /* Petit effet au survol pour montrer que c'est cliquable */
    text-decoration: underline; /* Optionnel : rajoute le trait juste au survol */
}