:root {
  --nl-primary: #0d6b7a;
  --nl-secondary: #53a56b;
  --nl-accent: #e9f6ee;
  --nl-soft: #f4fbfd;
  --nl-text: #20313d;
  --nl-border: rgba(13, 107, 122, 0.12);
}

html[lang="th"] body {
  font-family: "Noto Sans Thai", "Jost", sans-serif;
}

body {
  color: var(--nl-text);
}

.nl-site .header-main {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--nl-border);
}

.nl-text-logo {
  color: var(--nl-primary);
  display: inline-block;
  font-family: "Fredoka", "Noto Sans Thai", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 320px;
}

.nl-text-logo--white {
  color: #fff;
}

.main-menu ul li.active > a,
.main-menu ul li > a:hover {
  color: var(--nl-primary);
}

.nl-header-actions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.nl-lang-switch {
  color: var(--nl-primary);
  font-weight: 600;
}

.nl-btn {
  background: linear-gradient(135deg, var(--nl-primary), var(--nl-secondary));
  border: 0;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  padding: 14px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nl-btn:hover {
  box-shadow: 0 14px 30px rgba(13, 107, 122, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.nl-btn--ghost {
  background: transparent;
  border: 1px solid var(--nl-primary);
  color: var(--nl-primary);
}

.nl-btn--ghost:hover {
  color: var(--nl-primary);
}

.nl-btn--sm {
  padding: 10px 18px;
}

.nl-btn--full {
  width: 100%;
}

.nl-home-hero {
  background: linear-gradient(180deg, #f4fbfd 0%, #ffffff 100%);
}

.nl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.nl-hero-image img,
.nl-rounded-image img,
.services2-image img {
  border-radius: 32px;
}

.nl-stat-grid {
  margin-top: 36px;
}

.nl-info-card,
.nl-preview-card,
.nl-step-card,
.nl-contact-panel,
.nl-address-card,
.nl-license-placeholder,
.nl-license-note {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(8, 48, 57, 0.06);
  height: 100%;
  padding: 28px;
}

.nl-info-card__title,
.nl-preview-card h3,
.nl-step-card h3,
.nl-category-card__body h3,
.nl-gallery-section__head h3,
.nl-license-note h3 {
  color: var(--nl-text);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.nl-info-card--tall {
  min-height: 220px;
}

.nl-image-stack {
  min-height: 420px;
  position: relative;
}

.nl-image-stack__main {
  border-radius: 32px;
  max-width: 100%;
}

.nl-image-stack__accent {
  background: #fff;
  border: 8px solid #fff;
  border-radius: 24px;
  bottom: 10px;
  box-shadow: 0 18px 35px rgba(8, 48, 57, 0.12);
  position: absolute;
  right: 0;
  width: 42%;
}

.nl-preview-card {
  color: var(--nl-text);
  display: block;
}

.nl-preview-card:hover {
  color: var(--nl-text);
  transform: translateY(-3px);
}

.nl-preview-card__icon {
  align-items: center;
  background: var(--nl-accent);
  border-radius: 18px;
  color: var(--nl-primary);
  display: inline-flex;
  font-size: 1.4rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 18px;
  width: 56px;
}

.nl-lead,
.nl-section-intro {
  color: #51646f;
  margin-bottom: 24px;
}

.nl-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nl-check-list li {
  padding: 0 0 12px 28px;
  position: relative;
}

.nl-check-list li::before {
  color: var(--nl-secondary);
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: 0;
  position: absolute;
  top: 1px;
}

.nl-address-card {
  margin-top: 20px;
}

.nl-address-card__label,
.nl-contact-panel__label {
  color: var(--nl-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

.nl-license-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #f7fcfd, #eef8f1);
  border-style: dashed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  text-align: center;
}

.nl-license-placeholder__label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.nl-license-note img {
  border-radius: 22px;
  margin-top: 18px;
}

.nl-category-card,
.nl-gallery-card {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(8, 48, 57, 0.06);
  height: 100%;
  overflow: hidden;
}

.nl-category-card img,
.nl-gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.nl-category-card__body,
.nl-gallery-card__caption {
  padding: 22px;
}

.nl-category-card--forms {
  align-items: center;
  background: linear-gradient(135deg, var(--nl-soft), #fff);
  display: flex;
}

.nl-gallery-section + .nl-gallery-section {
  margin-top: 48px;
}

.nl-gallery-section__head {
  margin-bottom: 18px;
}

.nl-gallery-card__caption {
  font-weight: 600;
}

.nl-step-card {
  padding-left: 88px;
  position: relative;
}

.nl-step-card__number {
  align-items: center;
  background: var(--nl-accent);
  border-radius: 18px;
  color: var(--nl-primary);
  display: inline-flex;
  font-family: "Fredoka", "Noto Sans Thai", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  height: 56px;
  justify-content: center;
  left: 22px;
  position: absolute;
  top: 24px;
  width: 56px;
}

.nl-map-wrap {
  border-radius: 24px;
  margin-top: 24px;
  overflow: hidden;
}

.nl-map-wrap iframe {
  border: 0;
  height: 320px;
  width: 100%;
}

.nl-select-field {
  appearance: none;
}

.nl-contact-form .contact2-form__input-field,
.nl-contact-form .contact2-form__input .textarea {
  border: 1px solid var(--nl-border);
}

.nl-footer {
  background: linear-gradient(180deg, #0d3941 0%, #0a252b 100%);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 60px;
  padding: 70px 0 28px;
}

.nl-footer__brand {
  color: #fff;
  font-family: "Fredoka", "Noto Sans Thai", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.nl-footer__label {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.nl-footer__text {
  margin: 0;
}

.nl-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.nl-footer__bottom a {
  color: #8de0ba;
}

@media (max-width: 1199.98px) {
  .nl-header .header-main .row {
    min-height: 72px;
    position: relative;
  }

  .nl-header .header__logo {
    padding-left: 56px;
  }

  .nl-header-actions {
    gap: 0;
  }

  .nl-header-actions .nl-btn,
  .nl-header-actions .nl-lang-switch {
    display: none;
  }

  .nl-header .header__navicon {
    display: flex;
    left: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }

  .nl-header .header__navicon .side-toggle {
    display: flex;
  }

  .nl-header .header__navicon .bar-icon {
    align-items: center;
    background: var(--nl-primary);
    border-radius: 999px;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .nl-header .header__navicon .bar-icon span {
    background: #fff;
  }
}

@media (max-width: 991.98px) {
  .nl-image-stack {
    min-height: 0;
  }

  .nl-image-stack__accent {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

@media (max-width: 767.98px) {
  .nl-text-logo {
    font-size: 1.15rem;
    max-width: 220px;
  }

  .nl-info-card,
  .nl-preview-card,
  .nl-step-card,
  .nl-contact-panel,
  .nl-address-card,
  .nl-license-placeholder,
  .nl-license-note {
    padding: 22px;
  }

  .nl-step-card {
    padding-left: 22px;
    padding-top: 92px;
  }

  .nl-step-card__number {
    left: 22px;
    top: 22px;
  }
}
