@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
    --primary-color: #ec7914;
    --secondary-color: #B08661;
    --tertiary-color: #9DAD77;
    --quaternary-color: #3F4A26;
    --quinary-color: #885D38;
    --senary-text-color: #1A202C;
    --bg-color: #F7F7F7;
    --hover_color: #d3d3d3;
    --header-height: calc(40px + 72px);

    /* Palette de couleurs orange */
    --sc-orange-600: #ff6a00;
    --sc-orange-500: #ff7a18;
    --sc-orange-400: #ff9a3d;
    --sc-ink: #0f172a;
    --sc-muted: rgba(15, 23, 42, 0.70);
    --sc-card-border: rgba(15, 23, 42, 0.08);

    --t-bg-1: #0b1426;
    --t-bg-2: #0a0f1f;
    --t-card: rgba(255, 255, 255, 0.06);
    --t-border: rgba(255, 255, 255, 0.10);
    --t-text: rgba(255, 255, 255, 0.92);
    --t-muted: rgba(255, 255, 255, 0.70);

    /* orange palette */
    --t-orange-600: #ff6a00;
    --t-orange-500: #ff7a18;
    --t-orange-400: #ff9a3d;
    --t-amber-500: #ffb000;

    /* light background requested */
    --d-bg: linear-gradient(rgb(244, 241, 236) 0%, rgb(255, 255, 255) 100%);

    /* palette orange */
    --d-orange-600: #ff6a00;
    --d-orange-500: #ff7a18;
    --d-orange-400: #ff9a3d;
    --d-amber-500: #ffb000;

    --d-ink: #0f172a;
    --d-muted: rgba(15, 23, 42, 0.72);
    --d-border: rgba(15, 23, 42, 0.10);
    --d-card: rgba(255, 255, 255, 0.88);

    --w-bg: linear-gradient(rgb(244, 241, 236) 0%, rgb(255, 255, 255) 100%);

    --w-orange-600: #ff6a00;
    --w-orange-500: #ff7a18;
    --w-orange-400: #ff9a3d;
    --w-amber-500: #ffb000;

    --w-ink: #0f172a;
    --w-muted: rgba(15, 23, 42, 0.72);
    --w-border: rgba(15, 23, 42, 0.10);
}

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

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

.sama-banner {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(135deg, #fff8f3 0%, #ffffff 50%, #fff4ec 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 60px;
    margin-bottom: 50px;
    align-items: center;
    min-height: 480px;
    border: 1px solid rgba(255, 106, 0, 0.10);
}

.sama-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 105% 50%, rgba(255, 106, 0, 0.09) 0%, transparent 65%),
        radial-gradient(ellipse 35% 50% at -5% 80%, rgba(255, 176, 0, 0.07) 0%, transparent 55%);
    pointer-events: none;
}

.sama-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

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

.sama-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #cc5500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.sama-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff6a00;
    animation: samaPulse 2s infinite;
}

@keyframes samaPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.sama-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.sama-title-accent {
    display: block;
    background: linear-gradient(90deg, #ff6a00, #ffb000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sama-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.60);
    font-weight: 400;
    margin: 0 0 36px;
    max-width: 420px;
}

.sama-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sama-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6a00, #ff9a3d);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.28);
}

.sama-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 106, 0, 0.40);
    color: #fff;
    text-decoration: none;
}

.sama-btn-secondary {
    color: rgba(15, 23, 42, 0.55);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.sama-btn-secondary:hover {
    color: #ff6a00;
}

.sama-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.sama-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.sama-stat-label {
    font-size: 11px;
    color: rgba(15, 23, 42, 0.40);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

.sama-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sama-card-mockup {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.sama-phone-frame {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10), 0 4px 16px rgba(255, 106, 0, 0.06);
    position: relative;
}

.sama-phone-frame::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.12), transparent 70%);
    pointer-events: none;
}

.sama-card-inner {
    background: linear-gradient(135deg, #fff8f3, #ffffff);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 106, 0, 0.12);
}

.sama-card-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.sama-card-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6a00, #ffb000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.sama-card-logo-name {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.sama-card-name {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.sama-card-role {
    font-size: 11px;
    color: #ff6a00;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.sama-card-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.sama-card-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(255, 106, 0, 0.07);
    border: 1px solid rgba(255, 106, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.sama-card-info {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.55);
}

.sama-card-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sama-nfc-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(15, 23, 42, 0.40);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sama-nfc-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 106, 0, 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #ff6a00;
}

.sama-qr-mini {
    width: 34px;
    height: 34px;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 6px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5px;
    padding: 4px;
}

