/* ========== HOME BODY OVERRIDES ========== */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* ========== NAVBAR HOME OVERRIDES ========== */
.navbar {
    transition: all 0.4s;
    box-shadow: none;
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* ========== MENU TOGGLE (home variant - position absolute) ========== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 36px;
    height: 36px;
    flex-direction: row;
    gap: 0;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1a1a1a;
    position: absolute;
    left: 7px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.menu-toggle span:nth-child(1) { top: 10px; }
.menu-toggle span:nth-child(2) { top: 17px; width: 16px; }
.menu-toggle span:nth-child(3) { top: 24px; }
.menu-toggle.active span:nth-child(1) {
    top: 17px;
    transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}
.menu-toggle.active span:nth-child(3) {
    top: 17px;
    transform: rotate(-45deg);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 100px;
    background: url('/images/hero.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26,26,26,0.55) 0%,
        rgba(26,26,26,0.4) 40%,
        rgba(26,26,26,0.65) 100%
    );
    z-index: 0;
}
.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 28px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
    font-style: italic;
    color: #A8B89A;
}
.hero-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 45px;
    line-height: 1.9;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: #7C8C6E;
    color: #fff;
}
.btn-hero-primary:hover {
    background: #8D9D7F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124,140,110,0.4);
}
.btn-hero-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-hero-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* ========== SECTIONS ========== */
.section {
    padding: 110px 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-full {
    padding: 110px 40px;
    max-width: 100%;
}
.section-header {
    text-align: center;
    margin-bottom: 75px;
}
.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #7C8C6E;
    margin-bottom: 18px;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 20px;
}
.section-desc {
    color: #bbb;
    font-size: 0.95rem;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}
.section-divider {
    width: 60px;
    height: 1px;
    background: #7C8C6E;
    margin: 0 auto 20px;
}

/* ========== STEPS / COMMENT CA MARCHE ========== */
.steps-section {
    background: #faf9f7;
    max-width: 100%;
}
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}
/* Connector line between markers */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 1px;
    background: rgba(124,140,110,0.3);
}
.step {
    text-align: center;
    position: relative;
}
.step-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #7C8C6E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s, box-shadow 0.4s;
}
.step:hover .step-marker {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(124,140,110,0.35);
}
.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.step-body {
    padding: 0 20px;
}
.step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    color: #7C8C6E;
}
.step-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.step-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}
.step-body p {
    color: #aaa;
    font-size: 0.88rem;
    line-height: 1.9;
    font-weight: 300;
}
.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border: 1.5px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ========== A PROPOS ========== */
/* ========== À PROPOS ========== */
.about-section { background: #faf9f7; }
.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-text .section-label { text-align: left; }
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}
.about-text p {
    color: #999;
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 15px;
    font-weight: 300;
}
.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.about-stat { text-align: center; flex: 1; }
.about-stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #7C8C6E;
    margin-bottom: 4px;
}
.about-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    font-weight: 400;
}
.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.about-image {
    border-radius: 16px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}

/* ========== INFOS (HORAIRES + MAP) ========== */
.infos-section { background: #fff; }
.infos-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.infos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.infos-horaires {
    background: #faf9f7;
    border-radius: 16px;
    padding: 35px;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}
.status-badge.open {
    background: rgba(46,125,50,0.08);
    color: #2e7d32;
}
.status-badge.closed {
    background: rgba(198,40,40,0.08);
    color: #c62828;
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.status-badge.open .status-dot { background: #2e7d32; }
.status-badge.closed .status-dot { background: #c62828; }
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.horaires-table {
    width: 100%;
    border-collapse: collapse;
}
.horaires-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: background 0.3s;
}
.horaires-table tr:last-child { border-bottom: none; }
.horaires-table tr:hover { background: rgba(124,140,110,0.04); }
.horaires-table tr.today { background: rgba(124,140,110,0.08); border-radius: 8px; }
.horaires-table td {
    padding: 14px 10px;
    font-size: 0.88rem;
}
.horaires-table td:first-child {
    font-weight: 500;
    color: #1a1a1a;
}
.horaires-table td:last-child {
    text-align: right;
    color: #aaa;
    font-weight: 300;
}
.horaires-table .ferme {
    color: #c0392b;
    font-weight: 500;
}
.today-marker {
    display: inline-block;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #7C8C6E;
    margin-right: 8px;
    vertical-align: middle;
}
.infos-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    color: #999;
    font-size: 0.85rem;
}
.infos-address svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #7C8C6E;
}
.infos-map {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}
.infos-map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.5s;
}
.infos-map:hover iframe { filter: grayscale(0%); }

