@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600&display=swap');
/* ============================================================
   1. CONFIGURATION DE BASE ET PALETTE
   ============================================================ */
:root {
    --color-gold: #C0A062;
    --color-dark: #2F353B;
    --color-deep: #1E242A;
    --color-cream: #F9F8F4;
    --color-slate: #545F66;
    --color-grey: #666666;
    --color-border: #999999;
    --color-blue-btn: #0056b3;
    --color-grey-dark: #1E242A;
    --color-goldor: #c3ac63;
    --color-clair:#f9f9f8;
    
    /* Polices */
    --color-font-main: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    --color-font-serif: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

    /* ALIGNEMENT GLOBAL (Ligne de force) */
    --site-padding-left: max(40px, 5vw);
    --site-max-width: 1400px;
    --site-gutter: max(40px, calc((100% - 1200px) / 2));

    /* Variables sections */
    --hs-grey-text: #666666;
    --hs-slate: #545F66;
    --hs-bg-check: #545F66;
    --hs-gold: #C0A062;
    --hs-dark: #2F353B;
}

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

body { 
    font-family: var(--color-font-main); 
    color: var(--color-dark); 
    background-color: #fff; 
    overflow-x: hidden; 
}

/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 110px;
    background: #fff;
    border-bottom: 1px solid #eceae3;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO ARGAMAN */
.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute; 
    left: var(--site-gutter); 
    z-index: 1001;
    transition: opacity 0.3s;
}

.brand-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 2px;
    color: var(--color-slate);
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-name {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-weight: 300; 
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--color-slate);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-sub {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-weight: 400;
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--color-slate);
    text-transform: uppercase;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.brand-logo:hover .brand-icon,
.brand-logo:hover .brand-name,
.brand-logo:hover .brand-sub {
    color: var(--color-gold);
}
.brand-logo:hover .brand-icon { transform: scale(1.05); }

/* NAV MENU */
.navbar {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 14px;
    margin-left: 100px;
}

