/* Reset & fonturi de bază */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f8fa;
  color: #222;
  overflow-x: auto;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.logo__icon {
  background: #ffd600;
  color: #222;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 8px;
  font-weight: bold;
}
.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav__link {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover {
  color: #7c3aed;
}

.nav__link--tracking {
  background: #ffd700 !important;
  color: #222 !important;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.nav__link--tracking:hover {
  background: #ffed4e !important;
}

/* Search Container */
.search-container {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 4px;
  margin: 0 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  min-width: 140px;
}

.search-container:hover,
.search-container:focus-within {
  background: #fff;
  border-color: #ffd600;
  box-shadow: 0 2px 8px rgba(255, 214, 0, 0.2);
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 6px 8px;
  font-size: 14px;
  color: #222;
  width: 100px;
  transition: width 0.3s ease;
}

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

.search-input:focus {
  width: 120px;
}

.search-btn {
  background: #ffd600;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #222;
}

.search-btn:hover {
  background: #ffed4e;
  transform: scale(1.05);
}

/* Call Button */
.nav__link--call {
  background: rgb(245, 166, 35) !important;
  color: #fff !important;
  border: none;
  padding: 8px 10px !important;
  border-radius: 4px !important;
  cursor: pointer;
  font-weight: 600 !important;
  margin-left: 8px;
  transition: all 0.3s ease !important;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
  font-size: 14px;
}

.nav__link--call:hover {
  background: #ff5722 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.nav__link--call svg {
  width: 12px;
  height: 12px;
}

/* Hero Section */
.hero {
  background: #f7f8fa;
  padding: 48px 0 0 0;
  overflow: hidden; /* ascund orice depășește secțiunea */
}
.hero__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.hero__content {
  flex: 1 1 350px;
  min-width: 320px;
  max-width: 480px;
}
.hero__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 8px #fff;
}
.hero__list {
  list-style: none;
  margin-bottom: 24px;
}
.hero__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
}
.hero__list li:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #ffd600;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2px;
}
.btn {
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px #e0e0e0;
}
.btn--yellow {
  background: #ffd600;
  color: #222;
}
.btn--yellow:hover {
  background: #ffe066;
}
.hero__visual {
  flex: 1 1 350px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  margin-top: 24px;
}
.hero__discount {
  background: #7c3aed;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  padding: 10px 32px;
  border-radius: 18px;
  position: absolute;
  left: -60px;
  top: 0;
  transform: rotate(-7deg);
  box-shadow: 0 2px 12px #d1c4e9;
  z-index: 2;
}
.hero__images {
  width: 320px;
  height: 100%; /* ocupă toată înălțimea secțiunii hero vizual */
  min-height: 380px;
  max-height: 480px;
  background: transparent;
  border-radius: 12px;
  margin-top: 48px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  position: relative;
}
.hero__bg-tilted {
  position: absolute;
  left: 0;
  top: -50px;
  width: 130%;
  height: 120%; /* să ajungă până la marginea de jos */
  background: #e5e5e5;
  transform: rotate(6deg);
  z-index: 0;
}
.hero__phone {
  position: absolute;
  z-index: 2;
  height: 380px;
  object-fit: contain;
  transition: transform 0.2s;
}
.hero__phone--back {
  left: 40px;
  top: 30px;
  z-index: 2;
  filter: drop-shadow(0 4px 16px #bbb);
}
.hero__phone--front {
  left: 30px;
  top: -50px;
  z-index: 3;
  filter: drop-shadow(0 4px 16px #bbb);
}
.hero__quality {
  position: absolute;
  left: -90px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  z-index: 4;
}
.quality__highest {
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: 2.5rem;
  padding: 4px 16px;
  transform: rotate(-1deg);
  border-radius: 8px;
  box-shadow: 0 2px 8px #e0e0e0;
}
.quality__label {
  background: #ffd600;
  color: #222;
  transform: rotate(7deg);
  font-weight: 700;
  font-size: 2.5rem;
  padding: 4px 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px #e0e0e0;
}

/* About Section */
.about {
  background: #fff;
  padding: 48px 0 56px 0;
  box-shadow: 0 2px 16px #e0e0e0;
}
.about__container {
  text-align: center;
}
.about__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.about__highlight {
  color: #7c3aed;
}
.about__desc {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.about__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.feature {
  background: #f7f8fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px #e0e0e0;
  padding: 24px 20px 32px 20px;
  width: 300px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature__icon {
  width: 44px;
  height: 44px;
  background: #ffd600;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.feature__title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.feature__desc {
  color: #555;
  font-size: 0.98rem;
}
.about__cta {
  margin-top: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Sectiunea Reparație */
.repair {
  background: #fff;
  padding: 0;
  position: relative;
  z-index: 1;
}
.repair__bg {
  position: relative;
  height: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.repair__img-bg {
  width: 100vw;
  height: 800px;
  min-height: unset;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(0.93);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.repair__card {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: 8vw;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px #bbb8;
  padding: 36px 32px 32px 32px;
  max-width: 370px;
  min-width: 270px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.repair__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.repair__desc {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

/* Sectiunea Serviciile noastre */
.services {
  background: #fff;
  padding: 48px 0 0 0;
  box-shadow: 0 2px 16px #e0e0e0;
}
.services__container {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}
/* Fundal gri pentru subsecțiunea cu titlul și cardurile */
.services__pay-section {
  background: #ededed;
  margin-top: 0;
  padding: 72px 0 40px 0;
  position: relative;
}
.services__badge--big {
  width: 120px;
  height: 120px;
  position: absolute;
  left: 44%;
  top: -130px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px #0001;
  border: 6px solid #fff;
}
.services__pay-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-top: 80px;
}
.services__badge--big img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.services__pay-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0;
}
.services__pay-highlight {
  color: #7c3aed;
  font-weight: bold;
}
.services__pay-desc {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 36px;
  margin-top: 0;
}
.services__steps--lined {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 36px;
  margin-top: 32px;
}
.step {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0 18px 0 18px;
  width: 25%;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.step__icon--yellow {
  width: 48px;
  height: 48px;
  background: #ffd600;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.step__line {
  display: none;
}
.step--lined .step__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #222;
  opacity: 0.18;
  margin: 0 auto 18px auto;
}
.services__steps--lined .step--lined:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 24px;
  width: 60px;
  height: 2px;
  background: #222;
  opacity: 0.18;
  z-index: 2;
}
.services__steps--lined .step--lined:last-child::after {
  display: none;
}
.step__title {
  font-size: 1.08rem;
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: 0;
}
.step__desc {
  color: #555;
  font-size: 0.97rem;
  margin-bottom: 0;
}
.services__cta {
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 600;
}
.services__icons-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 56px;
  margin: 38px 0 100px 0;
}
.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 90px;
  max-width: 110px;
  font-size: 1rem;
  color: #222;
}
.service-icon__circle {
  width: 68px;
  height: 68px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px #0001, 0 1.5px 6px #0001;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.service-icon__circle img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.service-icon span {
  margin-top: 0;
  font-size: 0.98rem;
  color: #222;
  text-align: center;
  font-weight: 500;
}

/* Animatii generale */
.animated {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
}
.zoom-in {
  opacity: 0;
  transform: scale(0.85);
}

/* Poziționez animatiile pe elemente principale */
.hero__content, .about__container, .repair__card, .services__pay-title, .services__pay-desc, .services__pay-section .step, .services__badge--big {
  transition-delay: 0.1s;
}
.hero__visual {
  transition-delay: 0.3s;
}
.service-icon {
  transition-delay: 0.2s;
}
.services__pay-section .step:nth-child(2) { transition-delay: 0.25s; }
.services__pay-section .step:nth-child(3) { transition-delay: 0.35s; }
.services__pay-section .step:nth-child(4) { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 900px) {
  .hero__container, .about__features {
    flex-direction: column;
    align-items: center;
  }
  .hero__visual {
    align-items: center;
    margin-top: 32px;
  }
  .hero__images {
    min-height: 260px;
    max-height: 340px;
    height: 100%;
  }
  .repair__card {
    right: 2%;
    max-width: 95vw;
    min-width: 220px;
    padding: 24px 12px 20px 12px;
  }
  .services__icons, .services__steps {
    gap: 16px;
  }
  .step {
    width: 95vw;
    min-width: unset;
  }
  .services__icons-row {
    gap: 18px;
    flex-wrap: wrap;
  }
  .service-icon {
    min-width: 70px;
    max-width: 90px;
    font-size: 0.9rem;
  }
  .service-icon__circle {
    width: 48px;
    height: 48px;
  }
  .service-icon__circle img {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 1000px) {
  .repair__card {
    margin-right: 2vw;
    max-width: 95vw;
    min-width: 220px;
    padding: 24px 12px 20px 12px;
  }
  .services__pay-inner {
    max-width: 98vw;
  }
  .services__steps--lined {
    flex-direction: column;
    gap: 0;
  }
  .step {
    width: 100%;
    max-width: 100vw;
    min-width: unset;
    padding: 0 0 32px 0;
  }
  .services__steps--lined .step--lined:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .container {
    width: 99vw;
    max-width: 100vw;
    padding: 0 2vw;
  }
  .header__container {
    flex-direction: row;
    padding: 0 2vw;
  }
  
  /* Hide search and call button on very small screens in desktop nav */
  .nav .search-container,
  .nav .nav__link--call {
    display: none;
  }
  .logo__icon img {
    width: 32px;
    height: 32px;
  }
  .logo__text {
    font-size: 1rem;
  }
  .hero__container {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .hero__content {
    max-width: 98vw;
    min-width: unset;
    padding: 0 2vw;
    text-align: center;
  }
  .hero__title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  .hero__list li {
    font-size: 0.98rem;
    padding-left: 22px;
  }
  .btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
  .hero__visual {
    align-items: center;
    margin-top: 12px;
    width: 100vw;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .hero__images {
    width: 100vw;
    min-width: unset;
    max-width: 100vw;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
  }
  .hero__phone {
    position: relative;
    left: 0;
    top: 0;
    height: 160px;
    max-width: 90vw;
    margin: 0 auto;
    display: block;
  }
  .hero__quality {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 2;
  }
  .quality__highest, .quality__label {
    font-size: 1.3rem;
    padding: 2px 10px;
    margin: 0 0 2px 0;
    text-align: center;
    box-shadow: 0 1px 4px #e0e0e0;
  }
  .hero__discount {
    left: 50%;
    top: 0;
    transform: translateX(-50%) scale(0.95);
    font-size: 1.1rem;
    padding: 6px 18px;
    z-index: 3;
  }
  .about__container {
    padding: 0 2vw;
  }
  .about__title {
    font-size: 1.1rem;
  }
  .about__desc {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .about__features {
    flex-direction: column;
    gap: 14px;
  }
  .feature {
    width: 98vw;
    min-width: unset;
    padding: 14px 2vw 18px 2vw;
  }
  .feature__icon {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  .repair__bg {
    min-height: 400px;
    height: 100%;
    width: 100vw;
    max-width: 100vw;
    padding: 0;
   
  }
  .repair__img-bg {
    height: 120px;
    width: 100vw;
    display: none;
  }sunt 
  .repair__card {
    max-width: 98vw;
    height: 100%;
    min-width: 0;
    padding: 10px 4vw 10px 4vw;
    font-size: 0.98rem;
  }
  .repair__title {
    font-size: 1.1rem;
  }
  .services__container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .services__title {
    font-size: 1.1rem;
  }
  .services__desc {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  .services__icons-row {
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0 12px 0;
  }
  .service-icon {
    min-width: 48px;
    max-width: 70px;
    font-size: 0.8rem;
    gap: 6px;
  }
  .service-icon__circle {
    width: 28px;
    height: 28px;
  }
  .service-icon__circle img {
    width: 14px;
    height: 14px;
  }
  .services__badge {
    width: 40px;
    height: 40px;
    margin: 12px auto 8px auto;
  }
  .services__pay-section {
    padding: 32px 0 16px 0;
  }
  .services__pay-inner {
    padding-top: 32px;
  }
  .services__badge--big {
    width: 40px;
    height: 40px;
    top: -20px;
    border-width: 2px;
  }
  .services__pay-title {
    font-size: 1rem;
  }
  .services__pay-desc {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .services__steps--lined {
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .step {
    width: 100%;
    max-width: 100vw;
    min-width: unset;
    padding: 0 0 12px 0;
  }
  .step__icon--yellow {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .step__title {
    font-size: 0.95rem;
  }
  .step__desc {
    font-size: 0.8rem;
  }
  .services__cta {
    font-size: 1rem;
    padding: 10px 0;
    width: 100%;
    margin-top: 10px;
  }

  /* Sectiunea Reparație: ascunde fundalul, păstrează doar cardul */
  .repair__bg img.repair__img-bg,
  .repair__bg .hero__quality,
  .repair__bg .hero__bg-tilted {
    display: none !important;
  }
  .repair__bg {
    background: none !important;
    min-height: unset;
    padding: 0;
  }
  .repair__card {
    margin: 0 auto;
    width: 95vw;
    max-width: 400px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: static;
  }

  /* Iconițe Despre noi */
  .feature__icon img {
    width: 36px !important;
    height: 36px !important;
  }
  .feature__icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  /* Iconițe Plătești doar pentru lucrările efectuate */
  .services__badge--big img,
  .service-icon__circle img {
    width: 36px !important;
    height: 36px !important;
  }
  .services__badge--big,
  .service-icon__circle {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }
  .services__pay-title {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    padding: 0 4px;
  }
}
@media (max-width: 1400px) {
  .services__container {
    max-width: 98vw;
  }
  .services__icons-row {
    gap: 32px;
  }
} 

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav--mobile {
  display: none;
}
@media (max-width: 900px) {
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  
  /* Hide all buttons in desktop nav when mobile */
  .nav .search-container,
  .nav .nav__link--call,
  .nav .nav__link--tracking {
    display: none;
  }
  .nav--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 8px 32px #0002;
    padding-top: 48px;
  }
  .nav--mobile.open {
    transform: translateY(0);
  }
  .nav--mobile .nav__link {
    font-size: 1.3rem;
    margin: 18px 0;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav--mobile .nav__link:hover {
    color: #7c3aed;
  }
  
  .nav--mobile .nav__link--tracking {
    background: #ffd700 !important;
    color: #222 !important;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  /* Ensure call button is visible in mobile menu */
  .nav--mobile .nav__link--call--mobile {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Mobile Search Container */
  .search-container--mobile {
    width: 100%;
    max-width: 300px;
    margin: 15px 0;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 8px;
    border: 1px solid #e0e0e0;
  }
  
  .search-container--mobile .search-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 16px;
  }
  
  .search-container--mobile .search-input:focus {
    width: 100%;
  }
  
  /* Mobile Call Button */
  .nav__link--call--mobile {
    background: #ff6b35 !important;
    color: #fff !important;
    border: none;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    cursor: pointer;
    font-weight: 600 !important;
    margin: 15px 0;
    width: 100%;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 1002;
  }
  
  .nav__link--call--mobile:hover {
    background: #ff5722 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
  }
  
  .nav__link--call--mobile svg {
    width: 18px;
    height: 18px;
  }
  .nav__close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #222;
    cursor: pointer;
    z-index: 1003;
  }
  .nav--mobile.open ~ .burger {
    display: none !important;
  }
}

/* Landscape orientation for mobile devices */
@media (max-width: 900px) and (orientation: landscape) {
  /* Make mobile menu more compact for landscape */
  .nav--mobile {
    padding-top: 20px;
    justify-content: flex-start;
    overflow-y: auto;
  }
  
  .nav--mobile .nav__link {
    font-size: 1.1rem;
    margin: 12px 0;
  }
  
  .nav--mobile .nav__link--tracking {
    padding: 6px 12px;
    margin: 8px 0;
    font-size: 14px;
  }
  
  .nav__link--call--mobile {
    padding: 8px 16px !important;
    margin: 8px 0;
    font-size: 14px;
  }
  
  .search-container--mobile {
    margin: 10px 0;
    max-width: 250px;
  }
  
  .search-container--mobile .search-input {
    padding: 6px 10px;
    font-size: 14px;
  }
  
  /* Adjust close button position for landscape */
  .nav__close {
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
  }
}

/* Additional landscape optimization for very small screens */
@media (max-width: 600px) and (orientation: landscape) {
  .nav--mobile {
    padding-top: 15px;
  }
  
  .nav--mobile .nav__link {
    font-size: 1rem;
    margin: 8px 0;
  }
  
  .nav--mobile .nav__link--tracking {
    padding: 5px 10px;
    margin: 6px 0;
    font-size: 13px;
  }
  
  .nav__link--call--mobile {
    padding: 6px 12px !important;
    margin: 6px 0;
    font-size: 13px;
  }
  
  .search-container--mobile {
    margin: 8px 0;
    max-width: 200px;
  }
  
  .search-container--mobile .search-input {
    padding: 5px 8px;
    font-size: 13px;
  }
} 

.social-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.social-widget__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #7c3aed;
  box-shadow: 0 2px 12px #7c3aed22;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  outline: none;
  pointer-events: all;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 10000;
}
.social-widget__toggle:hover {
  background: #f3e8ff;
  box-shadow: 0 4px 24px #7c3aed33;
}
.social-widget__toggle:active {
  transform: scale(0.95);
}
.social-widget__panel {
  display: flex;
  flex-direction: row;
  gap: 16px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px #7c3aed22;
  padding: 12px 18px;
  margin-bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9998;
  position: relative;
}
.social-widget.open .social-widget__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.social-widget__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #7c3aed11;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  pointer-events: all;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 9999;
}
.social-widget__icon:hover {
  background: #7c3aed;
  transform: scale(1.12);
}
.social-widget__icon:active {
  transform: scale(0.95);
}
.social-widget__icon img {
  width: 22px;
  height: 22px;
  filter: grayscale(0.2);
  transition: filter 0.2s;
  pointer-events: none;
}
.social-widget__icon:hover img {
  filter: grayscale(0) brightness(2);
}
@media (max-width: 600px) {
  .social-widget {
    right: 16px;
    bottom: 16px;
    z-index: 9999;
  }
  .social-widget__toggle {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    z-index: 10000;
  }
  .social-widget__panel {
    gap: 12px;
    padding: 10px 12px;
    margin-bottom: 8px;
    z-index: 9998;
  }
  .social-widget__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    z-index: 9999;
  }
  .social-widget__icon img {
    width: 18px;
    height: 18px;
  }
} 

/* Sectiunea Recenzii */
.reviews {
  padding: 64px 0 32px 0;
  background: #fff;
  text-align: center;
}
.reviews__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.reviews__desc {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 36px;
}
.reviews__layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0px;
  justify-content: center;
}
.reviews__main {
  flex: 1 1 0;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reviews__imgbox {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.reviews__img {
  max-width: 455px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  margin-top: 0;
}
.reviews__cards {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  width: 100%;
}
.review-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 32px 28px 24px 120px;
  max-width: 500px;
  min-width: 270px;
  text-align: left;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #ffd700;
  overflow: hidden;
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
  z-index: 1;
}

.review-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.review-card__quote {
  color: #ffd600;
  font-size: 2.8rem;
  font-weight: bold;
  position: absolute;
  left: 18px;
  top: 18px;
}
.review-card__text {
  color: #222;
  font-size: 1.08rem;
  margin-top: 24px;
  margin-bottom: 18px;
}
.review-card__author {
  margin-top: 12px;
}
.review-card__name {
  font-weight: bold;
  color: #222;
  display: block;
}
.review-card__role {
  color: #666;
  font-size: 0.98rem;
}

/* Sectiunea Întrebări frecvente */
.faq {
  padding: 64px 0 32px 0;
  background: #fff;
  text-align: center;
}
.faq__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.faq__highlight {
  color: #7c3aed;
}
.faq__desc {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 36px;
}
.faq__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
  margin-top: 24px;
}
.faq__imgbox {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: -30px;
}
.faq__img {
  position: relative;
  top: -18px;
}
.faq__accordion {
  flex: 1 1 0;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__item {
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 18px 24px;
  cursor: pointer;
  color: #222;
  transition: background 0.2s;
  position: relative;
}
.faq__question:after {
  content: '\25BC';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  color: #888;
  transition: transform 0.2s;
}
.faq__item.active .faq__question:after {
  transform: translateY(-50%) rotate(180deg);
}
.faq__answer {
  display: none;
  padding: 0 24px 18px 24px;
  color: #444;
  font-size: 1.02rem;
  text-align: left;
}
.faq__item.active .faq__answer {
  display: block;
} 

/* Sectiunea Contact */
.contact {
  background: #f4f5f7;
  padding: 0 0 0 0;
}
.contact__map {
  width: 100%;
  height: 260px;
  background: #e0e0e0;
  margin-bottom: -60px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
html, body {
  overflow-x: hidden;
}
.contact__content {
  max-width: 900px;
  margin: 30px auto;
  padding: 48px 32px 32px 32px;
  position: relative;
  top: -60px;
  text-align: center;
  margin-bottom: -20px;
}
.contact__title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.contact__desc {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 36px;
}
.contact__cards {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  max-width: 220px;
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 2rem;
}
.contact-card__icon--yellow {
  background: #ffd600;
}
.contact-card__title {
  font-weight: bold;
  color: #222;
  font-size: 1.08rem;
}
.contact-card__desc {
  color: #444;
  font-size: 0.98rem;
}

.contact-card__desc:hover {
  background: #ffed4e !important;
}
.contact__form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form-row {
  display: flex;
  gap: 16px;
}
.contact__form-row input,
.contact__form-row select {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafbfc;
  color: #222;
  outline: none;
  transition: border 0.2s;
}
.contact__form-row input:focus,
.contact__form-row select:focus {
  border: 1.5px solid #ffd600;
}
.contact__submit {
  background: #ffd600;
  color: #222;
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.contact__submit:hover {
  background: #ffe066;
}

/* Footer */
.footer {
  background: #ffd600;
  padding: 0;
  margin-top: 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  height: 56px;
}
.footer__left {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
}
.footer__right {
  display: flex;
  gap: 18px;
}
.footer__icon svg {
  display: block;
  fill: none;
  stroke: #222;
  transition: stroke 0.2s;
}
.footer__icon:hover svg {
  stroke: #7c3aed;
} 

@media (max-width: 600px) {
  /* Formular Contact responsive */
  .contact__form-row {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .contact__form-row input,
  .contact__form-row select,
  .contact__form-row textarea {
    width: 100% !important;
    min-width: unset !important;
    font-size: 16px !important; /* Previne zoom pe iOS */
  }
  .contact__form {
    padding: 20px 16px !important;
    margin: 0 8px !important;
  }
  .contact__submit {
    width: 100% !important;
    margin-top: 16px !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
  }
  .contact__content {
    padding: 20px 16px !important;
  }
  .contact__title {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
  }
  .contact__desc {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
  }
} 

.repair-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.slider-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
  z-index: 1;
  pointer-events: none;
}
.slider-img.active {
  opacity: 1;
  z-index: 2;
}
.repair__bg img.repair__img-bg {
  display: none !important;
}
.repair__bg {
  position: relative;
} 

@keyframes submit-bounce {
  0% { transform: scale(1); }
  20% { transform: scale(1.12); }
  60% { transform: scale(0.92); }
  80% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.contact__submit.bounce {
  animation: submit-bounce 0.35s cubic-bezier(.68,-0.55,.27,1.55);
} 

@media (max-width: 900px) {
  .reviews__layout {
    flex-direction: column;
    align-items: center;
  }
  .reviews__imgbox {
    justify-content: center;
    margin-bottom: 18px;
    margin-top: -3px;
  }
  .reviews__img {
    max-width: 90vw;
  }
} 

.faq__layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  justify-content: center;
}
.faq__imgbox {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  justify-content: flex-start;
}
.faq__img {
  max-width: 380px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
}
.faq__main {
  flex: 1 1 0;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 900px) {
  .faq__row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .faq__imgbox {
    justify-content: center;
    margin-bottom: 18px;
    width: 100%;
  }
  .faq__img {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .faq__accordion {
    width: 100%;
    max-width: none;
  }
} 

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.google-review-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #4285f4;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}
.google-review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
  border-color: #3367d6;
}
.google-logo {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}
.google-logo .g { color: #4285f4; }
.google-logo .o1 { color: #ea4335; }
.google-logo .o2 { color: #fbbc05; }
.google-logo .g2 { color: #4285f4; }
.google-logo .l { color: #34a853; }
.google-logo .e { color: #ea4335; }
.review-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating {
  font-weight: bold;
  font-size: 18px;
}
.stars {
  color: #fbbc05;
  font-size: 16px;
}
.review-count {
  font-size: 14px;
  color: #666;
}
@media (max-width: 600px) {
  .reviews-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .review-card__avatar {
    width: 70px;
    height: 70px;
    border-width: 3px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .review-card {
    padding: 24px 20px 20px 100px;
  }
} 

.reviews-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.facebook-review-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #1877f2;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}
.facebook-review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
  border-color: #166fe5;
}
.facebook-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
  color: #1877f2;
} 