/* ========== RESERVATION / PRICING ========== */
/* ========== NOS SERVICES ========== */
.services-section { background: #fff; }
.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
.svc-block {
    margin-bottom: 70px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}
.svc-block-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(124,140,110,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-block-icon svg {
    width: 24px;
    height: 24px;
    color: #7C8C6E;
}
.svc-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.svc-block-desc {
    font-size: 0.85rem;
    color: #999;
    font-weight: 300;
}
.svc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-card {
    background: #faf9f7;
    border-radius: 12px;
    padding: 35px 28px 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s;
    position: relative;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: rgba(124,140,110,0.2);
}
.svc-card--featured {
    border: 2px solid #7C8C6E;
    background: #fff;
}
.svc-card-badge {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    background: #7C8C6E;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 16px;
    border-radius: 20px;
}
.svc-card-type {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 16px;
}
.svc-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
    transition: color 0.3s;
}
.svc-card:hover .svc-card-price { color: #7C8C6E; }
.svc-decimal { font-size: 1.5rem; }
.svc-cur {
    font-size: 1.1rem;
    color: #7C8C6E;
    vertical-align: super;
}
.svc-card-period {
    color: #bbb;
    font-size: 0.78rem;
    font-weight: 300;
    margin-bottom: 14px;
}
.svc-card-detail {
    color: #999;
    font-size: 0.82rem;
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.6;
}
.svc-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s;
}
.svc-card-btn svg {
    width: 14px;
    height: 14px;
}
.svc-card-btn:hover {
    background: #7C8C6E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,140,110,0.3);
}
.pricing-availability {
    margin-top: 50px;
    text-align: center;
    color: #bbb;
    font-size: 0.85rem;
    font-weight: 300;
}
.pricing-availability span { color: #7C8C6E; font-weight: 500; }
.bag-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bag-counter-btn {
    width: 34px; height: 34px;
    border: 1.5px solid rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}
.bag-counter-btn:hover {
    border-color: #7C8C6E;
    color: #7C8C6E;
    background: rgba(124,140,110,0.06);
}
.bag-counter-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    min-width: 24px;
    text-align: center;
}
@media (max-width: 768px) {
    .svc-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .svc-block-header { flex-direction: column; text-align: center; }
    .services-inner { padding: 0 20px; }
}

/* ========== BOOKING MODAL ========== */
.booking-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.booking-modal-overlay.active { display: flex; }
.booking-modal {
    background: #fff;
    max-width: 480px;
    width: 100%;
    padding: 50px 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}
.modal-close:hover { color: #1a1a1a; }
.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}
.modal-subtitle {
    color: #7C8C6E;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 8px;
}
.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #1a1a1a;
    transition: border-color 0.3s;
    background: #faf9f7;
}
.form-group input:focus {
    outline: none;
    border-color: #7C8C6E;
}
.btn-full { width: 100%; text-align: center; }
.booking-error {
    background: rgba(198,40,40,0.08);
    color: #c62828;
    padding: 12px 15px;
    font-size: 0.82rem;
    margin-bottom: 15px;
    display: none;
}

/* ========== LOADING OVERLAY ========== */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 25px;
}
.loading-overlay.active { display: flex; }
.loading-spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(124,140,110,0.2);
    border-top-color: #7C8C6E;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading-overlay p {
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ========== FORM VALIDATION ========== */
.form-group input.invalid {
    border-color: #c62828;
    background: rgba(198,40,40,0.03);
}
.form-group input.valid {
    border-color: #2e7d32;
}
.form-hint {
    font-size: 0.72rem;
    color: #c62828;
    margin-top: 4px;
    display: none;
}
.form-hint.visible { display: block; }