.sama-qr-px {
    background: rgba(15, 23, 42, 0.55);
    border-radius: 1px;
}

.sama-qr-px.off {
    background: transparent;
}

.sama-float-tag {
    position: absolute;
    background: #fff;
    border: 1px solid rgba(255, 106, 0, 0.20);
    border-radius: 10px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 500;
    color: #cc5500;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    animation: samaFloat 3s ease-in-out infinite;
}

.sama-float-tag.tag1 {
    top: -10px;
    right: -22px;
}

.sama-float-tag.tag2 {
    bottom: 20px;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes samaFloat {

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

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

@media (max-width: 680px) {
    .sama-banner {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }

    .sama-float-tag {
        display: none;
    }
}

/* Banner Styles */
.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 3%;
    background: linear-gradient(180deg, #F4F1EC 0%, #FFFFFF 100%);
}

.banner-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.banner-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.banner-title span {
    color: var(--primary-color);
    display: block;
}

.btndescover {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
}

.banner-features {
    list-style: none;
    margin-top: 2rem;
}

.banner-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.banner-features i {
    color: var(--primary-color);
}

.banner-image {
    flex: 1;
    text-align: right;
    /* position: relative; */
    /* background: url('/images/illustrations/fond.svg') no-repeat center center; */
    /* background-size: contain; */
    /* display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0; */
}

.banner-carousel {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.banner-carousel .carousel-item {
    padding: 0;
}

.banner-carousel img {
    object-fit: cover;
}

.banner-carousel-indicators {
    margin-bottom: 0.5rem;
}

/* avantage styles  */
.sous-titre {
    font-weight: bold;
}

.titre {
    color: var(--primary-color);
}

.gridPrincipal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.card-title {
    color: #000 !important;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

.card-text {
    color: #000 !important;
    text-align: justify;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators button {
    box-sizing: content-box;
    flex: 0 1 auto;
    padding: 0;
    margin: 0 6px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.6s ease, background-color 0.6s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicators button:hover {
    opacity: 0.75;
    background-color: var(--primary-color);
}

/* Restaurant Section */
.restaurant {
    background-color: var(--bg-color);
    padding: 4rem 0;
}

.contenuRestau {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.descResto {
    text-align: center;
}

.btnaction {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Services Section */
.services-section {
    padding: 20px;
}

.carousel-container {
    margin: 0 auto;
    position: relative;
}

.carousel {
    position: relative;
}

.carousel-item {
    padding: 1rem;
}

.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.service-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.textCarteVirtuelle,
.textCarteMenu {
    text-align: left;
}

.sous-titre {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.para {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.imageCarteVirtuelle,
.imageCarteMenu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imageCarteVirtuelle img,
.imageCarteMenu img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

.services-section .carousel-control-prev,
.services-section .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--quinary-color);
    border: thin solid var(--quinary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 100;
}

.services-section .carousel-control-prev {
    left: -60px;
}

.services-section .carousel-control-next {
    right: -60px;
}

.services-section .carousel-control-prev:hover,
.services-section .carousel-control-next:hover {
    background-color: var(--secondary-color);
    opacity: 1;
}

.services-section .carousel-control-prev-icon,
.services-section .carousel-control-next-icon {
    width: 25px;
    height: 25px;
    background-size: 100% 100%;
}

.cardPrice {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.cardItemPrice {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    position: relative;
    min-height: 620px;
}

.cardItemPrice:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 15px;
    text-align: center;
    flex: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: white;
}

.card-subtitle {
    font-size: 12px;
    margin: 0 0 15px 0;
    opacity: 0.9;
    color: white;
}

.card-price {
    margin-bottom: 10px;
}

.price-original {
    display: block;
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
}

.price-current {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 3px 0;
    font-size: 14px;
    color: white;
}

.card-features li svg {
    flex-shrink: 0;
}

.btn-choose {
    width: calc(100% - 48px);
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-choose:hover {
    background-color: white;
    color: #C17D2A;
}

/* Variantes de couleurs pour différents packs */
.cardItemPrice1 {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--quinary-color) 100%);
    height: 630px;
}

.cardItemPrice2 {
    background: linear-gradient(180deg, var(--quaternary-color) 0%, var(--tertiary-color) 100%);
    height: 630px;
}

.cardItemPrice3 {
    background: linear-gradient(180deg, var(--quinary-color) 0%, var(--secondary-color) 100%);
    height: 630px;
}

.cardItemPrice4 {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    height: 630px;
}

/* faq  */
.faq {
    background-color: var(--bg-color);
    padding: 40px 12px;
}

/* contact  */
.contact {
    padding: 2rem 0;
}

.contenuContact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Deux colonnes sur les grands écrans */
    gap: 2rem;
    align-items: center;
}

.imgContact img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.containerForm {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.containerForm h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.containerForm p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btnsave {
    background-color: var(--primary-color) !important;
    border: thin solid var(--bg-color) !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btnsave:hover {
    background-color: var(--quaternary-color) !important;
}

.btnrestau {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #F4F1EC 0%, rgba(0, 0, 0, 0.966) 100%);
    padding: 3rem 2rem 1.5rem;
    max-width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    border-top: 2px solid var(--primary-color);
    border-bottom: thin solid var(--secondary-color);
    padding: 4rem 2rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.contact-item i {
    color: #FF6B35;
    font-size: 1.2rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-social span {
    color: #fff;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #FF6B35;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #FF8C35;
    transform: translateY(-2px);
}

/* Navigation principale */
.footer-middle {
    padding: 1.5rem 2rem;
    border-bottom: thin solid rgba(255, 255, 255, 0.15);
}

.footer-middle .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.footer-middle .footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-middle .footer-nav a:hover {
    color: #FF6B35;
}

/* Bas de page : liens légaux + copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.25rem;
}

.footer-legal ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

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

.footer-legal a:hover {
    color: #FF6B35;
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        padding: 2rem 1rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-social {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-middle .footer-nav ul {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-legal ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .footer-legal-sep {
        display: none;
    }
}


/* modal css  */
/* .modal-title{
    color: var(--quaternary-color);
} */

/* Responsive */
@media (max-width: 1200px) {
    .carousel-container {
        padding: 2rem 3rem;
    }

    .services-section .carousel-control-prev {
        left: -15px;
    }

    .services-section .carousel-control-next {
        right: -15px;
    }
}

@media (max-width: 992px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-content,
    .banner-image {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    /* .banner-image img {
        max-width: 80%;
        margin: 2rem 0;
    } */

    .banner-carousel {
        margin: 0 auto;
    }

    .contenuRestau {
        grid-template-columns: 1fr !important;
    }

    .descResto {
        order: 2;
    }

    .service-item {
        flex-direction: column;
    }

    /* .cardPrice {
        grid-template-columns: 1fr;
    } */

    .gridPrincipal {
        grid-template-columns: 1fr;
    }

    .contenuContact {
        grid-template-columns: 1fr;
        /* Une seule colonne sur les petits écrans */
        gap: 1rem;
    }

    .imgContact {
        text-align: center;
        /* Centre l'image */
    }

    .containerForm {
        padding: 1rem;
    }

    .containerForm h2 {
        font-size: 1.25rem;
    }

    .containerForm p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        width: 100%;
        padding: 0.75rem;
    }

    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .textCarteVirtuelle,
    .textCarteMenu {
        text-align: center;
        order: 2;
    }

    .imageCarteVirtuelle,
    .imageCarteMenu {
        order: 1;
    }

    .sous-titre {
        font-size: 1.5rem;
    }

    .para {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: -10px;
    }

    .carousel-control-next {
        right: -10px;
    }

    .avantage .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }

    .section-spacing {
        margin-bottom: 3rem;
        padding: 8rem 0.5rem;
    }

    .contenuRestau {
        grid-template-columns: 1fr;
    }

    .descResto {
        order: 2;
    }

    .descResto .imgResto img,
    .imageresto img {
        max-width: 100%;
        height: auto;
    }

    .responsive-grid {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .service-item {
        flex-direction: column;
    }

    /* .cardPrice {
        grid-template-columns: 1fr;
    } */

    .gridPrincipal {
        grid-template-columns: 1fr;
    }

    .contenuContact {
        grid-template-columns: 1fr;
    }

    .social-links {
        margin: 2rem 0;
    }

    .carousel-container {
        padding: 1rem 2rem;
    }

    .services-section .carousel-control-prev {
        left: 5px;
    }

    .services-section .carousel-control-next {
        right: 5px;
    }
}

@media (max-width: 576px) {
    .carousel-container {
        padding: 1rem;
    }

    .carousel-item {
        padding: 0.5rem;
    }

    .responsive-grid {
        min-height: 300px;
    }

    .imageCarteVirtuelle img,
    .imageCarteMenu img {
        max-height: 250px;
    }

    .services-section .carousel-control-prev,
    .services-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .services-section .carousel-control-prev-icon,
    .services-section .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

/* Supprimer la couleur bleue par défaut */
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

/* Enlever le fond bleu lorsque l'accordion est actif/ouvert */
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--secondary-color);
}

#progress {
    background-color: white;
    position: fixed;
    bottom: 10px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 4;
}

#progressValue {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--quinary-color) 100%);
    display: grid;
    place-items: center;
    font-size: 35px;
    color: white !important;
    font-weight: bold;

}

/* Background demandé */
.sc-benefits {
    background: linear-gradient(rgb(244, 241, 236) 0%, rgb(255, 255, 255) 100%);
}

.sc-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--sc-ink);
    font-size: 1rem;
}

.sc-subtitle {
    color: var(--sc-muted);
    font-size: 0.5rem;
}

.sc-card {
    background: #fff;
    border: 1px solid var(--sc-card-border);
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.sc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.sc-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: radial-gradient(120% 120% at 20% 20%, var(--sc-orange-400), var(--sc-orange-600));
    box-shadow: 0 12px 28px rgba(255, 106, 0, 0.25);
}

.sc-card-title {
    font-weight: 800;
    color: var(--sc-ink);
    font-size: 1rem;
    margin-bottom: 12px;
}

.sc-card-text {
    color: var(--sc-muted);
    font-size: 0.8rem;
    line-height: 1.75;
    margin: 0;
}

.sc-divider {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffb000 0%, var(--sc-orange-500) 45%, #ff2a2a 100%);
    opacity: 0.9;
}

.sc-note {
    color: rgba(15, 23, 42, 0.65);
    text-align: center;
    line-height: 1.7;
    font-size: 0.8rem;
}

/* Optionnel: meilleur rendu mobile */
@media (max-width: 575.98px) {
    .sc-card {
        padding: 28px 22px;
    }
}

.tech-section {
    background: radial-gradient(1200px 600px at 10% 0%, rgba(255, 122, 24, 0.18), transparent 55%),
        linear-gradient(180deg, var(--t-bg-1), var(--t-bg-2));
    overflow: hidden;
}

.tech-kicker-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--t-orange-400), var(--t-orange-600));
    box-shadow: 0 14px 30px rgba(255, 106, 0, 0.25);
}

.tech-title {
    color: #fff;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-style: italic;
    font-size: clamp(1.35rem, 2vw, 2.05rem);
}

.tech-lead {
    color: var(--t-muted);
    max-width: 52ch;
    line-height: 1.75;
    font-size: 1.02rem;
}

.tech-card {
    background: var(--t-card);
    border: 1px solid var(--t-border);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 24, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.tech-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #0b1426;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.95), rgba(255, 176, 0, 0.95));
}

/* petites variations d’accent */
.icon-compat {
    background: linear-gradient(135deg, rgba(255, 154, 61, 0.95), rgba(255, 122, 24, 0.95));
}

.icon-ai {
    background: linear-gradient(135deg, rgba(255, 176, 0, 0.95), rgba(255, 106, 0, 0.95));
}

.icon-mat {
    background: linear-gradient(135deg, rgba(255, 122, 24, 0.95), rgba(255, 154, 61, 0.95));
}

.icon-sec {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.95), rgba(255, 122, 24, 0.95));
}

.tech-card-title {
    color: var(--t-text);
    font-weight: 800;
    margin: 0 0 6px 0;
    font-size: 1.05rem;
}

.tech-card-text {
    color: var(--t-muted);
    margin: 0;
    line-height: 1.65;
    font-size: .95rem;
}

.tech-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-img {
    position: relative;
    z-index: 3;
    border-radius: 22px;
    max-height: 420px;
    object-fit: cover;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.tech-glow {
    position: absolute;
    inset: -40px -40px -40px -40px;
    z-index: 1;
    background: radial-gradient(500px 320px at 65% 45%, rgba(255, 122, 24, 0.25), transparent 60%),
        radial-gradient(420px 260px at 40% 70%, rgba(255, 176, 0, 0.20), transparent 62%);
    filter: blur(2px);
}

.tech-curve {
    position: absolute;
    z-index: 2;
    width: 560px;
    height: 560px;
    border-radius: 999px;
    border: 14px solid rgba(255, 176, 0, 0.95);
    border-left-color: transparent;
    border-bottom-color: rgba(255, 122, 24, 0.95);
    transform: rotate(18deg);
    right: -210px;
    top: -70px;
    box-shadow: 0 30px 90px rgba(255, 122, 24, 0.08);
}

@media (max-width: 991.98px) {
    .tech-curve {
        right: -260px;
        top: -140px;
    }

    .tech-img {
        max-height: 360px;
    }
}

.dash-section {
    background: var(--w-bg);
    overflow: hidden;
}

.dash-kicker-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--d-orange-400), var(--d-orange-600));
    box-shadow: 0 14px 30px rgba(255, 106, 0, 0.22);
}

