@charset "UTF-8";
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../assets/fonts/NunitoSans-Italic-VariableFont_YTLC,opsz,wdth,wght.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  width: 100%;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (min-width: 768px) {
  .navbar {
    height: 74px;
  }
}
@media (min-width: 2560px) {
  .navbar {
    height: 96px;
  }
}
@media (min-width: 3840px) {
  .navbar {
    height: 120px;
  }
}

.navbar-container {
  width: 100%;
  max-width: 1680px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .navbar-container {
    padding: 0 40px;
  }
}
@media (min-width: 2560px) {
  .navbar-container {
    max-width: 2400px;
    padding: 0 80px;
  }
}
@media (min-width: 3840px) {
  .navbar-container {
    max-width: 3600px;
    padding: 0 120px;
  }
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 36px;
  width: auto;
}
@media (min-width: 768px) {
  .logo img {
    height: 44px;
  }
}
@media (min-width: 2560px) {
  .logo img {
    height: 64px;
  }
}
@media (min-width: 3840px) {
  .logo img {
    height: 90px;
  }
}

/* Navigation menu — mobile overlay by default */
.nav-menu {
  display: flex;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  overflow-y: auto;
  z-index: 999;
}
.nav-menu.open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .nav-menu {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    bottom: auto;
    top: auto;
  }
}
@media (min-width: 2560px) {
  .nav-menu {
    gap: 48px;
  }
}
@media (min-width: 3840px) {
  .nav-menu {
    gap: 64px;
  }
}

