@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Lato:wght@300;400;700&display=swap');
body, h1, h2, h3, p, a {
    font-family: 'Montserrat', sans-serif !important;
    text-rendering: optimizeLegibility;
}
:root {
  --green-lr: #00e87a;
  --green-glow: rgba(0, 232, 122, 0.25);
  --dark: #111111;
  --dark-2: #1a1a1a;
  --gray: #555;
  --light-gray: #f4f4f4;
  --border: #e8e8e8;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark-2);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 72px 0; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  color: var(--dark);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 48px;
}

/* ==========================================================================
   HERO 
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Reducem opacitatea gradientului pentru claritate maximă a pozei */
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.3)), 
                url('images/hero-nou.png') center/cover no-repeat;
    
    /* Forțăm browserul să randeze imaginea clar (fără blur) */
    image-rendering: -webkit-optimize-contrast;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; /* Mută textul jos, sub botul mașinii */
    padding-bottom: 80px;      /* Distanța butonului față de marginea de jos */
}
.hero::after, .hero::before { display: none !important; content: none !important; }

/* NAVBAR */
.hero-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Adăugăm un fundal negru transparent implicit care devine mai solid la scroll */
    background: rgba(0, 0, 0, 0.85); 
    padding: 15px 0;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-topbar-inner {
    max-width: 100%;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  width: 180px; /* Păstrăm lățimea pentru a nu "fugi" meniul din centru */
}

.hero-brand img {
  display: none !important; /* Ascunde logo-ul SVG complet */
}

.hero-brand img:hover { opacity: 0.85; }

.hero-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0; padding: 0;
}

.hero-nav ul li a {
    color: #ffffff !important; /* Forțează culoarea albă și elimină movul */
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-lr);
  transition: width 0.3s ease;
}

.h.hero-nav ul li a:hover {
    color: #00e87a !important; /* Se face verde la trecerea mouse-ului */
}
.hero-nav ul li a:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.lang-switch a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 7px 16px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
}

.lang-switch a:hover,
.lang-switch a.active {
  background: var(--green-lr);
  border-color: var(--green-lr);
  color: #000;
  box-shadow: 0 0 20px var(--green-glow);
}

/* Hero content — centrat în spațiul rămas */
.hero-content {
    text-align: center;
    color: #ffffff !important;
    z-index: 10;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(30px, 6vw, 60px);
    font-weight: 900;
    color: #ffffff !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.9); /* Umbră pentru contrast pe alb */
    margin: 0;
}

.hero-content h2 {
    font-size: clamp(20px, 4vw, 35px);
    color: #00e87a;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-main {
    /* Folosim Montserrat pentru claritate maximă */
    font-family: 'Montserrat', sans-serif !important;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    background-color: #00e87a;
    color: #000000 !important;
    
    /* Mărim spațiul lateral ca litera Ă să nu mai fie înghesuită */
    padding: 18px 60px; 
    
    font-size: 16px;
    font-weight: 800; /* Foarte gros pentru impact vizual */
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    
    /* MODIFICARE CHEIE: Resetăm letter-spacing la 0 pentru a repara litera Ă */
    letter-spacing: 0px !important;
    
    /* Îmbunătățește claritatea textului pe ecrane Retina/4K */
    -webkit-font-smoothing: antialiased;
    
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-main:hover {
    background-color: #00ff87;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 232, 122, 0.4);
}
.hero-car-image img {
    max-width: 1000px; /* Am mărit de la 650px la 1000px */
    width: 95%;       /* Ocupă aproape tot ecranul pe lățime */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.7);
    margin-bottom: 40px; /* Spațiu până la butonul Sună Acum */
}

/* ==========================================================================
   DESPRE NOI — spațiu redus față de hero
   ========================================================================== */

.about {
  background: #fff;
  padding: 64px 0;   /* mai puțin față de default 96px */
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: flex-start;
}

.about-content .section-title {
  text-align: left;
  font-size: 42px;
  margin-bottom: 28px;
  line-height: 1.85;
}