/* ========== PARTNER SECTION (grid 2 colonnes) ========== */
.partner-section {
    background: #faf9f7;
    padding: 90px 40px;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.partner-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.partner-logo-link {
    position: relative;
    display: inline-block;
    line-height: 0;
    margin-bottom: 24px;
    transition: transform 0.25s ease;
}
.partner-logo-link:hover { transform: scale(1.04); }
.partner-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f8a4d 0%, #2f6e3c 100%);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg);
    box-shadow: 0 6px 16px rgba(47,110,60,0.4);
    border: 2px solid #fff;
    letter-spacing: -0.02em;
}
.partner-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.08);
}
.partner-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1a1a1a;
    margin: 0 0 14px;
    font-weight: 600;
}
.partner-desc {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.75;
    font-weight: 300;
    margin: 0 0 22px;
    flex: 1;
}
.partner-promo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(63,138,77,0.1);
    border-left: 3px solid #3f8a4d;
    border-radius: 0 8px 8px 0;
    margin-bottom: 22px;
    font-size: 0.85rem;
}
.partner-promo-label {
    color: #2a5e34;
    font-weight: 400;
}
.partner-promo-code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    background: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    border: 1px dashed rgba(63,138,77,0.5);
    user-select: all;
}
.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    padding-bottom: 3px;
    border-bottom: 1.5px solid #1a1a1a;
    transition: gap 0.25s ease, color 0.25s ease;
}
.partner-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}
.partner-link:hover {
    gap: 12px;
    color: #7C8C6E;
    border-bottom-color: #7C8C6E;
}
.partner-link:hover svg { transform: translateX(3px); }
@media (max-width: 760px) {
    .partner-section { padding: 60px 24px; }
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-top: 40px;
    }
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: #1a1a1a;
    text-align: center;
    padding: 110px 40px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,140,110,0.06) 0%, transparent 60%);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,140,110,0.04) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.cta-section p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto 45px;
    font-weight: 300;
    line-height: 1.9;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7C8C6E;
    color: #fff;
}
.btn-cta-primary svg { width: 18px; height: 18px; }
.btn-cta-primary:hover {
    background: #8D9D7F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124,140,110,0.3);
}
.btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-cta-ghost svg { width: 18px; height: 18px; }
.btn-cta-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateY(-2px);
}

/* ========== FLOATING CART ========== */
.cart-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    animation: cartSlideIn 0.4s ease;
}
@keyframes cartSlideIn {
    from { transform: translateY(80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cart-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
    position: relative;
}
.cart-float-btn:hover {
    background: #7C8C6E;
    transform: scale(1.08);
}
.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #7C8C6E;
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.cart-float-btn.bounce { animation: cartBounce 0.4s ease; }

/* ========== CART PANEL ========== */
.cart-panel-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
}
.cart-panel-overlay.active { display: block; }
.cart-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 420px;
    max-height: 80vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: -4px -4px 40px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2001;
}
.cart-panel-overlay.active .cart-panel { transform: translateY(0); }
.cart-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.cart-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 600;
}
.cart-panel-close {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-panel-close:hover {
    color: #1a1a1a;
    background: #faf9f7;
}
.cart-panel-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px 30px;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cart-item-icon {
    width: 42px;
    height: 42px;
    background: #faf9f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7C8C6E;
}
.cart-item-icon svg { width: 20px; height: 20px; }
.cart-item-info { flex: 1; }
.cart-item-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2px;
}
.cart-item-detail {
    font-size: 0.75rem;
    color: #999;
    font-weight: 300;
}
.cart-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7C8C6E;
    white-space: nowrap;
}
.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 6px;
    transition: all 0.3s;
    border-radius: 8px;
}
.cart-item-remove:hover {
    color: #c62828;
    background: rgba(198,40,40,0.06);
}
.cart-item-bag {
    flex-wrap: wrap;
}
.cart-item-row-top {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.cart-item-row-top .cart-item-info { flex: 1; }
.cart-item-counters {
    width: 100%;
    padding: 4px 0 0 57px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cart-panel-counter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-panel-counter-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    color: #777;
}
.cart-item-counters .cart-config-days { gap: 3px; margin-top: 0; }
.cart-item-counters .bag-counter-btn {
    width: 18px; height: 18px;
    font-size: 0.6rem;
    border-width: 1px;
}
.cart-item-counters .bag-counter-val { font-size: 0.75rem; min-width: 12px; }
.cart-panel-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.cart-panel-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.cart-panel-total span:first-child {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
}
.cart-total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #7C8C6E;
}
.cart-empty {
    text-align: center;
    padding: 40px 0;
    color: #ccc;
    font-size: 0.88rem;
}
.cart-config-days {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}
.cart-config-days .bag-counter-btn {
    width: 30px; height: 30px;
    font-size: 0.9rem;
}
.cart-config-days .bag-counter-val {
    font-size: 1.1rem;
    min-width: 20px;
}
@media (max-width: 768px) {
    .cart-panel { width: 100%; max-height: 85vh; }
    .cart-float { bottom: 20px; right: 20px; }
}

