/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

:root {
  --f-white: #ffffff;

  --f-accent: #678f3c;
  --f-accent-dark: #4e6e2c;

  --f-ease: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: #333;
}

/* Text colors */
.txt-green {
  color: #678f3c;
}

.txt-orange {
  color: #ff9e00;
  font-size: 18px;
  font-weight: 700;
}
.txt-grey {
  color: #666666;
}

.txt-yellow {
  color: #ffee00;
}

.txt_underline {
  text-decoration: underline;
}

.txt-rg-16 {
  font-size: 16px;
}

.txt-rg-14 {
  font-size: 14px;
}

.txt-md-18 {
  font-size: 18px;
  font-weight: 700;
}

.txt-thin {
  font-weight: 400;
}

/*add top spacing */
.top-spacing {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.cta_btn_secondary {
  display: inline-block;

  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--f-white);
  background: var(--f-accent);
  border: none;
  border-radius: 50px;
  padding: 15px 56px;
  cursor: pointer;
  transition:
    background var(--f-ease),
    transform var(--f-ease);
  text-decoration: none;
  line-height: 1;
}

.cta_btn_secondary:hover {
  background: var(--f-accent-dark);
  transform: translateY(-2px);
}

.cta-area {
  text-align: center;
  margin-top: 35px;
}

/* Header */
.top-bar {
  background: #fff;
  color: #9d9d9d;
  padding: 8px 16px;
  font-size: 14px;
}

.section-title {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 10px 10px;

  color: #678f3c;
  font-size: 30px;
  font-weight: 700;
}

.header {
  padding-left: 6px;
}

.header-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 0px 16px;
}

.hero-heading {
  margin: 0;
}

.logo {
  height: 81px;
  object-fit: contain;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: flex-start;
  padding: 12px 16px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #666666;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  padding: 0 14px;
}

.nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 14px;
  background-color: #678f3c;
  transform: translateY(-50%) scaleX(0.6);
  transform-origin: center;
}

.nav a:hover {
  color: #678f3c;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 20%;
  left: 10%;
  color: #333;
  max-width: 500px;
}

.badge {
  position: absolute;
  left: -80px;
  top: -40px;
  background: #f4a261;
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.hero-text h2 {
  font-size: 28px;
  color: #5a8f2e;
  margin-bottom: 10px;
  line-height: 1.4;
}

.hero-text h1 {
  font-size: 36px;
  color: #f57c00;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-text h2 {
    font-size: 24px;
  }

  .hero-text h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .header-main {
    padding: 10px 12px;
  }

  .logo {
    height: 40px;
  }

  .social-icons img {
    width: 30px;
    height: 30px;
  }

  .hero-text {
    position: static;
    padding: 20px 16px;
  }

  .badge {
    position: static;
    margin-bottom: 10px;
    display: inline-block;
  }

  .hero-text h2 {
    font-size: 20px;
  }

  .hero-text h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    font-size: 12px;
    padding: 6px 10px;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .hero-text h1 {
    font-size: 22px;
  }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  top: 90px;
  right: 30px;
  width: 140px;
  background: #f59e0b;
  border-radius: 20px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Close button */
.cta-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: transparent;
  color: #666666;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}

/* Icons */
.cta-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
}

.cta-icons img {
  width: 36px;
  height: 36px;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}

/* Text */
.cta-text {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: underline;
}

/* visibility */
.desktop-cta {
  display: block;
}

.mobile-cta {
  display: none;
}

/* mobile switch */
@media (max-width: 768px) {
  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f59e0b;
    padding: 6px 16px;

    z-index: 999;
  }

  .mobile-cta-text {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
    text-decoration: underline;
  }

  .mobile-cta-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
  }

  .mobile-cta-icons img {
    display: block;
    width: 44px;
    height: 44px;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
  }

  .mobile-cta-menu {
    display: flex;
    align-items: center;
  }

  .mobile-cta-menu img {
    display: block;
    width: 40px;
    height: 40px;
  }
}

/* Section */
.concerns {
  background: #f8f9e5;
  padding: 60px 20px;
  position: relative;
}

/* Bottom arrow shape */
.concerns::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);

  width: 0;
  height: 0;

  border-left: 50% solid transparent;
  border-right: 50% solid transparent;
  border-top: 40px solid #f8f9e5;
}
.concerns-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.concerns-title {
  display: inline-block;
  font-size: 30px;
  position: relative;
  margin: 0 auto 40px;
  padding-bottom: 12px;
  color: #6a4e34;
}

