@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #040406;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

button {
  border: none;
  cursor: pointer;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.header__nav {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 160px;
  display: inline-block;
}
.header__img {
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav a {
  color: #ffffff;
  font-weight: 500;
}
.nav a:hover {
  color: #ffd41d;
}
.nav .phone {
  background: #ffd41d;
  color: #040406;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav .phone:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .nav .home__title {
    font-size: 34px;
  }
  .nav .home__subtitle {
    font-size: 12px;
  }
  .nav .home__second-subtitle {
    font-size: 16px;
  }
}

.home {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: url("../img/home.jpg") center/cover no-repeat;
}
.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.home .container {
  z-index: 1;
  width: 1240px;
  position: relative;
}
.home__content {
  color: #ffffff;
  max-width: 650px;
}
.home__subtitle {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-left: 120px;
  color: #ffd41d;
  font-style: italic;
}
.home__title {
  font-size: 74px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 700px;
  font-family: "Story Script", sans-serif;
  text-transform: uppercase;
}
.home__title span {
  color: #ffd41d;
}
.home__second-subtitle {
  font-size: 24px;
  font-style: italic;
  margin-left: 20px;
}
.home__second-subtitle span {
  font-family: "Story Script", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  color: #ffd41d;
}
.home__description {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 35px;
  opacity: 0.95;
}
.home__off {
  position: absolute;
  width: 300px;
  right: 0;
  top: -100px;
  z-index: -1;
  animation: offPulse 3s ease-in-out infinite;
}
.home__off img {
  width: 100%;
}
@keyframes offPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.home__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  max-width: 600px;
}
.home__btn {
  padding: 10px 30px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: #ffd41d;
  color: #040406;
  border-radius: 6px;
}
.home__btn:hover {
  color: #ffffff;
  transition: 0.3s;
  border-color: #ffffff;
}
.home__second-btn {
  background: none;
  border: 1px solid #ffd41d;
  color: #ffd41d;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.home__second-btn img {
  width: 25px;
}

.services {
  padding: 70px 0;
  background: #f9fafb;
}
.services__heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.services__subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 60px;
  font-size: 18px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.services__item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.services__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.services__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.services__list {
  list-style: none;
}
.services__list-item {
  margin-bottom: 10px;
  color: #555;
  font-size: 15px;
}
.services__list-item::before {
  content: "✓ ";
  color: #ffd41d;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .coverage__row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.contact {
  padding: 30px 0;
  background: #ffffff;
}
.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: center;
}
.contact__info {
  padding: 0 80px;
}
.contact__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact__text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}
.contact__company {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact__location {
  margin-bottom: 20px;
  color: #444;
}
.contact__phone a, .contact__email a {
  color: #000;
  font-weight: 600;
}
.contact__phone a:hover, .contact__email a:hover {
  color: #ffd41d;
}
.contact__email {
  margin-top: 5px;
}
.contact__button {
  display: block;
  padding: 14px 30px;
  background: #000;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  margin: 30px 0 0;
  width: 280px;
  text-align: center;
}
.contact__button:hover {
  background: #ffd41d;
}
.contact__map {
  height: 500px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
  }
  .contact__info {
    padding: 40px 20px;
    text-align: center;
  }
  .contact__button {
    margin: 30px auto 0;
  }
  .contact__map {
    height: 400px;
  }
}
.reviews {
  padding: 70px 0;
  background: #111;
  color: #fff;
  text-align: center;
  background: url(../img/reviews.jpg) center/cover;
  position: relative;
}
.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.reviews .container {
  z-index: 2;
  position: relative;
}
.reviews__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}
.reviews__title span {
  color: #ffd41d;
}
.reviews__subtitle {
  color: #aaa;
  margin-bottom: 40px;
}
.reviews__empty {
  margin-bottom: 40px;
  font-style: italic;
  color: #777;
}
.reviews .reviews__rating {
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.reviews .reviews__rating-label {
  display: block;
  font-weight: 600;
}
.reviews .stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 5px;
}
.reviews .stars input {
  display: none;
}
.reviews .stars label {
  font-size: 28px;
  color: #f1f1f1;
  cursor: pointer;
  transition: 0.3s;
}
.reviews .stars label:hover,
.reviews .stars label:hover ~ label {
  color: #ffd41d;
}
.reviews .stars input:checked ~ label {
  color: #ffd41d;
  text-shadow: 0 0 10px #ffd41d;
}
.reviews__form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.reviews__form input,
.reviews__form textarea {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-family: inherit;
}
.reviews__form textarea {
  resize: none;
  height: 120px;
}
.reviews__form button {
  background: #ffd41d;
  border: none;
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  font-size: 16px;
}
.reviews__form button:hover {
  color: #ffffff;
}

.footer {
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  text-align: center;
}
.footer__copyright {
  font-size: 13px;
  color: #888;
}
.footer__copyright span {
  color: #ffd41d;
  font-weight: 600;
}

@media (max-width: 700px) {
  .nav {
    display: none;
  }
  .header__nav {
    justify-content: center;
    padding: 30px 15px;
  }
  .home__title {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
  }
  .home__subtitle {
    font-size: 18px;
    margin-left: 0;
    text-align: center;
  }
  .home__second-subtitle {
    font-size: 18px;
    margin-left: 0;
    text-align: center;
  }
  .home__second-subtitle span {
    font-size: 26px;
  }
  .home__description {
    font-size: 16px;
  }
  .home__btns {
    flex-direction: column;
    width: 100%;
  }
  .home__btn, .home__second-btn {
    width: 100%;
    text-align: center;
  }
  .home__off {
    width: 250px;
    position: relative;
    margin: 0 auto 25px;
    top: 0;
  }
  .services__heading {
    font-size: 28px;
  }
  .services__subtitle {
    font-size: 16px;
  }
  .contact__title {
    font-size: 28px;
  }
  .contact__company {
    font-size: 22px;
  }
}
.custom-alert {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.custom-alert__box {
  background: #111;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(255, 212, 29, 0.25);
}
.custom-alert__box p {
  margin-bottom: 20px;
  font-size: 18px;
}
.custom-alert__box button {
  background: #ffd41d;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.custom-alert__box button:hover {
  opacity: 0.9;
}

.stars--error {
  outline: 2px solid #ff4d4d;
  border-radius: 6px;
  padding: 5px;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}