/*
Theme Name: PWR
*/

@font-face {
  font-family: "Inter";
  src: url("/wp-content/themes/PWR/assets/fonts/Inter-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gloock";
  src: url("/wp-content/themes/PWR/assets/fonts/Gloock-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: rgb(191, 156, 96);
  --black-color: #000000;
  --white-color: #ffffff;

  --black-rgb: 0, 0, 0;
  --white-rgb: 255, 255, 255;

  --brand-gold: 191, 156, 96;
  --blur-md: 10px;

  --padding: 72px;
}

[hidden] { display: none !important; }

* {
  box-sizing: border-box;
}

html {
  width: 100%;

  scroll-behavior: smooth;
}

body {
  width: 100%;

  margin: 0;
  padding: 0;

  background-color: var(--black-color);

  color: var(--white-color);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  font-weight: 400;
}

a {
  color: var(--white-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;

  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px var(--padding);

  background-color: rgba(var(--black-rgb), 5%);
  backdrop-filter: blur(var(--blur-md));
  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);
}

.header__menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-wrapper {
  display: flex;
  align-items: center;
  width: auto;
}

.header__menu-item {
  position: relative;
}

.header__menu-item a {
  font-size: 16px;
  font-weight: 500;

  color: var(--white-color);
  text-decoration: none;
}

.header__menu-item.current-menu-item a {
  font-weight: bold;

  color: var(--primary-color);
}

.header__menu-item.current-menu-item a:after {
  content: "";

  position: absolute;
  bottom: -5px;
  left: 0;

  width: 100%;
  height: 2px;

  background-color: var(--primary-color);
}

.header__menu-item a:hover {
  color: var(--primary-color);
}

.header__logo {
  display: flex;
  align-items: center;

  font-family: "Gloock", serif;
  text-decoration: none;

  color: var(--white-color);
}

.header__logo:hover {
  text-decoration: none;
}

.header__logo-part {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;

  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgb(var(--white-color));

  border: 3px solid var(--white-color);
  border-radius: 50%;
}

.header__logo-part-secondary {
  margin-left: 5px;

  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-align: center;
  color: rgb(var(--white-color));
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.header__languages {
  position: relative;

  display: flex;
}

.header__language-toggle {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;

  font-size: 16px;

  color: var(--white-color);

  cursor: pointer;
}

.header__language-current {
  margin-right: 5px;
}

.header__language-toggle:hover {
  text-decoration: underline;
}

.header__language-list {
  position: absolute;
  top: calc(100% + 10px);
  left: -50%;

  display: none;
  flex-direction: column;
  gap: 5px;
  width: 150%;
  padding: 10px;
  margin: 0;

  background-color: rgba(var(--black-rgb), 40%);
  backdrop-filter: blur(var(--blur-md));
  border-radius: 5px;
}

.header__language-list.active {
  display: flex;
}

.header__language-item {
  width: 100%;
  padding: 5px 10px;

  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);

  list-style: none;
}

.header__language-item:last-child {
  border-bottom: none;
}

.header__language-link {
  color: var(--white-color);
  text-decoration: none;
  border-radius: 5px;

  transition: background-color 0.3s;
}

.header__language-item:hover {
  background-color: var(--white-color);

  cursor: pointer;
}

.header__language-item:hover .header__language-link {
  color: var(--black-color);
  text-decoration: none;
}

.header__phone {
  padding: 10px 15px;

  font-size: 16px;

  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 20px;
  text-decoration: none;
}

.header__phone:hover {
  text-decoration: underline;
}

/* Mobile menu */

/* Ховаємо мобільне меню за замовчуванням */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: flex;
  justify-content: flex-end;

  background: rgba(var(--black-rgb), 0.7);
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 75%;
  max-width: 320px;
  height: 100%;
  padding: 40px 20px;
  overflow-y: auto;

  color: var(--white-color);

  background: var(--black-color);
  transform: translateX(100%);

  transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu__content {
  transform: translateX(0);
}

.mobile-menu.closing {
  opacity: 0;
  visibility: visible;
}

.mobile-menu.closing .mobile-menu__content {
  transform: translateX(100%);
}

.mobile-menu__close {
  align-self: flex-end;

  background: none;
  border: none;

  font-size: 32px;
  color: var(--white-color);

  transition: transform 0.2s ease;

  cursor: pointer;
}

.mobile-menu__close:hover {
  transform: rotate(90deg);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;

  list-style: none;
}
.mobile-menu__item {
  position: relative;
}
.mobile-menu__item a {
  font-size: 18px;

  color: var(--white-color);
  text-decoration: none;
}
.mobile-menu__item.current-menu-item a {
  color: var(--primary-color);
}
.mobile-menu__item.current-menu-item a:after {
  content: "";

  position: absolute;
  bottom: -5px;
  left: 0;

  width: 100%;
  height: 2px;

  background-color: var(--primary-color);
}

.mobile-menu__item a:hover {
  color: var(--primary-color);
}

.mobile-menu__phone {
  color: var(--primary-color);
  font-size: 20px;
  text-decoration: none;
}

.mobile-menu .header__languages {
  flex-direction: column;
  width: 100%;

  margin-bottom: 20px;
}

.mobile-menu .header__language-toggle {
  width: 100%;
  justify-content: space-between;
}

.mobile-menu__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.mobile-menu .header__language-list {
  position: relative;
  top: auto;
  left: auto;

  display: none;
  flex-direction: column;
  gap: 5px;
  width: 100%;

  padding: 10px;
  margin: 0;

  background-color: var(--black-color);
}

.mobile-menu .header__language-list.active {
  display: flex;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2001;
}

.header__burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white-color);
  border-radius: 2px;
  transition: 0.3s;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */

.hero {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--padding);

  background: #000 url("/wp-content/themes/PWR/assets/images/topography.svg")
    repeat;
}

