/* ===== Page Hero (Inner Page) ===== */
.page-hero {
  position: relative;
  min-height: 45vh;
  overflow: hidden;
  padding-top: 190px;
}
.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/volvo-background.jpg") no-repeat center center/cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 0 4rem;
}
.page-hero-content h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.page-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.breadcrumbs li {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumbs a {
  color: var(--primary);
  transition: color 0.3s ease;
}
.breadcrumbs a:hover {
  color: #ffffff;
}

/* ===== Services Section (Page-specific) ===== */
.page-services {
  background: var(--dark-light);
  background-image: none;
  background-attachment: scroll;
}
.page-services .section-title h2,
.page-services .section-title p,
.page-services .section-pre-title {
  color: var(--light);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 5rem 0;
  background: var(--dark);
  text-align: center;
}
.cta-content h2 {
  font-size: 2.2rem;
  color: var(--light);
  margin-bottom: 1rem;
}
.cta-content p {
  color: var(--gray-dark);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .page-hero {
    min-height: 35vh;
    padding-top: 190px;
  }
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 30vh;
    padding-top: 150px;
  }
  .page-hero-content {
    padding: 0 1.5rem 3rem;
  }
  .page-hero-content h1 {
    font-size: 2rem;
  }
  .page-hero-content p {
    font-size: 1rem;
  }
  .cta-section {
    padding: 3rem 0;
  }
  .cta-content h2 {
    font-size: 1.6rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