.main-paragraph {
  font-size: 18px;
  color: #444;
  margin-bottom: 28px;
  line-height: 1.8;
}

.specialist-box { margin-bottom: 24px; }

.about-content h3 {
  font-size: 12px;
  font-weight: 800;
  color: var(--green-lr);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-content h3::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--green-lr);
  flex-shrink: 0;
}

.specialist-box > p {
  font-size: 15.5px;
  color: #555;
  margin-bottom: 18px;
}

.about-list { list-style: none; padding: 0; margin-top: 6px; }

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 17px;
  color: #444;
  line-height: 1.65;
}

.about .about-list li::before {
  content: "✓";
  color: var(--green-lr);
  font-weight: 900;
  font-size: 12px;
  background: rgba(0,232,122,0.12);
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-list li strong { color: var(--dark); }

.commitment-section {
  padding: 20px 24px;
  background: var(--light-gray);
  border-left: 3px solid var(--green-lr);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 24px;
}

.commitment-section h3 { margin-bottom: 8px; }

.commitment-section p {
  font-style: italic;
  color: #555;
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0;
}

.about-visuals { position: sticky; top: 80px; }

.about-image-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-img, .img-primary {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-img:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }

.experience-box {
  position: absolute;
  top: 210px;
  left: -20px;
  background: var(--green-lr);
  color: #000;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-align: center;
  z-index: 10;
  box-shadow: 0 10px 28px rgba(0,232,122,0.4);
}

.experience-box span { font-size: 28px; display: block; line-height: 1; }
.experience-box p { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.about-image-container::after,
.image-box::after {
  content: "" !important;
  position: absolute !important;
  bottom: 12px !important; right: 12px !important;
  left: auto !important; top: auto !important;
  width: 90px !important; height: 44px !important;
  background: url('images/logo-invers-silueta.svg') no-repeat center/contain !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.38 !important;
  z-index: 5; pointer-events: none;
}

.about-image-container::before,
.image-box::before { display: none !important; }

/* ==========================================================================
   SERVICII
   ========================================================================== */

.services { background: var(--light-gray); position: relative; padding: 64px 0; }

.services .section-title { text-align: center; }

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-lr), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-lr);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.service-card::after { display: none !important; content: none !important; }

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 42px; margin-bottom: 18px; display: block; }

.service-card h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 16px; color: var(--gray); line-height: 1.7; }

/* ==========================================================================
   LOUNGE
   ========================================================================== */

.lounge { background: #fff; padding: 64px 0; }

.lounge .about-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.image-box { position: relative; }

.lounge .about-content .section-title { text-align: left; font-size: 34px; margin-bottom: 6px; }

.lounge .about-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--light-gray);
  border-radius: var(--radius);
  border: 1px solid transparent;
  margin-bottom: 10px;
  transition: var(--transition);
  font-size: 15.5px;
  line-height: 1.6;
}

.lounge .about-list li::before { display: none !important; }