.sp-br {
  display: none;
}

@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
}

/* underline + notch (single shape) */
.concerns-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;

  background: #6a4e34;

  clip-path: polygon(
    0 0,
    calc(50% - 10px) 0,
    50% calc(100% - 2px),
    calc(50% + 10px) 0,
    100% 0,
    100% 2px,
    calc(50% + 10px + 1px) 2px,
    50% 100%,
    calc(50% - 10px - 1px) 2px,
    0 2px
  );
}

.concerns-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 75%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .concerns-list {
    width: 100%;
    max-width: 100%;
  }
}

.concerns-title span {
  color: #678f3c;
  position: relative;
  font-size: 32px;
}

.concerns-title span.dotted-overline {
  color: #678f3c;
  position: relative;
  font-size: 32px;
}

.concerns-title span.dotted-overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: -11px;
  width: 100%;
  height: 6px;

  background: radial-gradient(circle, #678f3c 2px, transparent 3px);
  background-size: 1em 6px;
  background-repeat: repeat-x;
}

.pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 40px;
  padding: 16px 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  border: 1px solid #ddd;
  border-radius: 4px;
  margin-right: 5px;
  color: #678f3c;
  font-size: 18px;
  line-height: 1;
  background: #fff;
  flex-shrink: 0;
}

.pill p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

.pill span {
  color: #6aa84f;
  font-weight: 500;
}

/*Consult Section */
.consult {
  background: #fff;
  padding: 60px 20px;
}

