/* ==========================
   SERVICE AREA SECTION
========================== */
.service-area-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-area-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.service-area-intro {
  max-width: 860px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #666;
  text-align: center;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

.service-area-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.service-area-card h3 {
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
  color: #1f1f1f;
  font-weight: 700;
  line-height: 1.3;
}

.service-area-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2rem;
}

.service-area-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  color: #444;
  line-height: 1.6;
  break-inside: avoid;
}

.service-area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f4a261;
  transform: translateY(-50%);
}

.service-area-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(248,244,239,0.95) 100%);
}

.service-area-highlight p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-area-highlight .btn-primary {
  align-self: flex-start;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 900px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .service-area-list {
    columns: 1;
  }

  .service-area-card {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .service-area-section {
    padding: 4.5rem 1.25rem;
  }

  .service-area-intro {
    font-size: 1rem;
    line-height: 1.8;
  }

  .service-area-card h3 {
    font-size: 1.25rem;
  }

  .service-area-card {
    border-radius: 22px;
    padding: 1.5rem;
  }
}@charset "UTF-8";
/* CSS Document */

