/* Hero blok) */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Цветовое затемнение поверх изображения */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 60, 60, 0.45);
  z-index: 1;
}

/* Контент по центру */
.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

/* Заголовок */
.page-hero__title {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem); /* плавное масштабирование */
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 200px;
    background-position: center top;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 160px;
  }

  .page-hero__title {
    font-size: 1.5rem;
    letter-spacing: 0.03em;
  }
}

.page-hero {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInHero 0.8s ease forwards;
}

@keyframes fadeInHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== LOCATIONS INFO SECTION ========== */

.locations-info {
  padding: 80px 0;
  background-color: #fff;
}

.locations-info__container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.locations-info__map {
  flex: 1 1 45%;
  min-width: 300px;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.locations-info__content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #2d2d2d;
  line-height: 1.7;
}

.locations-info__title {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #1d2b27;
  margin-bottom: 20px;
}

.locations-info__content p {
  margin-bottom: 1em;
  color: #333;
}

.locations-info__button {
  display: inline-block;
  background-color: #2f4f46;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.locations-info__button:hover {
  background-color: #406b5a;
}


/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 992px) {
  .locations-info__container {
    flex-direction: column;
    align-items: center;
  }

  .locations-info__map,
  .locations-info__content {
    flex: 1 1 100%;
    max-width: 700px;
  }

  .locations-info__map iframe {
    height: 400px;
    width: 100%;
  }
}

/* City Orange county */
.locations-areas {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
}

.areas-line {
    border: none;
    border-top: 1px solid #bbb;
    margin: 40px 0 30px;
}

.areas-title {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
}

/* 4 колонки */
.areas-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.areas-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Иконка пина — 🔴 */
.areas-grid li {
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-left: 18px;
}

.areas-grid li::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0;
    color: red;
    font-size: 16px;
}

/* Адаптив */
@media (max-width: 1024px) {
    .areas-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .areas-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .areas-grid ul {
        width: 100%;
    }

    .areas-grid li {
        padding-left: 0;
    }

    .areas-grid li::before {
        display: none;
    }
}
