/* Color styles ------------*/
html {
  scroll-behavior: smooth;
}

/* ===== HERO / GREETING AREA ===== */
.greating_area {
  padding-top: 2rem;
}
@media (min-width: 600px) {
  .greating_area {
    padding-top: 3rem;
  }
}

.greating_area__hero {
  position: relative;
  width: 100%;
  height: 56vw;
  max-height: 520px;
  overflow: hidden;
}
.greating_area__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
}
.greating_area__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  padding: 0 6vw;
}
@media (min-width: 960px) {
  .greating_area__overlay {
    padding: 0 80px;
  }
}
.greating_area__text {
  color: #fff;
  max-width: 620px;
}
.greating_area__label {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.8rem;
  opacity: 0.75;
}
.greating_area__title {
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
  margin-bottom: 1rem;
}
@media (min-width: 600px) {
  .greating_area__title {
    font-size: 2.4rem;
  }
}
.greating_area__sub {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.88;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
@media (min-width: 600px) {
  .greating_area__sub {
    font-size: 1rem;
  }
}

/* ===== SERVICE SECTION (SPLIT LAYOUT) ===== */
.service_section {
  display: flex;
  flex-direction: column;
}
@media (min-width: 960px) {
  .service_section {
    flex-direction: row;
    min-height: 420px;
  }
  .service_section--reverse {
    flex-direction: row-reverse;
  }
}
.service_section__image {
  width: 100%;
  height: 64vw;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .service_section__image {
    width: 50%;
    height: auto;
    min-height: 420px;
  }
}
.service_section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.service_section__image:hover img {
  transform: scale(1.04);
}
.service_section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 6vw;
  background-color: #fff;
}
@media (min-width: 600px) {
  .service_section__content {
    padding: 3.5rem 4rem;
  }
}
@media (min-width: 960px) {
  .service_section__content {
    width: 50%;
    padding: 4rem 5rem;
  }
}
.service_section--bg .service_section__content {
  background-color: #f8f9f7;
}
.service_section .service_num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #056509;
  margin-bottom: 0.6rem;
}
.service_section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #056509;
  color: #222;
}
@media (min-width: 600px) {
  .service_section h3 {
    font-size: 1.9rem;
  }
}
.service_section p.service_desc {
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
  margin-bottom: 1.5rem;
}
.service_section .service_list li {
  position: relative;
  padding: 0.55em 0 0.55em 1.5em;
  font-size: 0.9rem;
  line-height: 1.6;
  border-bottom: 1px solid #e6e6e6;
  color: #444;
}
.service_section .service_list li:first-child {
  border-top: 1px solid #e6e6e6;
}
.service_section .service_list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #056509;
}