.lounge .about-list li:hover {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.lounge-icon { font-size: 20px; flex-shrink: 0; line-height: 1.3; }

.lounge-text { flex: 1; color: #444; }

.lounge-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

/* ==========================================================================
   FLOATING CONTACT
   ========================================================================== */

.floating-contact {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 9999;
}

.contact-btn {
  width: 54px; height: 54px;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  display: block; transition: var(--transition);
}

.contact-btn:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.contact-btn img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 32px 0;
  text-align: center;
  font-size: 13.5px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .about-grid,
  .lounge .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visuals { position: relative; top: auto; }
  .experience-box { left: 10px; top: 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { height: 70vh; }
  .hero-topbar-inner { padding: 14px 20px; }
  .hero-nav { display: none; }
  .hero-brand img { height: 70px; }
  .hero-content h1 { font-size: 36px; }
  .hero-content h2 { font-size: 26px; letter-spacing: 2px; }
  section { padding: 52px 0; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
}
/* ==========================================================================
   GALERIE STYLE
   ========================================================================== */

/* Containerul de filtre (butoanele de sus) */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, 
.filter-btn.active {
  background: var(--green-lr);
  border-color: var(--green-lr);
  color: #000;
  box-shadow: 0 4px 15px var(--green-glow);
}

/* Grila de imagini */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  /* În loc de height fix, poți folosi raport de aspect (ex: 4:3) */
  aspect-ratio: 4 / 3; 
  height: auto; 
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: zoom-in;
  min-height: 250px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  /* 'cover' păstrează proporția și umple spațiul de 250px */
  object-fit: cover !important; 
  /* 'center' asigură că vedem mijlocul pozei, nu doar un colț */
  object-position: center !important; 
  transition: transform 0.6s ease;
  display: block; /* Elimină micul spațiu gol de sub imagine */
}
/* Efectul negru care apare peste poză la hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay span {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  border: 1px solid var(--green-lr);
  padding: 8px 16px;
  border-radius: 4px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   LIGHTBOX (Fereastra de mărire)
   ========================================================================== */

.lightbox {
  display: none; /* Ascuns implicit din JS */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 20px;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Ajustări pentru Mobil */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
/* BOOKING SECTION */
.booking-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.booking-info h2 {
  margin-bottom: 20px;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item span {
  font-size: 24px;
}

/* FORM STYLING */
.booking-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

/* Adaugă asta sub, ca să arate bine pe mobil */
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr; /* Pe mobil, le punem unul sub altul */
  }
}

.booking-form input, 
.booking-form select, 
.booking-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.booking-form input:focus, 
.booking-form select:focus, 
.booking-form textarea:focus {
  border-color: #005a2b; /* Verdele Land Rover */
  box-shadow: 0 0 8px rgba(0,90,43,0.1);
}

@media (max-width: 768px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }
  .booking-form-container {
    padding: 25px;
  }
}
.map-wrapper {
    width: 100%;
    max-width: 600px; /* Se aliniază cu lățimea iframe-ului tău */
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.map-bar {
    padding: 15px;
    background: #ffffff;
    text-align: center;
}

.btn-gps {
    display: inline-block;
    background-color: #1a73e8; /* Albastru Google Maps */
    color: white !important;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-gps:hover {
    background-color: #1557b0;
    text-decoration: none;
}

/* Ajustare pentru ecrane mici (telefoane) */
@media (max-width: 480px) {
    .btn-gps {
        width: 100%;
        box-sizing: border-box;
    }
}
.contact-section {
    display: flex;
    flex-wrap: wrap; /* Permite așezarea pe rânduri noi pe mobil */
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Stil pentru cutia hărții */
.map-wrapper {
    flex: 1 1 500px; /* Harta ocupă spațiu prioritar */
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Stil pentru cutia cu informații */
.company-info {
    flex: 1 1 350px; /* Datele ocupă restul spațiului */
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    border-left: 5px solid #1a73e8; /* Linie decorativă albastră */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.company-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 15px;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Stil pentru butoane și coduri */
.btn-gps {
    display: inline-block;
    background: #1a73e8;
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-gps:hover { background: #1557b0; }

#iban-text {
    background: #eee;
    padding: 2px 5px;
    font-weight: bold;
}
.brands-section {
    max-width: 1100px;
    margin: 60px auto;
    text-align: center;
    padding: 20px;
}

.brands-section h3 {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.brands-section h3::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #1a73e8;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px; /* Spațiu între logo-uri */
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px; /* Lățime fixă pentru aliniere */
    height: 80px;
    transition: transform 0.3s ease;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Păstrează proporțiile fără să deformeze imaginea */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-50px);
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Ajustare pentru mobil */
@media (max-width: 600px) {
    .brand-item {
        width: 120px;
    }
}
/* Face textul de sub Land Rover lizibil pe mobil */
.hero p {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-weight: bold;
    background: rgba(0, 0, 0, 0.2); /* Adaugă un strat discret de fundal */
    padding: 5px;
    border-radius: 5px;
}

/* Forțează afișarea meniului pe mobil dacă acesta dispare */
@media (max-width: 768px) {
    nav ul {
        display: flex !important; /* Asigură-te că lista e vizibilă */
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        padding: 0;
    }
    
    .logo img {
        max-width: 80px; /* Ajustează logo-ul să nu fie prea mare pe mobil */
    }
}
.language-switcher {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 9999;
}

.language-switcher a {
    padding: 5px 10px;
    font-size: 12px;
}
.btn-nav {
    display: inline-block !important;
    background-color: #00ff85 !important; /* Verdele tău */
    color: #000 !important;
    padding: 15px 30px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    border-radius: 8px !important;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 255, 133, 0.3);
}

@media screen and (max-width: 768px) {
    nav {
        /* Schimbăm din block în column pentru aliniere verticală */
        display: flex !important; 
        flex-direction: column;
        
        /* Îl poziționăm sub header */
        position: absolute;
        top: 60px; /* Ajustează această valoare după înălțimea logo-ului tău */
        left: 0;
        width: 100%;
        
        background: #111 !important;
        z-index: 999; /* Îl aducem în față */
        
        /* Opțional: Adăugăm o tranziție fină sau un border jos */
        border-bottom: 2px solid #00ff88; 
        padding-bottom: 20px;
        
            }
            nav a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid #222;
        width: 100%;
        display: block;
    }
}
    nav ul {
        display: flex !important;
        flex-wrap: wrap; /* Permite trecerea pe rândul următor dacă sunt multe link-uri */
        justify-content: center !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }

    nav ul li a {
        font-size: 12px !important;
        font-weight: bold !important;
        color: #00ff85 !important; /* Verde pentru vizibilitate */
        text-transform: uppercase;
    }

    /* Mutăm butoanele RO/RU mai sus să nu încurce */
    .language-switcher {
        position: relative !important;
        text-align: right;
        padding-right: 20px;
        margin-bottom: 10px;
        display: flex;
        justify-content: flex-end;
    }
    .hero {
    padding-top: 60px !important; /* Împinge conținutul sub meniu */
}
/* Pe calculatoare ascundem butonul hamburger */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.bar {
    width: 28px;
    height: 3px;
    background-color: #00ff88; /* Verdele tău de pe buton */
    border-radius: 2px;
    transition: 0.3s;
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
    /* Butonul Hamburger */
    .menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1002;
    }

    /* Meniul propriu-zis */
    .hero-nav {
        display: none !important; /* Ascuns implicit */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(17, 17, 17, 0.95);
        flex-direction: column;
        z-index: 1001;
        padding: 20px 0;
    }

    /* Starea activă (declanșată de JS) */
    .hero-nav.active {
        display: flex !important;
    }

    .hero-nav ul {
        flex-direction: column !important;
        align-items: center;
        gap: 20px !important;
    }
   .hero {
        /* 1. Revenim la cover pentru a umple ecranul, dar limităm înălțimea */
        min-height: 85vh !important; 
        background-image: url('images/hero-nou.png') !important;
        background-size: 160% auto !important;
        
        /* 2. Mutăm poza ca să vedem mașina (focalizăm pe partea stângă) */
        background-position: 25% center !important; 
        background-repeat: no-repeat !important;

        /* 3. Organizăm conținutul să nu sufoce poza */
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end; /* Împingem textul spre baza pozei */
        padding-bottom: 30px !important;
        padding-top: 100px !important;
    }
    .hero-content {
        margin-top: 20px !important; 
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 20px 10px !important;
    }

    .hero-content h1 {
        font-size: 1.5rem !important; /* Dimensiune echilibrată */
        margin-bottom: 10px !important;
    }
}

/* Stil butoane navigație sub Sună Acum */
.nav-buttons { display: flex; gap: 10px; justify-content: center; margin-top: 15px; width: 100%;}
.btn-map { flex: 1;
    padding: 15px;
    text-align: center;
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase; }
.google { background: #4285F4; }
.waze { background: #33CCFF; }
.map-container iframe {
    display: block; /* Elimină spațiul mic de sub iframe */
}

/* REPARARE MENIU MOBIL */
@media screen and (max-width: 768px) {
    .nav-list {
        display: none; /* Ascuns până la click */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        z-index: 9999;
    }

    .nav-list.active { display: flex; } /* Apare la click */

    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #00ff85;
        margin: 5px;
    }
}
.hero-logo-float {
    position: fixed;
    top: -75px; /* Îl coborâm sub bara de meniu (care are aprox 70-80px) */
    left: 50px;  /* Distanța de marginea din stânga */
    z-index: 1001; /* Sub meniu, dar peste imaginea hero */
}

.hero-logo-float img {
    width: 320px; /* Ajustează dimensiunea logo-ului aici */
    height: auto;
    /* Adăugăm o umbră neagră fină sub SVG pentru contrast maxim pe fundal complex */
    filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 1))
            drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.9))
            drop-shadow(0px 0px 30px rgba(255, 255, 255, 0.6));
           transition: all 0.3s ease;  
}

/* Ajustare pentru ecrane mici (Mobil) */
@media (max-width: 768px) {
    .hero-logo-float {
        top: 80px;
        left: 20px;
    }
    .hero-logo-float img {
        width: 140px;
    }
}
.contact-wrapper {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap; /* Pentru a fi responsiv pe mobil */
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.map-box, .info-box {
    flex: 1;
    min-width: 320px; /* Lățime minimă pentru mobil */
}

/* BUTOANELE DE SUS */
.nav-links {
    display: flex;
}

.map-btn {
    flex: 1;
    padding: 16px;
    text-align: center;
    color: white !important;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s;
}

.g-maps { background-color: #4285F4; }
.w-waze { background-color: #33CCFF; }
.map-btn:hover { filter: brightness(1.1); }

/* SECȚIUNEA DE INFORMAȚII */
.info-box {
    padding: 40px;
    display: flex;
    align-items: center;
}

.info-content h2 {
    color: #4285F4;
    margin-bottom: 5px;
}

.company-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #333;
}

.contact-details {
    list-style: none; /* Ne asigurăm că nu apar punctele de listă aici */
    padding: 0;
}

.contact-details li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.contact-details code {
    background: #f0f0f0;
    padding: 2px 5px;
    border-radius: 3px; }
    /* Stil special pentru butonul Chip-Tuning din meniu */
.nav-chip-tuning {
    color: #00ff85 !important; /* Verdele tău neon */
    font-weight: 800 !important;
    border: 2px solid #00ff85 !important;
    padding: 8px 18px !important;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    position: relative;
    /* Efect de umbră/strălucire discretă */
    box-shadow: 0 0 10px rgba(0, 255, 133, 0.2);
}

.nav-chip-tuning:hover {
    background-color: #00ff85 !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 255, 133, 0.6);
    transform: translateY(-2px); /* Se ridică puțin la hover */
}

/* Efect de animație subtilă (opțional - "pulsare") */
@keyframes pulse-neon {
    0% { box-shadow: 0 0 5px rgba(0, 255, 133, 0.4); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 133, 0.8); }
    100% { box-shadow: 0 0 5px rgba(0, 255, 133, 0.4); }
}

.nav-chip-tuning {
    animation: pulse-neon 2s infinite;
}
/* ==========================================================================
   CHIP TUNING MODELS - MODERN WOW LOOK
   ========================================================================== */

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Umbră fină ca pe lrfresh.ru */
    border: 1px solid rgba(0, 0, 0, 0.02); /* Bordură aproape invizibilă */
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px); /* Cardul se ridică */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* Umbra devine mai adâncă */
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.10); /* Mașina se apropie discret de utilizator */
}

