.p-services-hero {
  position: relative;
  height: 500px;
  z-index: 5;
}

.p-services-hero-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: translateZ(0.0001px);
}

.p-services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0.0001px);
}

.p-services-hero-content {
  padding-top: 100px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-services-hero-content h1 {
  font-weight: 400;
}

.p-services-hero-content h1,
.p-services-hero-content p {
  text-align: center;
  color: var(--white);
}

.p-services-hero-content h1 span {
  font-weight: 700;
  display: block;
}

.p-services-hero-content p {
  margin: 10px 0px 30px 0px;
  font-size: 20px;
  line-height: 30px;
}

.p-services-ownership-section {
  position: relative;
}

.p-services-ownership-icon {
  position: absolute;
  top: -50px;
  right: 0px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.p-services-ownership-icon img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.p-services-ownership {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 3;
}

.p-services-content h2 {
  margin-bottom: 30px;
  font-weight: 400;
}

.p-services-content h2 span {
  font-weight: 700;
  display: block;
}

.p-services-texts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-services-image {
  width: 100%;
  height: 400px;
}

.p-services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.p-services-advantage-section {
  position: relative;
}

.p-services-advantage-decoration {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 90vw);
  opacity: 0.18;
  pointer-events: none;
}

.p-services-advantage-decoration img {
  width: 100%;
  height: auto;
  display: block;
}

.p-services-advantage-card {
  border-radius: var(--radius);
  position: relative;
  background: var(--white);
  padding: 50px 18px;
  overflow: hidden;
  transition:
    transform var(--timing-function),
    box-shadow var(--timing-function);
}

.p-services-advantage-title {
  text-align: center;
  color: var(--primary-color-variant);
  margin-bottom: 50px;
}

.p-services-advantage-list {
  display: flex;
  flex-direction: column;
}

.p-services-advantage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 0px;
  transition: transform var(--timing-function);
}

.p-services-advantage-item + .p-services-advantage-item {
  border-top: 1px solid rgba(0, 107, 179, 0.2);
}

.p-services-advantage-number {
  color: var(--secondary-color);
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  width: 64px;
  text-align: center;
}

.p-services-advantage-content {
  padding-left: 14px;
  border-left: 1px solid rgba(0, 107, 179, 0.25);
}

.p-services-advantage-item-title {
  color: var(--primary-color-variant);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 4px;
}

.p-services-advantage-content p {
  color: var(--body-text);
}

.p-services-hero-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-services-fleet-card {
  background: #e8f1f8;
  border-radius: 0;
}

.p-services-fleet-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.p-services-fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.p-services-fleet-item {
  border-radius: var(--radius);
  background: var(--white);
  min-height: 132px;
  padding: 14px 16px 16px;
  transition:
    transform var(--timing-function),
    box-shadow var(--timing-function),
    background-color var(--timing-function);
}

.p-services-fleet-number {
  color: var(--secondary-color);
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 20px;
}

.p-services-fleet-item-title {
  color: var(--primary-color-variant);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 4px;
}

.p-services-fleet-item-text {
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.15;
}

.p-services-coverage-section {
  background: #123f6b;
  color: var(--white);
}

.p-services-coverage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 0px 20px;
  transition:
    transform var(--timing-function),
    box-shadow var(--timing-function);
}

.p-services-coverage-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.p-services-coverage-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.p-services-coverage-map {
  width: 100%;
  max-width: 760px;
}

.p-services-coverage-map img {
  width: 100%;
  height: auto;
  display: block;
}