.nav-wrapper-mega, .nav-wrapper-simple {
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-wrapper-mega { position: static; }
.nav-wrapper-simple { position: relative; }

.nav-link {
    text-decoration: none;
    color: var(--color-dark); 
    font-size: 14px;
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover { color: var(--color-gold); }
.nav-link i { font-size: 10px; color: var(--color-gold); transition: transform 0.3s; }

/* BOUTON BOOK NOW */
.btn-book {
    text-decoration: none;
    color: var(--color-dark);
    background: transparent;
    border: 1px solid var(--color-dark);
    padding: 13px 26px;
    position: absolute;
    right: var(--site-gutter);
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-book:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

/* DROPDOWNS */
@media (min-width: 1025px) {
    .nav-wrapper-mega:hover .nav-link,
    .nav-wrapper-simple:hover .nav-link { color: var(--color-gold); }
    .nav-wrapper-mega:hover .nav-link i,
    .nav-wrapper-simple:hover .nav-link i { transform: rotate(180deg); }
    .nav-wrapper-mega:hover .dropdown-menu,
    .nav-wrapper-simple:hover .dropdown-menu {
        visibility: visible; opacity: 1; transform: translateY(0);
    }
    .nav-wrapper-simple:hover .dropdown-menu.simple-style { transform: translateX(-50%) translateY(0); }
}

.dropdown-menu {
    background: var(--color-deep);
    position: absolute; top: 100%;
    visibility: hidden; opacity: 0;
    transform: translateY(10px); transition: all .3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25); z-index: 999;
}
.dropdown-menu.mega-style {
    left: 0; width: 100%; padding: 54px 80px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.dropdown-menu.simple-style {
    left: 50%; transform: translateX(-50%) translateY(10px);
    min-width: 260px; padding: 30px; display: flex; flex-direction: column;
}
.column-title { color: var(--color-gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(192,160,98,0.2); }
ul { list-style: none; }
li { margin-bottom: 11px; }
li a { color: #b9bcc0; text-decoration: none; font-size: 14px; position: relative; display: block; transition: all .3s; }
li a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0; height: 1px; background: var(--color-gold); transition: width .3s; }
li a:hover { color: var(--color-gold); padding-left: 22px; }
li a:hover::before { width: 14px; }
/* Liens de la liste des techniques (.extra-list) : pas de mouvement au survol, juste une surbrillance dorée */
.extra-list li a { padding-left: 0 !important; border-bottom: 0 !important; text-decoration: none !important; }
.extra-list li a::before, .extra-list li a::after { content: none !important; display: none !important; }
.extra-list li a:hover { padding-left: 0 !important; color: var(--color-gold) !important; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2001; }
.bar { width: 30px; height: 2px; background-color: var(--color-dark); transition: all 0.3s; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ============================================================
   3. HERO SECTION
   ============================================================ */
.hero-section {
    position: relative; width: 100%; height: 66vh; min-height: 460px;
    display: flex; flex-direction: column; justify-content: center;
    color: #ffffff; overflow: hidden; background-size: cover;
    background-position: center center; background-repeat: no-repeat;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        radial-gradient(
            ellipse 60% 70% at 25% 50%,
            rgba(15, 20, 26, 0.55) 0%,
            rgba(15, 20, 26, 0.30) 45%,
            rgba(15, 20, 26, 0) 80%
        ),
        radial-gradient(
            ellipse 60% 70% at 80% 55%,
            rgba(15, 20, 26, 0.45) 0%,
            rgba(15, 20, 26, 0.20) 50%,
            rgba(15, 20, 26, 0) 80%
        );
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse 45% 45% at 78% 38%, rgba(192, 160, 98, 0.20) 0%, rgba(192, 160, 98, 0) 65%);
    mix-blend-mode: screen;
    pointer-events: none;
}
.hero-container {
    width: 100%; max-width: var(--site-max-width); margin: 0 auto;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    text-align: left; padding-left: var(--site-padding-left); padding-right: 20px;
    position: relative; z-index: 2;
}

.hero-breadcrumb {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 13px; text-transform: uppercase;
    letter-spacing: 1px; margin-top: -150px; margin-bottom: 40px; width: 100%;
    position: relative; z-index: 10; align-self: flex-start;
}
.hero-breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; list-style: none; padding: 0; margin: 0; }
.hero-breadcrumb li { display: flex; align-items: center; color: rgba(255, 255, 255, 0.7); }
.hero-breadcrumb a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; }
.hero-breadcrumb a:hover { color: var(--color-gold); }
.hero-breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 10px; font-weight: 300; color: rgba(255, 255, 255, 0.4); }
.hero-breadcrumb li:last-child { color: #ffffff; font-weight: 700; pointer-events: none; }
.hero-breadcrumb li::before { display: none !important; }

/* Bande d'intro procédure (texte déplacé sous le hero) — typo alignée au système */
.lipo-intro-band {
    background: #fff;
    padding: 52px max(24px, 5vw) 46px;
    text-align: center;
}
.lipo-intro-band::before {
    content: '';
    display: block;
    width: 44px;
    height: 1px;
    background: rgba(192, 160, 98, 0.6);
    margin: 0 auto 28px;
}
.lipo-intro-band p {
    max-width: 940px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.65;
    color: var(--color-dark);
    letter-spacing: 0.1px;
}

.hero-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: clamp(45px, 6vw, 75px);
    font-weight: 400; line-height: 1.1; margin-bottom: 30px; margin-top: 0;
    color: #fff; max-width: 800px; text-align: center; align-self:center
}
.hero-description {
    font-size: 18px; line-height: 1.6; max-width: 600px; font-weight: 300;
    color: rgba(255, 255, 255, 0.9); margin-bottom: 30px; text-align: center; align-self: flex-start;
}

.read-more-hero {
    color: white; text-decoration: none; font-weight: 700; cursor: pointer;
    transition: 0.3s; text-transform: uppercase; font-size: 14px;
    letter-spacing: 1px; padding-bottom: 3px; margin-left: 5px;
}
.read-more-hero:hover { color: var(--color-gold); border-color: #fff; }

.more-text { display: none; }
.more-text.visible { display: inline; animation: fadeInText 0.5s ease; }
@keyframes fadeInText { from { opacity: 0; } to { opacity: 1; } }

.hero-ratings-bar {
    position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2;
    padding-bottom: 40px; padding-top: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.hero-ratings-container {
    max-width: var(--site-max-width); margin: 0 auto;
    padding-left: var(--site-padding-left); display: flex;
    align-items: center; gap: 200px; color: #fff;
}
.rating-item { display: flex; flex-direction: column; align-items: flex-start; }
.rating-score { font-size: 35px; font-weight: 0; display: flex; align-items: center; gap: 10px; }
.rating-score i { font-size: 25px; color: var(--color-gold); }
.rating-source { font-size: 18px; text-transform: lowercase; opacity: 0.8; display: flex; align-items: center; gap: 10px; }
.rating-source i { color: #fff; }
.scroll-down-btn {
    width: 45px; height: 45px; border: 1px solid var(--color-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--color-gold);
    font-size: 14px; margin-right: 20px; cursor: pointer; transition: 0.3s;
}
.scroll-down-btn:hover { background-color: var(--color-gold); color: #fff; }


/* ============================================================
   4. SECTION PRICING & COSTS
   ============================================================ */
.argaman-pricing-section, .argaman-additional-costs { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; }

.pricing-container, .costs-container { 
   margin-top: 50px; 
    padding: 0 60px 50px var(--site-padding-left); /* Alignement Gauche */
    max-width: var(--site-max-width);
    margin-left: auto; margin-right: auto;
}

.pricing-faded-title { font-family:'Inter', sans-serif; font-size:38px; font-weight: 300; color: #111010; margin-bottom: 20px; letter-spacing: -1.5px; text-align: left;}
.pricing-subtitle { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; color: var(--color-dark); margin-bottom: 15px; text-align: left; letter-spacing: -0.1px; }
.pricing-main-amount { font-family: 'Inter', sans-serif; font-size: 65px; color: #C0A062; font-weight: 400; line-height: 1; margin-bottom: 30px; text-align: left; letter-spacing: -1px; }
.pricing-main-amount .pricing-prefix { font-size: 24px; font-weight: 300; letter-spacing: 0; margin-right: 6px; vertical-align: middle; }
.package-label { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--color-dark); margin-bottom: 18px; text-align: left; letter-spacing: 1.5px; text-transform: uppercase; }
.package-list { list-style: none; padding: 0; margin: 0; }
.package-list li { font-family: 'Inter', sans-serif; font-size: 14.5px; font-weight: 400; color: var(--color-dark); line-height: 1.55; margin-bottom: 10px; position: relative; padding-left: 14px; text-align: left; }
.package-list li::before { content: "-"; position: absolute; left: 0; top: 0; color: var(--color-dark); font-weight: 400; font-size: 13px; line-height: 1.55; }

.pricing-footer-bar {
    background-color: var(--color-deep);
    padding: 32px 60px 32px var(--site-padding-left); /* Alignement Gauche */
    width: 100%; color: #fff; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 30px; font-weight: 700; display: flex;
    align-items: center; justify-content: flex-start;
}
.footer-price { color: var(--color-gold); font-weight: 700; margin-left: 10px; font-size: 30px; }
.footer-price .footer-price-prefix { font-weight: 300; font-size: 22px; margin-right: 4px; }

/* Additional Costs Styles */
.costs-title { font-size:40px; color:var(--color-dark); margin-top: -20px; margin-bottom: 40px; line-height: 1; text-align: left; font-weight:500; }
.costs-subtitle { font-size: 18px; font-weight: 700; color: #2F353B; margin-bottom: 60px; text-align: left; }
.costs-list { list-style: none; padding: 0; margin: 0; }
.costs-list li { font-size: 17px; color: #555; margin-bottom: 18px; line-height: 1.5; font-weight: 400; text-align: left; }
.price-bold { font-weight: 700; color: #222; }

/* ============================================================
   5. SECTION BENEFITS
   ============================================================ */
.argaman-benefits-section { padding: 100px 0; background-color: #ffffff; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; }
.argaman-container { 
    max-width: var(--site-max-width); margin: 22 auto; 
    padding: 0 40px; padding-left: var(--site-padding-left);
}
.benefits-intro { text-align: center; max-width: 950px; margin: 0 0 40px 0; }
.benefits-intro p { font-size: 17px; line-height: 1.8; color: var(--hs-grey-text); font-weight: 300; }
.benefits-logo-divider { display: flex; justify-content: center; margin-bottom: 30px; }
.logo-circle-small { width: 45px; height: 45px; border: 1px solid #e5e5e5; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--hs-slate); padding: 10px; }
.benefits-title { text-align: center; font-size: 30px; font-weight: 300; letter-spacing: 2.5px; color: var(--hs-slate); margin-bottom: 60px; text-transform: uppercase; }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 60px; }
.benefit-card { display: flex; align-items: left; gap: 15px; }
.check-box { min-width: 24px; height: 24px; background-color: var(--hs-bg-check); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 10px; transition: background-color 0.3s; }
.benefit-card:hover .check-box { background-color: var(--hs-gold); }
.benefit-card p { font-size: 16px; color: var(--hs-dark); margin: 0; line-height: 1.4; }
.js-reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s ease-out; }
.js-reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================================
   6. SECTION CARROUSEL
   ============================================================ */
.argaman-facelift-carousel { background-color: #2F353B; padding: 100px 0; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; color: #fff; overflow: hidden; position: relative; }
.carousel-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; position: relative; }
.carousel-main-title { text-align: center; font-size: 34px; font-weight: 300; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 60px; margin-top: -40px; }
.subservice-card { position: relative; width: 100%; background-color: #ffffff; overflow: hidden; cursor: grab; border-radius: 5px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.subservice-card:active { cursor: grabbing; }
.card-media { height: 100%; width: 100%; position: relative; background-color: #eee; }
.card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.5s ease, filter 0.3s ease; }
.card-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; z-index: 2; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%); }
.card-title-static { font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin: 0; transition: opacity 0.3s; color: white; }
.card-reveal-content { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.subservice-card:hover .card-media img { transform: scale(1.1); filter: brightness(0.6); }
.subservice-card:hover .card-reveal-content { max-height: 400px; opacity: 1; margin-top: 20px; }
.subservice-card:hover .card-title-static { opacity: 0; }
.card-title-gold { font-size: 18px; font-weight: 700; text-transform: uppercase; color: #ffffff; margin-bottom: 15px; }
.card-description { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.9); margin-bottom: 15px; position: relative; overflow: hidden; }
.card-description:not(.expanded) { max-height: 70px; }
.card-description.expanded { max-height: 500px; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.read-more-text { display: none; }
.card-description.expanded .read-more-text { display: inline; }
.read-more-toggle { color: var(--color-clair); font-weight: 600; cursor: pointer; display: inline-block; margin-left: 5px; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: color 0.3s ease; }
.read-more-toggle:hover { color: #fff; text-decoration-color: var(--color-clair); }
.card-description.expanded .read-more-toggle::before { content: 'Read less'; }
.card-description:not(.expanded) .read-more-toggle::before { content: 'Read more'; }
.card-link-btn { display: inline-block; padding: 10px 22px; border: 1px solid #fff; color: white; text-decoration: none; font-size: 12px; letter-spacing: 1px; font-weight: 600; transition: 0.3s; background: transparent; }
.card-link-btn:hover { background: #ffffff; color: var(--color-grey-dark); }
.swiper { width: 100%; height: auto; }
.swiper-wrapper { display: flex; align-items: stretch; }
.swiper-slide { height: auto; display: flex; opacity: 0.8; transition: opacity 0.3s ease; }
.swiper-slide-active, .swiper-slide:hover { opacity: 1; }
.carousel-bottom-controls { display: flex; align-items: center; justify-content: center; margin-top: 40px; height: 50px; position: relative; width: 100%; }
.swiper-scrollbar { position: static !important; width: 250px !important; height: 4px !important; background: #ffffff!important; margin: 0 auto; }
.swiper-scrollbar-drag { background: #C0A062 !important; height: 100% !important; }
.swiper-button-next, .swiper-button-prev { position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; width: 45px !important; height: 45px !important; border: 1px solid rgba(255,255,255,0.3) !important; border-radius: 50%; color: #fff !important; margin: 0 !important; transition: all 0.3s; background-color: rgba(0,0,0,0.5); display: flex !important; align-items: center; justify-content: center; z-index: 10; }
.swiper-button-prev { left: 0 !important; margin-left: -20px !important; }
.swiper-button-next { right: 0 !important; margin-right: -20px !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px !important; font-weight: bold; }
.swiper-button-next:hover, .swiper-button-prev:hover { border-color: #C0A062 !important; color: #C0A062 !important; background-color: rgba(0,0,0,0.7); }

@media (max-width: 767px) {
    .swiper { padding: 0 10px; } .subservice-card { height: 380px; } .carousel-main-title { font-size: 24px; } .swiper-button-next, .swiper-button-prev { width: 40px !important; height: 40px !important; }
}
@media (min-width: 768px) and (max-width: 1023px) { .swiper { padding: 0 15px; } .subservice-card { height: 450px; } }
@media (min-width: 1024px) { .swiper { padding: 0 20px; } .subservice-card { height: 550px; } }
@media (max-width: 1024px) {
    .carousel-container { padding: 0 20px; } .swiper-scrollbar { width: 180px !important; } .swiper-button-prev { left: 10px !important; margin-left: 0 !important; } .swiper-button-next { right: 10px !important; margin-right: 0 !important; } .carousel-main-title { font-size: 28px; margin-bottom: 40px; }
}
@media (max-width: 480px) { .swiper-button-next, .swiper-button-prev { display: none !important; } .swiper-scrollbar { width: 200px !important; } }

/* ============================================================
   7. SECTION IMAGE PLEINE LARGEUR
   ============================================================ */
.argaman-full-width-banner {
    position: relative; width: 100%; height: 60vh; min-height: 400px;
    background-color: #999; background-size: cover; background-position: center; background-attachment: fixed;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.banner-overlay-content { z-index: 2; padding: 20px; max-width: 800px; }
.banner-quote {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 42px; color: #ffffff; font-style: italic; letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); margin: 0; opacity: 0; animation: fadeInUp 1s ease forwards; animation-delay: 0.3s;
}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }
@media (max-width: 1024px) { .argaman-full-width-banner { height: 400px; background-attachment: scroll; } .banner-quote { font-size: 32px; } }
@media (max-width: 768px) { .argaman-full-width-banner { height: 300px; } .banner-quote { font-size: 24px; } }

/* ============================================================
   8. SECTION REASONS FOR SURGERY
   ============================================================ */
.argaman-reasons-section { padding: 80px 0; background-color: #ffffff; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; }
.reasons-content-wrapper { max-width: 900px; margin: 0 auto; }
.reasons-title { font-size: 28px; font-weight: 300; color: var(--hs-slate); margin-bottom: 40px; line-height: 1.4; text-align: left; padding-left: 20px; }
.reasons-list { list-style: none; margin-bottom: 40px; padding: 0; max-width: 800px; margin-left: 0; margin-right: auto; padding-left: 20px; }
.reasons-list li { display: flex; align-items: flex-start; margin-bottom: 20px; }
.reason-icon { min-width: 24px; height: 24px; background-color: var(--hs-bg-check); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; margin-right: 15px; margin-top: 3px; flex-shrink: 0; }
.reason-text { font-size: 17px; color: var(--hs-dark); line-height: 1.5; text-align: left; }
.reasons-paragraph p { font-size: 16px; line-height: 1.8; color: var(--hs-grey-text); font-weight: 300; text-align: left; max-width: 800px; margin: 0; padding-left: 20px; }

@media (max-width: 1024px) { .argaman-reasons-section { padding: 60px 0; } }
/* Breadcrumb hero — uniformiser la taille + graisse de toutes les polices
   (Home / Body / Buttock Augmentation au même niveau visuel) */
.hero-breadcrumb-band li,
.hero-breadcrumb-band li:last-child,
.hero-breadcrumb-band a {
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Mobile : masquer l'icône ronde dorée du bandeau "Medically reviewed" */
@media (max-width: 768px) {
    .medical-reviewer-icon { display: none !important; }
}

@media (max-width: 768px) {
    /* === Centrer tous les textes du contenu principal === */
    main, main *,
    .argaman-pricing-section, .argaman-pricing-section *,
    .argaman-split-section, .argaman-split-section *,
    .tt-about, .tt-about *,
    .extra-procedures, .extra-procedures *,
    .hero-section, .hero-section *,
    .premium-hero, .premium-hero *,
    section, section p, section h1, section h2, section h3, section h4, section h5, section h6,
    section span, section li, section dt, section dd {
        text-align: center !important;
    }
    /* Exceptions : conserver l'alignement pour navigation / footer / header */
    header, header *, nav, nav *, footer, footer *,
    .extra-list li .combo-title, .extra-list li .lipo-areas-detail, .extra-list li .nights-detail {
        text-align: center !important;
    }

    .argaman-reasons-section { padding: 50px 0; }
    .reasons-title { font-size: 24px; text-align: center !important; padding: 0 10px; }
    .reasons-list { padding: 0 10px; }
    .reasons-paragraph p { font-size: 15px; text-align: center !important; padding: 0 10px; }
    .reason-text { font-size: 16px; text-align: center !important; }

    /* === Premium hero — version mobile === */
    .premium-hero { min-height: auto !important; padding: 90px 0 60px !important; }
    .premium-hero .hero-container.hero-centered {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
    .premium-hero .hero-stage { padding: 0 !important; }
    .premium-hero .hero-eyebrow {
        font-size: 9px !important;
        letter-spacing: 2.5px !important;
        gap: 8px !important;
        margin-bottom: 18px !important;
    }
    .premium-hero .eyebrow-line { width: 18px !important; }
    .premium-hero .hero-title.premium-h1 {
        font-size: clamp(30px, 9vw, 44px) !important;
        line-height: 1.08 !important;
        letter-spacing: -1px !important;
        margin: 0 0 18px !important;
    }
    .premium-hero .hero-description.premium-desc {
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        margin: 0 auto 22px !important;
        padding: 0 4px !important;
    }
    .premium-hero .hero-meta {
        gap: 8px 14px !important;
        margin-bottom: 26px !important;
    }
    .premium-hero .hero-meta-divider { display: none !important; }
    .premium-hero .hero-meta-item {
        font-size: 11.5px !important;
        gap: 6px !important;
    }
    .premium-hero .hero-meta-item i { font-size: 11px !important; }
    .premium-hero .hero-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        max-width: none;
        gap: 10px !important;
    }
    .premium-hero .hero-cta {
        width: auto;
        justify-content: center;
        padding: 11px 22px !important;
        font-size: 11.5px !important;
        letter-spacing: 1px !important;
    }
    .premium-hero .hero-scroll-anchor { display: none !important; }
    .hero-breadcrumb-band { padding: 12px 0 !important; }
    .hero-breadcrumb-band li { font-size: 11.5px !important; }
    .hero-breadcrumb-band ol { justify-content: center !important; }
    .hero-breadcrumb-inner { padding: 0 18px !important; }
    .lipo-intro-band { padding: 36px 18px 32px; }
    .lipo-intro-band::before { margin-bottom: 20px; }
    .lipo-intro-band p { font-size: 16px; line-height: 1.6; }

    /* === Extra-procedures (combos / additional / adjuncts) — version mobile === */
    .extra-col-title {
        font-size: 18px !important;
        letter-spacing: 2.5px !important;
        text-align: center !important;
        padding-bottom: 14px !important;
        margin-bottom: 16px !important;
    }
    .extra-list li {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 18px 0 !important;
    }
    .extra-list li > span:first-child,
    .extra-list li .combo-title { text-align: center !important; width: 100% !important; }
    .extra-list li .lipo-areas-detail,
    .extra-list li .nights-detail { text-align: center !important; }
    .extra-list li .extra-price {
        font-size: 22px !important;
        margin-top: 4px !important;
        min-width: 0 !important;
        justify-content: center !important;
    }
    .extra-list li .extra-price .amt { min-width: 0 !important; }

    /* Pricing — version mobile : centrée + tailles proportionnées */
    .pricing-container { text-align: center !important; padding: 0 16px 40px; }
    .pricing-faded-title {
        font-size: clamp(24px, 7vw, 30px) !important;
        letter-spacing: -0.6px !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }
    .pricing-subtitle {
        font-size: 14px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }
    .pricing-main-amount {
        font-size: clamp(38px, 11vw, 56px) !important;
        letter-spacing: -1px !important;
        margin-bottom: 24px !important;
        text-align: center !important;
        line-height: 1.05 !important;
    }
    .pricing-main-amount .pricing-prefix { font-size: 18px !important; margin-right: 4px !important; }
    .package-label { font-size: 12px !important; letter-spacing: 2px !important; text-align: center !important; margin-bottom: 14px !important; }
    .package-list {
        display: block;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }
    .package-list li {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        margin-bottom: 8px !important;
        padding-left: 0 !important;
        text-align: center !important;
    }
    .package-list li::before { display: none !important; }
    .pricing-footer-bar { padding: 20px 16px !important; flex-direction: column !important; text-align: center !important; font-size: 15.5px !important; }
    .pricing-footer-bar .footer-price { font-size: 20px !important; }
}

/* ============================================================
   9. SECTION SPLIT FULL WIDTH (Onglets)
   ============================================================ */
.argaman-split-section {
    padding-top: 80px; 
    padding-bottom: 0; 
    background-color: #fff;
    width: 100%;
    overflow-x: hidden; 
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.argaman-container-fluid { width: 100%; padding: 0; }

.pill-nav-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    padding-right: 20px;
    /* Utilise la variable globale d'alignement */
    padding-left: var(--site-padding-left, 40px); 
}

.pill-btn {
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 14px;
    color: var(--color-grey);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-weight: 700;
}
.pill-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.pill-btn.active { background-color: var(--color-gold); border-color: var(--color-gold); color: #fff; }

.split-main-title {
    text-align: center; /* ALIGNEMENT GAUCHE */
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 80px;
    padding-right: 20px;
    padding-left: var(--site-padding-left, 40px);
    transition: opacity 0.3s ease;
    opacity: 1;
}
.split-main-title.fading { opacity: 0; }

.split-content-wrapper {
    display: flex;
    width: 100%;
    /* MODIFICATION : On passe de 500px à 300px (ou moins). 
       Cela permet à la zone d'être plus petite si le texte est court.
       Si le texte est long, la boîte s'agrandira automatiquement au-delà de 300px. */
    min-height: 300px; 
    
    /* IMPORTANT : Cela assure que la partie grise et la blanche ont toujours la même hauteur */
    align-items: stretch; 
}

/* Colonne Gauche (Menu Sombre) */
.split-left-menu {
    width: 40%; 
    background-color: #2F353B;
    display: flex;
    
    /* Aligne le bloc de texte à droite horizontalement */
    justify-content: flex-end; 
    
    /* AJOUT : Centre le bloc de texte verticalement */
    align-items: center; 
    
    /* Le padding que nous avons réduit précédemment */
    padding: 40px 0; 
    
    position: relative;
    z-index: 5;
    height: auto;
}

/* Colonne Droite (Contenu Blanc) */
.split-right-content {
    width: 60%; 
    background-color: #fff;
    
    /* MODIFICATION : On réduit le padding ici aussi pour équilibrer */
    padding: 40px 0; 
    
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; /* Votre réglage précédent pour aligner en haut */
    height: auto; 
}

.left-menu-inner {
    width: 100%;
    max-width: 500px; 
    padding-right: 60px; 
    padding-left: 20px;
}

.left-menu-list { list-style: none; padding: 0; margin: 0; }

.menu-item {
    color: var(--color-clair); 
    font-size: 20px;
    margin-bottom: 34px;
    cursor: pointer;
    line-height: 1.2;
    position: relative;
    transition: all 0.3s ease;
    text-align: right; 
    display: flex;       
    align-items: center; 
    justify-content: flex-end; 
    
    /* MODIFICATION: Réduire l'épaisseur (300 est plus fin que 400) */
    font-weight: 300; 
    
    /* AJOUT: Empêche le retour à la ligne */
    white-space: nowrap; 
}
.menu-item:hover { color: #fff; }
.menu-item.active { color: #fff; font-weight: 700; }

/* Ligne dorée animée — apparaît dès qu'un menu-item devient actif
   Croît du menu (à gauche) vers la droite, pénètre dans la zone blanche. */
.menu-item::after {
    content: '';
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0;
    pointer-events: none;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    transform-origin: left center;
    z-index: 5;
}
.menu-item.active::after {
    width: 90px;
    opacity: 1;
}

/* Colonne Droite (Contenu Blanc) */
.split-right-content {
    width: 60%; 
    background-color: #fff;
    
    /* MODIFICATION : Réduisez 100px à 50px (ou moins selon votre goût) */
    padding: 50px 0 100px 0; 
    
    display: flex;
    justify-content: flex-start;
    
    /* MODIFICATION : Aligner en haut au lieu de centrer */
    align-items: flex-start; 
}
.right-content-inner {
    width: 100%;
    
    /* MODIFICATION : Augmentez cette valeur. 
       C'était 700px. Passez à 1000px ou 100% pour utiliser tout l'espace disponible. */
    max-width: 100%; 
    
    /* MODIFICATION (Optionnel) : Réduisez le padding de gauche 
       (l'espace entre le gris et le texte) pour gagner encore plus de place.
       C'était 80px. */
    padding-left: 70px; 
    
    padding-right: 50px;
}

.content-block { display: none; opacity: 1; }
.content-block.active { display: block; opacity: 1; animation: fadeInUp 0.5s ease both; }
/* Sécurité : si le tab est actif, le premier bloc enfant est toujours visible
   (au cas où le bloc actif ne serait pas marqué dans le HTML). */
.main-tab-content.active .content-block:first-of-type { display: block; opacity: 1; }
.main-tab-content.active .content-block:first-of-type ~ .content-block:not(.active) { display: none; }

.content-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-size: 28px;
    font-weight: 400; 
    color: var(--color-gold);
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.content-block p {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; 
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-grey);
    margin-bottom: 25px;
    font-weight: 300;
}

/* Gestion des Onglets */
.main-tab-content { display: none; opacity: 0; transition: opacity 0.4s ease-in-out; }
.main-tab-content.active { display: block; opacity: 1; }

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

/* ============================================================
   10. CONSULTATION SECTION (Design Élégant & Transparent)
   ============================================================ */
.argaman-consultation-section {
    background: linear-gradient(90deg, #dcc6b6 0%, #f2e6df 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding-top: 60px; 
    padding-bottom: 0; 
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.consultation-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

/* --- PARTIE GAUCHE (CONTENU) --- */
.consultation-content {
    flex: 1;
    z-index: 2;
    padding-bottom: 60px; 
    padding-right: 0px; 
}

.consultation-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 58px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2F353B;
    margin-bottom: 50px;
    margin-top: 0;
    letter-spacing: 1px;
}

/* GRILLE 2x2 */
.consultation-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colonnes */
    gap: 40px 20px; /* Espace vertical 40px, horizontal 20px */
    align-items: start;
}

/* --- MODIFICATION MAJEURE ICI --- */
.info-block {
    display: flex;
    flex-direction: row; /* C'est ce qui met l'icône à côté du texte */
    align-items: flex-start; /* Aligne l'icône avec le haut du texte */
    gap: 15px; /* Espace entre le rond et le texte */
}

.icon-circle {
    width: 40px; 
    height: 40px;
    border: 1px solid #2F353B; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* IMPORTANT : Empêche l'icône de s'écraser si le texte est long */
    flex-shrink: 0; 
}

.icon-circle i {
    font-size: 16px; 
    color: #2F353B;
}

.info-text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
    /* Petit ajustement pour aligner visuellement le texte avec le centre de l'icône */
    margin-top: -3px; 
}

/* Tous les blocs alignés de la même manière (icône en haut, texte aligné gauche) */
.consultation-info-grid .info-block {
    align-items: flex-start !important;
}
.consultation-info-grid .info-block .info-text-wrapper {
    margin-top: -3px;
}
.consultation-info-grid .info-block .info-highlight {
    margin-bottom: 5px;
}

.info-highlight {
    font-weight: 700;
    font-size: 18px;
    color: #2F353B;
    margin-bottom: 5px;
    display: block;
    line-height: 1.2;
}

.info-highlight .info-sub {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 5px;
}

.info-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #2F353B;
    margin: 0;
    font-weight: 400;
}

/* --- PARTIE DROITE (IMAGE) --- */
.consultation-image {
    width: 40%; 
    flex-shrink: 0; 
    line-height: 0; 
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.consultation-image img {
    max-height: 350px; 
    width: auto; 
    display: block; 
    object-fit: contain;
}

/* --- MOBILE --- */
@media (max-width: 991px) {
    .consultation-container {
        flex-direction: column;
        align-items: center;
    }
    
    .consultation-content {
        padding-right: 0;
        text-align: center; 
        width: 100%;
    }

    /* GRILLE 3 COLONNES SUR MOBILE */
    .consultation-info-grid {
        display: grid;
        /* Force 3 colonnes de largeur égale */
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; /* Espace réduit entre les colonnes */
    }

    /* MODIFICATION CRUCIALE POUR QUE ÇA RENTRE */
    .info-block {
        /* On remet l'icône au-dessus du texte pour gagner de la place */
        flex-direction: column; 
        align-items: center;
        justify-content: flex-start;
    }

    .info-text-wrapper {
        text-align: center;
        margin-top: 10px; /* Espace entre icône et texte */
        margin-left: 0;
    }
    
    /* Réduction de la police pour que ça tienne dans les petites colonnes */
    .info-highlight {
        font-size: 14px;
        word-wrap: break-word; /* Coupe les mots si trop longs */
    }
    
    .info-desc {
        display: none; /* OPTIONNEL : Cache la description sur mobile pour ne garder que le titre (trop chargé sinon) */
        /* Si vous voulez garder la description, supprimez la ligne display:none et mettez font-size: 11px; */
    }

    /* GESTION DU 4ème ÉLÉMENT (Le formulaire) */
    /* Cette règle fait en sorte que le dernier élément soit centré s'il est seul sur sa ligne */
    .info-block:last-child {
        grid-column: 2; /* Place le 4ème élément dans la colonne du milieu */
    }
    
    /* IMAGE */
    .consultation-image {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
    .consultation-image img {
        max-height: 250px;
    }
}


/* ============================================================
   11. SECTION FACTS
   ============================================================ */
.argaman-facts-section {
    background-color: var(--color-grey-dark); 
    padding: 80px 0;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}
.facts-main-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #ffffff;
    max-width: var(--site-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-padding-left);
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px; 
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding-left: var(--site-padding-left);
    padding-right: 20px;
}
.fact-item { display: flex; flex-direction: column; align-items: flex-start; }
.fact-icon { font-size: 35px; color: var(--color-gold); margin-bottom: 25px; height: 40px; display: flex; align-items: center; }
.fact-title { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: #ffffff; }
.fact-desc { font-size: 15px; font-weight: 300; color: #dcdcdc; line-height: 1.5; margin: 0; }

.fact-item.js-reveal { opacity: 0; transform: translateX(-100px); transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.fact-item.js-reveal.active { opacity: 1; transform: translateX(0); }
.facts-main-title.js-reveal { opacity: 0; transform: translateY(-30px); transition: all 1s ease-out; }
.facts-main-title.js-reveal.active { opacity: 1; transform: translateY(0); }

/* --- SECTION FAQ STYLE --- */
.argaman-faq-section {
    background-color: #fff;
    padding: 100px 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}
.faq-main-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 80px;
    max-width: var(--site-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-padding-left);
}
.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}
/* FAQ — design unifié style Hotel Partners (épuré, indicateur +/− doré, <details> natif) */
details.faq-item, .faq-item {
    border-bottom: 1px solid #ece9df;
    padding: 18px 0;
    display: block;
    margin: 0 !important;
}
details.faq-item:first-of-type, .faq-item:first-of-type {
    border-top: 1px solid #ece9df;
}
.faq-header,
summary.faq-header {
    list-style: none;
    cursor: pointer;
    padding: 6px 0;
    margin: 0;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    transition: color 0.3s;
    line-height: 1.4;
}
summary.faq-header::-webkit-details-marker { display: none; }
summary.faq-header::marker { content: ''; }
.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 500;
    line-height: 1.4;
    color: var(--color-dark);
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    flex: 1 1 auto; min-width: 0;
}
/* H3 reset spécifique — neutralise tout style hérité de h3 par défaut */
summary.faq-header h3,
summary.faq-header h3.faq-question {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}
/* Ancien icône rond doré masqué — remplacé par ::after sur summary */
.faq-icon { display: none !important; }
.arrow-symbol { display: none !important; }
summary.faq-header::after {
    content: '+';
    font-family: 'Inter', sans-serif;
    font-size: 22px; font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
}
details.faq-item[open] summary.faq-header,
.faq-item.active .faq-header { color: var(--color-gold); }
details.faq-item[open] summary.faq-header .faq-question,
.faq-item.active .faq-question { color: var(--color-gold); }
details.faq-item[open] summary.faq-header::after { content: '−'; }

/* Contenu */
.faq-body { overflow: hidden; }
.faq-answer { display: block; padding-bottom: 0; }
.faq-answer p {
    margin: 14px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px; line-height: 1.75;
    color: var(--color-slate); font-weight: 300;
}

/* ============================================================
   12. SECTION BLOG (Flèches cercles gris)
   ============================================================ */
.argaman-blog-section {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    overflow: hidden; 
}

/* Force la pleine largeur */
.argaman-blog-section .argaman-container {
    max-width: 100% !important; 
    padding: 0 !important; 
    margin: 0 !important;
}

/* En-tête aligné avec le reste du site */
.blog-header {
    max-width: 1400px; 
    margin: 0 auto 40px auto;
    padding-left: var(--site-padding-left, 40px);
    text-align: left;
}

.blog-subtitle {
    display: block; font-size: 14px; font-weight: 700;
    color: #C0A062; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px;
}
.blog-main-title { font-size: 38px; font-weight: 700; color: #2F353B; margin: 0; }

.blog-slider {
    width: 100%;
    /* Padding pour ne pas couper les ombres */
    padding: 20px 20px 50px 20px !important; 
    position: relative; overflow: hidden; box-sizing: border-box; 
}

/* Style des Cartes Blog */
.blog-card { background: #fff; width: 100%; transition: transform 0.3s ease; }
.blog-card:hover { transform: translateY(-5px); }

.blog-image-wrapper {
    position: relative; width: 100%; overflow: hidden;
    height: 200px; background-color: #f0f0f0;
}
.blog-image-wrapper img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.5s ease;
}
.blog-card:hover .blog-image-wrapper img { transform: scale(1.05); }

.blog-date-badge {
    position: absolute; top: 20px; left: 20px; width: 50px; height: 50px;
    background-color: #fff; border: 2px solid #333; display: flex; flex-direction: column;
    align-items: center; justify-content: center; z-index: 10; line-height: 1;
}
.blog-date-badge .day { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 2px; }
.blog-date-badge .month { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #333; }

.blog-content { padding: 25px 10px 10px 0; text-align: center; }
.blog-post-title {
    font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 15px;
    min-height: 50px; display: flex; align-items: center; justify-content: center;
}
.blog-post-title a { text-decoration: none; color: #2F353B; transition: color 0.3s; }
.blog-post-title a:hover { color: #C0A062; }
.blog-separator { width: 40px; height: 2px; background-color: #e5e5e5; margin: 0 auto 15px auto; }
.blog-meta { font-size: 13px; color: #888; font-weight: 300; line-height: 1.5; }

/* STYLE DES FLÈCHES (Cercles Gris) */
.blog-next, .blog-prev {
    position: absolute;
    z-index: 20;
    width: 50px !important;   
    height: 50px !important;
    background-color: #e6e7e8 !important; /* Fond gris clair */
    border-radius: 50% !important;
    border: none !important;
    box-shadow: none !important;
    color: #555555 !important; /* Flèche gris foncé */
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1 !important;
    top: 120px !important;
    transform: translateY(-50%);
    margin-top: 0; /* Centré verticalement sur l'image (200px + 20px de padding du slider) */
}

.blog-next::after, .blog-prev::after {
    font-size: 20px !important;
    font-weight: 700;
}

.blog-prev:hover, .blog-next:hover {
    background-color: #d1d2d3 !important;
    transform: translateY(-50%) scale(1.05);
}

.blog-prev { left: 20px !important; }
.blog-next { right: 20px !important; }

/* ============================================================
   13. FOOTER
   ============================================================ */
footer { padding: 0; background-color: transparent; border-top: none; width: 100%; }
.footer-cta-bar { background-color: var(--color-deep); padding: 50px 10%; display: flex; align-items: center; justify-content: space-between; color: #fff; flex-wrap: wrap; gap: 30px; }
.cta-content h2 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 1.3; max-width: 1200px; margin: 0; text-align: left; }
.btn-footer-cta { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--color-gold); padding: 12px 30px; color: #fff; background: var(--color-gold); text-decoration: none; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-footer-cta:hover { background: #fff; color: var(--color-grey); border-color: #fff; }
.footer-info-section { background-color: #fff; padding: 80px 40px 30px 40px; color: var(--color-dark); }
.footer-grid-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 60px; border-bottom: 1px solid #dcdcdc; padding-bottom: 60px; margin-bottom: 30px; align-items: flex-start; }
.f-col-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 25px; }

/* MODIFICATION CSS LOGO FOOTER */
.f-brand-block { 
    display: flex; 
    align-items: center; 
    gap: 8px;
    text-decoration: none; 
    color: var(--color-slate); 
    margin-bottom: 10px; 
}
.f-brand-icon-ft { width: 40px; height: 40px; color: var(--color-slate); }
.f-brand-text-ft { 
    display: flex; 
    flex-direction: column; 
    line-height: 1; 
    align-items: flex-start;
}
.f-name-ft { 
    font-size: 24px;
    letter-spacing: 1px; 
    font-weight: 400; 
}
.f-sub-ft { 
    font-size: 9px; 
    letter-spacing: 2.85px;
    text-transform: uppercase; 
    margin-top: 2px;
    margin-left: 1px;
}

.f-address-box p { font-size: 13px; color: var(--color-grey); line-height: 1.6; margin-bottom: 5px; }
.f-address-box .highlight { color: var(--color-dark); font-weight: 600; margin-top: 10px; display: block; }
.f-socials-row { display: flex; gap: 15px; margin-top: 10px; }
.f-socials-row a { color: var(--color-slate); font-size: 18px; transition: color 0.3s; }
.f-socials-row a:hover { color: var(--color-gold); }
.f-col-links h4 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; color: var(--color-slate); font-weight: 700; }
.f-link-list { list-style: none; padding: 0; margin: 0; }
.f-link-list li { margin-bottom: 10px; }
.f-link-list li a { font-size: 13px; color: var(--color-grey); text-decoration: none; transition: color 0.3s; position: relative; }
.f-link-list li a::before { display: none; }
.f-link-list li a:hover { color: var(--color-gold); padding-left: 0; }
.f-group-title { font-size: 13px; color: var(--color-slate); font-weight: 700; margin-top: 25px; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.mt-0 { margin-top: 0 !important; }
.footer-legal-row { text-align: center; font-size: 11px; color: #999; }
.footer-legal-row a { color: #999; text-decoration: none; margin-left: 10px; transition: color 0.3s; }
.footer-legal-row a:hover { color: var(--color-gold); }

/* --- WIDGET CONTACT STYLE --- */
#contact-trigger {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%);
    background-color: var(--color-dark); width: 40px; height: 68px; 
    border-top-left-radius: 5px; border-bottom-left-radius: 5px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; cursor: pointer; z-index: 9990; box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}
#contact-trigger .arrow-icon { color: var(--color-gold); font-size: 15px; margin-bottom: 8PX; margin-top: 2px; }
#contact-trigger .chat-icon { color: #fff; font-size: 15px; }
#contact-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); z-index: 9999; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
#contact-overlay.open { display: flex; opacity: 1; }
.contact-modal { background-color: var(--color-dark); width: 100%; max-width: 600px; padding: 30px 40px; position: relative; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; color: #fff; max-height: 90vh; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.contact-modal::-webkit-scrollbar { display: none; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 24px; color: var(--color-gold); cursor: pointer; line-height: 1; z-index: 10; }
.modal-title { font-size: 26px; font-weight: 400; margin-bottom: 5px; color: #fff; padding-right: 20px; }
.modal-subtitle { font-size: 14px; color: #ccc; margin-bottom: 15px; font-weight: 300; }
.modal-socials { display: flex; gap: 30px; margin-bottom: 20px; }
.modal-socials a { color: var(--color-gold); font-size: 18px; transition: color 0.3s; }
.modal-socials a:hover { color: #fff; }
.modal-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: flex; gap: 20px; }
.input-group { flex: 1; display: flex; flex-direction: column; }
.input-group label { font-size: 10px; font-weight: 700; color: #ccc; text-transform: uppercase; margin-bottom: 2px; }
.input-group input, .input-group textarea { background: transparent; border: none; border-bottom: 1px solid #555; color: #fff; padding: 4px 0; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; outline: none; transition: border-color 0.3s; }
.input-group textarea { resize: none; height: 25px; min-height: 25px; }
.input-group input:focus, .input-group textarea:focus { border-bottom-color: var(--color-gold); }
.required-note { font-size: 11px; color: #888; margin-top: -5px; margin-bottom: 5px; }
.form-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 5px; }
.checkbox-group { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #ccc; }
.checkbox-group input { margin: 0; }
.checkbox-group a { color: var(--color-gold); text-decoration: none; }
.btn-send { background: transparent; border: 1px solid #555; color: #aaa; padding: 10px 30px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s; font-weight: 600; font-size: 13px; }
.btn-send:hover { border-color: var(--color-gold); color: #fff; background-color: var(--color-gold); }

/* --- BARRE SUPÉRIEURE (PDF) --- */
.top-download-bar {
    background-color: var(--color-grey-dark);
    height: 200px; display: flex; justify-content: center; align-items: flex-start;
    padding-top: 50px; position: relative; z-index: 1;
}
.pdf-link {
    display: flex; align-items: center; gap: 15px; text-decoration: none;
    color: var(--color-gold); font-weight: 700; letter-spacing: 1px;
    font-size: 14px; text-transform: uppercase; transition: opacity 0.3s;
}
.pdf-link:hover { opacity: 0.8; }
.pdf-link .icon-circle {
    width: 40px; height: 40px; border: 1px solid var(--color-gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--color-gold);
    background: transparent; font-size: 16px; transition: background 0.3s, color 0.3s;
}
.pdf-link:hover .icon-circle { background: var(--color-gold); color: #fff; }

/* --- SECTION PRINCIPALE (SPLIT - HEADER STYLE) --- */
.split-section { display: flex; min-height: 500px; width: 100%; overflow: visible; }
.content-wrapper { display: flex; width: 100%; max-width: var(--site-max-width); margin: 0 auto; flex-wrap: wrap; position: relative; }
.text-column {
    flex: 1.2; padding: 60px 40px; padding-left: var(--site-padding-left); 
    display: flex; flex-direction: column; justify-content: center; min-width: 500px;
    opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out;
}
.text-column.visible { opacity: 1; transform: translateY(0); }
.main-title { font-size: 42px; color: var(--color-dark); margin-bottom: 40px; font-weight: 700; line-height: 1.2; }
.benefits-list { list-style: none; margin-bottom: 60px; }
.benefits-list li { position: relative; padding-left: 35px; margin-bottom: 25px; font-size: 18px; line-height: 1.5; color: #555; font-weight: 400; }
.benefits-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--color-gold); font-weight: bold; font-size: 20px; }
.buttons-row { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-outline {
    text-decoration: none; color: var(--color-gold); border: 1px solid var(--color-gold);
    padding: 15px 25px; font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; transition: all 0.3s ease; white-space: nowrap;
}
.btn-outline:hover { background-color: var(--color-gold); color: #fff; }
.image-column {
    flex: 0.8; min-width: 300px; position: relative; display: flex;
    justify-content: center; align-items: flex-start; z-index: 10;
}
.image-column img {
    width: 90%; max-width: 450px; height: 550px; object-fit: cover;
    margin-top: -100px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border-radius: 4px;
}

/* ============================================================
   14. MEDIA QUERIES (RESPONSIVE)
   ============================================================ */
@media (max-width: 1024px) {
    li a::before { display: none !important; }
    li a:hover { padding-left: 0 !important; }
    body, p, h1, h2, h3, h4, h5, h6, .hero-content, .welcome-left, .welcome-right, .stat-item, .nl-content, .cta-content h2, .footer-col { text-align: center !important; }
    .welcome-right, .stat-item, .brand-logo, .nav-wrapper-mega, .nav-wrapper-simple, .footer-cta-bar, .f-col-identity, .awards-grid { align-items: center !important; }

    header { justify-content: space-between; padding: 0 20px; height: 90px; position: fixed; top: 0; left: 0; width: 100%; border-bottom: 1px solid #e5e5e5; z-index: 2000; }
    body { padding-top: 90px; }
    .brand-logo { position: static; left: auto; }
    .brand-icon { width: 35px; height: 35px; }
    .brand-name { font-size: 18px; letter-spacing: 2px; }
    .brand-sub { font-size: 7px; letter-spacing: 3px; }
    .hamburger { display: flex; }
    .navbar { position: fixed; top: 90px; left: 0; width: 100%; height: calc(100vh - 90px); background-color: #fff; flex-direction: column; align-items: flex-start; padding: 40px; transform: translateX(-100%); transition: transform 0.4s ease; overflow-y: auto; gap: 0; z-index: 1999; margin-left: 0; }
    .navbar.active { transform: translateX(0); }
    .nav-wrapper-mega, .nav-wrapper-simple { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid #f0f0f0; }
    .nav-link { width: 100%; padding: 20px 0; justify-content: space-between; font-size: 16px; }
    .btn-book { position: relative; right: auto; top: auto; transform: none; margin-top: 20px; width: 100%; text-align: center; padding: 15px; }
    .dropdown-menu, .dropdown-menu.mega-style, .dropdown-menu.simple-style { position: static; width: 100%; box-shadow: none; padding: 0; visibility: visible; opacity: 1; transform: none; display: none; background-color: #ffffff; padding-left: 15px; }
    .column-title { color: var(--color-dark); margin-top: 10px; margin-bottom: 10px; } li a { color: #444; }
    .dropdown-menu.mega-style { grid-template-columns: 1fr; gap: 20px; padding: 20px; } .dropdown-menu.simple-style { padding: 20px; }
    .nav-wrapper-mega.open .dropdown-menu { display: block; } .nav-wrapper-mega.open .dropdown-menu.mega-style { display: grid; } .nav-wrapper-simple.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .nav-link i, .nav-wrapper-simple.open .nav-link i { transform: rotate(180deg); }
    

    /* Hero */
    .hero-section { height: auto; padding: 100px 0 60px; background-attachment: scroll; }
    .hero-ratings-container { flex-wrap: wrap; gap: 70px; padding-left: max(20px, 5vw); justify-content: flex-start; }
    .hero-ratings-bar { position: relative; bottom: auto; padding-bottom: 0; margin-top: 40px; background: none; }
    
    /* Pricing */
    .pricing-container { text-align: center !important; padding: 0 20px 50px 20px; }
    .pricing-faded-title,
    .pricing-subtitle,
    .pricing-main-amount,
    .package-label { text-align: center !important; }
    .package-list { display: block; text-align: center; }
    .package-list li { padding-left: 0; text-align: center; }
    .package-list li::before { display: none; }
    .pricing-footer-bar { padding: 20px; flex-direction: column; text-align: center; justify-content: center; }

    /* Split Section */
    .split-content-wrapper { flex-direction: column; }
    .split-left-menu { width: 100%; justify-content: center; padding: 40px 20px; }
    .left-menu-inner { padding: 0; text-align: center; max-width: 100%; }
    .menu-item { text-align: center; justify-content: center; font-size: 18px; margin-bottom: 15px; padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .menu-item::after { display: none; }
    .split-right-content { width: 100%; justify-content: center; padding: 40px 20px; }
    .right-content-inner { padding: 0; max-width: 100%; }
    .pill-nav-wrapper { padding-left: 20px; overflow-x: auto; flex-wrap: nowrap; }

    /* Consultation */
    .consultation-title { font-size: 38px; }
    .consultation-image img { max-height: 350px; }
    .consultation-image { margin-left: 0; }
    
    /* Footer */
    .footer-cta-bar { flex-direction: column; text-align: center; justify-content: center; padding: 32px 20px; gap: 20px; }
    .cta-content h2 { font-size: 22px !important; line-height: 1.3; }
    .footer-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; text-align: left !important; padding-bottom: 40px; }
    .f-col-identity { grid-column: span 3; align-items: center !important; border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 10px; width: 100%; text-align: center !important; }
    .f-col-identity .f-address-box { width: 100%; text-align: center; }
    .f-col-identity .f-address-box p { font-size: 15px; line-height: 1.7; }
    .f-col-identity .f-socials-row { justify-content: center; width: 100%; }
    .f-col-links { align-items: flex-start !important; text-align: left !important; }
    .f-col-links h4, .f-group-title { text-align: left !important; font-size: 11px; }
    .f-link-list li a { justify-content: flex-start !important; text-align: left; padding-left: 0 !important; font-size: 11px; }
    .f-link-list li a:hover { padding-left: 0 !important; color: var(--color-gold); }

    /* Top Split Section Responsive */
    .top-download-bar { height: auto; padding: 40px 0; align-items: center; }
    .content-wrapper { flex-direction: column; }
    .text-column { min-width: 100%; padding: 40px 20px; order: 2; }
    .image-column { flex: auto; width: 100%; order: 1; justify-content: center; margin-bottom: 0; }
    .image-column img { margin-top: 0; width: 100%; max-width: none; height: 300px; border-radius: 0; box-shadow: none; }
    .buttons-row { flex-direction: column; }
    .btn-outline { text-align: center; }

    /* CORRECTION FAITS ALIGNEMENT CENTRÉ (Mobile/Tablette) */
    .fact-item { 
        align-items: center !important; /* Centre l'icône, le titre et la desc verticalement */
        text-align: center !important;  /* Centre le texte */
    }
    .fact-desc { 
        text-align: center !important; 
    }
}

@media (max-width: 768px) {
    .hero-ratings-container { overflow-x: auto; flex-wrap: nowrap; gap: 30px; }
    .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    
    /* Consultation Mobile */
    .argaman-consultation-section { padding-top: 40px !important; }
    .consultation-container { flex-direction: column; align-items: center; padding: 0 20px; }
    .consultation-content { width: 100%; padding-bottom: 26px; text-align: center; }
    .consultation-title { font-size: 24px; margin-bottom: 22px; letter-spacing: 0.5px; }
    .consultation-info-grid { align-items: start !important; justify-items: center !important; gap: 22px 12px !important; }
    .consultation-info-grid .info-block,
    .consultation-info-grid .info-block:last-child {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 9px !important;
        text-align: center !important;
        width: 100%;
    }
    .consultation-info-grid .icon-circle { width: 38px !important; height: 38px !important; }
    .consultation-info-grid .icon-circle i { font-size: 15px !important; }
    .consultation-info-grid .info-block .info-text-wrapper,
    .consultation-info-grid .info-block:last-child .info-text-wrapper {
        align-items: center !important;
        text-align: center !important;
        margin-top: 0 !important;
        min-height: 0 !important;
        justify-content: flex-start;
    }
    .info-highlight,
    .consultation-info-grid .info-block:last-child .info-highlight {
        margin-bottom: 3px !important;
        font-size: 14.5px !important;
        line-height: 1.3 !important;
    }
    .info-desc { font-size: 12.5px !important; line-height: 1.4 !important; }
    .info-highlight .info-sub { display: block; margin-left: 0; margin-top: 4px; }
    .consultation-image { width: 100%; margin-left: 0; display: flex; justify-content: center; }
    .consultation-image img { max-height: 200px; width: auto; max-width: 100%; }
    
    /* Blog Mobile */
    .blog-prev { left: 10px !important; }
    .blog-next { right: 10px !important; }
    .blog-header { padding-left: 20px; }
    
    /* Contact Modal */
    .contact-modal { padding: 20px; width: 95%; }
    .form-row { flex-direction: column; gap: 10px; }
    .modal-socials { display: none; }
}
@media (max-width: 1024px) {
    .pill-nav-wrapper {
        flex-wrap: wrap !important;       /* Force les boutons à passer à la ligne */
        overflow-x: visible !important;   /* Supprime la barre de défilement horizontale */
        justify-content: center !important; /* Centre le bloc de boutons */
        height: auto !important;          /* Laisse la hauteur s'adapter */
        gap: 10px !important;             /* Espace entre les boutons (haut/bas/gauche/droite) */
        padding-bottom: 0 !important;
    }

    .pill-btn {
        flex: 0 0 auto !important;        /* Empêche le bouton de s'écraser/rétrécir */
        white-space: nowrap !important;   /* Garde le texte sur une seule ligne */
        margin-bottom: 5px !important;    /* Petit espace supplémentaire en bas si nécessaire */
    }
}
/* --- CORRECTIF FORCE POUR ALIGNEMENT DESKTOP --- */
@media (min-width: 992px) {
    /* On cible spécifiquement le 4ème bloc (le formulaire) */
    .consultation-info-grid > a:nth-child(4),
    .consultation-info-grid > div:nth-child(4) {
        align-items: center !important; /* Centre l'icône et le texte verticalement */
    }

    /* On annule le décalage du texte pour ce bloc précis */
    .consultation-info-grid > a:nth-child(4) .info-text-wrapper,
    .consultation-info-grid > div:nth-child(4) .info-text-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* On enlève la marge sous le titre pour qu'il soit bien au milieu */
    .consultation-info-grid > a:nth-child(4) .info-highlight,
    .consultation-info-grid > div:nth-child(4) .info-highlight {
        margin-bottom: 0 !important;
        line-height: -10 !important; /* Ressère la hauteur de ligne */
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }
}

/* Vignettes de carrousel entièrement cliquables (JS gère la navigation) */
.rhino-card { cursor: pointer; }

/* ============================================================
   WIDGET LATERAL (SIDE PANEL SLIDER)
   ============================================================ */
.side-trigger {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-dark);
    color: var(--color-gold);
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    cursor: pointer;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -600px;
    width: 550px;
    height: 100vh;
    background-color: #242c2d;
    z-index: 2001;
    padding: 60px 50px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    color: #fff;
}

.side-panel.open { right: 0; }
.side-trigger.hidden { right: -60px; }

.close-btn-side {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 32px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.close-btn-side:hover { opacity: 1; }

.side-panel .side-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #fff;
}

.side-panel .side-subtitle {
    font-size: 18px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.side-social-icons-row {
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
    color: var(--color-gold);
    font-size: 24px;
}
.side-social-icons-row i { cursor: pointer; transition: transform 0.3s; }
.side-social-icons-row i:hover { transform: scale(1.15); }

.side-panel .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px 40px;
}

.side-panel .form-group { display: flex; flex-direction: column; }

.side-panel label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
}

.side-panel .side-input,
.side-panel .side-textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #777;
    padding: 10px 0;
    color: #fff;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 15px;
    outline: none;
    width: 100%;
}

.side-panel .side-textarea { min-height: 40px; resize: vertical; }

.side-panel .required-note {
    font-size: 14px;
    color: #aaa;
    margin: 20px 0 40px 0;
    font-style: italic;
}

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

.privacy-checkbox-side { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.privacy-checkbox-side input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--color-gold); }
.privacy-checkbox-side a { color: #fff; text-decoration: underline; }

.side-btn-send {
    background: transparent;
    border: 1px solid #555;
    color: #999;
    padding: 15px 45px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.side-btn-send:hover { border-color: var(--color-gold); color: var(--color-gold); }

@media (max-width: 768px) {
    .side-panel { width: 100% !important; right: -100%; padding: 40px 20px; z-index: 2001; top: 0; }
    .side-panel .form-grid { grid-template-columns: 1fr; }
    .side-footer { flex-direction: column; gap: 30px; align-items: flex-start; }
    .side-btn-send { width: 100%; }
}

/* ============================================================
   SPLIT HERO (pages procedures) — deploye le 2026-07-12
   ============================================================ */
.split-hero{position:relative; display:grid; grid-template-columns:1fr 1fr; min-height:clamp(460px,50vw,640px); background:#efe9df;}
.split-hero__panel{position:relative; display:flex; align-items:center; justify-content:center; text-align:center; padding:clamp(40px,6vw,90px); overflow:hidden; background:rgba(192,160,98,0.88);}
.split-hero__mono{position:absolute; top:50%; left:50%; transform:translate(-40%,-64%); width:clamp(360px,44vw,580px); height:auto; color:rgba(255,255,255,.06); pointer-events:none; user-select:none; z-index:0;}
.split-hero__inner{position:relative; z-index:1;}
.split-hero__title{font-family:'Bodoni Moda',Georgia,serif; font-weight:500; font-variant:small-caps; letter-spacing:.06em; font-size:clamp(32px,3.8vw,56px); line-height:1.14; color:#fff; margin:0 0 24px;}
.split-hero__crumb ol{display:flex; flex-wrap:wrap; justify-content:center; gap:8px; list-style:none; margin:0; padding:0;}
.split-hero__crumb li{display:flex; align-items:center; font-family:'Inter',system-ui,sans-serif; font-size:14px; letter-spacing:.02em; color:rgba(255,255,255,.85); margin:0;}
.split-hero__crumb a{color:rgba(255,255,255,.85); text-decoration:none; transition:color .25s;}
.split-hero__crumb a:hover{color:#fff;}
.split-hero__crumb li:not(:last-child)::after{content:'\00bb'; margin-left:8px; color:rgba(255,255,255,.6);}
.split-hero__crumb li:last-child{color:#fff;}
.split-hero__crumb li::before, .split-hero__crumb li a::before, .split-hero__crumb li a::after{display:none !important; content:none !important;}
.split-hero__crumb li a:hover{padding-left:0 !important;}
.split-hero__media{position:relative; overflow:hidden;}
.split-hero__media img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; filter:grayscale(1) contrast(1.04);}
@media (max-width:820px){
    .split-hero{display:block; position:relative; min-height:clamp(440px,92vw,580px);}
    .split-hero__media{position:absolute; inset:0; z-index:0;}
    .split-hero__panel{position:absolute; inset:0; z-index:1; padding:56px 26px; background:rgba(192,160,98,0.62);}
    .split-hero__mono{width:clamp(240px,66vw,360px);}
}

/* boutons CTA du split-hero (Procedure / Consultation) */
.split-hero__cta{display:flex; flex-wrap:wrap; justify-content:center; gap:14px; margin-top:58px;}
.split-hero__btn{display:inline-flex; align-items:center; gap:9px; padding:13px 26px; font-family:'Inter',sans-serif; font-size:13px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; text-decoration:none; border:1px solid #fff; background:#fff; color:#2f353b; transition:all .3s; cursor:pointer;}
.split-hero__btn:hover{background:transparent; color:#fff;}
.split-hero__btn i{font-size:11px; transition:transform .3s;}
.split-hero__btn:hover i{transform:translateX(4px);}
.split-hero__btn--ghost{background:transparent; color:#fff; border-color:rgba(255,255,255,.6);}
.split-hero__btn--ghost:hover{background:#fff; color:#2f353b; border-color:#fff;}
@media (max-width:820px){ .split-hero__cta{margin-top:40px;} }
/* intro SEO deplacee juste sous le split-hero */
.split-hero-intro{max-width:900px; margin:0 auto; padding:clamp(50px,6vw,84px) 24px; text-align:center;}
.split-hero-intro h2{font-family:'Bodoni Moda',Georgia,serif; font-weight:500; font-variant:small-caps; letter-spacing:.04em; font-size:clamp(24px,2.7vw,38px); line-height:1.2; color:var(--color-dark); margin:0 0 20px;}
.split-hero-intro p{font-family:'Inter',system-ui,sans-serif; font-size:clamp(15px,1.15vw,17.5px); line-height:1.85; color:#4a5158; margin:0 auto; max-width:760px;}


/* ===== CONTACT BAND (propagated) ===== */
/* Black & white contact band, white text (preview on this page only) */
.contact-band { padding: 0 !important; display: block; position: relative; overflow: hidden; background: #14181c; margin-top: 70px; }
/* Whole-band clickable link → contact page */
.contact-band__cover { position: absolute; inset: 0; z-index: 3; display: block; transition: background 0.3s ease; }
.contact-band__cover:hover { background: rgba(255,255,255,0.05); }
.contact-band::before {
    content: ""; position: absolute; inset: 0;
    background: url("../Images/top%20plastic%20surgeries%20Mexico.webp") center 34% / cover no-repeat;
    filter: grayscale(1) contrast(0.74) brightness(0.98);
}
.contact-band__scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(30,34,38,0.80) 0%, rgba(40,44,48,0.58) 50%, rgba(30,34,38,0.74) 100%);
}
.contact-band__inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 120px 40px;
    display: flex; align-items: center; min-height: 500px; color: #fff;
}
.contact-band__col--title { flex: 1 1 50%; padding-right: 48px; }
.contact-band__col--details { flex: 1 1 50%; padding-left: 44px; }
.contact-band__divider { width: 2px; align-self: stretch; background: rgba(255,255,255,0.55); margin: 8px 0; }
.contact-band__title {
    font-family: 'Cormorant Garamond', 'Bodoni Moda', Didot, Georgia, serif; font-weight: 500;
    font-size: clamp(48px, 6vw, 84px); line-height: 1; letter-spacing: 0.11em;
    text-transform: uppercase; margin: 0 0 22px; color: #fff;
}
.contact-band__sub {
    font-family: 'Cormorant Garamond', 'Bodoni Moda', Didot, Georgia, serif; font-variant: small-caps;
    font-size: clamp(14px, 1.25vw, 17px); line-height: 1.65; letter-spacing: 0.6px;
    color: rgba(255,255,255,0.8); max-width: 430px; margin: 0;
}
.contact-band__heading {
    font-family: 'Cormorant Garamond', 'Bodoni Moda', Didot, Georgia, serif; font-weight: 500;
    font-size: clamp(20px, 2.2vw, 31px); line-height: 1.05; letter-spacing: 0.04em;
    text-transform: uppercase; margin: 0 0 22px; color: #fff;
}
.contact-band__line {
    font-family: 'Cormorant Garamond', 'Bodoni Moda', Didot, Georgia, serif;
    font-size: clamp(22px, 2.4vw, 33px); line-height: 1.3; letter-spacing: 0.02em;
    font-variant: small-caps; margin: 0; color: rgba(255,255,255,0.92);
}
.contact-band__line a { color: #fff; text-decoration: none; transition: color 0.25s ease; }
.contact-band__line a:hover { color: #C0A062; }
.contact-band__muted { color: rgba(255,255,255,0.58); font-size: 0.72em; letter-spacing: 0.3px; }
.contact-band__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.contact-band__btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600;
    letter-spacing: 1.6px; text-transform: uppercase; text-decoration: none;
    padding: 13px 26px; background: #C0A062; color: #fff;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.contact-band__btn:hover { background: #fff; color: #14181c; }
.contact-band__btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,0.5); color: #fff; }
.contact-band__btn--ghost:hover { background: #fff; color: #14181c; border-color: #fff; }
@media (max-width: 820px) {
    .contact-band__inner { flex-direction: column; align-items: flex-start; padding: 58px 24px; gap: 30px; min-height: 0; }
    .contact-band__col--title, .contact-band__col--details { padding: 0; flex: none; width: 100%; }
    .contact-band__divider { width: 100%; height: 1px; align-self: auto; margin: 0; }
}

/* Contact band — la colonne droite émerge lentement de la barre centrale à l'entrée dans le viewport.
   Activé par JS (js/main.js) qui ajoute .js-reveal puis .in-view ; sans JS le texte reste visible. */
.contact-band.js-reveal .contact-band__col--details {
    opacity: 0;
    transform: translateX(-26px);
    clip-path: inset(0 100% 0 0);
    transition: opacity 1s ease, transform 1.5s cubic-bezier(.16,.84,.44,1), clip-path 1.5s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform, clip-path;
}
.contact-band.js-reveal.in-view .contact-band__col--details {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
}
@media (prefers-reduced-motion: reduce) {
    .contact-band.js-reveal .contact-band__col--details { opacity: 1; transform: none; clip-path: none; transition: none; }
}