.dash-title {
    color: var(--d-ink);
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-style: italic;
    font-size: clamp(1.35rem, 2vw, 2.05rem);
}

.dash-lead {
    color: var(--d-muted);
    max-width: 70ch;
    line-height: 1.75;
    font-size: 1.02rem;
}

/* Visual */
.dash-visual {
    position: relative;
    border-radius: 22px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--d-border);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
}

.dash-img {
    border-radius: 18px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.dash-glow {
    position: absolute;
    inset: -60px -60px -60px -60px;
    z-index: -1;
    background: radial-gradient(520px 260px at 30% 30%, rgba(255, 122, 24, 0.18), transparent 60%),
        radial-gradient(520px 260px at 60% 70%, rgba(255, 176, 0, 0.14), transparent 62%);
}

.dash-bar {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 55%;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--d-amber-500), var(--d-orange-500), #ff2a2a);
    opacity: 0.95;
    filter: blur(0.1px);
}

/* Features */
.dash-features {
    position: relative;
    padding-left: 10px;
}

.dash-divider {
    position: absolute;
    left: -10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 122, 24, 0.15), rgba(255, 106, 0, 0.45), rgba(255, 122, 24, 0.15));
    border-radius: 99px;
}

.dash-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
}

.dash-feature+.dash-feature {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dash-badge {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--d-ink);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    flex: 0 0 auto;
}