.hero:after {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;

  width: 50%;
  height: 100%;

  background-image: url("/wp-content/themes/PWR/assets/images/car-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}

.hero__content {
  z-index: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 100px auto;

  color: var(--white-color);
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin: 0 0 27px 0;
  padding: 0;

  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.hero__title span {
  color: var(--primary-color);
}

.hero__subtitle {
  max-width: 500px;
  margin-top: 10px;

  font-size: 16px;
  font-weight: 300;
}

/* Booking Form */

.booking-form {
  z-index: 100;

  display: flex;
  flex-direction: column;
  gap: 20px;
  width: auto;
  padding: 10px 25px;

  background-color: rgba(var(--black-rgb), 30%);
  backdrop-filter: blur(var(--blur-md));
  border: 1px solid rgba(var(--white-rgb), 15%);
  border-radius: 20px;
}

.booking-form__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;

  font-size: 16px;

  border-bottom: 1px solid rgba(var(--white-rgb), 15%);
}

.booking-form__mode-option--active {
  color: var(--primary-color);
}

.booking-form__mode-option {
  cursor: pointer;
}

.booking-form__fields {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 175px;
}

.booking-form__label-container {
  margin-bottom: 12px;
}

.booking-form__label {
  font-size: 16px;
  font-weight: 300;

  color: var(--primary-color);
}

.booking-form__input {
  width: 100%;
  padding: 10px 16px 10px 0;

  font-size: 14px;
  font-weight: 200;
  color: rgba(var(--white-rgb), 90%);

  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);
}

.booking-form__input::placeholder {
  color: #999;
  opacity: 1;
}

.booking-form__input:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.booking-form__input-container {
  position: relative;

  display: flex;
  align-items: center;
  width: 100%;
}

.booking-form__input-container select {
  width: 100%;
  padding: 10px 0;

  font-size: 14px;
  color: #999;

  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Коли користувач вибрав значення */
.booking-form__input-container select:focus,
.booking-form__input-container select option:checked:not([value=""]) {
  color: rgba(var(--white-rgb), 90%);
}

/* Щоб зміна кольору працювала при виборі */
.booking-form__input-container select:not(:has(option[value=""]:checked)) {
  color: rgba(var(--white-rgb), 90%);
}

.booking-form__input-container select:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.booking-form__input-container svg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);

  width: 16px;
  height: 16px;

  fill: var(--white-color);
}

