 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Playwrite+DE+SAS:wght@100..400&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

 
 /* ---------- BASE & RESET ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    button, a { cursor: pointer; }

    body {
      background-color: #FBF7F0;
      color: #1E2F28;
      line-height: 1.5;
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #EADDCB;
      border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb {
      background: #C27E46;
      border-radius: 10px;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ---------- NAVBAR MODERNE ---------- */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: sticky;
      top: 20px;
      z-index: 1000;
      background: rgba(255, 252, 245, 0.94);
      backdrop-filter: blur(18px);
      border-radius: 80px;
      margin: 16px auto 0;
      padding: 8px 36px;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(194, 126, 70, 0.2);
      width: calc(100% - 40px);
      max-width: 1300px;
      transition: all 0.3s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      height: 44px;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
      border-radius: 30px;
    }
    .logo span {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #195A3C, #C27E46);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: #2F4238;
      transition: 0.25s;
      font-size: 0.95rem;
      display: inline-block;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 0;
      width: 0;
      height: 2.5px;
      background: #C27E46;
      transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a:hover {
      color: #C27E46;
    }

    .nav-links a.active {
      color: #C27E46;
    }
    .nav-links a.active::after {
      width: 100%;
    }

    /* DROPDOWN */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 40px;
      left: 0;
      background: rgba(255, 252, 245, 0.98);
      backdrop-filter: blur(16px);
      border-radius: 28px;
      padding: 12px 0;
      min-width: 200px;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;
      border: 1px solid rgba(194, 126, 70, 0.3);
      z-index: 100;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu li {
      padding: 0;
    }

    .dropdown-menu a {
      display: block;
      padding: 10px 24px;
      color: #2F4238;
      font-weight: 500;
    }

    .dropdown-menu a:hover {
      background: #C27E4622;
      color: #C27E46;
      padding-left: 28px;
    }

    .dropdown-menu a::after {
      display: none;
    }

    @media (max-width: 900px) {
      .navbar {
        flex-direction: column;
        gap: 14px;
        padding: 16px 24px;
        border-radius: 48px;
      }
      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
      }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        margin-top: 6px;
        border: none;
      }
      .dropdown.active .dropdown-menu {
        display: block;
      }
      .dropdown > a::after {
        content: " ▼";
        font-size: 0.7rem;
      }
    }

    /* ---------- HERO PAGE CONTACT ---------- */
    .page-hero {
      background: linear-gradient(135deg, #0A2920, #031A13);
      padding: 80px 24px 100px;
      text-align: center;
      margin-bottom: 60px;
      border-radius: 0 0 90px 90px;
    }
    .page-hero h1 {
      font-size: 4rem;
      color: #FFE8CF;
      margin-bottom: 20px;
    }
    .page-hero p {
      font-size: 1.2rem;
      color: #D4C9B8;
      max-width: 600px;
      margin: 0 auto;
    }
    .page-hero i {
      color: #C27E46;
      margin-right: 8px;
    }

    /* ---------- CONTACT SECTION ---------- */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      margin-bottom: 80px;
    }

    /* INFOS CARTES */
    .contact-info {
      background: white;
      border-radius: 56px;
      padding: 48px;
      box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
      border: 1px solid #F0E3D2;
    }
    .contact-info h2 {
      font-size: 2rem;
      color: #1B5E3F;
      margin-bottom: 12px;
    }
    .info-sub {
      color: #5A6E5E;
      margin-bottom: 40px;
      font-size: 1rem;
    }
    .info-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 32px;
      padding: 20px;
      background: #FBF7F0;
      border-radius: 32px;
      transition: 0.3s;
    }
    .info-card:hover {
      background: #FFF8EF;
      transform: translateX(6px);
    }
    .info-icon {
      width: 56px;
      height: 56px;
      background: #C27E4622;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #C27E46;
      font-size: 1.6rem;
    }
    .info-content h3 {
      font-size: 1.2rem;
      color: #1B5E3F;
      margin-bottom: 6px;
    }
    .info-content p, .info-content a {
      color: #4A5E55;
      text-decoration: none;
      transition: 0.2s;
    }
    .info-content a:hover {
      color: #C27E46;
    }

    .social-contact {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 2px dashed #EADDCB;
    }
    .social-contact h4 {
      font-size: 1.2rem;
      color: #1B5E3F;
      margin-bottom: 18px;
    }
    .social-links {
      display: flex;
      gap: 24px;
    }
    .social-links a {
      width: 48px;
      height: 48px;
      background: #F0E5D6;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #C27E46;
      font-size: 1.4rem;
      transition: 0.3s;
    }
    .social-links a:hover {
      background: #C27E46;
      color: white;
      transform: translateY(-4px);
    }

    /* FORMULAIRE */
    .contact-form-box {
      background: white;
      border-radius: 56px;
      padding: 48px;
      box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
      border: 1px solid #F0E3D2;
    }
    .contact-form-box h2 {
      font-size: 2rem;
      color: #1B5E3F;
      margin-bottom: 12px;
    }
    .form-group {
      margin-bottom: 24px;
    }
    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: #2F4238;
      font-size: 0.9rem;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 14px 20px;
      border-radius: 40px;
      border: 1.5px solid #EADDCB;
      background: #FEFCF8;
      font-family: inherit;
      font-size: 0.95rem;
      transition: 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none;
      border-color: #C27E46;
      box-shadow: 0 0 0 3px rgba(194,126,70,0.2);
    }
    .form-group textarea {
      border-radius: 28px;
      resize: vertical;
    }
    .submit-btn {
      background: #C27E46;
      border: none;
      padding: 16px 36px;
      border-radius: 60px;
      font-weight: 800;
      font-size: 1rem;
      color: white;
      cursor: pointer;
      width: 100%;
      transition: 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .submit-btn:hover {
      background: #D6965C;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px -8px rgba(194,126,70,0.4);
    }
    .form-feedback {
      margin-top: 20px;
      font-size: 0.9rem;
      text-align: center;
    }

    /* CARTE MAP */
    .map-section {
      margin: 60px 0 80px;
      background: #0A2920;
      border-radius: 64px;
      overflow: hidden;
      box-shadow: 0 30px 40px -20px rgba(0,0,0,0.3);
    }
    .map-container {
      width: 100%;
      height: 450px;
    }
    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(0.2) contrast(1.05);
    }
    .map-caption {
      background: #1B5E3F;
      padding: 20px;
      text-align: center;
      color: #FFE8CF;
      font-weight: 500;
    }

    /* FAQ CONTACT */
    .faq-contact {
      background: #FCF5E8;
      border-radius: 64px;
      padding: 70px 56px;
      margin: 40px 0;
    }
    .faq-contact h2 {
      text-align: center;
      font-size: 2.5rem;
      color: #1B5E3F;
      margin-bottom: 50px;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    .faq-card {
      background: white;
      padding: 28px 32px;
      border-radius: 48px;
      border-left: 6px solid #C27E46;
    }
    .faq-card h4 {
      font-size: 1.2rem;
      color: #1B5E3F;
      margin-bottom: 12px;
    }
    .faq-card p {
      color: #5A6E5E;
    }

    /* FOOTER */
    footer {
      background: #0A1510;
      color: #EDE3D4;
      margin-top: 80px;
      border-radius: 70px 70px 0 0;
      padding: 70px 56px 40px;
    }
    .footer-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 52px;
      padding-bottom: 56px;
      border-bottom: 1px solid #2A4238;
    }
    .footer-brand h3 {
      font-size: 2rem;
      color: #EFCD9B;
      margin-bottom: 18px;
    }
    .footer-contact-block h4, .footer-social-block h4, .footer-newsletter h4 {
      font-size: 1.3rem;
      color: #E2BC84;
      margin-bottom: 24px;
    }
    .contact-details p {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      font-size: 0.9rem;
    }
    .contact-details i {
      width: 28px;
      color: #C27E46;
    }
    .social-icons a {
      color: #F3E5D2;
      font-size: 2rem;
      margin-right: 28px;
      transition: 0.2s;
      display: inline-block;
    }
    .social-icons a:hover {
      color: #C27E46;
      transform: translateY(-5px);
    }
    .footer-newsletter form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-newsletter input {
      padding: 14px 20px;
      border-radius: 60px;
      border: none;
      background: #FEF8F0;
      font-family: inherit;
    }
    .newsletter-btn {
      background: #C27E46;
      border: none;
      padding: 12px;
      border-radius: 60px;
      font-weight: bold;
      color: #0F1F18;
      cursor: pointer;
    }
    .footer-bottom {
      text-align: center;
      padding-top: 38px;
      font-size: 0.8rem;
      opacity: 0.7;
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 54px;
      height: 54px;
      background: #C27E46;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 1000;
      border: none;
      font-size: 1.5rem;
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 1000px) {
      .contact-wrapper { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
      .page-hero h1 { font-size: 3rem; }
    }
    @media (max-width: 680px) {
      .footer-grid { grid-template-columns: 1fr; }
      .container { padding: 0 20px; }
      .contact-info, .contact-form-box { padding: 32px; }
      .faq-contact { padding: 40px 24px; }
    }