.consult {
  background-image: url("../images/tree_pattern.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* Title */

/* .consult-title {
  color: #ff9e00;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  width: fit-content;
  text-align: center; 
} */

.consult-title-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.consult-title {
  color: #ff9e00;
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 40px;
  line-height: 1.6;

  background: linear-gradient(transparent 65%, #ffefc1 65%);

  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Card */
.consult-card {
  max-width: 900px;
  margin: 20px auto 60px;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: stretch;
  gap: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Layout */
.consult-text {
  width: 65%;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.consult-text p {
  margin-bottom: 20px;
}

.consult-text p:last-child {
  margin-bottom: 0;
}

.consult-text span {
  color: #678f3c;
  font-weight: 500;
}

/* Image */
.consult-image {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.consult-image img {
  height: auto;

  object-fit: cover;
  border-radius: 8px;
}

/* Seminar */
.seminar {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 14px;
  overflow: visible;

  background:
    linear-gradient(rgba(0, 163, 136, 0.9), rgba(57, 185, 155, 0.95)),
    url("../images/seminar-bg.png") center/cover no-repeat;
}

.seminar-card-wrap {
  margin-bottom: 40px;
}

/* Layout */
.seminar-inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 20px;
}

/* Split */
.seminar-left {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Grey square placeholder */
.seminar-placeholder {
  width: 85%;
  aspect-ratio: 1 / 1;
  background: #eaeaea;
  border-radius: 10px;
}

.seminar-thumb {
  width: 85%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #eaeaea;
}

.seminar-thumb img,
.seminar-thumb .seminar-img {
  position: absolute !important;
  top: 0;
  left: 0;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center;

  max-width: none !important;
}

.seminar-right {
  width: 65%;
  color: #fff;
  align-self: flex-start;
}

/* Content */
.seminar-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.seminar-divider {
  border-bottom: 2px dotted #fff;
  margin-bottom: 12px;
}

.seminar-date {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 600;
}

.seminar-desc {
  font-size: 16px;
  line-height: 1.8;
}

.seminar-btn {
  position: absolute;
  right: 24px;
  bottom: -20px;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;

  background: #ffee00;
  color: #4bab96;
  max-width: 255px;
  padding: 8px 28px;
  border-radius: 999px;

  font-size: 17px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.seminar-btn .arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-right: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .seminar-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100%;
  }

  .seminar-left,
  .seminar-right {
    width: 100%;
  }

  .seminar-title {
    margin-top: 20px;
  }

  .seminar-btn {
    position: static;
    margin-top: auto;
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .seminar-btn {
    order: 3;
    margin-top: 20px;
  }

  .seminar-left {
    order: 1;
  }
  .seminar-right {
    order: 2;
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* Consult */
  .consult-card {
    flex-direction: column;
  }

  .consult-text,
  .consult-image {
    width: 100%;
  }

  .consult-image {
    margin-top: 16px;
  }

  .consult-image img {
    width: 100%;
  }

  /* Seminar */
  .seminar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .seminar-left,
  .seminar-right {
    width: 100%;
  }

  /* reorder */
  .seminar-right {
    order: 1;
  }

  .seminar-left {
    order: 2;
    margin-top: 16px;
  }

  /* button center bottom */
  .seminar-btn {
    position: static;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
  }
}

/* Section */
.features {
  background: #f8f9e5;
  padding: 60px 20px;
}

/* Title */
.features-title {
  margin-bottom: 40px;
}

/* Card */
.feature-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Number */
.feature-number {
  position: absolute;
  top: -45px;
  left: 26px;
  width: auto;
  height: 68px;
}

.feature-number img {
  width: 100%;
  height: 100%;
  display: block;
}

/* .img-01 {
  width: 79px !important;
} */

/* Layout */
.feature-content {
  width: 70%;
}

.feature-heading {
  color: #678f3c;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.feature-image {
  width: 30%;
}

.feature-image img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .feature-image,
  .feature-content {
    width: 100%;
  }

  .feature-image {
    order: 1;
    margin-bottom: 12px;
  }

  .feature-content {
    order: 2;
  }

  .feature-heading {
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  #contents .features .feature-image img {
    border-radius: 0 !important;
    outline: 3px solid red;
  }
}

/* Section */
.services {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

/* Title */
.services-title {
  font-size: 28px;
  font-weight: 700;
  color: #678f3c;
  margin-bottom: 20px;
}

.services-note {
  color: #777;
  margin-top: 12px;
  font-size: 14px;
}

/* Badge */
.green-badge {
  position: relative;
  display: inline-block;
  padding: 2px 20px;
  border: 2px solid #678f3c;
  border-radius: 30px;
  font-size: 24px;
  color: #678f3c;
  font-weight: 700;
  margin-bottom: 30px;
  background: #fff;
}

.green-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #678f3c;
}

.green-badge::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
}

/* Subtext */
.services-subtext {
  font-size: 16px;
  color: #777;
  margin-bottom: 24px;
}

/* Card */
.services-card {
  max-width: 75%;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-item p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}
/* Item */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.service-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-card {
    max-width: 100%;
    width: 100%;
  }
}

.pricing {
  background: #f8f9e5;
  padding: 60px 20px;
  text-align: center;
}

/* Note */
.pricing-note {
  color: #f57c00;
  font-weight: 800;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Card */
.pricing-card {
  color: #555;
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  text-align: left;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Title */
.pricing-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Divider */
.pricing-divider {
  border-bottom: 2px dotted #e9efc0;
  margin: 10px 0 16px;
}

/* Text */
.pricing-text {
  color: #555;
  margin-bottom: 6px;
}

/* Highlight */
.pricing-highlight {
  font-size: 16px;

  margin-bottom: 12px;
}

.contact-cta {
  background: #f8f9e5;

  padding-bottom: 30px;
}

.contact-cta-3,
.contact-cta-2 {
  padding: 20px 20px 35px;
}
.contact-cta-3 {
  padding-top: 50px;
}
/*Contact Card */
.contact-card {
  max-width: 900px;
  font-size: 18px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 20px 42px;
  color: #fff;

  background:
    linear-gradient(rgba(67, 145, 67, 0.85), rgba(70, 145, 70, 0.85)),
    url("../images/contact-bg.png") center/cover no-repeat;

  border: 3px solid rgba(255, 255, 255);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* Title */
.contact-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Divider */
.contact-divider {
  border-bottom: 2px dotted rgba(255, 255, 255, 0.7);
  margin: 0 auto 20px;
  max-width: 80%;
}

/* Layout */
.contact-options {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  gap: 60px;
}

/* Left */
.contact-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  font-weight: bold;
  gap: 8px;
}

.contact-number {
  font-size: 40px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  transform: scaleY(1.3);

  white-space: nowrap;
  transform-origin: center;
}

.contact-time {
  font-size: 14px;
  white-space: nowrap;
}

/* Right */
.contact-right {
  width: 50%;
  display: flex;
  flex-direction: column;

  justify-content: start;
  gap: 10px;
  font-weight: bold;
}

.contact-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
}

.contact-item a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item p {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .mb-br::after {
    content: "\A";
    white-space: pre;
  }
  .contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: auto;
    flex: 0 0 auto;
  }

  .contact-right {
    width: auto;
    flex: 0 0 auto;
  }
  .contact-card {
    max-width: 100%;
  }
  .contact-divider {
    width: 100%;
    max-width: 100%;
  }

  .contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .contact-left,
  .contact-right {
    text-align: left;
  }

  .contact-right {
    align-items: start;
  }

  .contact-left .contact-item {
    gap: 4px;
  }
  /* align each row to the right */
  .contact-left .contact-item,
  .contact-right .contact-item {
    display: flex;
    justify-content: flex-end;
    font-size: 18px;
  }

  /* make icon + text behave as a unit */
  .contact-item a {
    display: grid;
    grid-template-columns: 24px auto;
    align-items: center;
    gap: 4px;
  }

  .contact-right .contact-item a {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  /* lock icon size for perfect alignment */
  .contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
  }

  /* .txt_underline.line {
    padding-right: 9px;
  } */
}

.support-process {
  text-align: center;
  background: #fff;
  padding: 60px 20px 0;
  position: relative;
}

.support-process-title {
  margin-bottom: 30px;
}

.support-process::after {
  display: none;
}

@media (max-width: 768px) {
  .support-process::after {
    display: none;
  }
}

.support-process-item {
  position: relative;
  z-index: 1;
}

.support-process-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 70px;
}

.support-process-left {
  position: relative;
  width: 40%;
}

.support-process-left::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
  width: 2px;

  background: repeating-linear-gradient(
    to bottom,
    #b5cf70 0px,
    #b5cf70 2px,
    transparent 2px,
    transparent 8px
  );
}

.support-process-item:last-child .support-process-left::after {
  display: none;
}

@media (max-width: 768px) {
  .support-process-left::after {
    display: none;
  }
}

/* Downward arrrow on mobile */
@media (max-width: 768px) {
  .support-process-item {
    position: relative;
    margin-bottom: 50px;
  }

  .support-process-item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);

    width: 20px;
    height: 20px;
    opacity: 0.8;
    border-right: 2px dotted #b5cf70;
    border-bottom: 2px dotted #b5cf70;

    transform: translateX(-50%) rotate(45deg);
  }

  /* Remove arrow on last item */
  .support-process-item:last-child::after {
    display: none;
  }
}

.support-process-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.support-process-step {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: auto;
}

.support-process-step img {
  width: 100%;
  height: 100%;
  display: block;
}

.support-process-right {
  text-align: left;
  width: 60%;
  padding-left: 5px;
}

.support-process-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.support-process-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.support-process-line {
  width: 2px;
  height: 40px;
  border-left: 2px dotted #9ccc65;
  margin: 20px auto;
}

.examples {
  background: #f8f9e5;
  padding: 60px 20px;
  text-align: center;
  margin-top: 30px;
}

.examples-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.examples-subtext {
  font-size: 16px;
  color: #777;
  margin-bottom: 30px;
}

.examples-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Card */
.example-card {
  position: relative;
  width: calc(50% - 12px);
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
  overflow: visible; /* IMPORTANT for tooltip */
}

/* Label */
.example-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;

  text-align: center;
  background: #fff;
  border: 2px solid #678f3c;
  border-radius: 30px;
  padding: 6px 12px;

  font-size: 16px;
  color: #678f3c;
  font-weight: 700;

  z-index: 2;
  cursor: pointer;
}