.booking-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 30px;

  font-size: 16px;
  font-weight: 200;
  white-space: nowrap;

  background-color: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 20px;

  cursor: pointer;
}

.booking-form__submit:hover {
  text-decoration: underline;
}

/* Tooltip */

.booking-form__tooltip {
  position: relative;

  display: inline-block;

  cursor: pointer;
}

.tooltip {
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);

  width: 180px;
  padding: 5px 10px;

  font-size: 12px;
  text-align: center;
  color: var(--white-color);

  background-color: var(--black-color);
  border-radius: 4px;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  opacity: 0;
  visibility: hidden;

  transition: opacity 0.3s;
}

.tooltip::before,
.tooltip::after {
  content: "";

  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  border-width: 8px;
  border-style: solid;
}

.tooltip::before {
  top: 100%;

  border-color: rgba(var(--white-rgb), 0.2) transparent transparent transparent;
}

.tooltip::after {
  top: calc(100% - 1px);

  border-width: 7px;

  border-color: var(--black-color) transparent transparent transparent;
}

.booking-form__tooltip:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.booking-form__suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;

  width: auto;
  overflow: hidden;
  border-radius: 6px;

  background: #818181;
}

.booking-form__suggestion-item {
  display: flex;
  align-items: center;
  padding: 8px 8px;

  border-bottom: 1px solid rgba(var(--white-rgb), 0.1);

  transition: background 0.2s;

  cursor: pointer;
}

.booking-form__suggestion-item:hover {
  background-color: rgba(var(--white-rgb), 0.1);
}

.booking-form__suggestion-item:last-child {
  border-bottom: none;
}

.booking-form__suggestion-icon {
  display: flex;
  align-items: center;
  margin-right: 8px;

  color: #bf9c60;
}

.booking-form__suggestion-icon svg {
  position: relative;

  width: 16px;
  height: 16px;
  transform: translateY(0);
}

.booking-form__suggestion-texts {
  display: flex;
  align-items: center;
}

.booking-form__suggestion-main {
  margin-right: 5px;

  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.booking-form__suggestion-main strong {
  font-weight: 500;

  color: var(--primary-color);
}

.booking-form__suggestion-secondary {
  font-size: 12px;
  white-space: nowrap;

  color: rgba(var(--white-rgb), 0.7);
}

.flatpickr-calendar {
  font-family: "Inter", sans-serif;
  color: var(--primary-color);
}

.flatpickr-current-month {
  color: var(--primary-color);
  font-weight: 500;
}

.flatpickr-day {
  color: var(--primary-color);
}

.flatpickr-day:hover {
  background: rgba(191, 156, 96, 0.3);
  border: none;
}

.flatpickr-day.selected {
  background: #bf9c60;
  border: none;
}

.flatpickr-day.selected:hover {
  background: #bf9c60;
  border: none;
}

.flatpickr-weekday {
  color: var(--primary-color);
}

.flatpickr-day.today {
  border: 1px solid rgba(var(--black-rgb), 30%);
}

/* Services */

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px var(--padding);

  background-color: var(--black-color);
}

.services__hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}

.services__hero-title {
  margin: 0 0 15px 0;

  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;

  color: var(--primary-color);
}

.services__hero-desc {
  margin-bottom: 15px;

  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;

  color: var(--white-color);
}

.services__hero-text {
  max-width: 600px;
  margin: 0 auto;

  font-size: 14px;
  font-weight: bold;

  color: rgba(var(--white-rgb), 0.2);
}

.services__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.services__item {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 500px;
  padding: 20px;
  flex: 1;
  overflow: hidden;

  background: rgba(var(--black-rgb), 0.5);
  border-radius: 20px;

  transition: all 0.3s;

  cursor: pointer;
}

.services__item:hover {
  flex: 2;
}

.services__item-content {
  position: relative;
  z-index: 1;
}

.services__item-title {
  margin-bottom: 10px;

  font-size: 20px;
  font-weight: 500;

  color: var(--primary-color);
}

.services__item-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: opacity(0.7);
}

