/* ===========================================
   AREAS PAGE — PREMIUM REDESIGN
   Clean, editorial, city-focused
   Scoped under .areas-page
   =========================================== */

/* ========== PAGE RESET ========== */

.areas-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #FFFFFF;
  color: #111111;
}

/* ========== HERO ========== */

.areas-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}

.areas-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.areas-hero__img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1609825488888-3a766db05542?w=1920&q=80&auto=format');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.areas-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.areas-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.areas-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.areas-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: areas-dot-pulse 2s ease-in-out infinite;
}

@keyframes areas-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.areas-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.areas-hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FEATURED CITIES GRID ========== */

.areas-cities {
  padding: 80px 24px;
  background: #FFFFFF;
}

.areas-cities__container {
  max-width: 1200px;
  margin: 0 auto;
}

.areas-cities__header {
  text-align: center;
  margin-bottom: 56px;
}

.areas-cities__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.areas-cities__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2F80ED;
}

.areas-cities__title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #111111;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.areas-cities__sub {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */

.areas-cities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */

.areas-city-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.areas-city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.areas-city-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.areas-city-card:hover .areas-city-card__img {
  transform: scale(1.04);
}

.areas-city-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.6) 100%
  );
  transition: background 0.4s ease;
}

.areas-city-card:hover .areas-city-card__overlay {
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.areas-city-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.areas-city-card__name {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.areas-city-card__services {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin: 0;
}

.areas-city-card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(34, 197, 94, 0.85);
  border-radius: 999px;
  padding: 5px 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

.areas-city-card__status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFFFFF;
}

/* ========== ALL AREAS LIST ========== */

.areas-all {
  padding: 64px 24px 80px;
  background: #F5F7FA;
}

.areas-all__container {
  max-width: 1200px;
  margin: 0 auto;
}

.areas-all__header {
  text-align: center;
  margin-bottom: 40px;
}

.areas-all__title {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.areas-all__sub {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
}

.areas-all__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.areas-all__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.areas-all__link:hover {
  border-color: rgba(47, 128, 237, 0.25);
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.08);
  color: #2F80ED;
}

.areas-all__link-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
}

.areas-all__link-icon--soon {
  background: #F59E0B;
}

.areas-all__link-arrow {
  margin-left: auto;
  color: #D1D5DB;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.areas-all__link:hover .areas-all__link-arrow {
  color: #2F80ED;
  transform: translateX(2px);
}

/* ========== TRUST SECTION ========== */

.areas-trust {
  padding: 80px 24px;
  background: #FFFFFF;
}

.areas-trust__container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.areas-trust__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  margin: 0 0 48px;
}

.areas-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.areas-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.areas-trust__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #EAF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F80ED;
  flex-shrink: 0;
}

.areas-trust__icon svg {
  width: 24px;
  height: 24px;
}

.areas-trust__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0;
}

.areas-trust__item-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
  margin: 0;
  max-width: 260px;
}

/* ========== CTA SECTION ========== */

.areas-cta {
  padding: 80px 24px;
  background: #F5F7FA;
  text-align: center;
}

.areas-cta__container {
  max-width: 640px;
  margin: 0 auto;
}

.areas-cta__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.areas-cta__sub {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 32px;
}

.areas-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2F80ED;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.25);
}

.areas-cta__btn:hover {
  background: #1A6FDB;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 128, 237, 0.35);
}

.areas-cta__btn svg {
  transition: transform 0.3s ease;
}

.areas-cta__btn:hover svg {
  transform: translateX(3px);
}

.areas-cta__note {
  display: block;
  font-size: 13px;
  color: #9CA3AF;
  margin-top: 14px;
}

/* ========== EXPANSION SECTION ========== */

.areas-expansion {
  padding: 80px 24px;
  background: #FFFFFF;
}

.areas-expansion__container {
  max-width: 1200px;
  margin: 0 auto;
}

.areas-expansion__header {
  text-align: center;
  margin-bottom: 48px;
}

.areas-expansion__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #F59E0B;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.areas-expansion__title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.areas-expansion__sub {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
}

.areas-expansion__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.areas-expansion__card {
  background: #F5F7FA;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.areas-expansion__card:hover {
  background: #FFFFFF;
  border-color: rgba(47, 128, 237, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.areas-expansion__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 6px;
}

.areas-expansion__card-desc {
  font-size: 13px;
  color: #6B7280;
  margin: 0 0 18px;
}

.areas-expansion__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.areas-expansion__chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #6B7280;
}

.areas-expansion__chip--active {
  background: #EAF2FF;
  border-color: rgba(47, 128, 237, 0.2);
  color: #2F80ED;
}

/* ========== FOOTER WRAPPER ========== */

.areas-footer-wrap {
  position: relative;
  overflow: hidden;
  background: #F5F7FA;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 900px) {
  .areas-hero {
    min-height: 360px;
    padding: 120px 20px 64px;
  }

  .areas-hero__title {
    font-size: 38px;
  }

  .areas-hero__sub {
    font-size: 16px;
  }

  .areas-cities {
    padding: 64px 20px;
  }

  .areas-cities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .areas-all__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .areas-trust__grid {
    gap: 24px;
  }

  .areas-expansion__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .areas-hero {
    min-height: 320px;
    padding: 110px 16px 56px;
  }

  .areas-hero__title {
    font-size: 32px;
  }

  .areas-hero__sub {
    font-size: 15px;
  }

  .areas-cities {
    padding: 56px 16px;
  }

  .areas-cities__header {
    margin-bottom: 40px;
  }

  .areas-cities__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .areas-city-card {
    aspect-ratio: 16 / 10;
  }

  .areas-city-card__name {
    font-size: 20px;
  }

  .areas-all {
    padding: 48px 16px 64px;
  }

  .areas-all__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .areas-all__link {
    padding: 12px 14px;
    font-size: 13px;
  }

  .areas-trust {
    padding: 56px 16px;
  }

  .areas-trust__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .areas-trust__item {
    max-width: 320px;
    margin: 0 auto;
  }

  .areas-cta {
    padding: 56px 16px;
  }

  .areas-cta__btn {
    width: 100%;
    justify-content: center;
  }

  .areas-expansion {
    padding: 56px 16px;
  }

  .areas-expansion__grid {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .areas-hero {
    padding: 100px 14px 48px;
  }

  .areas-hero__title {
    font-size: 28px;
  }

  .areas-all__grid {
    grid-template-columns: 1fr;
  }

  .areas-city-card__content {
    padding: 20px;
  }
}