.card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
    text-transform: uppercase;
}

.card p {
    color: var(--neon); /* Folosește culoarea ta verde neon pentru textul de jos */
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

/* Efect de fundal subtil la hover */
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,255,133,0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}
/* Fundalul paginii de modele */
body {
    background-color: #f9fbfd; /* Un alb-gri curat care face cardurile să "sară" în ochi */
}

.back-btn {
    display: inline-block;
    margin: 50px 0;
    padding: 15px 30px;
    background: #1a1a1a; /* Fundal negru */
    color: #00ff85; /* Text verde neon */
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s all;
}

.back-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 133, 0.3);
}
/* --- Stil pentru ecrane mari (Desktop) --- */
.fixed-logo img {
    width: 220px;
    transition: all 0.3s ease; /* Face trecerea lină */
}
@media (max-width: 768px) {
    /* Forțăm containerul logo-ului să fie mic și sus */
    div.logo-mobil {
        top: 5px !important;    /* Aproape lipit de marginea de sus */
        left: 10px !important;   /* Lipit de stânga */
        width: 70px !important;  /* Lățime foarte mică pentru container */
        height: auto !important;
    }

    /* Forțăm imaginea din interior să respecte lățimea de 70px */
    div.logo-mobil a img {
        width: 70px !important;  /* Aici e cheia! */
        max-width: 70px !important;
        height: auto !important;
    }

    /* Mărim spațiul de sus al paginii ca să nu se suprapună nimic */
    body {
        padding-top: 90px !important; 
    }

    /* Micșorăm titlul să nu se bată cu logo-ul */
    #main-title h1 {
        font-size: 20px !important;
        margin-top: 10px !important;
    }
}
.hero-topbar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Forțăm meniul (cele 3 linii) să fie primul vizual în stânga */
    #mobile-menu {
        order: -1; 
    }

    /* Ascundem spacer-ul pe mobil ca să nu ocupe loc degeaba */
    .logo-spacer {
        display: none;
    }

    /* Butoanele de limbă rămân la final (dreapta) */
    .lang-switch {
        order: 2;
    }