.services__item-icon {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 45px;
  height: 45px;

  background-color: rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(var(--blur-md));
  border-radius: 50%;
}

.services__item-link:hover * {
  text-decoration: none;
}
a.services__item-link:hover {
  text-decoration: none;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;

  padding: var(--padding) var(--padding) 172px;

  background: var(--black-color);
  color: var(--white-color);
}

.about:before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  background-image: url("/wp-content/themes/PWR/assets/images/bank-note.svg");
  background-repeat: repeat;
  background-position: center;
  opacity: 0.07;
}

.about__inner {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
}

.about__eyebrow {
  margin: 0 0 8px;

  letter-spacing: 0.4em;
  font-weight: 100;
  font-size: 12px;

  color: var(--primary-color);
}

.about__title {
  margin: 0 0 24px;

  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.about__copy {
  max-width: 600px;
  color: rgba(var(--white-rgb), 0.5);
  font-weight: 200;
  font-size: 16px;
}

.about__copy p {
  margin: 0 0 10px;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 26px;

  font-weight: 600;
  text-decoration: none;

  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 20px;
}

.about__btn:hover {
  text-decoration: underline;
}

.about__media {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.about__img {
  width: 650px;
  height: 300px;

  margin: 0;

  border-radius: 20px;
  overflow: hidden;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: center;
}

.about__img--tile {
  position: absolute;
  bottom: -110px;
  left: -150px;

  width: auto;
  height: 220px;

  border: 10px solid var(--black-color);
  border-radius: 20px;
}

.about__badge {
  position: absolute;
  right: 40px;
  bottom: -35px;

  display: flex;
  flex-direction: column;
  gap: 6px;
  width: auto;
  padding: 20px 30px;
  text-align: left;

  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 16px;

  /*border: 10px solid var(--black-color);*/
}

.about__badge-top {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.about__badge-bottom {
  font-size: 20px;
  font-weight: 700;
}

/* === Fleet === */
.fleet {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: auto;
  padding: var(--padding) 0 132px;

  font-family: sans-serif;

  background: var(--black-color);
  color: var(--white-color);
}

.fleet__hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}

.fleet__hero-title {
  margin: 0 0 15px 0;

  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;

  color: var(--primary-color);
}

.fleet__hero-desc {
  margin-bottom: 15px;

  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;

  color: var(--white-color);
}

.fleet__hero-text {
  max-width: 600px;
  margin: 0 auto;

  font-size: 14px;
  font-weight: bold;

  color: rgba(var(--white-rgb), 0.2);
}

/* === Слайдер === */

.fleet__slider-container {
  position: relative;

  width: 100%;
  padding: 0 var(--padding);
}

.fleet__slider {
  position: relative;

  display: flex;
  justify-content: space-around;
  width: 100%;
  height: 300px;
}

.fleet__item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;

  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  opacity: 0;
  pointer-events: none;

  margin: 0;

  text-align: left;

  transition: opacity 0.3s ease;
}

.fleet__item.active {
  opacity: 1;

  pointer-events: auto;
}

.fleet__item-img {
  width: 600px;
  max-width: 90vw;
  height: 300px;
  object-fit: cover;
}

/* Підпис */
.fleet__item-title {
  margin: 0 0 10px;

  font-size: 2.5rem;
}

.fleet__subtitle {
  margin: 0 0 20px;

  font-size: 1.5rem;

  color: var(--primary-color);
}

.fleet__btn {
  padding: 12px 24px;

  font-weight: bold;

  background: var(--primary-color);
  color: var(--black-color);
  border: none;
  border-radius: 50px;

  transition: 0.3s;

  cursor: pointer;
}

.fleet__btn:hover {
  background: var(--primary-color);
}

.fleet__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  /* базове центрування + додатковий зсув із змінної */
  --shift: 0px;
  transform: translate(calc(-50% + var(--shift)), -50%);

  white-space: nowrap;

  font-size: 20vw;
  font-weight: 900;

  color: rgba(var(--white-rgb), 0.05);

  pointer-events: none;
  user-select: none;
}