.p-services-coverage-text {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.p-services-coverage-link {
  margin-top: 20px;
}

.p-services-image-desktop {
  display: none;
}

.p-services-image-mobile {
  margin-bottom: 30px;
}

.p-services-advantage-content p {
  display: none;
}

.p-services-advantage-item-mobile p {
  margin-bottom: 30px;
}

.p-services-advantage-item-wrapper {
  border-bottom: 1px solid rgba(0, 107, 179, 0.25);
}

.p-services-advantage-item-mobile-last {
  border-bottom: none;
}

@media only screen and (min-width: 992px) {
  .p-services-hero {
    height: 450px;
  }

  .p-services-advantage-item-mobile {
    display: none;
  }

  .p-services-advantage-content p {
    display: block;
  }

  .p-services-image-mobile {
    display: none;
  }

  .p-services-image-desktop {
    display: block;
  }

  .p-services-ownership-icon {
    top: -300px;
    width: 80%;
  }

  .p-services-hero-content {
    padding-top: 100px;
    width: 70%;
    margin-left: 15%;
  }

  .p-services-hero-content p {
    font-size: 24px;
    line-height: 30px;
    margin: 22px 0px 50px 0px;
  }

  .p-services-ownership {
    flex-direction: row;
    align-items: center;
  }

  .p-services-advantage-section {
    padding-top: 120px;
  }

  .p-services-advantage-card {
    padding: 100px 64px;
  }

  .p-services-advantage-title {
    margin-bottom: 60px;
  }

  .p-services-advantage-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0px 22px;
  }

  .p-services-advantage-number {
    width: 65px;
    font-size: 65px;
    text-align: left;
  }

  .p-services-advantage-content {
    padding-left: 25px;
  }

  .p-services-advantage-item-title {
    font-size: 22px;
    line-height: 1.15;
  }

  .p-services-content {
    width: calc(55% - 15px);
  }

  .p-services-image {
    width: calc(45% - 15px);
  }

  .p-services-fleet-section {
    padding-top: 100px;
  }

  .p-services-fleet-title {
    margin-bottom: 60px;
  }

  .p-services-fleet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .p-services-fleet-item {
    padding: 20px 18px 18px;
    min-height: 156px;
  }

  .p-services-fleet-number {
    font-size: 60px;
    margin-bottom: 30px;
  }

  .p-services-fleet-item-title {
    font-size: 18px;
  }

  .p-services-fleet-item-text {
    font-size: 13px;
    line-height: 1.2;
  }

  .p-services-coverage-card {
    padding: 56px 20px 36px;
  }

  .p-services-coverage-title {
    margin-bottom: 10px;
  }

  .p-services-coverage-subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }

  .p-services-coverage-text {
    margin-top: 0px;
    width: 80%;
  }

  .p-services-coverage-link {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  .p-services-hero {
    height: 500px;
  }

  .p-services-hero-content {
    width: 70%;
    margin-left: 15%;
  }

  .p-services-hero-content p {
    font-size: 28px;
    line-height: 40px;
  }

  .p-services-content {
    width: calc(45% - 15px);
  }

  .p-services-image {
    height: 465px;
    width: calc(55% - 15px);
  }

  .p-services-advantage-card {
    margin: 0 auto;
  }

  .p-services-coverage-subtitle {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1400px) {
  .p-services-hero {
    height: 530px;
  }

  .p-services-image {
    height: 490px;
  }

  .p-services-advantage-card {
    padding: 100px 68px;
  }

  .p-services-advantage-number {
    font-size: 65px;
    width: 70px;
  }

  .p-services-advantage-item-title {
    font-size: 24px;
  }

  .p-services-fleet-item {
    min-height: 170px;
    padding: 22px 20px 20px;
  }

  .p-services-fleet-number {
    font-size: 72px;
  }

  .p-services-fleet-item-title {
    font-size: 20px;
  }

  .p-services-fleet-item-text {
    font-size: 14px;
  }

  .p-services-coverage-card {
    padding: 72px 20px 44px;
  }

  .p-services-coverage-text {
    line-height: 1.5;
  }
}

@media only screen and (min-width: 992px) and (hover: hover) {
  .p-services-fleet-item:hover {
    background-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 30px rgba(13, 55, 97, 0.08);
  }
}
