
    :root {
    --white: #fff;
    --black: #000;
    --muted-text-color: #5085a5;
    --bg-color-rgb-2: "80, 133, 165";
    --heading-color: #303030;
    --heading-color-rgb : "49, 112, 142";
    --primary-color: #31708e; /* Button color */
    --background-color: #31708e;
    --text-color: #5a6064;
    --primary-font: 'Gill Sans'; /* corps textes : montserat, poppins, .... */
    --secondary-font: 'Playfair Display';  /* titres.... */
    }

    /* Reset spacing */
    body,
    html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--primary-font), sans-serif;
    background-color: var(--background-color);
    color: var(--heading-color);
    }

    h1,
    h2,
    h3,
    .hero-content h1,
    .about-heading,
    .cabinet-heading {
    font-family: var(--secondary-font), serif;
    }

    .section-padding {
    padding: 100px 0;
    }

    /* Navbar */
    .navbar {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 1rem;
    padding-bottom: 1rem;
    }
    .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    justify-content: center;
    }

    .navbar-brand {
    margin: 0 !important;
    }

    .navbar-brand img {
    max-height: 60px;
    }
    .navbar-toggler {
    border-color: var(--bg-color-rgb-2);
    }
    .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-social {
    justify-content: end;
    }

    /* Social Icons in Navbar */
    .navbar-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
    }
    .navbar-social a:hover {
    color: var(--background-color);
    }

    #nav-mobile {
    display: flex;
    justify-content: center;
    }

    #nav-desk {
    width: 154px;
    }

    /* Hero Section */
    .hero {
    background: url("../image/environnement-juridique-photorealiste.jpg") no-repeat center center/cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    }

    .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    }

    .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    }

    .hero h1 {
    font-family: var(--secondary-font), serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    }

    .hero p {
    font-size: 1.2rem;
    margin-top: 15px;
    opacity: 0.9;
    }

    .hero .btn {
    margin: 10px;
    margin-top: 20px;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--white);
    background-color: var(--heading-color-rgb);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    transition: all 0.3s ease;
    }

    .hero .btn:hover {
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    }

    /* Articles Section */