.fleet__arrows {
  position: absolute;
  bottom: var(--padding);
  right: var(--padding);
  z-index: 9;

  display: flex;
  gap: 20px;
}

.fleet__arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  height: 60px;

  background: rgba(var(--white-rgb), 0.2);
  backdrop-filter: blur(var(--blur-md));

  color: var(--white-color);
  border: none;
  border-radius: 50%;

  transition: color 0.3s;

  cursor: pointer;
}

.fleet__arrow:hover {
  color: var(--primary-color);
}

.fleet__arrow--next {
  transform: rotate(180deg);
}

.fleet__dots {
  position: absolute;
  top: 50%;
  right: var(--padding);
  transform: translateY(-50%);
  z-index: 9;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fleet__dot {
  width: 12px;
  height: 12px;

  background: rgba(var(--white-rgb), 0.3);
  border: none;
  border-radius: 50%;

  transition: background 0.3s;

  cursor: pointer;
}

.fleet__dot.active {
  background: var(--primary-color);
}

/* Testimonials */

.testimonials {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: auto;
  padding: var(--padding) 0;

  font-family: sans-serif;

  background: var(--black-color);
  color: var(--white-color);
}

.testimonials:before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  background-image: url("/wp-content/themes/PWR/assets/images/line-in-motion.svg");
  background-repeat: repeat;
  background-position: center;
  opacity: 0.07;
}

.testimonials__hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__hero-title {
  margin: 0 0 15px 0;

  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;

  color: var(--primary-color);
}

.testimonials__hero-desc {
  margin-bottom: 15px;

  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;

  color: var(--white-color);
}

.testimonials__slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;

  overflow: hidden;
  white-space: nowrap;
}

.testimonials-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;

  gap: 30px;

  width: 100%;

  animation: scroll 30s linear infinite;
}

.testimonials-card {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  flex: 0 0 auto;
  width: 100%;
  max-width: 400px;
  padding: 30px 28px;

  background: #1a1a1a;
  border-radius: 20px;

  transition: all 0.3s;
}

.testimonials-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
}

.testimonials-card__name {
  margin: 0;

  font-size: 18px;
}

.testimonials-card__text {
  margin: 0;

  font-size: 14px;
  white-space: pre-line;
  font-weight: 200;
}

