/* === UTILITIES (homepage sections) === */
.section {
  padding: 48px 24px;
}

.section-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title--light {
  color: var(--white);
}

.section-title--dark {
  color: var(--navy);
}

/* Tablet and up */
@media (min-width: 640px) {
  .section {
    padding: 64px 48px;
  }

  .section-title {
    font-size: 32px;
  }
}

/* === HERO === */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  color: var(--white);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title__accent {
  color: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.4);
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.hero-phone {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  margin-top: 14px;
  letter-spacing: 1px;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 17px;
  }
}

/* === SERVICES STRIP === */
.services-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--navy-dark);
}

.strip-item {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.strip-item:last-child {
  border-right: none;
}

.strip-icon {
  font-size: 24px;
  line-height: 1;
}

.strip-name {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === SERVICES DETAIL === */
.services-section {
  background: var(--white);
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.svc-card__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.svc-card__title {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 5px;
}

.svc-card__text {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* === VEHICLE SECTION === */
.vehicle-section {
  background: var(--navy);
}

.vehicle-heading {
  margin-bottom: 16px;
}

.vehicle-heading::after {
  content: "";
  display: table;
  clear: both;
}

.vehicle-heading__title {
  float: left;
  margin-bottom: 0;
  max-width: calc(100% - 56px);
}

.vehicle-title-icon {
  float: right;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.1;
  margin-top: 4px;
}

.vehicle-carousel {
  position: relative;
  margin-bottom: 24px;
  border-radius: 14px;
  border: 2px solid rgba(245, 158, 11, 0.25);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}

.vehicle-carousel__viewport {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: min(56vh, 420px);
}

.vehicle-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .vehicle-carousel__track {
    transition: none;
  }
}

.vehicle-carousel__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-mid);
}

.vehicle-carousel__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.vehicle-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 28, 63, 0.65);
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.vehicle-carousel__btn:hover {
  background: rgba(245, 158, 11, 0.85);
  color: var(--navy);
}

.vehicle-carousel__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.vehicle-carousel__btn--prev {
  left: 8px;
}

.vehicle-carousel__btn--next {
  right: 8px;
}

.vehicle-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 12px 14px;
  background: linear-gradient(to top, rgba(15, 28, 63, 0.9), transparent);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.vehicle-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.vehicle-carousel__dot[aria-selected="true"] {
  background: var(--gold);
  transform: scale(1.15);
}

.vehicle-carousel__dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.vehicle-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vf-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.vf-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 600;
}

/* Full-width row: 2 cols on narrow screens, 3 cols from tablet up */
.vf-item--gps-span {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 12px;
}

.vehicle-gps-note {
  margin-top: 24px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border-left: 4px solid var(--gold);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.vehicle-gps-note strong {
  color: rgba(255, 255, 255, 0.95);
}

/* === WHY US === */
.why-section {
  background: var(--white);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}

.why-item__title {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.why-item__text {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}
/* === PRICING === */
.pricing-section {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  text-align: center;
}

.price-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 14px;
  padding: 28px 20px;
  margin-bottom: 14px;
}

.price-main {
  color: var(--gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.price-unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 12px;
}

.price-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.price-more {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 14px;
}

.price-more a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-more a:hover {
  color: var(--gold-hover);
}

.deposit-box {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 28px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
}

.deposit-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.deposit-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.deposit-text strong {
  color: var(--white);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 16px;
  transition: background 0.2s, transform 0.15s;
}

.pricing-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* === GHID (pași + FAQ) === */
.guide-section {
  background: var(--white);
}

.guide-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guide-card {
  background: var(--bg-light);
  border-radius: 14px;
  padding: 22px 20px 20px;
  border: 1px solid var(--bg-border);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(15, 28, 63, 0.04);
}

.guide-card__icon {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.guide-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}

.guide-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.guide-card__link:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.guide-card__link:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.home-ro-only-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: -6px 0 22px;
  max-width: 38rem;
}

/* === CONTACT === */
.contact-section {
  background: var(--bg-light);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.contact-link--phone { border-left: 4px solid var(--blue-ph); }
.contact-link--wa    { border-left: 4px solid var(--green-wa); }
.contact-link--loc   { border-left: 4px solid var(--gold); }

.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 10px;
  color: var(--text-subtle);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-value {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 800;
}

/* === RESPONSIVE — tablet (640px+) — home === */
@media (min-width: 640px) {
  .vehicle-features {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .svc-list {
    gap: 18px;
  }

  .price-main {
    font-size: 52px;
  }

  .guide-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }
}

/* === RESPONSIVE — desktop (1024px+) — home === */
@media (min-width: 1024px) {
  .hero {
    padding: 80px 48px 72px;
  }

  .hero-title {
    font-size: 52px;
  }

  .section {
    padding: 72px 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .vehicle-section,
  .pricing-section {
    padding-left: 80px;
    padding-right: 80px;
  }

  .svc-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }

  .contact-list > li {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .contact-list .contact-link {
    flex: 1;
    align-items: center;
  }

  .guide-cards {
    gap: 24px;
  }
}
