  @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=Mystery+Quest&family=Playwrite+DE+SAS:wght@100..400&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');


/* ========== PALETTE DE COULEURS NOIR & OR ========== */
    :root {
      --primary: #C6A85A;   /* Or / Doré */
      --dark: #000000;      /* Noir */
      --dark-soft: #1A1A1A; /* Fond secondaire */
      --light: #D9D9D9;     /* Gris clair */
      --text-light: #F5F5F5;
      --white: #FFFFFF;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: var(--dark-soft);
      color: var(--light);
      scroll-behavior: smooth;
    }

    /* Container global pour aérer */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ========== NAVBAR STYLE NOIR & OR ========== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      position: absolute;
      width: 100%;
      z-index: 100;
      backdrop-filter: blur(10px);
      background: rgba(0, 0, 0, 0.85);
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(198, 168, 90, 0.3);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--white);
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }
    
    .logo-img-nav {
      height: 45px;
      width: auto;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    }
    
    .logo-text-small {
      font-size: 0.7rem;
      letter-spacing: 2px;
      font-weight: 500;
      color: var(--primary);
      margin-top: 2px;
    }

    nav a {
      margin: 0 20px;
      text-decoration: none;
      color: var(--light);
      font-weight: 500;
      font-size: 0.95rem;
      transition: 0.2s;
      position: relative;
    }

    nav a:hover {
      color: var(--primary);
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0%;
      height: 2px;
      background: var(--primary);
      transition: 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    .btn-nav {
      background: var(--primary);
      color: var(--dark);
      padding: 10px 22px;
      border: none;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .btn-nav:hover {
      background: #d4b36a;
      color: var(--dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(198, 168, 90, 0.3);
    }

    /* ========== DROPDOWN MODERNE ========== */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown > a {
      cursor: pointer;
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 15px);
      left: 0;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(12px);
      list-style: none;
      padding: 0.8rem 0;
      margin: 0;
      border-radius: 20px;
      min-width: 260px;
      border: 1px solid rgba(198, 168, 90, 0.4);
      box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.8);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px) scale(0.98);
      transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      z-index: 1050;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .dropdown-menu li {
      padding: 0;
      margin: 0;
    }

    .dropdown-menu li a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0.7rem 1.5rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: #e0e0e0;
      transition: all 0.2s ease;
      white-space: nowrap;
      text-decoration: none;
    }

    .dropdown-menu li a i {
      width: 24px;
      font-size: 1rem;
      color: var(--primary);
      text-align: center;
    }

    .dropdown-menu li a:hover {
      background: rgba(198, 168, 90, 0.12);
      color: var(--primary);
      padding-left: 1.8rem;
    }

    .dropdown > a::after {
      content: '\f0d7';
      font-weight: 900;
      font-size: 0.75rem;
      margin-left: 6px;
      color: var(--primary);
      transition: transform 0.2s ease;
      display: inline-block;
    }

    .dropdown:hover > a::after {
      transform: rotate(180deg);
    }

    /* ========== HERO SECTION NOIR & OR ========== */
    .hero {
      height: 100vh;
      min-height: 700px;
      background: linear-gradient(110deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 100%), url('../Follio/Img/No2.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding-left: 10%;
      position: relative;
    }

    .hero-content {
      max-width: 620px;
      animation: fadeInUp 1s ease-out;
    }

    .hero h1 {
      font-size: 70px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--white);
      text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    }

    .hero p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 30px;
      color: rgba(255,255,255,0.9);
      max-width: 500px;
    }

    .hero-buttons {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
      padding: 14px 32px;
      font-weight: 600;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--dark);
      box-shadow: 0 8px 20px rgba(198, 168, 90, 0.3);
      font-weight: 700;
    }

    .btn-primary:hover {
      background: #d4b36a;
      transform: translateY(-3px);
      box-shadow: 0 15px 25px rgba(198, 168, 90, 0.4);
    }

    .btn-secondary {
      background: transparent;
      border: 1.5px solid var(--primary);
      color: var(--white);
      backdrop-filter: blur(4px);
    }

    .btn-secondary:hover {
      background: rgba(198, 168, 90, 0.15);
      transform: translateY(-3px);
      border-color: var(--primary);
      color: var(--primary);
    }

    /* SEARCH CARD STYLE NOIR & OR */
    .search-section {
      background: var(--dark-soft);
      padding: 40px 5% 60px;
      margin-top: -40px;
      position: relative;
      z-index: 20;
    }
    .search-card {
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(8px);
      border-radius: 28px;
      padding: 1.8rem 2rem;
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(198, 168, 90, 0.4);
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .search-group {
      flex: 1;
      min-width: 180px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .search-group label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.5px;
    }
    .search-group input, .search-group select {
      padding: 12px 16px;
      border-radius: 40px;
      border: 1px solid #333;
      background: #111;
      color: var(--white);
      outline: none;
      transition: 0.2s;
    }
    .search-group input:focus, .search-group select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 2px rgba(198, 168, 90, 0.3);
    }
    .btn-search {
      background: var(--primary);
      color: var(--dark);
      border: none;
      padding: 0 32px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s ease;
      margin-top: 22px;
    }
    .btn-search:hover {
      background: #d4b36a;
      transform: scale(1.02);
      box-shadow: 0 5px 15px rgba(198, 168, 90, 0.4);
    }

    /* ========== SERVICES CARDS ========== */
    .services {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-top: 30px;
      margin-bottom: 60px;
      position: relative;
      z-index: 10;
      padding: 0 30px;
    }

    .card {
      background: #0f0f0f;
      padding: 32px 24px;
      width: 280px;
      border-radius: 28px;
      text-align: center;
      box-shadow: 0 25px 45px -12px rgba(0,0,0,0.5);
      transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      border: 1px solid rgba(198, 168, 90, 0.25);
    }

    .card:hover {
      transform: translateY(-12px);
      box-shadow: 0 35px 50px -18px rgba(0,0,0,0.6);
      border-color: var(--primary);
    }

    .card i {
      font-size: 44px;
      margin-bottom: 20px;
      color: var(--primary);
      background: rgba(198, 168, 90, 0.1);
      padding: 14px;
      border-radius: 50%;
    }

    .card h3 {
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--white);
    }

    .card p {
      color: #b0b0b0;
      line-height: 1.5;
      font-size: 0.95rem;
    }

    /* ========== ABOUT SECTION ========== */
    .about {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 50px;
      padding: 90px 50px;
      background: var(--dark);
      border-top: 1px solid rgba(198, 168, 90, 0.2);
      border-bottom: 1px solid rgba(198, 168, 90, 0.2);
    }

    .about-text {
      flex: 1;
      min-width: 280px;
    }

    .about-text h2 {
      font-size: 48px;
      margin-bottom: 25px;
      color: var(--white);
      position: relative;
      display: inline-block;
    }

    .about-text h2:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
      border-radius: 4px;
    }

    .about-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin: 30px 0 35px;
      color: var(--light);
      max-width: 500px;
    }

    .about-img {
      flex: 1;
      text-align: center;
    }

    .about-img img {
      width: 100%;
      max-width: 550px;
      border-radius: 32px;
      box-shadow: 0 30px 40px -20px rgba(0,0,0,0.5);
      transition: transform 0.4s ease;
      border: 1px solid rgba(198, 168, 90, 0.3);
    }

    .about-img img:hover {
      transform: scale(1.02);
    }

    /* ========== LISTINGS ========== */
    .listings {
      padding: 4rem 5%;
      background: var(--dark-soft);
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .section-header h2 {
      font-size: 2rem;
      color: var(--primary);
    }
    .view-all {
      color: var(--primary);
      font-weight: 500;
      text-decoration: none;
    }
    .view-all:hover {
      text-decoration: underline;
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }
    .listing-card {
      background: #0f0f0f;
      border-radius: 28px;
      overflow: hidden;
      width: 330px;
      transition: 0.25s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(198, 168, 90, 0.25);
    }
    .listing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
      border-color: var(--primary);
    }
    .card-img {
      height: 220px;
      width: 100%;
      object-fit: cover;
    }
    .card-content {
      padding: 1.3rem 1.3rem 1.5rem;
    }
    .card-badge {
      display: inline-block;
      background: rgba(198, 168, 90, 0.15);
      color: var(--primary);
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 30px;
      margin-bottom: 12px;
    }
    .listing-card h3 {
      font-size: 1.45rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--white);
    }
    .features {
      display: flex;
      gap: 16px;
      margin: 12px 0;
      color: #b0b0b0;
      font-size: 0.85rem;
      border-top: 1px solid #2a2a2a;
      padding-top: 12px;
    }
    .features i {
      margin-right: 5px;
      color: var(--primary);
    }
    .btn-detail {
      display: inline-block;
      margin-top: 16px;
      background: transparent;
      border: 1.5px solid var(--primary);
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.8rem;
      color: var(--primary);
      transition: 0.2s;
      text-decoration: none;
    }
    .btn-detail:hover {
      background: var(--primary);
      color: var(--dark);
    }

    /* ========== SERVICES COMPLETS ========== */
    .services-full {
      background: var(--dark);
      padding: 5rem 5%;
      border-top: 1px solid rgba(198, 168, 90, 0.25);
      border-bottom: 1px solid rgba(198, 168, 90, 0.25);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2rem;
      margin: 3rem 0 2.5rem;
    }
    .service-card {
      background: #0f0f0f;
      border-radius: 24px;
      padding: 1.8rem 1.5rem;
      text-align: center;
      border: 1px solid rgba(198, 168, 90, 0.2);
      transition: 0.2s;
    }
    .service-card:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
    }
    .service-card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    .service-card h3 {
      color: var(--white);
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
    }
    .service-card p {
      color: #b0b0b0;
    }

    .why-choose {
      background: #0a0a0a;
      border-radius: 32px;
      padding: 2.5rem;
      margin: 2rem 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      border-left: 4px solid var(--primary);
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
    .why-col {
      flex: 1;
      min-width: 180px;
    }
    .why-col h4 {
      color: var(--primary);
      margin-bottom: 0.8rem;
    }
    .why-col ul {
      list-style: none;
    }
    .why-col li {
      margin-bottom: 0.6rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ccc;
    }
    .why-col li i {
      color: var(--primary);
    }
    .why-col p {
      color: #ccc;
    }

    /* SLIDER */
    .slider {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      margin-top: 3rem;
      border-radius: 32px;
      box-shadow: 0 20px 35px rgba(0,0,0,0.5);
    }
    .slides {
      position: relative;
      height: 100%;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: 0.8s ease-in-out;
    }
    .slide.active {
      opacity: 1;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .caption {
      position: absolute;
      bottom: 40px;
      left: 40px;
      color: white;
      background: rgba(0,0,0,0.6);
      padding: 20px;
      border-radius: 20px;
      backdrop-filter: blur(4px);
      border-left: 3px solid var(--primary);
    }
    .caption h2 {
      color: var(--primary);
    }

    /* CTA section */
    .cta-section {
      background: linear-gradient(95deg, #0a0a0a 0%, #111111 100%);
      padding: 4rem 5%;
      text-align: center;
      border-top: 1px solid rgba(198, 168, 90, 0.3);
    }
    .cta-inner h3 {
      font-size: 2rem;
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
      color: var(--primary);
    }
    .cta-inner p {
      color: var(--light);
      margin-bottom: 1.5rem;
    }
    .btn-cta {
      background: var(--primary);
      border: none;
      padding: 12px 38px;
      border-radius: 50px;
      font-weight: bold;
      color: var(--dark);
      font-size: 1rem;
      cursor: pointer;
      transition: 0.2s;
    }
    .btn-cta:hover {
      background: #d4b36a;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(198, 168, 90, 0.3);
    }

    /* FOOTER */
    footer {
      background: #030303;
      color: #ccc;
      padding: 50px 40px 30px;
      text-align: center;
      border-top: 1px solid rgba(198, 168, 90, 0.3);
    }
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 40px;
      text-align: left;
    }
    .footer-col {
      flex: 1;
      min-width: 180px;
    }
    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: var(--primary);
    }
    .footer-col p, .footer-col a {
      color: #aaa;
      text-decoration: none;
      line-height: 1.7;
    }
    .footer-col a:hover {
      color: var(--primary);
    }
    .social-icons {
      display: flex;
      gap: 20px;
      margin-top: 15px;
    }
    .social-icons a {
      font-size: 1.5rem;
      color: #aaa;
      transition: 0.2s;
    }
    .social-icons a:hover {
      color: var(--primary);
      transform: translateY(-3px);
    }
    .copyright {
      border-top: 1px solid #2a2a2a;
      padding-top: 30px;
      font-size: 0.85rem;
      color: #777;
    }

    /* BACK TO TOP */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      color: var(--dark);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
      border: none;
      font-size: 1.4rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }
    .back-to-top:hover {
      background: #d4b36a;
      transform: translateY(-3px);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(35px);}
      to { opacity: 1; transform: translateY(0);}
    }

    @media (max-width: 992px) {
      header { padding: 18px 30px; }
      .hero h1 { font-size: 52px; }
      .hero { padding-left: 6%; }
      .about { padding: 60px 30px; flex-direction: column; text-align: center; }
      .about-text h2:after { left: 50%; transform: translateX(-50%); }
      .services { margin-top: 20px; }
    }
    @media (max-width: 680px) {
      header { flex-direction: column; gap: 15px; background: rgba(0,0,0,0.9); }
      nav a { margin: 0 12px; font-size: 0.85rem; }
      .hero h1 { font-size: 42px; }
      .search-card { flex-direction: column; }
      .dropdown-menu { position: static; background: transparent; backdrop-filter: none; box-shadow: none; border: none; padding-left: 1rem; opacity: 1; visibility: visible; display: none; }
      .dropdown:hover .dropdown-menu { display: block; }
      .dropdown > a::after { display: none; }
      .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
    }