/* icons accents (subtle) */
.dash-feature:nth-child(1) .dash-badge {
    color: var(--d-ink);
}

.dash-feature:nth-child(2) .dash-badge {
    color: var(--d-orange-600);
}

.dash-feature:nth-child(3) .dash-badge {
    color: #0ea5e9;
}

/* blue accent like your screenshot */
.dash-feature:nth-child(4) .dash-badge {
    color: #ef4444;
}

/* red accent */

.dash-feature-title {
    margin: 0;
    color: var(--d-ink);
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

.dash-feature-text {
    margin: 6px 0 0 0;
    color: var(--d-muted);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 52ch;
}

@media (max-width: 991.98px) {
    .dash-features {
        padding-left: 0;
    }

    .dash-feature {
        padding: 14px 0;
    }

    .dash-divider {
        display: none;
    }
}

.wear-section {
    background: var(--w-bg);
    overflow: hidden;
}

.wear-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--w-ink);
    font-size: 1.2rem;
    line-height: 1.05;
}

.wear-lead {
    color: var(--w-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    max-width: 70ch;
}

.wear-points {
    display: grid;
    gap: 18px;
    margin-top: 10px;
}

.wear-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.70);
}

.wear-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    margin-top: 6px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--w-amber-500), var(--w-orange-600));
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.22);
}