/* ========== FOOTER ========== */
footer {
    background: #111;
    padding: 70px 40px 0;
}
.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
    max-width: 280px;
    flex-shrink: 0;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.footer-logo em { color: #7C8C6E; font-style: normal; }
.footer-logo .logo-icon {
    border-color: rgba(255,255,255,0.2);
}
.footer-logo .logo-icon svg { color: rgba(255,255,255,0.5); }
.footer-desc {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    border-color: #7C8C6E;
    background: rgba(124,140,110,0.1);
}
.footer-social a svg {
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}
.footer-social a:hover svg { color: #7C8C6E; }
.footer-cols {
    display: flex;
    justify-content: space-between;
    flex: 1;
}
.footer-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 22px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 300;
    transition: color 0.3s;
}
.footer-links a:hover { color: #7C8C6E; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: #7C8C6E;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-item span {
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-item a:hover { color: #7C8C6E; }
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: rgba(255,255,255,0.2);
    font-size: 0.72rem;
    letter-spacing: 1px;
}
.footer-bottom a {
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom a:hover { color: #7C8C6E; }
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay { transition-delay: 0.15s; }

/* Stagger animation pour les cartes */
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.24s; }
.stagger-children > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .footer-cols { flex-wrap: wrap; gap: 30px; }
    .footer-brand { max-width: 100%; }
    .infos-grid { grid-template-columns: 1fr; }
    .infos-map { min-height: 350px; }
    .infos-map iframe { min-height: 350px; }
    .steps-timeline {
        gap: 0;
    }
    .steps-timeline::before {
        left: calc(16.66% + 20px);
        right: calc(16.66% + 20px);
    }
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual { order: -1; }
    .about-image { aspect-ratio: 16/9; }
    .about-image img { aspect-ratio: 16/9; }
    .hero { background-attachment: scroll; }
    .hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .about-text h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 10px 20px 20px;
        gap: 0;
        border-bottom: 2px solid #7C8C6E;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    .nav-links.active { display: flex; }
    .nav-links li {
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 0.78rem;
        letter-spacing: 1.5px;
    }
    .nav-links a::after { display: none; }
    .nav-cta {
        margin-top: 8px;
        text-align: center;
        padding: 14px 24px;
    }
    .menu-toggle { display: block; }
    .logo-icon { width: 26px; height: 26px; }
    .logo-icon svg { width: 12px; height: 12px; }
    .hero {
        padding: 120px 20px 80px;
        min-height: 85vh;
        background-attachment: scroll;
    }
    .hero h1 { font-size: 2.3rem; }
    .hero h1 br { display: none; }
    .hero-text { font-size: 0.95rem; }
    .hero-scroll { display: none; }
    .section, .section-full { padding: 70px 20px; }
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .steps-timeline::before {
        display: none;
    }
    .booking-modal { padding: 35px 25px; max-height: 95vh; }
    .booking-modal-overlay { padding: 10px; }
    .modal-title { font-size: 1.3rem; }
    .step-marker { width: 48px; height: 48px; margin-bottom: 20px; }
    .step-num { font-size: 1rem; }
    .cta-section { padding: 70px 20px; }
    .cta-section h2 { font-size: 2rem; }
    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .footer-brand { max-width: 100%; }
    .footer-social { justify-content: center; }
    .footer-cols {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .footer-links { align-items: center; }
    .footer-contact-item { justify-content: center; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-bottom-links { justify-content: center; }
    .about-stats { gap: 20px; }
    .about-stat-num { font-size: 1.3rem; }
    .infos-inner { padding: 0 20px; }
    .cta-section h2 br { display: none; }
}
