/* ===============================
   AREAS SERVED PAGE – LUXURY THEME
   =============================== */

.areas-page-container {
  max-width: 1320px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Hero */
.areas-hero {
  text-align: center;
  margin-bottom: 55px;
}

.areas-hero h1 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold);
  margin-bottom: 12px;
}

.areas-hero .lead {
  color: #fff;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* Section headings */
.served-areas-section h2,
.areas-details h2,
.areas-cta h2 {
  font-family: "Playfair Display SC", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 34px;
}

/* Areas Grid */
.served-areas-section {
  margin-bottom: 80px;
}

.served-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.served-area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 230px;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1b1b1b 0%, #111111 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.served-area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.served-area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(212, 175, 55, 0.06);
}

.served-area-card h3 {
  font-family: "Playfair Display SC", serif;
  font-size: 1.32rem;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
  line-height: 1.3;
}

.served-area-card p {
  color: #e8e8e8;
  font-size: 0.98rem;
  line-height: 1.75;
  text-align: center;
  margin: 0;
}

/* Details section */
.areas-details {
  text-align: center;
  margin-bottom: 80px;
}

.areas-details p {
  color: #fff;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.7;
  max-width: 980px;
  margin: 0 auto 18px;
}

/* CTA */
.areas-cta {
  text-align: center;
  margin-bottom: 60px;
}

.areas-cta p {
  color: #fff;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.6;
  font-size: 1rem;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 1rem 2.5rem;
  background-color: var(--gold);
  color: var(--dark-bg);
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--btn-hover);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px) {
  .served-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 700px) {
  .areas-page-container {
    padding: 0 16px;
  }

  .served-areas-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .served-area-card {
    min-height: unset;
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 20px;
  }

  .served-area-card h3 {
    font-size: 1.2rem;
  }

  .served-area-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
}