.tuning-header-new {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-left {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.home-link { color: #888; text-decoration: none; }
.sep { margin: 0 5px; color: #ccc; }
.current { color: #000; }

.logo-main { height: 40px; width: auto; }

.exit-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    gap: 8px;
}

.exit-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.3s;
}

.exit-button:hover .exit-icon {
    background: #000;
    color: #00ff85;
}
/* Efect de pulsare pentru butonul de Chip Tuning */
a[href="chip-tuning.html"] {
    box-shadow: 0 0 5px rgba(0, 255, 133, 0.2);
    display: inline-block;
}

a[href="chip-tuning.html"]:hover {
    background-color: #00ff85;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(0, 255, 133, 0.6);
    transform: translateY(-2px);
}
/* Elimină linia de sub butonul de Chip Tuning la hover */
ul li a.nav-chip-tuning::after, 
ul li a.nav-chip-tuning::before {
    display: none !important;
    content: none !important;
}

ul li a.nav-chip-tuning:hover {
    text-decoration: none !important;
    border-bottom: 1px solid #00ff85 !important; /* Asta păstrează chenarul tău, nu linia de dedesubt */
}
/* Ascuns pe calculatoare (Desktop) */
.chip-promo-pill {
    display: none;
}

/* Stil pentru Mobil */
@media (max-width: 768px) {
    .chip-promo-pill {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 90px; /* Poziționat sub logo-ul tău */
        left: 50%;
        transform: translateX(-50%);
        z-index: 8000;
        background: #1a1a1a; /* Fundal închis pentru contrast */
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 50px;
        border: 2px solid #00ff85; /* Bordură neon */
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 11px;
        text-decoration: none;
        letter-spacing: 1px;
        white-space: nowrap;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        animation: pulsePill 2s infinite;
        transition: 0.3s all;
    }

    .chip-promo-pill i {
        color: #00ff85;
        margin-right: 8px;
        font-size: 13px;
    }

    .chip-promo-pill span {
        color: #00ff85;
        margin-left: 8px;
        font-size: 10px;
        border-left: 1px solid #444;
        padding-left: 8px;
    }

    /* Efectul de puls pentru a atrage atenția */
    @keyframes pulsePill {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 255, 133, 0.7);
            transform: translateX(-50%) scale(1);
        }
        70% {
            box-shadow: 0 0 0 12px rgba(0, 255, 133, 0);
            transform: translateX(-50%) scale(1.05);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(0, 255, 133, 0);
            transform: translateX(-50%) scale(1);
        }
    }
}