    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background-color: #0f0f11;
      color: #ffffff;
    }
    
.main-nav.hero-nav {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.32) 0%,
    rgba(0,0,0,0.12) 100%
  );
  backdrop-filter: blur(6px);
}







    
    .p_09_hero {
    position: relative;
    /* 1. Setează imaginea: ATENȚIE la calea corectă! */
    background-image: url('P50/p50\ \(6\).jpg'); 
    
    /* 2. Asigură că imaginea acoperă toată zona */
    background-size: cover; 
    
    /* 3. Centrează imaginea */
    background-position: center center; 
    
    /* 4. Asigură înălțimea minimă */
    height: 85vh; 
    min-height: 520px;
    
    /* ... restul stilurilor de layout (flex, text-align etc.) ... */
}


/* fiecare model devine containerul de referință pentru submeniu */
.nav-dropdown .model-item {
  position: relative;
}

/* submeniul se aliniază la nivelul modelului peste care ești cu mouse-ul */
.nav-dropdown .model-item .model-actions {
  position: absolute;
  top: 0;          /* la nivelul link-ului → P09, P10H etc. */
  left: 100%;      /* în dreapta lui; dacă vrei sub el, folosește left:0; top:100%; */
  /* opțional, mic spațiu între ele */
  margin-left: 2px;
}

    
    
    .nav-dropdown .model-item {
  position: relative;
}

.nav-dropdown .model-item > a {
  padding-right: 16px; /* un pic de spațiu pentru estetică, nu afectează hover-ul */
}

/* crește hitbox-ul spre dreapta */
.nav-dropdown .model-item:hover .model-actions {
  display: block;
}


