  @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 NOIR & OR RAFFINÉE ========== */
    :root {
      --primary: #D4AF37;
      --primary-dark: #B49450;
      --primary-glow: rgba(212, 175, 55, 0.3);
      --dark: #000000;
      --dark-soft: #0A0A0A;
      --dark-card: #111111;
      --light: #E8E8E8;
      --text-light: #F5F5F5;
      --white: #FFFFFF;
      --gray-mystic: #1C1C1E;
      --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: var(--dark-soft);
      color: var(--light);
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    /* ========== SCROLLBAR LUXE ========== */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: var(--dark);
    }
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }

    /* ========== HEADER / NAVBAR GLASS ========== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 50px;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      backdrop-filter: blur(16px);
      background: rgba(0, 0, 0, 0.75);
      transition: var(--transition-smooth);
      border-bottom: 1px solid rgba(212, 175, 55, 0.25);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 1px;
      transition: transform 0.3s;
    }
    .logo:hover {
      transform: scale(1.02);
    }
    .logo-img-nav {
      height: 48px;
      width: auto;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
      transition: filter 0.3s;
    }
    .logo-text-small {
      font-size: 0.7rem;
      letter-spacing: 2.5px;
      font-weight: 500;
      color: var(--primary);
      margin-top: 2px;
      text-transform: uppercase;
    }

    /* Navigation principale */
    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
    }
    .nav-links li a {
      text-decoration: none;
      color: var(--light);
      font-weight: 500;
      font-size: 0.95rem;
      transition: 0.25s;
      position: relative;
      letter-spacing: 0.3px;
    }
    .nav-links li a:hover, .nav-links li a.active {
      color: var(--primary);
    }
    .nav-links li a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, var(--primary), #FFD966);
      transition: 0.3s;
      border-radius: 2px;
    }
    .nav-links li a:hover::after, .nav-links li a.active::after {
      width: 100%;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 15px);
      left: -20px;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(20px);
      list-style: none;
      padding: 0.8rem 0;
      margin: 0;
      border-radius: 24px;
      min-width: 270px;
      border: 1px solid rgba(212, 175, 55, 0.5);
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.8);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      transition: all 0.3s ease;
      z-index: 1050;
    }
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu li a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0.8rem 1.8rem;
      font-size: 0.9rem;
      color: #ececec;
      text-decoration: none;
      transition: 0.2s;
    }
    .dropdown-menu li a i {
      width: 26px;
      color: var(--primary);
      font-size: 1.1rem;
    }
    .dropdown-menu li a:hover {
      background: rgba(212, 175, 55, 0.12);
      color: var(--primary);
      padding-left: 2rem;
    }
    .dropdown > a::after {
      content: '\f0d7';
      font-weight: 900;
      font-size: 0.75rem;
      margin-left: 8px;
      color: var(--primary);
      transition: transform 0.2s;
      display: inline-block;
    }
    .dropdown:hover > a::after {
      transform: rotate(180deg);
    }

    .hamburger {
      display: none;
      background: transparent;
      border: none;
      color: var(--primary);
      font-size: 30px;
      cursor: pointer;
      transition: 0.2s;
    }

    /* HERO AVEC OVERLAY DYNAMIQUE */
    .hero {
      height: 100vh;
      min-height: 750px;
      background: linear-gradient(115deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 60%), url('../Follio/Img/L3.jpeg') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding-left: 8%;
      margin-top: 0;
      position: relative;
      isolation: isolate;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-content {
      max-width: 720px;
      animation: fadeInUp 1.1s ease-out;
      position: relative;
      z-index: 2;
    }
    .hero h1 {
      font-size: 78px;
      font-weight: 800;
      line-height: 1.15;
      color: var(--white);
      text-shadow: 0 2px 15px rgba(0,0,0,0.4);
    }
    .hero h1 span {
      color: var(--primary);
      border-bottom: 3px solid var(--primary);
      display: inline-block;
      padding-bottom: 5px;
    }
    .hero p {
      font-size: 1.2rem;
      margin: 24px 0 36px;
      color: rgba(255,255,255,0.92);
      line-height: 1.5;
    }
    .hero-buttons {
      display: flex;
      gap: 22px;
    }
    .btn-primary, .btn-secondary {
      padding: 14px 34px;
      font-weight: 700;
      border-radius: 50px;
      cursor: pointer;
      border: none;
      transition: var(--transition-smooth);
      font-size: 0.95rem;
      letter-spacing: 0.5px;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, #E5C15A 100%);
      color: var(--dark);
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
      background: linear-gradient(135deg, #E5C15A 0%, var(--primary) 100%);
    }
    .btn-secondary {
      background: transparent;
      border: 1.8px solid var(--primary);
      color: var(--white);
      backdrop-filter: blur(4px);
    }
    .btn-secondary:hover {
      background: rgba(212, 175, 55, 0.15);
      color: var(--primary);
      border-color: var(--primary);
      transform: translateY(-3px);
    }

    /* SEARCH CARD LUXE */
    .search-section {
      background: var(--dark-soft);
      padding: 40px 5% 70px;
      margin-top: -45px;
      position: relative;
      z-index: 20;
    }
    .search-card {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(16px);
      border-radius: 40px;
      padding: 2rem 2.2rem;
      border: 1px solid rgba(212, 175, 55, 0.45);
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
    }
    .search-group {
      flex: 1;
      min-width: 180px;
    }
    .search-group label {
      font-size: 0.75rem;
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
      display: block;
    }
    .search-group select {
      width: 100%;
      padding: 14px 18px;
      border-radius: 60px;
      background: #1a1a1a;
      border: 1px solid #333;
      color: white;
      font-family: 'Inter', sans-serif;
      transition: 0.2s;
    }
    .search-group select:focus {
      border-color: var(--primary);
      outline: none;
    }
    .btn-search {
      background: var(--primary);
      border: none;
      padding: 0 38px;
      border-radius: 60px;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
      font-size: 1rem;
      transition: 0.2s;
    }
    .btn-search:hover {
      background: #e5c15a;
      transform: scale(1.02);
    }

    /* SERVICES CARDS AVEC GLOW */
    .services {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 20px 30px 80px;
    }
    .card {
      background: var(--dark-card);
      padding: 38px 28px;
      width: 300px;
      border-radius: 36px;
      text-align: center;
      border: 1px solid rgba(212, 175, 55, 0.2);
      transition: var(--transition-smooth);
      box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
    }
    .card:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 25px 40px -12px rgba(212, 175, 55, 0.25);
    }
    .card i {
      font-size: 52px;
      color: var(--primary);
      margin-bottom: 24px;
      transition: 0.2s;
    }
    .card h3 {
      font-size: 1.6rem;
      margin-bottom: 14px;
    }

    /* ABOUT SECTION MODERN */
    .about {
      display: flex;
      align-items: center;
      gap: 60px;
      padding: 100px 60px;
      background: linear-gradient(145deg, #050505 0%, #0a0a0a 100%);
      border-top: 1px solid rgba(212, 175, 55, 0.2);
      border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    .about-text h2 {
      font-size: 52px;
      color: white;
      font-weight: 700;
    }
    .about-text h2:after {
      content: '';
      display: block;
      width: 85px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), #c9a03d);
      margin-top: 16px;
      border-radius: 4px;
    }
    .about-text p {
      margin: 24px 0 32px;
      line-height: 1.6;
      color: #cfcfcf;
    }
    .about-img img {
      width: 100%;
      max-width: 580px;
      border-radius: 48px;
      box-shadow: 0 20px 35px -10px black;
      transition: 0.5s;
    }
    .about-img img:hover {
      transform: scale(1.02);
    }

    /* ========== SECTION CONSEIL INVESTISSEMENT (REFONTE TOTALE) ========== */
    .investment-section {
      padding: 5rem 5%;
      background: radial-gradient(circle at 10% 30%, #0b0b0b, #020202);
      position: relative;
      overflow: hidden;
    }
    .investment-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -30%;
      width: 120%;
      height: 150%;
      background: radial-gradient(ellipse, rgba(212,175,55,0.03), transparent);
      pointer-events: none;
    }
    .investment-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .investment-header h2 {
      font-size: 2.8rem;
      color: var(--primary);
      letter-spacing: -0.3px;
    }
    .investment-header p {
      font-size: 1.1rem;
      max-width: 700px;
      margin: 1rem auto 0;
      opacity: 0.85;
    }
    .investment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 35px;
      max-width: 1300px;
      margin: 0 auto 50px;
    }
    .invest-card {
      background: rgba(17, 17, 17, 0.8);
      backdrop-filter: blur(6px);
      border-radius: 32px;
      padding: 2rem 1.8rem;
      border: 1px solid rgba(212, 175, 55, 0.25);
      transition: var(--transition-smooth);
      text-align: center;
    }
    .invest-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
      box-shadow: 0 20px 35px -12px rgba(212, 175, 55, 0.2);
    }
    .invest-icon {
      font-size: 3.2rem;
      color: var(--primary);
      margin-bottom: 1.2rem;
    }
    .invest-card h3 {
      font-size: 1.7rem;
      margin-bottom: 1rem;
    }
    .invest-card p {
      color: #c0c0c0;
      line-height: 1.5;
    }
    .invest-stats {
      display: flex;
      justify-content: space-between;
      margin-top: 1.8rem;
      padding-top: 1.2rem;
      border-top: 1px dashed rgba(212,175,55,0.3);
    }
    .stat {
      text-align: center;
    }
    .stat-number {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--primary);
    }
    .stat-label {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .investment-cta {
      text-align: center;
      margin-top: 2rem;
    }
    .btn-invest {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 14px 38px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .btn-invest:hover {
      background: var(--primary);
      color: black;
      transform: scale(1.02);
      box-shadow: 0 8px 20px rgba(212,175,55,0.3);
    }
    .highlight-text {
      color: var(--primary);
      font-weight: 700;
    }

    /* PROPRIÉTÉS VEDETTES */
    .listings {
      padding: 5rem 5%;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }
    .section-header h2 {
      font-size: 2.4rem;
    }
    .view-all {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: 0.2s;
    }
    .view-all i {
      transition: 0.2s;
    }
    .view-all:hover {
      color: #ffdf8c;
    }
    .view-all:hover i {
      transform: translateX(6px);
    }
    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 35px;
      justify-content: center;
    }
    .listing-card {
      background: var(--dark-card);
      border-radius: 32px;
      width: 350px;
      overflow: hidden;
      border: 1px solid rgba(212, 175, 55, 0.2);
      transition: var(--transition-smooth);
    }
    .listing-card:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 30px 40px -18px rgba(212, 175, 55, 0.3);
    }
    .card-img {
      height: 250px;
      width: 100%;
      object-fit: cover;
      transition: 0.5s;
    }
    .listing-card:hover .card-img {
      transform: scale(1.03);
    }
    .card-content {
      padding: 1.6rem;
    }
    .card-badge {
      background: rgba(212, 175, 55, 0.15);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--primary);
      display: inline-block;
      margin-bottom: 12px;
    }
    .features {
      display: flex;
      gap: 18px;
      margin: 16px 0;
      font-size: 0.85rem;
    }
    .btn-detail {
      display: inline-block;
      margin-top: 10px;
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-detail:hover {
      letter-spacing: 1px;
    }

    /* SECTION VENTE (biens) */
    .sale-section {
      padding: 5rem 5%;
      background: radial-gradient(circle at 10% 20%, #0c0c0c, #030303);
    }
    .section-title h2 {
      font-size: 2.6rem;
      color: var(--primary);
      text-align: center;
    }
    .sale-subtitle {
      text-align: center;
      margin-bottom: 3rem;
      font-size: 1.1rem;
      opacity: 0.8;
    }
    .properties-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 40px;
      margin-top: 30px;
    }
    .property-card {
      background: #0f0f0f;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(212, 175, 55, 0.25);
      transition: 0.3s;
    }
    .property-card:hover {
      transform: translateY(-8px);
      border-color: var(--primary);
      box-shadow: 0 20px 32px -12px black;
    }
    .property-gallery img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: 0.5s;
    }
    .property-card:hover .property-gallery img {
      transform: scale(1.03);
    }
    .property-info {
      padding: 1.6rem;
    }
    .property-category {
      background: rgba(212, 175, 55, 0.2);
      color: var(--primary);
      padding: 4px 14px;
      border-radius: 40px;
      font-size: 0.7rem;
      font-weight: bold;
    }
    .sale-cta {
      text-align: center;
      margin-top: 60px;
    }
    .cta-button {
      background: linear-gradient(95deg, var(--primary), #c9a03d);
      padding: 15px 42px;
      border-radius: 60px;
      color: var(--dark);
      font-weight: 800;
      text-decoration: none;
      display: inline-block;
      transition: 0.3s;
      box-shadow: 0 5px 12px rgba(0,0,0,0.3);
    }
    .cta-button:hover {
      transform: scale(1.02);
      background: linear-gradient(95deg, #e5c15a, var(--primary));
    }

    /* FOOTER LUXE */
    footer {
      background: #020202;
      padding: 60px 40px 35px;
      border-top: 1px solid rgba(212, 175, 55, 0.4);
    }
    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 50px;
      max-width: 1300px;
      margin: 0 auto;
    }
    .footer-col h3 {
      color: var(--primary);
      margin-bottom: 22px;
      font-size: 1.2rem;
    }
    .social-links a {
      color: #bbb;
      font-size: 1.7rem;
      margin-right: 20px;
      transition: 0.2s;
      display: inline-block;
    }
    .social-links a:hover {
      color: var(--primary);
      transform: translateY(-3px);
    }
    .copyright {
      text-align: center;
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid #2a2a2a;
      font-size: 0.8rem;
    }
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: var(--primary);
      width: 52px;
      height: 52px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
      z-index: 999;
      color: black;
      font-size: 1.4rem;
      box-shadow: 0 5px 12px rgba(0,0,0,0.3);
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(45px);}
      to { opacity: 1; transform: translateY(0);}
    }
    @media (max-width: 992px) {
      header { padding: 15px 25px; }
      .hero h1 { font-size: 58px; }
      .about { flex-direction: column; text-align: center; padding: 60px 30px; }
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.96);
        backdrop-filter: blur(20px);
        padding: 28px;
        text-align: center;
        gap: 24px;
        border-bottom: 1px solid var(--primary);
      }
      .nav-links.active { display: flex; }
      .hamburger { display: block; }
      .hero { padding-left: 5%; text-align: center; justify-content: center; }
      .hero-buttons { justify-content: center; }
      .hero h1 { font-size: 48px; }
      .search-card { flex-direction: column; }
      .btn-search { justify-content: center; margin-top: 5px; }
      .investment-header h2 { font-size: 2rem; }
    }