.nav-item {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
@media (min-width: 768px) {
  .nav-item {
    width: auto;
    border-bottom: none;
    position: relative;
  }
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 16px 0;
  width: 100%;
  justify-content: space-between;
}
.nav-link:hover, .nav-link.active {
  color: #1a3d8f;
}
@media (min-width: 768px) {
  .nav-link {
    font-size: 16px;
    padding: 8px 0;
    width: auto;
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .nav-link {
    font-size: 18px;
  }
}
@media (min-width: 2560px) {
  .nav-link {
    font-size: 24px;
  }
}
@media (min-width: 3840px) {
  .nav-link {
    font-size: 32px;
  }
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-top: 1px;
}
@media (min-width: 2560px) {
  .dropdown-arrow {
    font-size: 14px;
  }
}

/* Dropdown menu */
.dropdown-menu {
  position: static;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
  border-radius: 0;
  background: #fafafa;
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 400;
  color: #444;
  transition: all 0.2s ease;
}
@media (min-width: 2560px) {
  .dropdown-menu li a {
    font-size: 18px;
    padding: 16px 24px;
  }
}
@media (min-width: 768px) {
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    min-width: 200px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    max-height: none;
    overflow: visible;
  }
  .dropdown-menu li a:hover {
    background: #f0f4ff;
    color: #1a3d8f;
  }
}

.nav-item.dropdown-open .dropdown-menu {
  max-height: 300px;
  padding: 4px 0;
}

.nav-item.dropdown-open .dropdown-arrow {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}
/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer-wrapper {
  width: 100%;
  padding: 0 16px 36px;
}
@media (min-width: 430px) {
  .site-footer-wrapper {
    padding: 0 24px 64px;
  }
}
@media (min-width: 768px) {
  .site-footer-wrapper {
    padding: 0 40px 70px;
  }
}
@media (min-width: 1024px) {
  .site-footer-wrapper {
    padding: 0 60px 78px;
  }
}
@media (min-width: 1440px) {
  .site-footer-wrapper {
    padding: 0 80px 80px;
  }
}
@media (min-width: 2560px) {
  .site-footer-wrapper {
    padding: 0 120px 100px;
  }
}
@media (min-width: 3840px) {
  .site-footer-wrapper {
    padding: 0 160px 140px;
  }
}

.site-footer {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 36px 24px 32px;
  position: relative;
  background: #012025;
  min-height: 320px;
  border-radius: 22px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 40px 35px 28px;
    border-radius: 0;
    background: url("../assets/footer.svg") no-repeat center center;
    background-size: 100% 100%;
  }
}
@media (min-width: 1440px) {
  .site-footer {
    padding: 50px 50px 30px;
  }
}
@media (min-width: 2560px) {
  .site-footer {
    max-width: 2400px;
    padding: 72px 72px 44px;
    border-radius: 0;
    min-height: 500px;
  }
}
@media (min-width: 3840px) {
  .site-footer {
    max-width: 3600px;
    padding: 104px 104px 64px;
    min-height: 720px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 2560px) {
  .footer-grid {
    gap: 56px;
  }
}
@media (min-width: 3840px) {
  .footer-grid {
    gap: 80px;
  }
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .footer-col-title {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .footer-col-title {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
@media (min-width: 2560px) {
  .footer-col-title {
    font-size: 24px;
    margin-bottom: 26px;
  }
}
@media (min-width: 3840px) {
  .footer-col-title {
    font-size: 34px;
    margin-bottom: 36px;
  }
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  line-height: 1.2;
}
@media (min-width: 1440px) {
  .footer-logo-text {
    font-size: 24px;
  }
}
@media (min-width: 2560px) {
  .footer-logo-text {
    font-size: 36px;
  }
}
@media (min-width: 3840px) {
  .footer-logo-text {
    font-size: 52px;
  }
}

.footer-logo-tagline {
  font-size: 7.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
@media (min-width: 1440px) {
  .footer-logo-tagline {
    font-size: 8px;
  }
}
@media (min-width: 2560px) {
  .footer-logo-tagline {
    font-size: 12px;
    letter-spacing: 5px;
    margin-top: 4px;
  }
}
@media (min-width: 3840px) {
  .footer-logo-tagline {
    font-size: 17px;
    letter-spacing: 7px;
    margin-top: 6px;
  }
}

.footer-about-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-top: 13px;
}
@media (min-width: 1440px) {
  .footer-about-text {
    font-size: 14px;
    margin-top: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-about-text {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-about-text {
    font-size: 28px;
    margin-top: 28px;
  }
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .footer-socials {
    margin-top: 18px;
  }
}
@media (min-width: 2560px) {
  .footer-socials {
    gap: 14px;
    margin-top: 26px;
  }
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}
.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}
.footer-social-icon svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1440px) {
  .footer-social-icon {
    width: 32px;
    height: 32px;
  }
  .footer-social-icon svg {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 2560px) {
  .footer-social-icon {
    width: 46px;
    height: 46px;
    border-radius: 9px;
  }
  .footer-social-icon svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-social-icon {
    width: 64px;
    height: 64px;
    border-radius: 13px;
  }
  .footer-social-icon svg {
    width: 30px;
    height: 30px;
  }
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-links li a {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .footer-links li a {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .footer-links li a {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-links li a {
    font-size: 32px;
  }
}
@media (min-width: 2560px) {
  .footer-links li {
    margin-bottom: 14px;
  }
}
@media (min-width: 3840px) {
  .footer-links li {
    margin-bottom: 20px;
  }
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  justify-content: center;
}
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}
.footer-contact-item a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-contact-item {
    justify-content: flex-start;
  }
}
@media (min-width: 1440px) {
  .footer-contact-item {
    font-size: 14px;
  }
  .footer-contact-item svg {
    width: 16px;
    height: 16px;
  }
}
@media (min-width: 2560px) {
  .footer-contact-item {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .footer-contact-item svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 3840px) {
  .footer-contact-item {
    font-size: 28px;
    margin-bottom: 22px;
  }
  .footer-contact-item svg {
    width: 30px;
    height: 30px;
  }
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 28px;
}
@media (min-width: 1440px) {
  .footer-divider {
    margin-top: 30px;
  }
}
@media (min-width: 2560px) {
  .footer-divider {
    margin-top: 44px;
  }
}
@media (min-width: 3840px) {
  .footer-divider {
    margin-top: 64px;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    max-width: 72%;
  }
}
@media (min-width: 1440px) {
  .footer-bottom {
    margin-top: 20px;
  }
}
@media (min-width: 2560px) {
  .footer-bottom {
    margin-top: 30px;
    gap: 0;
  }
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 1440px) {
  .footer-copyright {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-copyright {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-copyright {
    font-size: 28px;
  }
}

.footer-legal {
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #fff;
}
@media (min-width: 1440px) {
  .footer-legal a {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .footer-legal a {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .footer-legal a {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .footer-legal {
    gap: 24px;
  }
}
@media (min-width: 2560px) {
  .footer-legal {
    gap: 36px;
  }
}
@media (min-width: 3840px) {
  .footer-legal {
    gap: 52px;
  }
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   PAGE CONTENT
   ============================================ */
.page-content {
  min-height: 0;
}

/* ============================================
   SERVICE HERO
   ============================================ */
.service-hero {
  width: 100%;
  padding: 40px 20px;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 430px) {
  .service-hero {
    padding: 44px 24px;
  }
}
@media (min-width: 768px) {
  .service-hero {
    padding: 50px 40px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .service-hero {
    padding: 56px 60px;
  }
}
@media (min-width: 1200px) {
  .service-hero {
    padding: 60px 80px;
  }
}
@media (min-width: 1440px) {
  .service-hero {
    padding: 70px 100px;
  }
}
@media (min-width: 2560px) {
  .service-hero {
    padding: 90px 120px;
  }
}
@media (min-width: 3840px) {
  .service-hero {
    padding: 130px 160px;
  }
}

.service-hero-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .service-hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .service-hero-container {
    gap: 60px;
  }
}
@media (min-width: 1440px) {
  .service-hero-container {
    gap: 80px;
  }
}
@media (min-width: 2560px) {
  .service-hero-container {
    max-width: 2400px;
    gap: 100px;
  }
}
@media (min-width: 3840px) {
  .service-hero-container {
    max-width: 3600px;
    gap: 140px;
  }
}

.service-hero-content {
  flex: 1;
  max-width: 100%;
  text-align: center;
  order: 2;
}
@media (min-width: 768px) {
  .service-hero-content {
    max-width: 520px;
    text-align: left;
    order: 1;
  }
}
@media (min-width: 1024px) {
  .service-hero-content {
    max-width: 580px;
  }
}
@media (min-width: 1440px) {
  .service-hero-content {
    max-width: 640px;
  }
}
@media (min-width: 2560px) {
  .service-hero-content {
    max-width: 920px;
  }
}
@media (min-width: 3840px) {
  .service-hero-content {
    max-width: 1300px;
  }
}

.service-hero-heading {
  font-size: 32px;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (min-width: 430px) {
  .service-hero-heading {
    font-size: 36px;
  }
}
@media (min-width: 768px) {
  .service-hero-heading {
    font-size: 44px;
    margin-bottom: 22px;
  }
}
@media (min-width: 1024px) {
  .service-hero-heading {
    font-size: 52px;
  }
}
@media (min-width: 1440px) {
  .service-hero-heading {
    font-size: 62px;
    margin-bottom: 28px;
  }
}
@media (min-width: 2560px) {
  .service-hero-heading {
    font-size: 90px;
    margin-bottom: 40px;
  }
}
@media (min-width: 3840px) {
  .service-hero-heading {
    font-size: 130px;
    margin-bottom: 56px;
  }
}

.service-hero-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .service-hero-desc {
    font-size: 15px;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}
@media (min-width: 1440px) {
  .service-hero-desc {
    font-size: 17px;
    margin-bottom: 16px;
  }
}
@media (min-width: 2560px) {
  .service-hero-desc {
    font-size: 26px;
    margin-bottom: 22px;
  }
}
@media (min-width: 3840px) {
  .service-hero-desc {
    font-size: 37px;
    margin-bottom: 32px;
  }
}

.service-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: #4CAF50;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  min-height: 48px;
}
.service-hero-btn:hover {
  background: #2e8b57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 179, 113, 0.35);
}
.service-hero-btn .arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.service-hero-btn:hover .arrow {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .service-hero-btn {
    font-size: 16px;
    padding: 15px 32px;
  }
}
@media (min-width: 1440px) {
  .service-hero-btn {
    font-size: 17px;
    padding: 16px 36px;
    border-radius: 10px;
  }
}
@media (min-width: 2560px) {
  .service-hero-btn {
    font-size: 24px;
    padding: 22px 52px;
    border-radius: 14px;
  }
}
@media (min-width: 3840px) {
  .service-hero-btn {
    font-size: 34px;
    padding: 30px 72px;
    border-radius: 20px;
  }
}

.service-hero-visual {
  width: 100%;
  max-width: 300px;
  flex-shrink: 0;
  order: 1;
}
@media (min-width: 430px) {
  .service-hero-visual {
    max-width: 340px;
  }
}
@media (min-width: 768px) {
  .service-hero-visual {
    max-width: 400px;
    order: 2;
  }
}
@media (min-width: 1024px) {
  .service-hero-visual {
    max-width: 460px;
  }
}
@media (min-width: 1440px) {
  .service-hero-visual {
    max-width: 520px;
  }
}
@media (min-width: 2560px) {
  .service-hero-visual {
    max-width: 760px;
  }
}
@media (min-width: 3840px) {
  .service-hero-visual {
    max-width: 1080px;
  }
}
.service-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
  width: 100%;
  padding: 50px 20px;
  background: #fff;
}
@media (min-width: 430px) {
  .why-choose {
    padding: 64px 24px;
  }
}
@media (min-width: 768px) {
  .why-choose {
    padding: 70px 40px;
  }
}
@media (min-width: 1024px) {
  .why-choose {
    padding: 80px 60px;
  }
}
@media (min-width: 1440px) {
  .why-choose {
    padding: 90px 80px;
  }
}
@media (min-width: 2560px) {
  .why-choose {
    padding: 120px 120px;
  }
}
@media (min-width: 3840px) {
  .why-choose {
    padding: 170px 160px;
  }
}

.why-choose-container {
  max-width: 1680px;
  margin: 0 auto;
}
@media (min-width: 2560px) {
  .why-choose-container {
    max-width: 2400px;
  }
}
@media (min-width: 3840px) {
  .why-choose-container {
    max-width: 3600px;
  }
}

.why-choose-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 36px;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .why-choose-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .why-choose-title {
    font-size: 34px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1440px) {
  .why-choose-title {
    font-size: 40px;
    margin-bottom: 48px;
  }
}
@media (min-width: 2560px) {
  .why-choose-title {
    font-size: 58px;
    margin-bottom: 64px;
  }
}
@media (min-width: 3840px) {
  .why-choose-title {
    font-size: 84px;
    margin-bottom: 90px;
  }
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1440px) {
  .why-choose-grid {
    gap: 20px;
  }
}
@media (min-width: 2560px) {
  .why-choose-grid {
    gap: 28px;
  }
}
@media (min-width: 3840px) {
  .why-choose-grid {
    gap: 40px;
  }
}

.why-choose-card {
  background: #e8f5ee;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
@media (min-width: 768px) {
  .why-choose-card {
    padding: 20px 24px;
    border-radius: 16px;
  }
}
@media (min-width: 1440px) {
  .why-choose-card {
    padding: 22px 28px;
  }
}
@media (min-width: 2560px) {
  .why-choose-card {
    padding: 34px 40px;
    border-radius: 24px;
    gap: 20px;
  }
}
@media (min-width: 3840px) {
  .why-choose-card {
    padding: 50px 56px;
    border-radius: 32px;
    gap: 28px;
  }
}

.why-choose-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.why-choose-icon svg {
  width: 13px;
  height: 13px;
  color: #fff;
}
@media (min-width: 768px) {
  .why-choose-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
}
@media (min-width: 1440px) {
  .why-choose-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .why-choose-icon svg {
    width: 14px;
    height: 14px;
  }
}
@media (min-width: 2560px) {
  .why-choose-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .why-choose-icon svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 3840px) {
  .why-choose-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
  }
  .why-choose-icon svg {
    width: 30px;
    height: 30px;
  }
}

.why-choose-text {
  font-size: 14px;
  font-weight: 500;
  color: #1e2d2d;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .why-choose-text {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .why-choose-text {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .why-choose-text {
    font-size: 24px;
  }
}
@media (min-width: 3840px) {
  .why-choose-text {
    font-size: 34px;
  }
}

/* ============================================
   KEY FEATURES SECTION
   ============================================ */
.key-features {
  width: 100%;
  padding: 60px 20px;
  background: #f7f8f8;
}
@media (min-width: 430px) {
  .key-features {
    padding: 64px 24px;
  }
}
@media (min-width: 768px) {
  .key-features {
    padding: 70px 40px;
  }
}
@media (min-width: 1024px) {
  .key-features {
    padding: 80px 60px;
  }
}
@media (min-width: 1440px) {
  .key-features {
    padding: 90px 80px;
  }
}
@media (min-width: 2560px) {
  .key-features {
    padding: 120px 120px;
  }
}
@media (min-width: 3840px) {
  .key-features {
    padding: 170px 160px;
  }
}

.key-features-container {
  max-width: 1680px;
  margin: 0 auto;
}
@media (min-width: 2560px) {
  .key-features-container {
    max-width: 2400px;
  }
}
@media (min-width: 3840px) {
  .key-features-container {
    max-width: 3600px;
  }
}

.key-features-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 28px;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .key-features-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .key-features-title {
    font-size: 34px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .key-features-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 2560px) {
  .key-features-title {
    font-size: 58px;
    margin-bottom: 56px;
  }
}
@media (min-width: 3840px) {
  .key-features-title {
    font-size: 84px;
    margin-bottom: 80px;
  }
}

.key-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .key-features-list {
    gap: 12px;
  }
}
@media (min-width: 2560px) {
  .key-features-list {
    gap: 18px;
  }
}
@media (min-width: 3840px) {
  .key-features-list {
    gap: 26px;
  }
}

.key-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e4eaea;
  border-radius: 12px;
  transition: box-shadow 0.2s ease;
}
.key-feature-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .key-feature-item {
    gap: 18px;
    padding: 18px 24px;
    border-radius: 14px;
  }
}
@media (min-width: 1440px) {
  .key-feature-item {
    padding: 20px 28px;
    border-radius: 16px;
  }
}
@media (min-width: 2560px) {
  .key-feature-item {
    gap: 28px;
    padding: 30px 40px;
    border-radius: 22px;
  }
}
@media (min-width: 3840px) {
  .key-feature-item {
    gap: 40px;
    padding: 44px 56px;
    border-radius: 30px;
  }
}

.key-feature-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .key-feature-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .key-feature-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}
@media (min-width: 2560px) {
  .key-feature-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .key-feature-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    font-size: 32px;
  }
}

.key-feature-text {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .key-feature-text {
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .key-feature-text {
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .key-feature-text {
    font-size: 24px;
  }
}
@media (min-width: 3840px) {
  .key-feature-text {
    font-size: 34px;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 430px) {
  .cta-section {
    padding: 12px 24px;
  }
}
@media (min-width: 768px) {
  .cta-section {
    padding: 20px 40px;
  }
}
@media (min-width: 1024px) {
  .cta-section {
    padding: 30px 60px;
  }
}
@media (min-width: 1440px) {
  .cta-section {
    padding: 40px 80px;
  }
}
@media (min-width: 2560px) {
  .cta-section {
    padding: 60px 120px;
  }
}
@media (min-width: 3840px) {
  .cta-section {
    padding: 80px 160px;
  }
}

.cta-banner {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  min-height: 180px;
  border-radius: 22px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  background: url("../assets/map.webp") no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 45px 40px;
    border-radius: 24px;
    min-height: 26vh;
  }
}
@media (min-width: 1024px) {
  .cta-banner {
    padding: 50px 50px;
    min-height: 28vh;
  }
}
@media (min-width: 1440px) {
  .cta-banner {
    padding: 55px 60px;
    min-height: 30vh;
    border-radius: 26px;
  }
}
@media (min-width: 2560px) {
  .cta-banner {
    max-width: 2400px;
    padding: 80px 88px;
    min-height: 320px;
    border-radius: 40px;
  }
}
@media (min-width: 3840px) {
  .cta-banner {
    max-width: 3600px;
    padding: 120px 130px;
    min-height: 480px;
    border-radius: 56px;
  }
}

.cta-text {
  flex: 1;
}

.cta-heading {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .cta-heading {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .cta-heading {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .cta-heading {
    font-size: 34px;
  }
}
@media (min-width: 1440px) {
  .cta-heading {
    font-size: 40px;
  }
}
@media (min-width: 2560px) {
  .cta-heading {
    font-size: 58px;
  }
}
@media (min-width: 3840px) {
  .cta-heading {
    font-size: 84px;
  }
}

.cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  line-height: 1.6;
  max-width: 420px;
}
@media (min-width: 768px) {
  .cta-desc {
    font-size: 14px;
    margin-top: 14px;
  }
}
@media (min-width: 1440px) {
  .cta-desc {
    font-size: 16px;
    max-width: 520px;
  }
}
@media (min-width: 2560px) {
  .cta-desc {
    font-size: 24px;
    margin-top: 20px;
    max-width: 760px;
  }
}
@media (min-width: 3840px) {
  .cta-desc {
    font-size: 34px;
    margin-top: 28px;
    max-width: 1080px;
  }
}

.cta-btn {
  background: #ffffff;
  color: #1f2d2d;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  width: 100%;
  min-height: 48px;
}
.cta-btn:hover {
  background: #f2f2f2;
}
@media (min-width: 768px) {
  .cta-btn {
    width: auto;
    font-size: 14px;
    padding: 13px 28px;
  }
}
@media (min-width: 1440px) {
  .cta-btn {
    font-size: 15px;
    padding: 14px 30px;
  }
}
@media (min-width: 2560px) {
  .cta-btn {
    font-size: 22px;
    padding: 20px 44px;
    border-radius: 16px;
  }
}
@media (min-width: 3840px) {
  .cta-btn {
    font-size: 32px;
    padding: 28px 60px;
    border-radius: 22px;
  }
}

/* ============================================
   OUR PROCESS SECTION
   ============================================ */
.process-section {
  width: 100%;
  padding: 10px 20px;
  background: #fff;
}
@media (min-width: 430px) {
  .process-section {
    padding: 12px 24px;
  }
}
@media (min-width: 768px) {
  .process-section {
    padding: 20px 40px;
  }
}
@media (min-width: 1024px) {
  .process-section {
    padding: 30px 60px;
  }
}
@media (min-width: 1440px) {
  .process-section {
    padding: 40px 80px;
  }
}
@media (min-width: 2560px) {
  .process-section {
    padding: 60px 120px;
  }
}
@media (min-width: 3840px) {
  .process-section {
    padding: 80px 160px;
  }
}

.process-container {
  max-width: 1680px;
  margin: 0 auto;
}
@media (min-width: 2560px) {
  .process-container {
    max-width: 2400px;
  }
}
@media (min-width: 3840px) {
  .process-container {
    max-width: 3600px;
  }
}

.process-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 36px;
}
@media (min-width: 430px) {
  .process-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .process-title {
    font-size: 34px;
    margin-bottom: 18px;
  }
}
@media (min-width: 1440px) {
  .process-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media (min-width: 2560px) {
  .process-title {
    font-size: 58px;
    margin-bottom: 30px;
  }
}
@media (min-width: 3840px) {
  .process-title {
    font-size: 84px;
    margin-bottom: 40px;
  }
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #ececec;
}
.process-item:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .process-item {
    gap: 22px;
    padding: 24px 0;
  }
}
@media (min-width: 1440px) {
  .process-item {
    gap: 26px;
    padding: 28px 0;
  }
}
@media (min-width: 2560px) {
  .process-item {
    gap: 38px;
    padding: 42px 0;
  }
}
@media (min-width: 3840px) {
  .process-item {
    gap: 54px;
    padding: 60px 0;
  }
}

.process-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .process-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 15px;
  }
}
@media (min-width: 1440px) {
  .process-number {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
  }
}
@media (min-width: 2560px) {
  .process-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 24px;
  }
}
@media (min-width: 3840px) {
  .process-number {
    width: 86px;
    height: 86px;
    min-width: 86px;
    font-size: 34px;
  }
}

.process-content {
  flex: 1;
}

.process-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .process-step-title {
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  .process-step-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media (min-width: 2560px) {
  .process-step-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
@media (min-width: 3840px) {
  .process-step-title {
    font-size: 38px;
    margin-bottom: 18px;
  }
}

.process-step-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .process-step-desc {
    font-size: 14px;
    max-width: 620px;
  }
}
@media (min-width: 1440px) {
  .process-step-desc {
    font-size: 15px;
    max-width: 720px;
  }
}
@media (min-width: 2560px) {
  .process-step-desc {
    font-size: 22px;
    max-width: 1060px;
  }
}
@media (min-width: 3840px) {
  .process-step-desc {
    font-size: 32px;
    max-width: 1500px;
  }
}

/* ============================================
   INDUSTRIES WE SERVE (service page)
   ============================================ */
.service-industries {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
}
@media (min-width: 430px) {
  .service-industries {
    padding: 12px 24px 64px;
  }
}
@media (min-width: 768px) {
  .service-industries {
    padding: 20px 40px 70px;
  }
}
@media (min-width: 1024px) {
  .service-industries {
    padding: 30px 60px 80px;
  }
}
@media (min-width: 1440px) {
  .service-industries {
    padding: 40px 80px 90px;
  }
}
@media (min-width: 2560px) {
  .service-industries {
    padding: 60px 120px 120px;
  }
}
@media (min-width: 3840px) {
  .service-industries {
    padding: 80px 160px 170px;
  }
}

.service-industries-container {
  max-width: 1680px;
  margin: 0 auto;
}
@media (min-width: 2560px) {
  .service-industries-container {
    max-width: 2400px;
  }
}
@media (min-width: 3840px) {
  .service-industries-container {
    max-width: 3600px;
  }
}

.service-industries-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 32px;
}
@media (min-width: 430px) {
  .service-industries-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .service-industries-title {
    font-size: 34px;
    margin-bottom: 36px;
  }
}
@media (min-width: 1440px) {
  .service-industries-title {
    font-size: 40px;
    margin-bottom: 44px;
  }
}
@media (min-width: 2560px) {
  .service-industries-title {
    font-size: 58px;
    margin-bottom: 60px;
  }
}
@media (min-width: 3840px) {
  .service-industries-title {
    font-size: 84px;
    margin-bottom: 84px;
  }
}

.service-industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: #ebebeb;
  border: 1px solid #dde4e4;
  border-radius: 14px;
  padding: 8px;
}
@media (min-width: 768px) {
  .service-industries-grid {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 16px;
  }
}
@media (min-width: 2560px) {
  .service-industries-grid {
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
  }
}
@media (min-width: 3840px) {
  .service-industries-grid {
    gap: 18px;
    padding: 18px;
    border-radius: 30px;
  }
}

.service-industry-item {
  padding: 16px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
  background: #fff;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.service-industry-item:hover {
  background: #f0f9f4;
  color: #1f7a5a;
}
@media (min-width: 768px) {
  .service-industry-item {
    font-size: 14px;
    padding: 18px 16px;
    border-radius: 10px;
  }
}
@media (min-width: 1440px) {
  .service-industry-item {
    font-size: 15px;
    padding: 20px 20px;
  }
}
@media (min-width: 2560px) {
  .service-industry-item {
    font-size: 22px;
    padding: 30px 36px;
    border-radius: 14px;
  }
}
@media (min-width: 3840px) {
  .service-industry-item {
    font-size: 32px;
    padding: 44px 52px;
    border-radius: 20px;
  }
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta-wrapper {
  width: 100%;
  padding: 0 20px 60px;
}
@media (min-width: 430px) {
  .contact-cta-wrapper {
    padding: 0 24px 64px;
  }
}
@media (min-width: 768px) {
  .contact-cta-wrapper {
    padding: 0 40px 70px;
  }
}
@media (min-width: 1024px) {
  .contact-cta-wrapper {
    padding: 0 60px 78px;
  }
}
@media (min-width: 1440px) {
  .contact-cta-wrapper {
    padding: 0 80px 80px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-wrapper {
    padding: 0 120px 100px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-wrapper {
    padding: 0 160px 140px;
  }
}

.contact-cta {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  background: #1B5E20;
  border-radius: 24px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}
@media (min-width: 768px) {
  .contact-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 45px 40px;
    border-radius: 26px;
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .contact-cta {
    padding: 50px 50px;
  }
}
@media (min-width: 1440px) {
  .contact-cta {
    padding: 60px 60px;
    border-radius: 28px;
  }
}
@media (min-width: 2560px) {
  .contact-cta {
    max-width: 2400px;
    padding: 88px 88px;
    border-radius: 44px;
  }
}
@media (min-width: 3840px) {
  .contact-cta {
    max-width: 3600px;
    padding: 130px 130px;
    border-radius: 60px;
  }
}

.contact-cta-text {
  flex: 1;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-cta-text {
    max-width: 560px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-text {
    max-width: 820px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-text {
    max-width: 1200px;
  }
}

.contact-cta-heading {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
@media (min-width: 430px) {
  .contact-cta-heading {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .contact-cta-heading {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .contact-cta-heading {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .contact-cta-heading {
    font-size: 42px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-heading {
    font-size: 60px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-heading {
    font-size: 88px;
  }
}

.contact-cta-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contact-cta-desc {
    font-size: 14px;
    max-width: 450px;
    margin-top: 15px;
  }
}
@media (min-width: 1440px) {
  .contact-cta-desc {
    font-size: 15px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-desc {
    font-size: 22px;
    margin-top: 22px;
  }
}
@media (min-width: 3840px) {
  .contact-cta-desc {
    font-size: 32px;
    margin-top: 32px;
  }
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  width: 100%;
}
@media (min-width: 430px) {
  .contact-cta-actions {
    flex-direction: row;
    width: auto;
  }
}
@media (min-width: 768px) {
  .contact-cta-actions {
    margin-top: 25px;
    gap: 20px;
  }
}
@media (min-width: 2560px) {
  .contact-cta-actions {
    gap: 28px;
    margin-top: 32px;
  }
}

.contact-action-btn {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: left;
  min-height: 48px;
  width: 100%;
  text-decoration: none;
}
.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}
@media (min-width: 430px) {
  .contact-action-btn {
    width: auto;
  }
}
@media (min-width: 1440px) {
  .contact-action-btn {
    padding: 14px 18px;
  }
}
@media (min-width: 2560px) {
  .contact-action-btn {
    padding: 20px 26px;
    border-radius: 18px;
    gap: 18px;
  }
}
@media (min-width: 3840px) {
  .contact-action-btn {
    padding: 28px 36px;
    border-radius: 24px;
    gap: 24px;
  }
}

.contact-action-icon {
  width: 38px;
  height: 38px;
  background: rgba(46, 204, 113, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-action-icon svg {
  width: 17px;
  height: 17px;
  color: #a0f0c0;
}
@media (min-width: 768px) {
  .contact-action-icon {
    width: 40px;
    height: 40px;
  }
  .contact-action-icon svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 2560px) {
  .contact-action-icon {
    width: 58px;
    height: 58px;
  }
  .contact-action-icon svg {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 3840px) {
  .contact-action-icon {
    width: 80px;
    height: 80px;
  }
  .contact-action-icon svg {
    width: 40px;
    height: 40px;
  }
}

.contact-action-info {
  display: flex;
  flex-direction: column;
}

.contact-action-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
@media (min-width: 2560px) {
  .contact-action-label {
    font-size: 16px;
  }
}
@media (min-width: 3840px) {
  .contact-action-label {
    font-size: 22px;
  }
}

.contact-action-value {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-top: 2px;
}
@media (min-width: 768px) {
  .contact-action-value {
    font-size: 14px;
  }
}
@media (min-width: 2560px) {
  .contact-action-value {
    font-size: 20px;
  }
}
@media (min-width: 3840px) {
  .contact-action-value {
    font-size: 28px;
  }
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 22px;
  width: 100%;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-card {
    width: 290px;
    padding: 26px 24px;
    border-radius: 18px;
  }
}
@media (min-width: 1440px) {
  .contact-card {
    width: 320px;
  }
}
@media (min-width: 2560px) {
  .contact-card {
    width: 460px;
    padding: 40px 36px;
    border-radius: 26px;
  }
}
@media (min-width: 3840px) {
  .contact-card {
    width: 660px;
    padding: 56px 52px;
    border-radius: 36px;
  }
}

.contact-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 18px;
}
@media (min-width: 2560px) {
  .contact-card-title {
    font-size: 26px;
    margin-bottom: 28px;
  }
}
@media (min-width: 3840px) {
  .contact-card-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-row:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 2560px) {
  .contact-row {
    gap: 16px;
    margin-bottom: 20px;
  }
}

.contact-row-icon {
  width: 32px;
  height: 32px;
  background: #e6f4ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row-icon svg {
  width: 15px;
  height: 15px;
  color: #1f7a5a;
}
@media (min-width: 2560px) {
  .contact-row-icon {
    width: 50px;
    height: 50px;
  }
  .contact-row-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 3840px) {
  .contact-row-icon {
    width: 70px;
    height: 70px;
  }
  .contact-row-icon svg {
    width: 34px;
    height: 34px;
  }
}

.contact-row-info {
  display: flex;
  flex-direction: column;
}

.contact-row-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #2c2c2c;
}
@media (min-width: 2560px) {
  .contact-row-name {
    font-size: 22px;
  }
}
@media (min-width: 3840px) {
  .contact-row-name {
    font-size: 32px;
  }
}

.contact-row-detail {
  font-size: 13px;
  color: #6b7074;
  line-height: 1.5;
  margin-top: 1px;
}
@media (min-width: 2560px) {
  .contact-row-detail {
    font-size: 20px;
    margin-top: 4px;
  }
}
@media (min-width: 3840px) {
  .contact-row-detail {
    font-size: 28px;
    margin-top: 6px;
  }
}

.contact-row-role {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
@media (min-width: 2560px) {
  .contact-row-role {
    font-size: 16px;
  }
}
@media (min-width: 3840px) {
  .contact-row-role {
    font-size: 22px;
  }
}

.contact-card-divider {
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 14px 0;
}
@media (min-width: 2560px) {
  .contact-card-divider {
    margin: 22px 0;
  }
}

.contact-card-footer {
  font-size: 11px;
  color: #888;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-card-footer svg {
  width: 13px;
  height: 13px;
  color: #aaa;
}
@media (min-width: 2560px) {
  .contact-card-footer {
    font-size: 18px;
    margin-top: 22px;
  }
  .contact-card-footer svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 3840px) {
  .contact-card-footer {
    font-size: 26px;
    margin-top: 32px;
  }
  .contact-card-footer svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   REGULATORY ADVANTAGE (SCM page)
   ============================================ */
.reg-advantage {
  background: #fff;
  padding: 0 20px 60px;
}
@media (min-width: 430px) {
  .reg-advantage {
    padding: 0 24px 64px;
  }
}
@media (min-width: 768px) {
  .reg-advantage {
    padding: 0 40px 72px;
  }
}
@media (min-width: 1024px) {
  .reg-advantage {
    padding: 0 60px 80px;
  }
}
@media (min-width: 1200px) {
  .reg-advantage {
    padding: 0 80px 88px;
  }
}
@media (min-width: 1440px) {
  .reg-advantage {
    padding: 0 100px 96px;
  }
}
@media (min-width: 2560px) {
  .reg-advantage {
    padding: 0 140px 130px;
  }
}
@media (min-width: 3840px) {
  .reg-advantage {
    padding: 0 200px 180px;
  }
}

.reg-advantage-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #1B5E20;
  border-radius: 20px;
  padding: 48px 32px;
}
@media (min-width: 768px) {
  .reg-advantage-inner {
    padding: 56px 40px;
    border-radius: 24px;
  }
}
@media (min-width: 1200px) {
  .reg-advantage-inner {
    padding: 64px 56px;
  }
}
@media (min-width: 1440px) {
  .reg-advantage-inner {
    max-width: 1400px;
    padding: 72px 64px;
    border-radius: 28px;
  }
}
@media (min-width: 2560px) {
  .reg-advantage-inner {
    max-width: 2000px;
    padding: 96px 90px;
    border-radius: 40px;
  }
}
@media (min-width: 3840px) {
  .reg-advantage-inner {
    max-width: 3200px;
    padding: 140px 130px;
    border-radius: 56px;
  }
}

.reg-advantage-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .reg-advantage-header {
    margin-bottom: 48px;
  }
}
@media (min-width: 2560px) {
  .reg-advantage-header {
    margin-bottom: 72px;
  }
}

.reg-advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .reg-advantage-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  .reg-advantage-title {
    font-size: 2rem;
  }
}
@media (min-width: 2560px) {
  .reg-advantage-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 3840px) {
  .reg-advantage-title {
    font-size: 4rem;
    margin-bottom: 32px;
  }
}

.reg-advantage-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .reg-advantage-subtitle {
    font-size: 0.9rem;
  }
}
@media (min-width: 1200px) {
  .reg-advantage-subtitle {
    font-size: 0.95rem;
  }
}
@media (min-width: 2560px) {
  .reg-advantage-subtitle {
    font-size: 1.3rem;
    max-width: 1000px;
  }
}
@media (min-width: 3840px) {
  .reg-advantage-subtitle {
    font-size: 1.9rem;
    max-width: 1600px;
  }
}

.reg-advantage-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .reg-advantage-body {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .reg-advantage-body {
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
  }
}
@media (min-width: 2560px) {
  .reg-advantage-body {
    gap: 48px;
  }
}
@media (min-width: 3840px) {
  .reg-advantage-body {
    gap: 64px;
  }
}

.reg-advantage-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 2560px) {
  .reg-advantage-col {
    gap: 32px;
  }
}
@media (min-width: 3840px) {
  .reg-advantage-col {
    gap: 48px;
  }
}

.reg-advantage-img-col {
  display: none;
}
@media (min-width: 1024px) {
  .reg-advantage-img-col {
    display: flex;
    min-width: 220px;
  }
  .reg-advantage-img-col img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 14px;
    display: block;
    min-width: 220px;
  }
}
@media (min-width: 1024px) and (min-width: 1200px) {
  .reg-advantage-img-col img {
    min-width: 260px;
    border-radius: 16px;
  }
}
@media (min-width: 1024px) and (min-width: 1440px) {
  .reg-advantage-img-col img {
    min-width: 300px;
  }
}
@media (min-width: 1024px) and (min-width: 2560px) {
  .reg-advantage-img-col img {
    min-width: 440px;
    border-radius: 22px;
  }
}
@media (min-width: 1024px) and (min-width: 3840px) {
  .reg-advantage-img-col img {
    min-width: 620px;
    border-radius: 30px;
  }
}

.reg-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 22px;
  flex: 1;
}
@media (min-width: 1200px) {
  .reg-card {
    padding: 24px 28px;
    border-radius: 12px;
  }
}
@media (min-width: 2560px) {
  .reg-card {
    padding: 36px 40px;
    border-radius: 18px;
  }
}
@media (min-width: 3840px) {
  .reg-card {
    padding: 52px 56px;
    border-radius: 26px;
  }
}

.reg-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .reg-card-title {
    font-size: 0.95rem;
  }
}
@media (min-width: 2560px) {
  .reg-card-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
@media (min-width: 3840px) {
  .reg-card-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}

.reg-card-text {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.65;
}
@media (min-width: 1200px) {
  .reg-card-text {
    font-size: 0.83rem;
  }
}
@media (min-width: 2560px) {
  .reg-card-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 3840px) {
  .reg-card-text {
    font-size: 1.75rem;
  }
}

/* ============================================
   COMMITMENT TO INTEGRITY (SCM page)
   ============================================ */
.commitment-section {
  padding: 56px 20px;
  background: #fff;
}
@media (min-width: 430px) {
  .commitment-section {
    padding: 60px 24px;
  }
}
@media (min-width: 768px) {
  .commitment-section {
    padding: 72px 40px;
  }
}
@media (min-width: 1024px) {
  .commitment-section {
    padding: 80px 60px;
  }
}
@media (min-width: 1200px) {
  .commitment-section {
    padding: 88px 80px;
  }
}
@media (min-width: 1440px) {
  .commitment-section {
    padding: 96px 100px;
  }
}
@media (min-width: 2560px) {
  .commitment-section {
    padding: 130px 140px;
  }
}
@media (min-width: 3840px) {
  .commitment-section {
    padding: 190px 200px;
  }
}

.commitment-inner {
  max-width: 860px;
  margin: 0 auto;
  border-left: 4px solid #4CAF50;
  padding-left: 24px;
}
@media (min-width: 768px) {
  .commitment-inner {
    padding-left: 32px;
  }
}
@media (min-width: 1440px) {
  .commitment-inner {
    border-left-width: 5px;
  }
}
@media (min-width: 2560px) {
  .commitment-inner {
    max-width: 1400px;
    padding-left: 48px;
    border-left-width: 7px;
  }
}
@media (min-width: 3840px) {
  .commitment-inner {
    max-width: 2400px;
    padding-left: 72px;
    border-left-width: 10px;
  }
}

.commitment-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .commitment-title {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .commitment-title {
    font-size: 1.8rem;
  }
}
@media (min-width: 2560px) {
  .commitment-title {
    font-size: 2.6rem;
    margin-bottom: 32px;
  }
}
@media (min-width: 3840px) {
  .commitment-title {
    font-size: 3.6rem;
    margin-bottom: 48px;
  }
}

.commitment-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .commitment-text {
    font-size: 0.95rem;
  }
}
@media (min-width: 1200px) {
  .commitment-text {
    font-size: 1rem;
  }
}
@media (min-width: 2560px) {
  .commitment-text {
    font-size: 1.45rem;
  }
}
@media (min-width: 3840px) {
  .commitment-text {
    font-size: 2.1rem;
  }
}/*# sourceMappingURL=service.css.map */