/* Notch (KEEP THIS) */
.example-label::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #678f3c;
}

.example-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff;
}

/* Text truncation */
.example-label-text {
  display: block;
  position: relative;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Content */
.example-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  padding-top: 20px;
  margin-bottom: 16px;
}

/* Tooltip box */
.tooltip-box {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(4px);

  background: #222;
  color: #fff;

  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;

  white-space: normal;
  max-width: 260px;
  text-align: center;

  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;

  z-index: 999;
}

/* Arrow */
.tooltip-box::after {
  content: "";
  position: absolute;

  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);

  border-width: 6px;
  border-style: solid;
  border-color: #222 transparent transparent transparent;
}

/* Show tooltip on hover (ANYWHERE on label) */
.example-label:hover .tooltip-box {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.example-divider {
  height: 6px; /* give room for circles */
  margin-bottom: 12px;

  background-image: radial-gradient(circle, #e9f0c0 2px, transparent 2px);
  background-size: 10px 8px;
  background-repeat: repeat-x;
  background-position: center;
}

.example-meta {
  font-size: 16px;
  color: #777;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .examples-list {
    flex-direction: column;
  }

  .example-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .support-process-item {
    flex-direction: column;
    align-items: center;
  }

  .support-process-right {
    width: 95%;
  }

  .support-process-left {
    width: 95%;
  }

  .support-process-step {
    left: -20px;
    top: -20px;
    width: 70px;
  }
  .support-process-title {
    text-align: center;
  }
}

/* Section */
.info {
  padding: 60px 20px;
  text-align: center;
}

/* Title */
.info-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Grid */
.info-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

/* Card */
.info-card {
  max-width: 320px;
  max-height: 420px;
  background: #fff;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.info-inner {
  width: 85%;
  margin: 18px auto;
}
/* Image */
.info-img-wrap {
  position: relative;
  margin: 0 auto 10px;
  width: 100%;
}

.info-img-wrap img {
  width: 100%;
}

@media (max-width: 768px) {
  .info-img-wrap {
    overflow: hidden;
  }

  .info-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .info-card {
    margin: 0 auto;
    max-width: 95%;
  }
}

/* Badge */
.info-badge {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #678f3c;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
}

/* Heading */
.info-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Text */
.info-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3; /* adjust if needed */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.info-btn {
  display: inline-block;
  margin: 8px 0 0 auto;
  padding: 4px 10px;

  background: transparent;
  color: #678f3c;

  border: 1px solid #678f3c;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  text-align: center;
  align-self: center;

  line-height: 1.2;
  transition: all 0.2s ease;
}

.info-btn-wrap {
  margin-top: 12px;
  text-align: right;
}

.info-btn:hover {
  background: #678f3c;
  color: #fff;
}

.info-card {
  display: flex;
  flex-direction: column;
}

.info-btn {
  align-self: center;
}

@media (max-width: 768px) {
  .info-list {
    grid-template-columns: 1fr;
  }
}

.access {
  background: #fff;
  padding: 30px 0;
  text-align: center;
}

/* Title */
.access-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtext */
.access-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* Map */
.access-map {
  width: 100%;
  margin: 0 auto;

  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.access-map > div {
  position: relative;
}

.map-mask {
  width: 340px;
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: left;
}

@media (max-width: 768px) {
  .map-mask {
    padding: 30px 24px !important;
  }
}

/* Footer */
.footer {
  background: #678f3c;
  color: #fff;
  background-image: url("../images/tree_pattern_2.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

/* Inner */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Left */
.footer-left {
  width: 50%;
  font-size: 14px;
}

.footer-logo {
  max-width: 380px;
  margin: 8px 0;
}

.footer-address,
.footer-contact {
  font-size: 14px;
  line-height: 1.5;
}

/* Right */
.footer-right {
  display: flex;
  flex-direction: column;
  width: 50%;
  font-size: 14px;
  justify-content: end;
}

.footer-icons {
  margin-left: 4px;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-icons img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-info {
  margin-bottom: 4px;
}

.footer-info:nth-of-type(1) {
  margin-left: 0px;
}

.footer-info:nth-of-type(2) {
  margin-left: 28px;
}

.footer-info:nth-of-type(3) {
  margin-left: 90px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding: 10px;
  background: rgba(255, 255, 255);
  color: #808080;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 5px;
  }

  .footer-icons,
  .footer-left {
    padding-left: 4px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    border-bottom: 1px solid #b5cf70;
    padding-bottom: 8px;
  }

  .footer-logo {
    max-width: 350px;
  }

  .footer-logo-wrap {
    border-bottom: 1px solid #b5cf70;
    margin-bottom: 12px;
  }

  .footer-bottom {
    padding-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .footer-info {
    margin-left: 0 !important;
  }
}

/* hide desktop nav on mobile */
@media (max-width: 768px) {
  nav a {
    display: none;
  }

  .nav {
    display: none;
  }
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(107, 143, 58, 0.3);

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;

  z-index: 999;
}

/* menu container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100%;

  background: #6b8f3a;
  color: #fff;

  transition: right 0.3s ease;
  z-index: 1000;
}

/* open state */
.mobile-menu.active {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* close button */
.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;

  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* content */
.mobile-menu-content {
  padding: 70px 20px 20px;
}

/* nav links */
.mobile-nav a {
  display: block;
  padding: 16px 0 16px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  position: relative;
}

/* divider line */
.mobile-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #b8db59;
}

/* contact section */
.mobile-contact {
  margin-top: 20px;
}

.mobile-phone-label {
  font-size: 14px;
  margin-bottom: 6px;
}

.mobile-contact-outer {
  display: flex;
  justify-content: center;
  padding-right: 10px;
}

.mobile-contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center; /* align ALL inner items to right */
  width: fit-content; /* shrink to content width */
}

.mobile-phone {
  display: inline-block;
  font-size: 40px;
  font-weight: 500;
  color: #ffe100;
  text-decoration: none;
  transform: scaleY(1.2);
  text-align: right;
}

.mobile-phone-row {
  display: flex;
  justify-content: flex-end;
  font-weight: 700;
  align-items: center;
  font-size: 20px;
  gap: 6px;
}

.mobile-phone-row img {
  width: 23px;
}

.mobile-time {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: right;
}

/* buttons */
.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-size: 16px;
  background: #ffee00;
  padding: 10px 12px 10px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
  margin-top: 8px;
}

.mobile-btn img {
  width: 28px;
  height: 28px;
}

/* X icon bottom */
.mobile-x {
  text-align: center;
  margin-top: 20px;
}

.mobile-x img {
  width: 40px;
}

.btn-mail {
  color: #4bab96;
}

.btn-line {
  color: #48cc46;
}

.mobile-nav a {
  position: relative;
  display: block;
  padding-left: 18px;
}

.mobile-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  background-color: #b5cf70;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.mobile-nav a.active::before {
  transform: translateY(-50%) scale(1);
}

/* =========================
   Small mobile optimization (<480px)
========================= */

@media (max-width: 480px) {
  /*
     Contact Card 
  */
  .contact-card {
    padding: 16px 16px;
    font-size: 16px;
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-number {
    font-size: 28px;
  }

  .contact-time {
    font-size: 13px;
  }

  .contact-item {
    font-size: 15px;
  }

  /* prevent overflow */
  .contact-options {
    gap: 16px;
  }

  /* 
     Mobile Menu 
  */
  .mobile-menu {
    width: 90%; /* slightly wider to avoid cramped layout */
  }

  .mobile-nav a {
    font-size: 15px;
    padding: 14px 0 14px 18px;
  }

  .mobile-phone {
    font-size: 30px;
  }

  .mobile-phone-row {
    font-size: 16px;
  }

  .mobile-time {
    font-size: 13px;
  }

  .mobile-btn {
    font-size: 14px;
    padding: 10px 12px 10px 28px;
  }

  /* 
     Footer 
   */
  .footer-inner {
    padding: 20px 14px;
  }

  .footer-left,
  .footer-right {
    font-size: 13px;
  }

  .footer-logo {
    max-width: 260px;
  }

  /* .img-01 {
    width: 67.97px !important;
  } */

  /* Feature number - reduce size for small mobile */
  .feature-number {
    width: auto;
    height: 58px;
    top: -36px;
    left: 20px;
  }
  .footer-address,
  .footer-contact,
  .footer-info {
    font-size: 13px;
    line-height: 1.4;
  }

  .footer-bottom {
    font-size: 11px;
  }

  /* Pricing - small mobile text optimization */
  .pricing-note {
    font-size: 14px;
  }

  .pricing-card {
    font-size: 14px;
    padding: 20px;
  }

  .pricing-title {
    font-size: 18px;
  }

  .pricing-text {
    font-size: 14px;
  }

  .pricing-highlight {
    font-size: 14px;
  }

  /* Contact number - slightly increase for visibility */
  .contact-number {
    font-size: 32px; /* was 28px */
  }

  /* Access section - text optimization */
  .access-title {
    font-size: 20px;
  }

  .access-subtext {
    font-size: 14px;
    line-height: 1.6;
  }

  .section-title {
    font-size: 20px;
  }

  .green-badge {
    font-size: 18px;
  }

  .consult-title {
    font-size: 24px;
  }

  .pill p {
    font-size: 16px;
  }

  .consult-text {
    font-size: 14px;
  }

  .feature-heading {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 14px;
  }

  .support-process-title {
    font-size: 18px;
  }

  .support-process-text {
    font-size: 14px;
  }
  .example-text {
    font-size: 14px;
  }
  .example-meta {
    font-size: 15px;
  }
  .services-subtext {
    font-size: 14px;
  }
  .examples-subtext {
    font-size: 14px;
  }
}


pre {
    white-space: pre-wrap;
    word-break: break-word;
    overflow-wrap: break-word;
}

.wpcf7 input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    max-width: 100%;
    min-height: 50px;
}


.seminar-coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
}

.seminar-coming-soon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  color: #678f3c;
  padding: 22px 40px;
  max-width: 520px;
  width: 100%;
  border: 1px solid #678f3c;
  border-radius: 15px;
}



.seminar-coming-soon__text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
}

/* Mobile */
@media (max-width: 600px) {
  .seminar-coming-soon__inner {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
    gap: 10px;
  }

  .seminar-coming-soon__text {
    font-size: 0.9rem;
  }
}