.testimonials-row__two {
  flex-direction: row-reverse;
  animation: scroll-reverse 30s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-reverse {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

.faq {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: auto;
  padding: var(--padding);

  background: var(--black-color);
  color: var(--white-color);
}

.faq__hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}

.faq__hero-title {
  margin: 0 0 15px 0;

  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;

  color: var(--primary-color);
}

.faq__hero-desc {
  margin-bottom: 15px;

  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;

  color: var(--white-color);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.faq__item {
  position: relative;

  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;

  cursor: pointer;
}

.faq__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.faq__number {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;

  color: #323232;
}

.faq__question {
  margin: 0;

  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);

  user-select: none;
}

.faq__answer {
  display: flex;
  width: 100%;
  max-height: 0;

  margin: 0;

  font-size: 14px;
  font-weight: 300;

  color: rgba(var(--white-rgb), 0.7);

  transition: all 0.3s ease;
  overflow: hidden;
}

.faq__arrow {
  transition: transform 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 16px 0;
}

.faq__item.active .faq__arrow {
  transform: rotate(45deg);
}

.footer {
  position: relative;
  padding: var(--padding);
  padding-bottom: 30px;

  background: var(--black-color);
  color: var(--white-color);

  border-top: 1px solid rgba(var(--white-rgb), 0.1);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;

  margin-bottom: 30px;
}

.footer__title {
  margin: 0 0 20px;

  font-size: 34px;
  font-weight: bold;
}

.footer__menu {
  display: flex;
  gap: 10px 0;
  flex-wrap: wrap;

  max-width: 350px;
}

.footer__menu-sep {
  color: #b8b8b8;
}

.footer__menu-link {
  font-size: 18px;
  font-weight: 300;

  color: var(--white-color);
  text-decoration: none;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.footer__label {
  font-size: 12px;
  font-weight: 500;

  color: var(--primary-color);
}

.footer__col--info {
  display: flex;
  flex-direction: row;

  gap: 0 100px;
}

.footer__value {
  font-size: 16px;
  font-weight: 300;

  color: var(--white-color);
}
.footer__value--hours {
  margin: 0;
}
.footer__value--phone,
.footer__value--hours {
  font-size: 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;

  padding-right: 50px;
}

.footer__totop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 30px;

  background: transparent;
  color: var(--white-color);

  border: 1px solid #b8b8b8;
  border-radius: 50%;

  transition: background 0.3s, color 0.3s;

  cursor: pointer;
}

.footer__totop:hover {
  background: var(--primary-color);
  color: var(--black-color);
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 54px 64px;

  background-image: url("/wp-content/themes/PWR/assets/images/map.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white-color);

  border-radius: 20px;

  transition: background-size 0.3s;
}

.footer__cta:hover {
  background-size: 101% 101%;
}

.footer__copyright {
  font-size: 14px;
  font-weight: 300;

  color: var(--primary-color);
}

.footer__cta-icon {
  transform: rotate(45deg);
}

.contact {
  padding: var(--padding) 0 0;

  background-color: var(--black-color);
}

.contact__wrapp {
  position: relative;
  /* height: 100vh; */
}

.contact__wrapp:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  pointer-events: none;
  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  -webkit-mask: radial-gradient(
    circle at 75% center,
    transparent 0%,
    black 50%
  );
  mask: radial-gradient(circle at 75% center, transparent 0%, black 50%);

  backdrop-filter: blur(var(--blur-md));

  z-index: 1;
}

.contact__info {
  position: relative;
  height: 100%;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;

  padding: var(--padding);

  z-index: 3;
  pointer-events: none;
  inset: 0;
}

.contact__map-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact__header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  gap: 10px;

  width: auto;

  border-left: 8px solid var(--primary-color);

  padding-left: 15px;
}

.contact__subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--primary-color);
}

.contact__title {
  margin: 0;
  padding: 0;

  font-size: 54px;
  font-weight: bold;
  color: var(--white-color);
}

.contact__lists {
  display: flex;
  gap: 30px;

  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 30px;
}

