/* ═══════════════════════════════════════════════
   hero.css — Hero Section Styles
   ═══════════════════════════════════════════════ */

.pv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--pv-dark);
  padding: 120px 0 147px;
}

/* Atmospheric background */
.pv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(24, 0, 0, 0.08) 100%
  );
  z-index: 2;
}

/* Subtle car silhouette overlay */
.pv-hero-overlay {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

/* Animated grid lines */
.pv-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
  opacity: 0.04;
}
.pv-grid-lines span {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #4a7cf6, transparent);
  animation: gridPulse 3s ease-in-out infinite;
}
.pv-grid-lines span:nth-child(1) {
  animation-delay: 0s;
}
.pv-grid-lines span:nth-child(2) {
  animation-delay: 0.6s;
}
.pv-grid-lines span:nth-child(3) {
  animation-delay: 1.2s;
}
.pv-grid-lines span:nth-child(4) {
  animation-delay: 1.8s;
}
.pv-grid-lines span:nth-child(5) {
  animation-delay: 2.4s;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Hero Content */
.pv-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pv-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pv-hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pv-blue);
  border-radius: 2px;
}

.pv-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--pv-white);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.pv-hero-sub {
  font-size: 1.05rem;
  color: var(--pv-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Trust row */
.pv-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pv-trust-item {
  display: flex;
  flex-direction: column;
}
.pv-trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pv-white);
  line-height: 1;
}
.pv-trust-label {
  font-size: 1rem;
  color: var(--pv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}
.pv-trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Quote Card */
.pv-quote-card {
  background: rgba(37, 40, 48, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(74, 124, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}
.pv-quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pv-blue), #6a9cf8, var(--pv-blue));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.pv-quote-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pv-white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

/* Form Inputs */
.pv-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--pv-text);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.pv-input::placeholder {
  color: var(--pv-text-dim);
}
.pv-input:focus {
  border-color: var(--pv-blue);
  background: rgba(74, 124, 246, 0.06);
  box-shadow: 0 0 0 3px rgba(74, 124, 246, 0.15);
}
.pv-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b919e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.pv-select option {
  background: var(--pv-dark-3);
  color: var(--pv-text);
}

.pv-form-success {
  text-align: center;
  padding: 20px;
  color: var(--pv-text-muted);
}

/* Partners Section */
.wrapper_position {
  padding: 36px 0;
  /* background: var(--pv-dark-2); */
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 18%,
    rgb(0 0 0 / 34%) 75%,
    rgba(23, 0, 0, 0.04) 100%
  );
  width: 100%;
  z-index: 3;
  top: -50%;
  transform: translateY(-50%);
}

.pv-partners-label {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 20px;
}

.pv-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pv-partner-logo {
  opacity: 0.55;
  transition: opacity 0.3s;
}
.pv-partner-logo:hover {
  opacity: 1;
  background: linear-gradient(
    120deg,
    rgba(122, 0, 0, 0.59) 0%,
    rgba(105, 0, 0, 0) 27%,
    rgba(94, 0, 0, 0) 73%,
    rgba(89, 0, 0, 0.63) 100%
  );
}

.pv-partner-xpel {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pv-white);
  letter-spacing: 0.05em;
}
.pv-partner-3m {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pv-white);
  letter-spacing: -0.02em;
}
.pv-partner-ceramic {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pv-white);
  letter-spacing: 0.1em;
}

.pv-partner-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}
.pv-partners-logos {
  padding: 10px 0;
}

.pv-partner-logo {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px;
  text-align: center;
  height: 80px;
}

.pv-partner-logo img {
  display: block;
  height: 100%;
  width: 100%;
  place-content: center;
  object-fit: contain;
}

.pv-partners-logos .owl-stage {
  display: flex;
}

.pv-partners-logos .owl-item {
  height: auto;
}

@media (max-width: 576px) {
  .pv-quote-card {
    padding: 24px 20px;
  }
  .pv-trust-row {
    gap: 16px;
  }
}
