
        /* Enhanced Restaurant Reservation CSS */

        /* Reset and Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: #f7f2e9;

            color: #4a4a4a;
            line-height: 1.6;
            transition: background-color 0.5s ease;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', Arial, sans-serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Header Styles */
        header {
            background-color: rgba(10, 10, 10, 0.85);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            padding: 40px 0;
            position: relative;
            border-bottom: 5px solid #c8a86b;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        .logo-container {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle at center, #555, #333);
            border: 4px solid #c8a86b;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .logo-container:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .logo-container img {
            max-width: 160px;
            transition: filter 0.3s ease;
        }

        .logo-container:hover img {
            filter: brightness(1.1);
        }

        /* Main Content Styles */
        .main-content {
            padding: 60px 0;
            position: relative;
            
        }

        /* Language Selector */
        

        .language-selector img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-left: 12px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .language-selector img:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }

        /* Card Styles */
        .card {
            margin-bottom: 30px;
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: white;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
        }

        .card-header {
            background: #813e26;
            color: white;
            font-weight: 500;
            padding: 15px 20px;
            border-bottom: none;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .card-header i {
            margin-right: 10px;
            font-size: 1.1em;
        }

        .card-body {
            padding: 25px 20px;
        }

        /* Info Card Styles */
        .hours {
            text-align: center;
            font-weight: bold;
            margin: 20px 0;
            padding: 15px;
            background-color: #f9f6f1;
            border-radius: 6px;
            border-left: 4px solid #c8a86b;
        }

        .contact {
            text-align: center;
            color: #3d85c6;
            font-weight: 500;
            padding: 10px;
            margin-top: 15px;
            border-top: 1px dashed #e0e0e0;
        }

        /* Rules Card Styles */
        .rule-item {
            display: flex;
            align-items: flex-start;
            margin: 22px 0;
            padding-bottom: 22px;
            border-bottom: 1px solid #f0f0f0;
        }

        .rule-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .icon-container {
            width: 46px;
            height: 46px;
            text-align: center;
            color: #813e26;
            font-size: 20px;
            margin-right: 15px;
            background-color: #fdf2df;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Form Styles */
        .input-group {
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border-radius: 6px;
           
        }

        .input-group-text {
            background-color: #813e26;
            color: white;
            border: none;
            padding: 0 15px;
        }

        .form-control {
            border: none;
            padding: 12px 15px;
            font-size: 16px;
            background-color: #fff;
            transition: background-color 0.2s ease;
        }

        .form-control:focus {
            background-color: #f9f9f9;
            box-shadow: none;
        }

        select.form-control {
            cursor: pointer;
            padding-right: 30px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23813e26" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
            background-repeat: no-repeat;
            background-position: right 10px center;
            appearance: none;
        }

        /* Time Slot Styles */
        .time-slots-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin: 20px 0;
        }

        .form-check-inline.time-slot {
            background-color: #f0f0f0;
            padding: 12px 20px;
            border-radius: 30px;
            margin: 5px;
            min-width: 100px;
            text-align: center;
            display: flex;
            justify-content: center;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.25s ease;
            cursor: pointer;
        }

        .form-check-inline.time-slot:hover:not(.disabled) {
            background-color: #e0e0e0;
            transform: translateY(-2px);
        }

        .form-check-input {
            display: none;
        }

        .form-check-input:checked+.form-check-label {
            color: white;
            font-weight: 500;
        }

        .form-check-inline.time-slot:has(.form-check-input:checked) {
            background-color: #813e26;
            border-color: #c8a86b;
            box-shadow: 0 5px 15px#813e26;
        }

        .form-check-inline.time-slot.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background-color: #e9e9e9;
        }

        /* Button Styles */
        .next-button {
            background: #813e26;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            margin-top: 25px;
            font-weight: 500;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(112, 53, 36, 0.2);
            transition: all 0.3s ease;
        }

        .next-button:hover {
            background: #813e26;
            box-shadow: 0 7px 20px#813e26;
            transform: translateY(-2px);
        }

        .next-button:active {
            transform: translateY(1px);
            box-shadow: 0 3px 10px rgba(112, 53, 36, 0.2);
        }

        #suivant_btn.active {
            opacity: 1;
            cursor: pointer;
        }

        #suivant_btn.active:hover {
            background: #813e26;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px #813e26;
        }

        /* Footer Styles */
        .footer-dark {
            background-color: rgba(10, 10, 10, 0.85);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            color: #e0e0e0;
            padding: 50px 0 0 0;
            border-top: 5px solid #c8a86b;
        }

        .footer-info {
            padding: 0 30px;
        }

        .footer-info h6 {
            margin-bottom: 20px;
            font-weight: normal;
            position: relative;
            padding-left: 22px;
            transition: color 0.2s ease;
        }

        .footer-info h6:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #c8a86b;
            font-size: 1.5em;
            line-height: 0.7;
        }

        .footer-info h6:hover {
            color: #c8a86b;
        }

        .footer-copyright {
            background-color: #000;
            padding: 20px 0;
            margin-top: 40px;
        }

        .footer-copyright small {
            opacity: 0.7;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .logo-container {
                width: 150px;
                height: 150px;
            }

            .logo-container img {
                max-width: 120px;
            }

            .card-header {
                padding: 12px 15px;
            }

            .rule-item {
                margin: 15px 0;
                padding-bottom: 15px;
            }

            .icon-container {
                width: 38px;
                height: 38px;
                font-size: 16px;
                margin-right: 10px;
            }

            .form-check-inline.time-slot {
                min-width: 80px;
                padding: 10px 15px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card {
            animation: fadeIn 0.5s ease-out;
        }

        .card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .card:nth-child(3) {
            animation-delay: 0.4s;
        }

        /* Card Footer Styles */
        .card-footer {
            background-color: #f9f6f1;
            border-top: 1px solid #f0f0f0;
            padding: 20px;
        }

        .card-footer h5 {
            color: #813e26;
            margin-bottom: 15px;
            text-align: center;
            font-weight: 600;
        }

        /* Alert Styles */
        .alert {
            border-radius: 8px;
            padding: 15px 20px;
            margin: 20px 0;
            border: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 5px solid #f5c6cb;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #c8a86b;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #b3936d;
        }



        .civilite {
            border: 1px solid #813e26;
            color: #813e26;

            transition: all 0.3s ease-in-out;
        }


        .btn-check:checked+.civilite {
            background-color: #813e26;
            color: white;
        }

        .low-opacity {
            opacity: 0.5;
            transition: opacity 0.3s ease-in-out;
        }

        .low-opacity:hover {
            opacity: 1;
        }

        /* stayle persons nbr */
        .person-selector {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: #813e26;

            padding: 10px 20px;
            border-radius: 10px;
            width: fit-content;
            margin: auto;
        }

        .person-selector button {
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: #813e26;
            padding: 5px 15px;
        }

        .person-selector button:hover {
            color: #000;
        }

        .person-selector span {
            margin: 0 15px;
            width: 50px;
            text-align: center;
        }

        input,
        textarea {
            border-bottom: 1px solid #813e26 !important
        }

        .client {
            margin-top: .5rem !important;
        }