.contact__list {
  position: relative;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__list-icon {
  position: absolute;
  top: 0;

  left: -30px;
}

.contact__list-link {
  margin: 0;
  padding: 0;

  font-size: 16px;
  font-weight: 300;
  color: rgba(var(--white-rgb), 0.6);
}

.contact__day {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__day-title {
  margin: 0;
  padding: 0;
  padding-left: 15px;

  font-size: 18px;
  font-weight: 300;
  color: var(--white-color);

  border-left: 5px solid var(--primary-color);
}

.contact__time {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding-left: 20px;
}

.contact__time-item {
  display: flex;
  width: 100%;

  justify-content: space-between;

  border-bottom: 1px dashed rgba(var(--white-rgb), 0.2);
}

.contact__time-item--weekend {
  color: #bb3546;
}

.contact__touch {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact__touch-title {
  margin: 0;
  padding: 0;
  padding-left: 15px;

  font-size: 18px;
  font-weight: 300;
  color: var(--white-color);

  border-left: 5px solid var(--primary-color);
}

.contact__form p {
  display: flex;
	gap:10px;
}
.contact__form-input {
  width: 400px;
  padding: 25px 0;

  font-size: 30px;
  font-weight: 300;
  color: var(--white-color);

  background: transparent;

  border: none;
  border-bottom: 2px solid rgba(var(--white-rgb), 0.2);
}

.contact__form-button {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px 35px;

  font-size: 30px;
  font-weight: 300;
  color: var(--white-color);

  background-color: var(--primary-color);
  border: none;
  border-radius: 20px;
}

.contact__map {
  width: 100%;
  height: 100%;

  z-index: 1;
}

.leaflet-popup-content-wrapper {
  background: rgba(var(--white-rgb), 0.3);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  color: var(--white-color);
  border-radius: 12px;
  box-shadow: 0 0px 10px rgba(var(--white-rgb), 0.1);
}

.leaflet-popup-content {
  margin: 8px 12px;
}

.leaflet-popup-tip {
  background: rgba(var(--white-rgb), 0.1);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
}

.link-map * {
  color: var(--white-color);
}

.contact__info > * {
  pointer-events: all;
}

.services__hero {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 80px;
}
.pill {
  color: var(--primary-color);
  font-weight: 200;
  text-transform: uppercase;
}

.services__lead {
  margin: 0;

  font-size: 14px;
  font-weight: 300;
  color: rgba(var(--white-rgb), 0.6);
}

.services__mosaic {
  width: 100%;
}

.mosaic {
  display: flex;
  gap: 30px;
  width: 100%;

  margin-bottom: 50px;
}

.mosaic__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: inherit;
  width: 50%;

  padding: 25px;

  background-color: rgba(var(--white-rgb), 0.1);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  border-radius: 20px;
}
.mosaic__item--big {
  display: flex;
  flex-direction: column;
  flex-grow: inherit;
  width: 50%;

  border-radius: 20px;

  gap: 30px;

  background-color: transparent;
}

.mosaic__item--card,
.mosaic__item--mini {
  width: 100%;
}

.mosaic__item--photo {
  flex: none;
  width: 100%;
  height: 300px;

  margin: 0;

  border-radius: 20px;

  overflow: hidden;
}

.mosaic__item--photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.mosaic__content {
  display: flex;
  gap: 30px;
  height: 100%;
}

.mosaic__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
.mosaic__item--icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;
  height: 100%;
  gap: 15px;

  background-color: transparent;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 calc((100% - 15px) / 2);

  background-color: rgba(var(--white-rgb), 0.1);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  border-radius: 20px;
  color: var(--primary-color);
}
.icon-btn svg {
  width: 40px;
  height: 40px;
}

.mosaic__kpi {
  font-size: 40px;

  margin: 0 0 30px;
}

.mosaic__sub {
  margin: 0 0 10px;
}

.mosaic__text {
  font-size: 14px;
  margin: 0;
}

.mosaic__item--accent {
  background-color: var(--primary-color);
  color: var(--black-color);
}

.mosaic__item--dark {
  background-color: var(--black-color);

  border: 1px solid rgba(var(--white-rgb), 0.1);
}

.srvblk__list {
  display: flex;
  flex-direction: column;

  width: 100%;

  margin-bottom: 50px;
}

.srvblk {
  display: flex;
  justify-content: space-between;
  width: 80%;

  gap: 30px;

  margin: 0 auto;
  padding: 30px 0;

  border-bottom: 1px dashed rgba(var(--white-rgb), 0.2);
}

.srvblk:last-child {
  border: none;
}

.srvblk__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 50%;
}

.srvblk__title {
  margin: 0;

  font-size: 40px;
  font-weight: 200;
}

.srvblk__desc {
  font-weight: 200;
  line-height: 1.7;
}

.srvblk__btn {
  margin-top: 28px;
  padding: 16px 26px;

  font-weight: 600;
  text-decoration: none;

  background: var(--primary-color);
  border: 1px solid transparent;
  color: var(--white-color);
  border-radius: 20px;

  transition: background 0.2s, border 0.2s, color 0.2s;
}

.srvblk__btn:hover {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);

  text-decoration: none;

}


.cta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 80%;

  margin: 0 auto;
  padding: 20px;

  border-radius: 20px;
  border: 1px dashed rgba(var(--white-rgb), 0.2);
  background-color: rgba(var(--white-rgb), 0.1);
}

.cta-strip__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.cta-strip__text {
  margin: 0;
}

.cta-strip__btn {
  margin-top: 28px;
  padding: 10px 20px;

  width: 100%;

  text-align: center;

  font-weight: 600;
  text-decoration: none;

  /* background: var(--primary-color); */
  border: 1px solid rgba(var(--white-rgb), 0.1);
  color: var(--white-color);
  border-radius: 20px;
}
.footer__menu li + li:before {
  content: "/";
  margin: 0 0.5em;
  color: inherit;
  opacity: .6;
}

p.footer__nip {
    text-align: center;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 0;
}