.articles-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title h2 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
      color: var(--white);
  }
  
  .section-title p {
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0.5;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .article-card {
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    height: 100%;
  }
  
  .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .article-card .card-body {
    padding: 1.75rem;
  }
  
  .article-card .meta-info {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.5;
    margin-bottom: 0.75rem;
  }
  
  .article-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.4;
  }
  
  .article-card .card-title a {
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s ease;
  }
  
  .hero-about-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    /* Animation */
    /* background-color: #f5f0e9; */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  .hero-about-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
    /* tp04_main01_aboutit */

    .about-us-section {
    background-color: var(--background-color);
    padding: 100px 0;
    overflow: hidden;
    }

    /* --- Image Wrapper and Decorative Blobs --- */
    .about-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    /* --- Animation --- */
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .about-image-wrapper .profile-image {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    object-position: top;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    }
    .about-image-wrapper::before,
    .about-image-wrapper::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
    }
    .about-image-wrapper::before {
    width: 420px;
    height: 420px;
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    }
    .about-image-wrapper::after {
    width: 380px;
    height: 380px;
    border-radius: 50% 45% 55% 50% / 45% 55% 40% 60%;
    transform: rotate(45deg);
    }

    /* --- Text Content Styling --- */
    .about-content {
    /* --- Animation --- */
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s; /* 0.2s delay for staggered effect */
    }
    .about-content .subtitle {
    font-family: var(--primary-font), sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-text-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    }
    .about-content .about-heading {
    font-family: var(--secondary-font), serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    }
    .about-content .about-para {
    font-family: var(--primary-font), sans-serif;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    }
    .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--heading-color);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--primary-font), sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .about-btn:hover {
    background-color: #211c18;
    transform: translateY(-3px);
    }

    /* Class added by JavaScript when section is visible */
    .about-us-section.is-visible .about-image-wrapper,
    .about-us-section.is-visible .about-content {
    opacity: 1;
    transform: translateX(0);
    }/* tp04_main02_aboutt */

        .cabinet-section-modern {
        /* The new warm, creamy beige radial gradient */
        background: radial-gradient(
            circle at 10% 20%,
            rgb(244, 241, 238) 0%,
            rgb(236, 226, 219) 90.1%
        );
        padding: 120px 0;
        overflow: hidden;
        position: relative;
        }

        /* --- Content Styling --- */
        .cabinet-content {
        text-align: center;
        /* Animation for fade-in on scroll */
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* Class added by JavaScript when section is visible */
        .cabinet-content.is-visible {
        opacity: 1;
        transform: translateY(0);
        }

        .cabinet-heading {
        font-family: var(--secondary-font), serif;
        font-size: clamp(2.2rem, 5vw, 3rem);
        margin-bottom: 1.5rem;
        color: var(--heading-color); /* Changed to dark brown */
        font-weight: 700;
        }

        .cabinet-para {
        font-family: var(--primary-font), sans-serif;
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        color: var(--text-color); /* Changed to a softer brown */
        }
        /* tp04_main16_alligtb */

    #first-menu {
    background-color: var(--background-color);
    }
    #second-menu {
    padding-top: 100px;
    }
    .menu-display-section {
    background-color: var(--background-color); /* Fond blanc cass� doux */
    padding: 100px 0;
    overflow: hidden;
    }
    /* Ajustement pour la deuxi�me section pour �viter un double padding */
    .menu-display-section + .menu-display-section {
    padding-top: 0;
    }

    /* --- La Carte de Menu --- */
    .menu-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .menu-display-section.is-visible .menu-card {
    opacity: 1;
    transform: translateY(0);
    }

    /* --- Contenu Texte --- */
    .menu-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    }
    .menu-subtitle {
    font-family: var(--primary-font), sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    }
    .menu-heading {
    font-family: var(--secondary-font), serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    }
    .menu-para {
    font-family: var(--primary-font), sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    flex-grow: 1; /* Pushes the footer to the bottom */
    }

    /* --- Pied de Carte (Auteur/Boutons) --- */
    .menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0ebe5;
    }
    .menu-availability {
    font-family: var(--primary-font), sans-serif;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.9rem;
    }
    .menu-availability span {
    color: var(--primary-color);
    font-size: 0.85rem;
    }
    .menu-nav-arrows {
    display: flex;
    gap: 10px;
    }
    .arrow-btn {
    padding: 0 20px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid var(--background-color);
    background-color: var(--white);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--primary-font), sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }
    .arrow-btn:hover,
    .arrow-btn.active {
    background-color: var(--heading-color);
    color: var(--white);
    border-color: var(--heading-color);
    transform: scale(1.05);
    }

    /* --- Conteneur d'Image --- */
    .menu-image-wrapper {
    width: 100%;
    height: 100%;
    padding: 20px;
    }
    .menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    min-height: 350px;
    }
    
    /* tp04_main04_allt1 */

    .panel-section-v4 {
    background-color: var(--background-color); /* Fond blanc cass� doux */
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    }

    /* --- En-t�te de Section --- */
    .panel-header-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }
    .panel-heading {
    font-family: var(--secondary-font), serif;
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    }
    .panel-heading .ampersand {
    font-style: italic;
    font-size: 0.9em;
    }

    /* --- Colonnes de Contenu --- */
    .panel-col {
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    }
    /* Staggered animation delay for each column */
    .panel-section-v4.is-visible .panel-col-1 {
    transition-delay: 0.2s;
    }
    .panel-section-v4.is-visible .panel-col-2 {
    transition-delay: 0.4s;
    }
    .panel-col-2 ul{

    }
    .panel-section-v4.is-visible .panel-col-3 {
    transition-delay: 0.6s;
    }

    .panel-col p {
    font-family: var(--primary-font), sans-serif;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    }
    .panel-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    }
    .panel-col ul li {
    font-family: var(--primary-font), sans-serif;
    color: var(--white);
    padding-left: 28px;
    position: relative;
    margin-bottom: 1rem;
    }
    .panel-col ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23b1a08e' class='bi bi-check-circle' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    }

    /* Classe ajout�e par JavaScript lorsque la section est visible */
    .panel-section-v4.is-visible .panel-header-wrapper,
    .panel-section-v4.is-visible .panel-col {
    opacity: 1;
    transform: translateY(0);
    }
    
    /* tp04_main12_galery1i */

    .hotel-hero-section {
    position: relative; /* Needed for the overlay */
    height: 100vh;
    width: 100%;
    background-image: url("/assets/image/Q25_.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    }

    /* NEW: Dark overlay for text readability */
    .hotel-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
    z-index: 1;
    }

    /* NEW: Content wrapper */
    .hero-content-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    /* Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out 0.5s forwards;
    }

    .hero-content-overlay h1 {
    font-family: var(--secondary-font), serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-content-overlay p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-top: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    }
    
    /* tp04_main14_adresstmap */

    .contact-section-v2 {
    background-color: var(--background-color); /* Soft off-white background */
    padding: 100px 0;
    overflow: hidden;
    }

    /* --- Left Column: Contact Info --- */
    .contact-info-wrapper {
    background-color: #2c2c2c; /* Dark charcoal background */
    color: var(--white);
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px 0 0 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .contact-heading {
    font-family: var(--secondary-font), serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 2rem;
    position: relative;
    color: var(--white);
    font-weight: 700;
    }

    .contact-para {
    font-family: var(--primary-font), sans-serif;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 1.4rem;
    }
    .contact-number {
    font-family: var(--primary-font), sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.4rem;
    margin: 1rem 0;
    }
    .contact-number span {
    display: block;
    }
    .contact-link {
    font-family: var(--primary-font), sans-serif;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    }
    .contact-link:hover {
    opacity: 0.8;
    }

    /* --- Right Column: Map --- */
    .map-wrapper {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
    height: 600px;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    }
    .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    }

    /* --- Animation Control --- */
    .contact-section-v2.is-visible .contact-info-wrapper,
    .contact-section-v2.is-visible .map-wrapper {
    opacity: 1;
    transform: translateX(0);
    }
    
    /* tp04_main15_contactform */
#main15_contactform{
  padding: 0px;
}
    .contact-section-split {
    overflow: hidden;
    position: relative;
    }

    /* --- Left Column: Form Content --- */
    .contact-content-wrapper {
    background-color: rgba(0, 0, 0, 0.2); /* Soft off-white background */
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    /* Animation */
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .contact-header .subtitle {
    font-family: var(--primary-font), sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d9665b; /* Soft red/coral color */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    }
    .contact-header .main-title {
    font-family: var(--secondary-font), serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 3rem;
    }

    /* --- Form Styling --- */
    .styled-form input,
    .styled-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--white); /* Light underline */
    background-color: transparent;
    padding: 15px 0;
    font-family: var(--primary-font), sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2rem;
    transition: border-color 0.3s ease;
    }
    .styled-form input:focus,
    .styled-form textarea:focus {
    outline: none;
    border-bottom-color: var(--white); /* Darker underline on focus */
    }
    .styled-form textarea {
    resize: vertical;
    min-height: 120px;
    }
    .styled-form ::placeholder {
    color: var(--white);
    opacity: 0.5;
    }

    .submit-btn {
    background-color: #d9665b;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--primary-font), sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .submit-btn:hover {
    background-color: #c25a50;
    transform: translateY(-3px);
    }

    /* --- Right Column: Image --- */
    .contact-image-wrapper {
    width: 100%;
    height: 100%;
    background-image: url("../image/environnement-juridique-photorealiste.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    }

    /* --- Animation Control --- */
    .contact-section-split.is-visible .contact-content-wrapper,
    .contact-section-split.is-visible .contact-image-wrapper {
    opacity: 1;
    transform: translateX(0);
    }
    
    /* *********************** footer 2 ************************** */
    .new-footer {
    position: relative;
    padding: 80px 0;
    background-image: url("");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a nice parallax effect */
    color: var(--white);
    text-align: center;
    }

    .new-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        61,
        53,
        48,
        0.705
    ); /* Dark, semi-transparent overlay from your color scheme */
    z-index: 1;
    }

    .new-footer .container {
    position: relative;
    z-index: 2;
    }

    .new-footer-brand {
    font-family: var(--secondary-font), serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
    }

    .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    }

    .footer-nav li {
    display: inline-block;
    margin: 0 15px;
    }

    .footer-nav a {
    color: var(--background-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    }

    .footer-nav a:hover {
    color: var(--primary-color);
    }

    .footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--heading-color-rgb);
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
    }

    .footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    }

    @media (max-width: 767.98px) {
    .footer-nav li {
        display: block;
        margin: 10px 0;
    }
    }
    