.nav-dropdown .model-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 8px;       /* pasarelă care unește cele două elemente */
  height: 100%;
}




    /* NOU: Definim un albastru mai saturat pentru fundaluri */
    .bg-panama-blue { background-color: #007bff; } /* Albastru standard Bootstrap/similar */
    .bg-panama-dark-blue { background-color: #0062cc; } /* Albastru mai închis */

    /* CULORI ACCENT ALBSTRU PENTRU TEMA P10H HYBRID */
    .accent-blue { color: #007bff; }
    .accent-bg { background-color: #007bff; }
    .accent-hover:hover { background-color: #0062cc; } /* Hover mai închis */
    .accent-border { border-color: #007bff; }
    
    /* STILURI TABEL */
    .specs-main-title { color: #d1d5db; }
    .specs-tabs .spec-tab.active { 
        border-left: 4px solid #007bff;
    }
    .badge-standard { background-color: #16a34a; }
    .badge-optional { background-color: #007bff; } /* Opțional Albastru */
    .legend-title { color: #007bff; }
    .spec-table tr:hover { background-color: #1f2937; }
    .spec-note { border-left-color: #007bff; }



    .gallery-section.bg-panama-blue {
  background-color: #007bff;
}

    .gallery-section.bg-panama-blue1 {
  background-color: #000000;
}


.gallery-section.bg-panama-dark-blue {
  background-color: #0062cc;
}





    /* CLASA HERO P10H - Fundal negru cu overlay pentru lizibilitate */
    .heroP50 {
       position: relative;
       height: 85vh;
       min-height: 520px;
       background: url("P50/p50\ \(6\).jpg") center center / cover no-repeat;
       color: #fff;
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       overflow: hidden;
       z-index: 1;
    }
    
    


    /* CLASA HERO P10H - Fundal negru cu overlay pentru lizibilitate */
    .heroP10H {
       position: relative;
       height: 85vh;
       min-height: 520px;
       background: url("p10h/hero-background.jpg") center center / cover no-repeat;
       color: #fff;
       display: flex;
       flex-direction: column;
       justify-content: space-between;
       overflow: hidden;
       z-index: 1;
    }
    .heroP10H::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.6);
       z-index: -1;
    }
    
    /* ROTIRE POZĂ ZI */
    .rotate-anti-90 {
        transform: rotate(-90deg) !important;
        transform-origin: center center;
        max-width: none;
        height: 100%;
        width: auto;
    }







    /* Dacă vrei colțuri rotunjite doar pe mobil, nu și pe desktop */
@media (min-width: 768px) {
  section.bg-[#e33834] .max-w-6xl {
    border-radius: 0;
  }
}



/* ========== NAVIGATION UNIFORMĂ ========== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.2rem 3rem;
  background: transparent;
  backdrop-filter: blur(0px);
}

.main-nav.hero-nav {
  background: transparent;
}

.main-nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0.8rem 3rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem; /* ADĂUGAT: Spațiu între logo și menu */
}

.nav-logo {
  flex-shrink: 0; /* ADĂUGAT: Previne comprimarea logo-ului */
  z-index: 1; /* ADĂUGAT */
}

.nav-logo a {
  display: block; /* ADĂUGAT */
}

.nav-logo-svg {
  width: 180px;
  height: auto;
  transition: all 0.3s ease;
  display: block; /* ADĂUGAT */
}

.main-nav.scrolled .nav-logo-svg {
  width: 160px;
}



@media (max-width: 1200px) {
  .nav-menu {
    gap: 1.2rem; /* Reduce gap-ul pe ecrane medii */
  }
  
  .nav-menu > li > a {
    font-size: 0.8rem; /* Reduce dimensiunea fontului */
  }
}

@media (max-width: 1024px) {
  .main-nav {
    padding: 1rem 1.5rem;
  }

  .main-nav.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal; /* Permite wrapping pe mobile */
  }

  .nav-menu > li > a {
    padding: 1.2rem 0;
    font-size: 0.95rem;
  }
}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap; /* ADĂUGAT: Previne trecerea pe rând nou */
}

.nav-menu > li {
  position: relative;
  white-space: nowrap; /* ADĂUGAT: Previne ruperea textului */
}

.nav-menu > li > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu > li > a:hover {
  color: #00aaff;
}


    /* ========== HERO ========== */
    .hero {
      position: relative;
      height: 85vh;
      min-height: 520px;
      background: url("P10-BANNER.jpg") center center / cover no-repeat;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }


   .heroP9 {
    position: relative; /* Esențial pentru ca ::before să se poziționeze corect */
    height: 85vh;
    min-height: 520px;
    background: url("P09/P09 (2).jpg") center center / cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1; /* Asigură că HERO content este deasupra imaginii */
}


   .heroP10H {
    position: relative; /* Esențial pentru ca ::before să se poziționeze corect */
    height: 85vh;
    min-height: 520px;
    background: url("P10H/P09\ \(9\).webp") center center / cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1; /* Asigură că HERO content este deasupra imaginii */
}

/* Adăugarea suprastratului (Overlay) semi-transparent */


/* Opțional: Dacă imaginea este deja luminoasă, poți folosi un gradient (mai modern) */
.heroP9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.705));
    z-index: -1;
} 



    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 10%,
        rgba(0, 0, 0, 0.85) 95%
      );
      z-index: 1;
    }



/* ========== NAVIGATION UNIFORMĂ ========== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.5rem 3rem; /* NOU: Padding vertical mărit */
  background: transparent;
  backdrop-filter: blur(0px);
}

.main-nav.hero-nav {
  background: transparent;
}

.main-nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0.8rem 3rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-svg {
  width: 180px;
  height: auto;
  transition: all 0.3s ease;
}

.main-nav.scrolled .nav-logo-svg {
  width: 160px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu > li > a:hover {
  color: #00aaff;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(0, 170, 255, 0.1);
  color: #00aaff;
  padding-left: 2rem;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 1rem;
}

/* Hamburger Mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 1024px) {
  .main-nav {
    padding: 1rem 1.5rem;
  }

  .main-nav.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu > li > a {
    padding: 1.2rem 0;
    font-size: 0.95rem;
  }

  .dropdown-toggle::after {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }

  .dropdown-menu a:hover {
    padding-left: 2rem;
  }

  .nav-logo-svg {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    width: 100%;
  }

  .nav-logo-svg {
    width: 140px;
  }
}




    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 1.5rem 4.5rem;
      text-align: center;
      animation: heroFadeUp 1.1s ease forwards;
    }

    .hero-content h1 {
      font-size: clamp(2.2rem, 4vw, 3.3rem);
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .hero-content p {
      max-width: 720px;
      margin: 0 auto 2rem;
      font-size: 1rem;
      opacity: 0.92;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-outline {
      padding: 0.9rem 1.9rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
    }

    .btn-primary {
      background-color: #0076ff;
      color: #fff;
      box-shadow: 0 4px 14px rgba(0, 118, 255, 0.45);
    }

    .btn-primary:hover {
      background-color: #005fd1;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 118, 255, 0.65);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border-color: rgba(255, 255, 255, 0.9);
    }

    .btn-outline:hover {
      background: #ffffff;
      color: #111111;
      transform: translateY(-2px);
    }

    @keyframes heroFadeUp {
      0% {
        opacity: 0;
        transform: translateY(36px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 900px) {
      .hero {
        height: auto;
        padding-bottom: 2.5rem;
      }

      .hero-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1.5rem 0.5rem;
      }

      .hero-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero-content {
        padding: 0 1.2rem 3rem;
      }
    }

    /* ========== P10+ HIGHLIGHTS SECTION ========== */
    .p10-section {
      background-color: #a95a21;
      color: #ffffff;
      padding: 4rem 1.5rem 4.5rem;
    }

    .p10-section-p10 {
      background: linear-gradient(135deg, #1c2736 0%, #0d1117 100%);
    }

    .p10-section-p12 {
      background: linear-gradient(135deg, #5b1d38 0%, #2a0d1e 100%);
    }

    .p10-grid {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 420px) minmax(0, 1.6fr) minmax(260px, 0.9fr);
      gap: 3rem;
      align-items: center;
    }

    /* LEFT: van top view + toggles */
    .p10-van-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .p10-van-img {
      max-width: 100%;
      height: auto;
      display: none;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .p10-van-img.active {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

.p10-toggle-stack {
      position: absolute;
      /* Mută butoanele spre marginea stângă și mărește butonul */
      left: 0px; 
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      z-index: 10;
    }

    .p10-toggle-btn {
      width: 54px; /* Mărit de la 46px */
      height: 54px; /* Mărit de la 46px */
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.55);
      background: rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .p10-toggle-btn svg {
      width: 28px; /* Mărit de la 22px */
      height: 28px; /* Mărit de la 22px */
      fill: #ffffff;
    }


    

    /* Stil pentru a face SVG-urile să se vadă albe pe butoane */
    .p10-toggle-btn svg .st0 {
      fill: #ffffff;
    }


    .p10-toggle-btn.active,
    .p10-toggle-btn:hover {
      background-color: #0076ff;
      border-color: #0076ff;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    }

    .p10-dims-top,
    .p10-dims-side {
      position: absolute;
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0.95;
    }

    .p10-dims-top {
      top: 6px;
      left: 50%;
      transform: translateX(-50%);
    }

    .p10-dims-side {
      right: 4px;
      bottom: 16px;
      transform-origin: bottom right;
      transform: rotate(-90deg);
    }

    /* MIDDLE: title + bullets + CTAs */
    .p10-title {
      font-size: 2.1rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1.4rem;
    }

    .p10-bullets {
      list-style: none;
      padding: 0;
      margin: 0 0 2.1rem;
      display: grid;
      gap: 0.5rem;
      font-size: 0.98rem;
    }

    .p10-bullets li {
      position: relative;
      padding-left: 1.5rem;
    }

    .p10-bullets li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background-color: #ffffff;
    }

    .p10-cta-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .p10-btn-primary,
    .p10-btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.85rem 1.9rem;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      border: 1px solid transparent;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .p10-btn-primary {
      background-color: #0076ff;
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(0, 118, 255, 0.45);
    }

    .p10-btn-primary:hover {
      background-color: #005fd1;
      box-shadow: 0 6px 20px rgba(0, 118, 255, 0.65);
      transform: translateY(-1px);
    }

    .p10-btn-ghost {
      border-color: rgba(255, 255, 255, 0.9);
      color: #ffffff;
      background-color: transparent;
    }

    .p10-btn-ghost:hover {
      background-color: #ffffff;
      color: #a95a21;
      transform: translateY(-1px);
    }

    /* RIGHT: vertical specs */
    .p10-specs-wrap {
      position: relative;
      padding-left: 2rem;
    }

    .p10-specs-wrap::before {
      content: "";
      position: absolute;
      left: 0.45rem;
      top: 0;
      bottom: 0;
      width: 1px;
      background-color: rgba(255, 255, 255, 0.55);
    }

    .p10-spec {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1.1rem;
    }


.p10-spec-icon {
      width: 44px; /* Mărit de la 34px */
      height: 44px; /* Mărit de la 34px */
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .p10-spec-icon svg {
      width: 24px; /* Mărit de la 18px */
      height: 24px; /* Mărit de la 18px */
      fill: #ffffff;
    }


    /* Stil pentru a face SVG-urile din specs să se vadă albe */
    .p10-spec-icon svg .st0 {
      fill: #ffffff;
    }

    .p10-spec-text {
      font-size: 0.86rem;
      line-height: 1.3;
    }

    .p10-spec-label {
      font-weight: 600;
    }

    .p10-spec-sub {
      font-size: 0.7rem;
      opacity: 0.9;
    }

    .p10-spec-note {
      font-size: 0.63rem;
      opacity: 0.78;
      margin-top: 0.5rem;
    }

    @media (max-width: 1024px) {
      .p10-grid {
        grid-template-columns: 1fr;
      }

      .p10-specs-wrap {
        margin-top: 1.5rem;
        padding-left: 1.5rem;
      }

      .p10-specs-wrap::before {
        left: 0.2rem;
      }
    }

    /* ========== HERO CU VIDEO ========== */
    .hero {
      position: relative;
      height: 90vh;
      min-height: 600px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    /* Video background */

    /* Overlay întunecat pentru vizibilitate text */
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.75) 100%
      );
      z-index: 1;
    }

    .hero-nav {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 3rem;
    }

    .hero-logo-svg {
      width: 190px;
      height: auto;
    }





    .hero-menu {
      display: flex;
      gap: 2rem;
      list-style: none;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .hero-menu a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.25s ease;
    }

    .hero-menu a:hover {
      color: #00aaff;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 2rem 5rem;
      text-align: center;
      animation: heroFadeUp 1.2s ease forwards;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Logo Next Generation */
    .hero-next-gen-logo {
      width: 220px;
      height: auto;
      margin: 0 auto 1.5rem;
      opacity: 0;
      animation: fadeIn 1s ease 0.3s forwards;
    }

    .hero-content h1 {
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
      max-width: 750px;
      margin: 0 auto 1.8rem;
      font-size: 1.05rem;
      opacity: 0.95;
      line-height: 1.6;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    /* Preț modern - design minimalist */
    .hero-price {
      display: inline-block;
      margin-bottom: 2rem;
      padding: 0;
      background: transparent;
      border: none;
    }

    .hero-price .price-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.7;
      display: block;
      margin-bottom: 0.5rem;
    }

    .hero-price .price-value {
      font-size: 3.5rem;
      font-weight: 700;
      color: #00aaff;
      text-shadow: 0 4px 20px rgba(0, 170, 255, 0.3);
      letter-spacing: -0.02em;
      display: block;
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .hero-price .price-note {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      opacity: 0.6;
      font-weight: 400;
      display: block;
    }

    .price-note {
      display: block;
      margin-top: 0.4rem;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      opacity: 0.75;
      color: inherit;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-outline {
      padding: 1rem 2.2rem;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
    }

    .btn-primary {
      background-color: #0076ff;
      color: #fff;
      box-shadow: 0 6px 20px rgba(0, 118, 255, 0.5);
    }

    .btn-primary:hover {
      background-color: #005fd1;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 118, 255, 0.7);
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
    }

    .btn-outline:hover {
      background: #ffffff;
      color: #111111;
      transform: translateY(-3px);
    }

    @keyframes heroFadeUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    @media (max-width: 900px) {
      .hero {
        height: auto;
        min-height: 100vh;
      }

      .hero-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
      }

      .hero-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero-content {
        padding: 2rem 1.5rem 4rem;
      }

      .hero-next-gen-logo {
        width: 180px;
      }

      .hero-price .price-value {
        font-size: 2.5rem;
      }

      .hero-price .price-note {
        font-size: 0.65rem;
      }
    }




    /* ========== GALERII FOTO ========== */
.gallery-section {
  background-color: #b87341;
  padding: 4rem 1.5rem;
  color: #ffffff;
}
.gallery-section.p10-gallery,
.gallery-section-alt.p10-gallery {
  background: linear-gradient(135deg, #0b1729 0%, #04070d 100%);
}

.gallery-section.p12-gallery,
.gallery-section-alt.p12-gallery {
  background: linear-gradient(135deg, #3f0a22 0%, #17040d 100%);
}

.site-footer {
  background: #0d0d0f;
  color: #f5f5f5;
  padding: 3.5rem 1.5rem 2.5rem;
}

.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #22c55e;
  color: #052e13;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-floating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-floating:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(34, 197, 94, 0.45);
}

.whatsapp-floating span {
  display: inline-block;
}

@media (max-width: 768px) {
  .whatsapp-floating {
    padding: 0.5rem 0.85rem;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .whatsapp-floating svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 520px) {
  .whatsapp-floating {
    padding: 0.65rem;
    border-radius: 999px;
    gap: 0;
  }

  .whatsapp-floating span {
    display: none;
  }
}

.footer-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.footer-cta h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.footer-cta p {
  color: #d1d5db;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-cta-buttons .btn-primary,
.footer-cta-buttons .btn-outline {
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.footer-cta-buttons .btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #f97316;
  margin-bottom: 0.8rem;
}

.footer-columns a,
.footer-columns span {
  display: block;
  color: #cbd5f5;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  text-decoration: none;
}

.footer-columns a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-bottom a {
  color: inherit;
  margin-left: 1rem;
}

@media (max-width: 640px) {
  .footer-cta-buttons {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom a {
    margin-left: 0;
  }
}


.gallery-section-alt {
  background-color: #a95a21;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.gallery-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .gallery-section {
    padding: 3rem 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .gallery-item:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }
  
  .gallery-header {
    margin-bottom: 2rem;
  }
  
  .gallery-title {
    font-size: 1.5rem;
  }
  
  .gallery-subtitle {
    font-size: 0.95rem;
  }
}




/* ========== SECȚIUNEA SPECIFICAȚII TEHNICE - VERSIUNE COMPACTĂ ========== */
.specs-section {
  background-color: #0f0f11;
  padding: 4rem 1.5rem;
  color: #ffffff;
}

.specs-container {
  max-width: 1400px;
  margin: 0 auto;
}

.specs-main-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
}

/* ========== SEARCH BAR ========== */
.search-bar-wrapper {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #1a1a1c;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.search-bar:focus-within {
  border-color: #0076ff;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #888;
  margin-right: 0.7rem;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  padding: 0;
}

.search-input::placeholder {
  color: #666;
}

.search-clear {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.search-clear:hover {
  background: rgba(255, 255, 255, 0.2);
}

.search-results-info {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.7rem;
  min-height: 20px;
}

.search-results-info.has-results {
  color: #00aaff;
}

/* ========== SPECS WRAPPER ========== */
.specs-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background-color: #1a1a1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* TAB-URI LATERALE - COMPACTE */
.specs-tabs {
  background-color: #141416;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-tab {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.spec-tab:hover {
  background-color: rgba(0, 170, 255, 0.08);
  color: #00aaff;
}

.spec-tab.active {
  background-color: #0076ff;
  color: #ffffff;
  font-weight: 600;
}

.spec-tab.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #00aaff;
}

/* CONȚINUT TABEL - COMPACT */
.specs-content {
  padding: 1.8rem;
  background-color: #1a1a1c;
  min-height: 400px;
}

.spec-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.spec-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TABEL - COMPACT */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease;
}

.spec-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.spec-table tbody tr:last-child {
  border-bottom: none;
}

/* Rânduri compacte */
.spec-label {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: #e0e0e0;
  font-weight: 400;
  width: 70%;
  line-height: 1.4;
}

.spec-value {
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 500;
  text-align: right;
  width: 30%;
}

/* BADGE-URI STANDARD/OPȚIONAL - COMPACTE */
.badge-standard,
.badge-optional {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-standard {
  background-color: rgba(0, 170, 255, 0.15);
  color: #00aaff;
  border: 1px solid rgba(0, 170, 255, 0.3);
}

.badge-optional {
  background-color: rgba(255, 165, 0, 0.15);
  color: #ffa500;
  border: 1px solid rgba(255, 165, 0, 0.3);
}

/* SEARCH HIGHLIGHT */
.spec-table tbody tr.search-match {
  background-color: rgba(0, 170, 255, 0.08);
  animation: highlight 0.5s ease;
}

@keyframes highlight {
  0% {
    background-color: rgba(0, 170, 255, 0.2);
  }
  100% {
    background-color: rgba(0, 170, 255, 0.08);
  }
}

.spec-table tbody tr.search-hidden {
  display: none;
}

/* NOTE - COMPACTE */
.spec-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
}

.spec-note sup {
  font-size: 0.7rem;
}

/* LEGENDĂ - COMPACTĂ */
.legend-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(0, 170, 255, 0.05);
  border-left: 3px solid #0076ff;
  border-radius: 6px;
}

.legend-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #00aaff;
  margin-bottom: 0.6rem;
}

.legend-item {
  font-size: 0.85rem;
  color: #e0e0e0;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.legend-item:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .specs-wrapper {
    grid-template-columns: 1fr;
  }

  .specs-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .spec-tab {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: none;
    padding: 1rem 0.8rem;
    font-size: 0.82rem;
    text-align: center;
  }

  .spec-tab:last-child {
    border-right: none;
  }

  .spec-tab.active::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
  }

  .specs-content {
    padding: 1.5rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .specs-section {
    padding: 3rem 1rem;
  }

  .specs-tabs {
    grid-template-columns: 1fr;
  }

  .spec-tab {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .specs-content {
    padding: 1.2rem 0.8rem;
  }

  .spec-label,
  .spec-value {
    padding: 0.65rem 0.7rem;
    font-size: 0.85rem;
  }

  .spec-label {
    width: 65%;
  }

  .spec-value {
    width: 35%;
  }

  .legend-box {
    padding: 0.9rem;
  }

  .search-bar-wrapper {
    margin-bottom: 1.5rem;
  }

  .search-bar {
    padding: 0.6rem 0.8rem;
  }

  .search-input {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .spec-table {
    font-size: 0.82rem;
  }

  .spec-label {
    width: 60%;
    padding: 0.6rem 0.5rem;
    font-size: 0.82rem;
  }

  .spec-value {
    width: 40%;
    padding: 0.6rem 0.5rem;
    font-size: 0.82rem;
  }

  .badge-standard,
  .badge-optional {
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
  }

  .search-bar {
    padding: 0.5rem 0.7rem;
  }

  .search-input {
    font-size: 0.85rem;
  }

  .search-icon {
    width: 18px;
    height: 18px;
  }
}




#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
}

#lightbox::before,
#lightbox::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border: solid white;
  border-width: 0 4px 4px 0;
  padding: 8px;
  cursor: pointer;
  user-select: none;
}

#lightbox::before {
  left: 50px;
  transform: translateY(-50%) rotate(135deg);
}

#lightbox::after {
  right: 50px;
  transform: translateY(-50%) rotate(-45deg);
}







 <style>
    /* ========== HERO ========== */
    .hero {
      position: relative;
      height: 100vh;
      /* Atenție: Calea imaginii este locală și s-ar putea să nu funcționeze pe alte sisteme.
         Asigură-te că imaginea 'panama-van-2024-lifestyle-080-1536x1024-1.jpg' este accesibilă. */
      background: url("panama-van-2024-lifestyle-080-1536x1024-1.jpg") center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: flex-end; /* SCHIMBARE AICI: Aliniază conținutul în partea de jos */
      color: #fff;
      overflow: hidden;
      padding-top: 76px;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        rgba(0,0,0,0.35) 10%,
        rgba(0,0,0,0.75) 90%);
      z-index: 1;
    }

   



/* ========== NAVIGATION UNIFORMĂ ========== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.2rem 3rem;
  background: transparent;
  backdrop-filter: blur(0px);
}

.main-nav.hero-nav {
  background: transparent;
}

.main-nav.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 0.8rem 3rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-svg {
  width: 180px;
  height: auto;
  transition: all 0.3s ease;
}

.main-nav.scrolled .nav-logo-svg {
  width: 160px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: block;
}

.nav-menu > li > a:hover {
  color: #00aaff;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 0.8rem 0;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.dropdown-menu a:hover {
  background: rgba(0, 170, 255, 0.1);
  color: #00aaff;
  padding-left: 2rem;
}

.dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.5rem 1rem;
}

/* Hamburger Mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
@media (max-width: 1024px) {
  .main-nav {
    padding: 1rem 1.5rem;
  }

  .main-nav.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu > li > a {
    padding: 1.2rem 0;
    font-size: 0.95rem;
  }

  .dropdown-toggle::after {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 0.9rem 1.5rem;
    font-size: 0.85rem;
  }

  .dropdown-menu a:hover {
    padding-left: 2rem;
  }

  .nav-logo-svg {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .nav-menu {
    width: 100%;
  }

  .nav-logo-svg {
    width: 140px;
  }
}













    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      margin-top: 10rem;
      margin-bottom: 8rem; /* SCHIMBARE AICI: Mărimea spațiului de jos */
      padding: 0 1.5rem 4.5rem; /* Adaugă padding jos pentru spațiu suplimentar */
      animation: fadeUp 1.3s ease forwards;
    }
    .hero-content h1 {
      font-size: clamp(2.3rem, 4.2vw, 3.4rem);
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: 0.02em;
    }
    .hero-content p {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }
    .btn-primary,
    .btn-outline {
      display: inline-block;
      padding: 0.9rem 1.8rem;
      border-radius: 999px;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .btn-primary {
      background-color: #0076ff;
      color: #fff;
      box-shadow: 0 4px 14px rgba(0,118,255,0.4);
    }
    .btn-primary:hover {
      background-color: #005fd1;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0,118,255,0.6);
    }
    .btn-outline {
      border: 1px solid #fff;
      color: #fff;
      background: transparent;
    }
    .btn-outline:hover {
      background: #fff;
      color: #111;
      transform: translateY(-2px);
    }

    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 900px) {
      .hero-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
      }
      .hero-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
      }
      .hero-content {
        margin-bottom: 5rem;
        padding: 0 1rem;
      }
    }

    /* ========== CAROUSEL BACKGROUND UTIL ========== */
    .bg-xgo-gradient {
      background: linear-gradient(135deg, #E85D3B 0%, #DC5A38 50%, #C94F31 100%);
    }
    .card-gradient {
      background: linear-gradient(180deg, #F47456 0%, #E85D3B 100%);
    }
    .vehicle-card {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .vehicle-card:hover { transform: scale(1.02); }
    .vehicle-image {
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .vehicle-card:hover .vehicle-image { transform: scale(1.05); }
    .nav-arrow { transition: all 0.3s ease; }
    .nav-arrow:hover { background: rgba(255, 255, 255, 0.2); }
    .indicator { transition: all 0.3s ease; }
    .indicator.active {
      width: 2rem;
      background: #fff;
    }
    .indicator:not(.active) {
      width: 0.5rem;
      background: rgba(255,255,255,0.4);
    }
    .indicator:not(.active):hover {
      background: rgba(255,255,255,0.6);
    }

    /* ========== PEAK 5,05 / 5,45 SECTION ========== */
    #panama-peak.peak-wrapper {
      background-color: #1f1f21;
      padding: 3rem 1.5rem;
      font-family: "Inter", system-ui, sans-serif;
    }
    .peak-grid {
      max-width: 1440px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
      border-radius: 18px;
      overflow: hidden;
    }
    .peak-card {
      padding: 2.5rem 3rem;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease, box-shadow 0.35s ease, background 0.35s ease;
    }
    .peak-card-dark { background-color: #303236; }
    .peak-card-orange { background-color: #f26737; }
    .peak-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.32);
    }

    .peak-header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }
    .peak-main-logo {
      max-width: 260px;
      height: auto;
    }

    .peak-content { margin-top: 1.6rem; }
    .peak-subtitle {
      font-size: 0.98rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1rem;
    }

    .peak-features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.7rem;
      display: grid;
      gap: 0.45rem;
    }
    .peak-feature {
      position: relative;
      padding-left: 1.6rem;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.92);
    }
    .peak-feature::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 10px;
      height: 6px;
      border-left: 2px solid #00d2ff;
      border-bottom: 2px solid #00d2ff;
      transform: rotate(-45deg);
    }

    .peak-length {
      margin: 1.2rem 0 1.4rem;
      font-size: 1.5rem;
      letter-spacing: 0.14em;
      text-align: center;
      position: relative;
    }
    .peak-length::before,
    .peak-length::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 35%;
      height: 1px;
      background-color: rgba(255,255,255,0.4);
    }
    .peak-length::before { left: 0; }
    .peak-length::after { right: 0; }

    .peak-van-wrap {
      display: flex;
      justify-content: center;
      margin: 1rem 0 1.4rem;
    }
    .peak-van-img {
      max-width: 80%;
      transition: transform 0.35s ease;
    }
    .peak-van-wrap:hover .peak-van-img {
      transform: scale(1.04);
    }

    .peak-price-line {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-bottom: 1.4rem;
    }
    .peak-price-label {
      font-size: 0.9rem;
      opacity: 0.85;
    }
    .peak-price {
      font-size: 2rem;
      font-weight: 600;
    }

    .peak-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }
    .peak-btn-primary,
    .peak-btn-ghost {
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 999px;
      padding: 0.85rem 1.9rem;
      letter-spacing: 0.14em;
      font-size: 0.8rem;
      border: 1px solid transparent;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .peak-btn-primary {
      background-color: #0076ff;
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(0,118,255,0.55);
    }
    .peak-btn-primary:hover {
      background-color: #005fd1;
      box-shadow: 0 6px 20px rgba(0,118,255,0.7);
      transform: translateY(-1px);
    }
    .peak-btn-ghost {
      background-color: transparent;
      color: #ffffff;
      border-color: rgba(255,255,255,0.9);
    }
    .peak-btn-ghost:hover {
      background-color: #ffffff;
      color: #1f1f21;
      transform: translateY(-1px);
    }

    @media (max-width: 900px) {
      .peak-card {
        padding: 2.1rem 1.6rem 2.5rem;
      }
      .peak-main-logo {
        max-width: 220px;
      }
      .peak-length::before,
      .peak-length::after {
        width: 28%;
      }
    }
  </style>

/* ========== DROPDOWN ÎMBUNĂTĂȚIT CU ACȚIUNI - VERSIUNE FIXATĂ ========== */

/* Asigurăm-ne că item-urile modelelor sunt poziționate relativ */
.dropdown-menu li.model-item {
  position: relative; /* CRUCIAL: Face ca submeniul să fie poziționat relativ la acest item */
}

/* Padding pentru săgeată vizuală */
.dropdown-menu li.model-item > a {
  padding-right: 2.5rem;
}

/* Săgeată vizuală pe item-uri cu submeniu */
.dropdown-menu li.model-item > a::after {
  content: "→";
  position: absolute;
  right: 1.5rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.dropdown-menu li.model-item:hover > a::after {
  opacity: 1;
}

/* Submeniu cu acțiuni - POZIȚIONAT CORECT */
.model-actions {
  position: absolute;
  left: 100%; /* La dreapta item-ului părinte */
  top: 0; /* Aliniat cu partea de sus a item-ului părinte */
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  margin-left: 0.5rem;
  list-style: none;
  z-index: 1001; /* Peste dropdown-ul principal */
  pointer-events: none; /* Nu blochează hover-ul pe alte item-uri */
}

/* Când faci hover pe un model-item, arată DOAR submeniul său */
.dropdown-menu li.model-item:hover .model-actions {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto; /* Activează interacțiunea cu submeniul */
}

/* Stiluri pentru link-urile din submeniu */
.model-actions li {
  list-style: none;
}

.model-actions a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.model-actions a:hover {
  background: rgba(0, 170, 255, 0.1);
  color: #00aaff;
  padding-left: 2rem;
}

/* Bullet point la hover */
.model-actions a::before {
  content: "●";
  position: absolute;
  left: 0.8rem;
  font-size: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.model-actions a:hover::before {
  opacity: 1;
}

/* Mobile: Afișează acțiunile sub item */
@media (max-width: 1024px) {
  .model-actions {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    pointer-events: auto;
  }

  .dropdown-menu li.model-item:hover .model-actions {
    max-height: 150px;
  }

  .model-actions a {
    padding: 0.7rem 2rem;
    font-size: 0.8rem;
  }

  .model-actions a:hover {
    padding-left: 2.5rem;
  }
}

/* ========== BADGE EXCLUSIV TRY & BUY ========== */
.nav-exclusive {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}

.badge-exclusive {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.badge-exclusive::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
    transform: scale(1.05);
  }
}

@keyframes badgeShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50%, 100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Item special pentru Try & Buy in navbar */
.nav-exclusive-item a {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.nav-exclusive-item a:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