.wear-point-title {
    margin: 0;
    font-weight: 900;
    color: var(--w-ink);
    font-size: 1.05rem;
}

.wear-point-text {
    margin: 6px 0 0 0;
    color: var(--w-muted);
    line-height: 1.7;
    font-size: .98rem;
    max-width: 60ch;
}

/* Buttons */
.btn-wear-primary {
    background: linear-gradient(135deg, var(--w-orange-500), var(--w-orange-600));
    color: #fff;
    border: 0;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(255, 106, 0, 0.22);
}

.btn-wear-primary:hover {
    color: #fff;
    filter: brightness(0.98);
}

.btn-wear-ghost {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--w-border);
    color: var(--w-ink);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
}

.btn-wear-ghost:hover {
    background: #fff;
    color: var(--w-ink);
}

.wear-note {
    color: rgba(15, 23, 42, 0.58);
    font-size: .95rem;
}

/* Visual */
.wear-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 360px;
}

.wear-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.12);
    object-fit: cover;
}

.wear-glow {
    position: absolute;
    inset: -60px -60px -60px -60px;
    z-index: 0;
    background:
        radial-gradient(520px 300px at 70% 40%, rgba(255, 122, 24, 0.18), transparent 60%),
        radial-gradient(520px 280px at 30% 70%, rgba(255, 176, 0, 0.14), transparent 62%);
}

.wear-ring {
    position: absolute;
    z-index: 1;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    border: 14px solid rgba(255, 176, 0, 0.85);
    border-left-color: transparent;
    border-bottom-color: rgba(255, 122, 24, 0.85);
    transform: rotate(18deg);
    right: -220px;
    top: -100px;
    opacity: .8;
}

@media (max-width: 991.98px) {
    .wear-visual {
        min-height: 280px;
    }

    .wear-ring {
        right: -280px;
        top: -160px;
    }
}