/* ===== Hero ===== */
.hero-service {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: url('assets/img/hero2.jpg') center/cover no-repeat;
  margin-top: 40px;
  padding: 140px 0;
  overflow: hidden;
}
.hero-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.hero-service-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 40px);
  text-align: left;
  align-items: stretch;
}
.hero-service__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-service__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-service__title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.3;
}
.hero-service__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
}
.hero-service__actions {
  justify-content: flex-start;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.hero-service__card {
  align-self: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 26px 52px rgba(15, 23, 36, 0.28);
  color: #1f2535;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-service__card-title {
  margin: 0;
  font-size: 1.32rem;
  letter-spacing: 0.04em;
}
.hero-service__card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-service__card-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 31, 48, 0.12);
}
.hero-service__card-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hero-service__card-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 37, 53, 0.65);
}
.hero-service__card-value {
  font-size: 1.6rem;
  font-weight: 700;
}
.hero-service__card-desc {
  font-size: 0.9rem;
  color: rgba(31, 37, 53, 0.8);
}
.hero-service__card-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(31, 37, 53, 0.75);
  line-height: 1.7;
}
@media (max-width: 960px) {
  .hero-service-inner {
    grid-template-columns: 1fr;
  }
  .hero-service__card {
    justify-self: center;
    width: min(100%, 420px);
  }
}
@media (max-width: 600px) {
  .hero-service {
    padding: 110px 0;
  }
  .hero-service__card {
    width: 100%;
    padding: 26px 24px;
    gap: 14px;
  }
  .hero-service__card-value {
    font-size: 1.4rem;
  }
}

/* ===== Main Layout ===== */
.service-main {
  background: linear-gradient(180deg, #fff, #fff7f7 40%, #ffffff 80%);
}
.service-overview {
  padding: 72px 0 48px;
}
.service-overview__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: stretch;
}
.service-overview__content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: #222;
}
.service-overview__content p {
  margin: 0 0 20px;
  line-height: 1.8;
  color: #444;
}
.service-points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: #333;
}
.service-points li::before {
  content: "✔";
  color: #d50012;
  font-weight: 900;
  line-height: 1.4;
}
.service-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-shortcuts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(213,0,18,0.08);
  color: #d50012;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background .2s, transform .2s;
}
.service-shortcuts a:hover {
  background: rgba(213,0,18,0.14);
  transform: translateY(-1px);
}
.service-contact {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-contact h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #111;
}
.service-contact p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}
.service-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}
.service-contact__hours {
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.service-contact__hours div {
  display: grid;
  gap: 4px;
}
.service-contact__hours dt {
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}
.service-contact__hours dd {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

/* ===== Service Cards ===== */
.service-grid {
  padding: 40px 0 80px;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(213,0,18,0.06), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card img.thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0;
  background: #f2f2f2;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  margin: 0;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  text-align: left;
}
.service-card h3 .toggle-hint {
  font-size: 0.7rem;
  color: #d50012;
  background: rgba(213,0,18,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.service-card p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-align: left;
}
.service-card h3 .indicator {
  font-size: 0.8rem;
  color: #666;
  transition: transform .3s ease;
}
.service-card.open h3 .indicator {
  transform: rotate(180deg);
}

.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease, margin 0.3s ease;
  padding: 0;
  margin-top: 0;
  font-size: 0.92rem;
  color: #444;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}
.service-card.open .service-detail {
  max-height: 520px;
  padding: 12px 0 4px;
  margin-top: 8px;
}
.service-detail h4 {
  margin: 0;
  font-size: 1rem;
  color: #d50012;
}
.service-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.service-detail ul li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #eee;
  font-weight: 600;
}
.service-detail ul li span:last-child {
  color: #d50012;
}
.service-detail .notice {
  margin: 0;
  font-size: 0.86rem;
  color: #777;
}
.service-detail .cta-buttons {
  margin-top: 6px;
}
.service-detail .cta-buttons a {
  font-size: 0.84rem;
  padding: 8px 14px;
  box-shadow: none;
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-service__lead { max-width: none; }
  .service-overview__inner {
    grid-template-columns: 1fr;
  }
  .service-contact {
    max-width: 420px;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .hero-service {
    padding: 100px 0;
    margin-top: 32px;
  }
  .hero-service-inner {
    text-align: center;
    align-items: center;
  }
  .hero-service__actions {
    justify-content: center;
  }
  .hero-service__lead {
    max-width: 90%;
    font-size: 0.98rem;
  }
  .hero-service__stats {
    width: 100%;
  }
  .service-overview {
    padding: 56px 0 36px;
  }
  .service-contact {
    width: 100%;
  }
  .service-points li {
    font-size: 0.95rem;
  }
  .services {
    gap: 22px;
  }
  .service-card {
    padding: 22px;
  }
}

@media (max-width: 600px) {
  .hero-service {
    min-height: auto;
  }
  .hero-service__stats {
    grid-template-columns: 1fr;
  }
  .service-shortcuts a {
    flex: 1 1 calc(50% - 12px);
    justify-content: center;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service-card img.thumb {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .hero-service {
    padding: 84px 0;
  }
  .service-shortcuts a {
    flex: 1 1 100%;
  }
  .service-card {
    padding: 20px;
  }
}
  
