@charset "UTF-8";
/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/*
    Chứa các biến SCSS dùng trong toàn bộ project.
    Biến ở đây có thể là màu sắc, font, kích thước, breakpoint, v.v.
*/
/* Royal Blue */
/* Amber - sáng tạo, năng động */
/* Sky Blue - chuyên nghiệp, rõ ràng */
/* Gần như đen - độ tương phản cao */
/* Gray-500 */
/* Gray-50 */
/* Green-600 */
/* Amber-500 */
/* Red-600 */
/* Gray-200 */
/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/**
 * Mixins cho KMT Theme - Đơn giản hóa
 * @package kmtsolutions
 * @since 1.0.0
 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
}

/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
body {
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1e1e1e;
  background-color: #f9fafb;
  min-height: 100%;
  overflow-x: hidden;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading {
  font-family: "Lora", "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: #0ea5e9;
  text-decoration: none;
}
a:hover {
  color: #1e40af;
}

ul,
ol {
  margin-bottom: 1rem;
}

code,
pre {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Monaco, Consolas, monospace;
}

button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  height: fit-content;
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: #ffffff;
  color: #1e40af;
  transition: all 0.3s ease;
  cursor: pointer;
}
button:hover,
.wp-block-button__link:hover {
  background-color: #f59e0b;
  border: 1px solid #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (min-width: 320px) {
  h1,
  .wp-block-heading h1,
  h2,
  .wp-block-heading h2,
  h3,
  .wp-block-heading h3 {
    font-size: 2rem;
  }
  h4,
  h5,
  h6,
  .wp-block-heading h4,
  .wp-block-heading h5,
  .wp-block-heading h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  h1,
  .wp-block-heading h1 {
    font-size: 2.8125rem;
  }
  h2,
  h3,
  .wp-block-heading h2 .wp-block-heading h3 {
    font-size: 2.5rem;
  }
  h4,
  h5,
  h6,
  .wp-block-heading h4,
  .wp-block-heading h5,
  .wp-block-heading h6 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 1.5rem;
  }
  h1,
  .wp-block-heading h1 {
    font-size: 3.125rem;
  }
  h2,
  h3,
  .wp-block-heading h2,
  .wp-block-heading h3 {
    font-size: 2.8125rem;
  }
}
@media (min-width: 1560px) {
  h1,
  .wp-block-heading h1 {
    font-size: 3.75rem;
  }
}
/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes reveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.5);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-slide-down {
  animation: slideDown 0.5s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-reveal {
  animation: reveal 0.6s ease-out forwards;
}

.animate-reveal-delay-1 {
  animation-delay: 0.1s;
}

.animate-reveal-delay-2 {
  animation-delay: 0.2s;
}

.animate-reveal-delay-3 {
  animation-delay: 0.3s;
}

.hover-float:hover {
  animation: float 2s ease-in-out infinite;
}

.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.6s ease-out forwards;
  animation-delay: 0s;
}

.reveal-element-slow {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1s ease-out forwards;
  animation-delay: 0.2s;
}

/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
.site__header {
  position: sticky;
  z-index: 9999;
}

.promotion__bar {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #ffffff;
  height: auto;
  padding: 1rem 0;
}
.promotion__bar .promotion__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 320px) {
  .promotion__bar .promotion__content {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .promotion__bar .promotion__content {
    flex-direction: row;
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .promotion__bar .promotion__content {
    gap: 2rem;
  }
}
@media (min-width: 1200px) {
  .promotion__bar .promotion__content {
    gap: 3rem;
  }
}
.promotion__bar .promotion__content .promotion__text {
  line-clamp: 1;
  overflow: hidden;
  animation: pulse 2s ease-in-out infinite;
}
@media (min-width: 320px) {
  .promotion__bar .promotion__content .promotion__text {
    font-size: 0.875rem;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .promotion__bar .promotion__content .promotion__text {
    font-size: 1rem;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .promotion__bar .promotion__content .promotion__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 320px) {
  .promotion__bar .promotion__content .btn-claim {
    display: none;
  }
}
@media (min-width: 576px) {
  .promotion__bar .promotion__content .btn-claim {
    display: flex;
  }
}

.header__wrapper {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 4rem;
}
.header__wrapper .header__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .header__wrapper .header__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .header__wrapper .header__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .header__wrapper .header__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .header__wrapper .header__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .header__wrapper .header__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.header__wrapper .header__container {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__wrapper .header__container .custom-logo-link {
  height: 2rem;
  width: 2rem;
}
.header__wrapper .header__container .custom-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/* Footer Styles */
.footer {
  background-color: #ffffff;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
}
.footer__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .footer__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .footer__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .footer__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .footer__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .footer__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
}
.footer__brand {
  margin-bottom: 1.5rem;
}
.footer__brand .custom-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.footer__brand .footer__description {
  font-size: 1rem;
  color: #6b7280;
  margin-top: 0.5rem;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  color: #6b7280;
  transition: color 0.3s ease;
}
.footer__social-link:hover {
  color: #1e40af;
}
.footer__social-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.footer__heading {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: "Lora", "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  color: #1e1e1e;
  margin-bottom: 1rem !important;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0;
}
.footer__link {
  color: #6b7280;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #1e40af;
}
.footer__copyright {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
  text-align: center;
  color: #6b7280;
}

/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
.btn {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}
.btn-primary {
  background-color: #ffffff;
  color: #1e40af;
}
.btn-primary:hover {
  background-color: #f59e0b;
  color: #ffffff;
}
.btn-secondary {
  background-color: #f59e0b;
  color: #ffffff;
}
.btn-success {
  background-color: #16a34a;
  color: #ffffff;
}
.btn-warning {
  background-color: #f59e0b;
  color: #ffffff;
}
.btn-danger {
  background-color: #dc2626;
  color: #ffffff;
}
.btn-small {
  min-height: 2.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.btn-medium {
  min-height: 2.8125rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}
.btn-large {
  min-height: 3.125rem;
  padding: 0.5rem 2rem;
  font-size: 1.25rem;
}
.btn:focus {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/**
 * Container Component - Đơn giản hóa
 * Tạo các class container với responsive
 * @package kmtsolutions
 * @since 1.0.0
 */
.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.container-grid {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .container-grid {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .container-grid {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .container-grid {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container-grid {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .container-grid {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.container-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .container-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .container-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.container-grid-2 {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .container-grid-2 {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .container-grid-2 {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .container-grid-2 {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container-grid-2 {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .container-grid-2 {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.container-grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .container-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .container-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.container-grid-3 {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .container-grid-3 {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .container-grid-3 {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .container-grid-3 {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container-grid-3 {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .container-grid-3 {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.container-grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .container-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .container-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.container-grid-4 {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .container-grid-4 {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .container-grid-4 {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .container-grid-4 {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container-grid-4 {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .container-grid-4 {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.container-grid-4 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .container-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .container-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 320px) {
  .wrapper {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .wrapper {
    padding: 1.5rem 0;
  }
}
@media (min-width: 992px) {
  .wrapper {
    padding: 2rem 0;
  }
}
@media (min-width: 1200px) {
  .wrapper {
    padding: 3rem 0;
  }
}
@media (min-width: 1560px) {
  .wrapper {
    padding: 5rem 0;
  }
}

/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/**
 * Form Components Styles
 * Bao gồm contact form modal và các form elements
 * @package kmtsolutions
 * @since 1.0.0
 */
.contact-form-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.contact-form-modal--active {
  opacity: 1;
  visibility: visible;
}
.contact-form-modal--active .contact-form-modal__container {
  transform: translateY(0) scale(1);
}
.contact-form-modal--active .contact-form-modal__overlay {
  opacity: 1;
}
.contact-form-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.contact-form-modal__container {
  position: relative;
  max-width: 960px;
  width: 90%;
  max-height: 90vh;
  margin: 5vh auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: translateY(2rem) scale(0.95);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact-form-modal__container {
    width: 95%;
    margin: 2.5vh auto;
    max-height: 95vh;
  }
}
.contact-form-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background-color: #ffffff;
}
.contact-form-modal__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.contact-form-modal__content {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}
@media (max-width: 768px) {
  .contact-form-modal__content {
    padding: 1rem;
  }
}

.contact-form {
  animation: fadeInUp 0.4s ease-out;
}
.contact-form__field {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .contact-form__field {
    margin-bottom: 1rem;
  }
}
.contact-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: wheat;
  font-size: 1rem;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  color: #1e1e1e;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}
.contact-form__input:hover, .contact-form__textarea:hover {
  border-color: rgb(200.1739130435, 204.3913043478, 212.8260869565);
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #6b7280;
}
.contact-form__input--error, .contact-form__textarea--error {
  border-color: #dc2626;
}
.contact-form__input--error:focus, .contact-form__textarea--error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 6rem;
}
.contact-form__error {
  display: none;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc2626;
}
.contact-form__actions {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-form__actions {
    margin-top: 1.5rem;
  }
}
.contact-form__submit {
  position: relative;
  min-width: 9rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.contact-form__submit:hover:not(:disabled) {
  transform: translateY(-0.5rem);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.contact-form__submit:active:not(:disabled) {
  transform: translateY(0);
}
.contact-form__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.contact-form__submit--loading {
  pointer-events: none;
}
.contact-form__loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form__loading svg {
  animation: spin 1s linear infinite;
}
.contact-form__success {
  text-align: center;
  padding: 2rem 0;
  animation: fadeInUp 0.4s ease-out;
}
.contact-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem;
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-radius: 50%;
}
.contact-form__success-icon svg {
  width: 4.8rem;
  height: 4.8rem;
}
.contact-form__success-title {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 600;
  color: wheat;
}
.contact-form__success-message {
  margin: 0 0 2rem 0;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.contact-form__input:disabled,
.contact-form__textarea:disabled {
  background-color: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
  opacity: 0.6;
}

@media (max-width: 576px) {
  .contact-form-modal__container {
    width: 98%;
    margin: 1vh auto;
    max-height: 98vh;
    border-radius: 8px;
  }
  .contact-form-modal__header {
    padding: 1rem;
  }
  .contact-form-modal__title {
    font-size: 1.25rem;
  }
  .contact-form-modal__content {
    padding: 1rem;
  }
  .contact-form__field {
    margin-bottom: 1rem;
  }
  .contact-form__input,
  .contact-form__textarea {
    padding: 0.5rem 1rem;
  }
  .contact-form__submit {
    width: 100%;
    min-width: auto;
  }
}
@media (prefers-color-scheme: dark) {
  .contact-form-modal__container {
    background-color: rgb(4.5, 4.5, 4.5);
    color: #ffffff;
  }
  .contact-form-modal__header {
    background-color: rgb(4.5, 4.5, 4.5);
    border-bottom-color: rgb(171.347826087, 177.7826086957, 190.652173913);
  }
  .contact-form__input,
  .contact-form__textarea {
    background-color: black;
    border-color: rgb(171.347826087, 177.7826086957, 190.652173913);
    color: #ffffff;
  }
  .contact-form__input::placeholder,
  .contact-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
}
/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/* Hero Banner Styles */
.hero {
  background: linear-gradient(to bottom right, #1e40af, #2563eb, #1e40af);
}
.hero__container {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.hero__content div h1,
.hero__content div p {
  color: #ffffff;
}
@media (min-width: 320px) {
  .hero__content a {
    min-height: 2.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}
@media (min-width: 992px) {
  .hero__content a {
    min-height: 2.8125rem;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .hero__content a {
    min-height: 3.125rem;
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
  }
}
.hero__figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__figure .hero__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.hero__figure {
  /* SVG Styles */
}
.hero__figure svg {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  fill: #ffffff;
}

/* Statistics Styles  */
.statistics {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.statistics__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .statistics__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .statistics__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .statistics__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .statistics__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .statistics__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.statistics__grid {
  display: grid;
  gap: 2rem;
  text-align: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .statistics__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .statistics__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.statistics__item {
  transition: transform 0.3s ease;
}
.statistics__item:hover {
  transform: translateY(-5px);
}
.statistics__number {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e40af;
}
@media (min-width: 768px) {
  .statistics__number {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .statistics__number {
    font-size: 3rem;
  }
}
.statistics__label {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .statistics__label {
    font-size: 1.25rem;
  }
}

.statistics__item.animate .statistics__number {
  animation: countUp 0.8s ease-out forwards;
}
.statistics__item.animate:nth-child(1) .statistics__number {
  animation-delay: 0.1s;
}
.statistics__item.animate:nth-child(2) .statistics__number {
  animation-delay: 0.2s;
}
.statistics__item.animate:nth-child(3) .statistics__number {
  animation-delay: 0.3s;
}
.statistics__item.animate:nth-child(4) .statistics__number {
  animation-delay: 0.4s;
}

/* Commitments Section Styles */
.commitments {
  background-color: #f9fafb;
}
.commitments__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .commitments__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .commitments__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .commitments__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .commitments__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .commitments__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.commitments__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.commitments__header {
  text-align: center;
}
.commitments__content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .commitments__content {
    grid-template-columns: 1fr 1fr;
  }
}
.commitments__content {
  align-items: center;
}
.commitments__illustration {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  order: 2;
  min-height: 0;
}
.commitments__illustration img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}
.commitments__illustration svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}
@media (min-width: 992px) {
  .commitments__illustration {
    order: 1;
  }
}
.commitments__illustration .commitments__svg {
  width: 100%;
  height: auto;
  max-height: 400px;
}
.commitments__illustration .hero__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.commitments__list {
  order: 1;
}
@media (min-width: 992px) {
  .commitments__list {
    order: 2;
  }
}
.commitments__items {
  margin-bottom: 3rem;
}
.commitments__cta {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 4rem;
}
.commitments__cta .btn {
  padding: 1rem 2rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.commitments__cta .btn--primary {
  background-color: #1e40af;
  color: #ffffff;
}
.commitments__cta .btn--primary:hover {
  background-color: #1e40af;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.commitment-item:last-child {
  margin-bottom: 0;
}
.commitment-item__icon {
  width: 3rem;
  height: 3rem;
  background-color: #1e40af;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.commitment-item__icon .commitment-item__svg {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
}
.commitment-item__content {
  flex: 1;
}
.commitment-item__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 1rem;
}
.commitment-item__description {
  color: #6b7280;
  line-height: 1.6;
}

/* Services Section Styles */
.services {
  background-color: #ffffff;
}
.services__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .services__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .services__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .services__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .services__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .services__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.services__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.services__header {
  text-align: center;
}
.services__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.services__item {
  background-color: #f9fafb;
  padding: 2rem;
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
}
.services__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.services__image {
  width: 3rem;
  height: 3rem;
  background-color: #1e40af;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}
.services__image image {
  object-fit: contain;
  object-position: cover;
}
.services__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 1rem;
}
.services__item-description {
  color: #6b7280;
  line-height: 1.6;
}
.services__cta {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.services__cta .btn {
  padding: 1rem 2rem;
  font-weight: 500;
}
.services__cta .btn--primary {
  background-color: #1e40af;
  color: #ffffff;
}
.services__cta .btn--primary:hover {
  background-color: #f59e0b;
}

/* Projects Section Styles */
.projects {
  background-color: #f9fafb;
  overflow-x: hidden;
}
.projects__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .projects__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .projects__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .projects__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .projects__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .projects__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.projects__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  overflow-x: hidden;
}
.projects__header {
  text-align: center;
}
.projects__slider-container {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}
.projects .swiper-slide {
  width: 100% !important;
  flex-wrap: wrap !important;
  overflow: hidden !important;
}
.projects__card {
  background-color: #ffffff;
  border-radius: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}
.projects__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-0.25rem);
}
.projects__image-container {
  position: relative;
}
.projects__image-container--blue {
  background-image: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
}
.projects__image-container--purple {
  background-image: linear-gradient(to bottom right, #f3e8ff, #e9d5ff);
}
.projects__image-container--green {
  background-image: linear-gradient(to bottom right, #ecfdf5, #d1fae5);
}
.projects__image-container--orange {
  background: linear-gradient(to bottom right, #fff7ed, #fed7aa);
}
.projects__image {
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.projects__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}
.projects__tag--blue {
  background-color: #3b82f6;
}
.projects__tag--purple {
  background-color: #8b5cf6;
}
.projects__tag--green {
  background-color: #10b981;
}
.projects__tag--orange {
  background-color: #f97316;
}
.projects__content {
  padding: 2rem;
}
.projects__category {
  margin-bottom: 1rem;
}
.projects__category-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.projects__category-text--blue {
  color: #2563eb;
}
.projects__category-text--purple {
  color: #9333ea;
}
.projects__category-text--green {
  color: #059669;
}
.projects__category-text--orange {
  color: #ea580c;
}
.projects__title-card {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}
.projects__description {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
}
.projects__meta {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 700;
}
@media (min-width: 320px) {
  .projects__meta {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .projects__meta {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.projects__metric--blue {
  color: #2563eb;
}
.projects__metric--purple {
  color: #9333ea;
}
.projects__metric--green {
  color: #059669;
}
.projects__metric--orange {
  color: #ea580c;
}
.projects__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(163, 177, 138, 0.5);
  border-radius: 50%;
  padding: 0.75rem;
  transition: all 0.2s ease;
  z-index: 10;
}
.projects__nav:hover {
  background-color: #f9fafb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@media (min-width: 992px) {
  .projects__nav--prev {
    left: -4rem;
  }
  .projects__nav--next {
    right: -4rem;
  }
}
.projects__nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
}
.projects__pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}
.projects__dot {
  padding: 0 !important;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #1e40af;
  transition: all 0.2s ease;
}
.projects__dot:not(.projects__dot--active) {
  background-color: #d1d5db;
}
.projects__dot:not(.projects__dot--active):hover {
  background-color: #9ca3af;
}

/* Partners Section Styles */
.partners {
  background-color: #ffffff;
}
.partners__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .partners__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .partners__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .partners__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .partners__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .partners__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.partners__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.partners__header {
  text-align: center;
}
.partners__slider {
  overflow: hidden;
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 4rem;
  background-color: #f9fafb;
  border-radius: 8px;
  font-weight: 600;
  color: #6b7280;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partners__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.partners .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* Feedbacks Section Styles */
.feedbacks {
  background-color: #f9fafb;
}
.feedbacks__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .feedbacks__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .feedbacks__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .feedbacks__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .feedbacks__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .feedbacks__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.feedbacks__header {
  text-align: center;
  margin-bottom: 3rem;
}
.feedbacks__slider-container {
  position: relative;
}
.feedbacks__slider {
  overflow: hidden;
}
.feedbacks__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.feedbacks__slide {
  width: 100%;
  flex-shrink: 0;
}
.feedbacks__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feedbacks__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .feedbacks__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feedbacks__card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
}
.feedbacks__rating {
  display: flex;
  align-items: center;
}
.feedbacks__star {
  color: #fbbf24;
}
.feedbacks__content {
  color: #6b7280;
  margin: 1.5rem 0 !important;
}
.feedbacks__author {
  display: flex;
  align-items: center;
}
.feedbacks__avatar {
  width: 3rem;
  height: 3rem;
  background-color: #1e40af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  margin-right: 1rem;
}
.feedbacks__author-name {
  font-weight: 600;
  color: #1f2937;
}
.feedbacks__author-position {
  font-size: 0.875rem;
  color: #6b7280;
}
.feedbacks__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(139, 94, 60, 0.2);
  border-radius: 50%;
  padding: 0.75rem;
  transition: all 0.2s ease;
  z-index: 10;
}
.feedbacks__nav:hover {
  background-color: #f9fafb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.feedbacks__nav--prev {
  left: -4rem;
}
.feedbacks__nav--next {
  right: -4rem;
}
.feedbacks__nav-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #6b7280;
}

/* FAQs Section Styles */
.faqs {
  background-color: #ffffff;
}
.faqs__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 576px) {
  .faqs__container {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 768px) {
  .faqs__container {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .faqs__container {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .faqs__container {
    width: 100%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1560px) {
  .faqs__container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.faqs__container {
  max-width: 60rem;
}
.faqs__header {
  text-align: center;
  margin-bottom: 3rem;
}
.faqs__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faqs__item {
  outline: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faqs__question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #1e1e1e;
}
.faqs__question-text {
  font-weight: 600;
  color: #1e1e1e;
}
.faqs__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faqs__answer {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1rem;
}
.faqs__answer-text {
  color: #6b7280;
  line-height: 1.6;
}
.faqs .faqs__item.is-open {
  outline-color: #f59e0b;
}
.faqs .faqs__item.is-open .faqs__answer {
  max-height: 500px;
  padding: 1rem;
}
.faqs .faqs__item.is-open .faqs__icon {
  transform: rotate(180deg);
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/**
 * 404 Error Page Styles
 * Thiết kế chuyên nghiệp theo phong cách Enterprise Service
 * @package kmtsolutions
 * @since 1.0.0
 */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}
.error-404__container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.error-404__content {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.error-404__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.error-404__number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}

.error-404__digit {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Monaco, Consolas, monospace;
  font-size: 8rem;
  font-weight: 700;
  color: #1e40af;
  line-height: 1;
  position: relative;
}
.error-404__digit--4 {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease-out forwards;
  animation-delay: 0.2s;
}
.error-404__digit--4:first-child {
  animation-delay: 0.2s;
}
.error-404__digit--4:last-child {
  animation-delay: 0.6s;
}

.error-404__zero-container {
  margin: 0 1.5rem;
  position: relative;
  height: 8rem;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404__zero {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 1s ease-out forwards;
  animation-delay: 0.4s;
}

.error-404__zero-inner {
  width: 100%;
  height: 100%;
  border: 12px solid #1e40af;
  border-radius: 50%;
  position: relative;
}
.error-404__zero-inner::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid #1e40af;
  border-radius: 50%;
  opacity: 0.7;
  animation: pulse-ring 2s ease-out infinite;
}

.error-404__zero-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}
.error-404__zero-particle--1 {
  animation: particle-orbit-1 4s linear infinite;
}
.error-404__zero-particle--2 {
  animation: particle-orbit-2 4s linear infinite;
}
.error-404__zero-particle--3 {
  animation: particle-orbit-3 4s linear infinite;
}
.error-404__zero-particle--4 {
  animation: particle-orbit-4 4s linear infinite;
}
.error-404__zero-particle--5 {
  animation: particle-orbit-5 4s linear infinite;
}
.error-404__zero-particle--6 {
  animation: particle-orbit-6 4s linear infinite;
}

.error-404__message {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.error-404__title {
  font-family: "Lora", "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease-out forwards;
  animation-delay: 0.8s;
}

.error-404__description {
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease-out forwards;
  animation-delay: 1s;
}

.error-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease-out forwards;
  animation-delay: 1.2s;
}

.error-404__btn-home,
.error-404__btn-search {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 180px;
}

.btn__icon {
  font-size: 1.2em;
}

.error-404__search {
  margin-bottom: 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, margin 0.5s ease-out;
}
.error-404__search.is-active {
  max-height: 100px;
  margin-bottom: 2rem;
}

.error-404__search-container {
  max-width: 500px;
  margin: 0 auto;
}

.search-form {
  width: 100%;
}
.search-form__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.search-form__wrapper:focus-within {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}
.search-form__input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  color: #1e1e1e;
  background: transparent;
}
.search-form__input::placeholder {
  color: #6b7280;
}
.search-form__button {
  padding: 1rem;
  background: #1e40af;
  border: none;
  border-radius: 0 8px 8px 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.search-form__button:hover {
  background: #f59e0b;
}
.search-form__button svg {
  width: 20px;
  height: 20px;
}

.error-404__links {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease-out forwards;
  animation-delay: 1.4s;
}

.error-404__links-title {
  font-family: "Lora", "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.error-404__links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.error-404__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-404__menu li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(30, 64, 175, 0.05);
  color: #1e40af;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
.error-404__menu li a:hover {
  background: #1e40af;
  color: #ffffff;
  transform: translateY(-2px);
}

.error-404__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.8s ease-out forwards;
  animation-delay: 1.6s;
}

.error-404__contact-text {
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.error-404__contact-info {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.error-404__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e40af;
  text-decoration: none;
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}
.error-404__contact-link:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}

.error-404__contact-icon {
  font-size: 1.2em;
}

.error-404__decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.error-404__gear {
  position: absolute;
  opacity: 0.1;
}
.error-404__gear--1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  animation: rotate-clockwise 20s linear infinite;
}
.error-404__gear--2 {
  bottom: 15%;
  right: 10%;
  width: 60px;
  height: 60px;
  animation: rotate-counter-clockwise 15s linear infinite;
}
.error-404__gear--3 {
  top: 20%;
  right: 15%;
  width: 40px;
  height: 40px;
  animation: rotate-clockwise 10s linear infinite;
}
.error-404__gear::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1e40af;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.error-404__circuit {
  position: absolute;
  opacity: 0.05;
}
.error-404__circuit--1 {
  top: 20%;
  left: 10%;
  width: 120px;
  height: 120px;
  animation: pulse 4s ease-in-out infinite;
}
.error-404__circuit--2 {
  bottom: 20%;
  left: 15%;
  width: 80px;
  height: 80px;
  animation: pulse 3s ease-in-out infinite 0.5s;
}
.error-404__circuit--3 {
  top: 30%;
  right: 5%;
  width: 100px;
  height: 100px;
  animation: pulse 5s ease-in-out infinite 1s;
}
.error-404__circuit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f59e0b;
  border-radius: 50%;
}
.error-404__circuit::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}
@keyframes rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-counter-clockwise {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes particle-orbit-1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(40px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(40px) rotate(-360deg);
  }
}
@keyframes particle-orbit-2 {
  0% {
    transform: translate(-50%, -50%) rotate(60deg) translateX(40px) rotate(-60deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(420deg) translateX(40px) rotate(-420deg);
  }
}
@keyframes particle-orbit-3 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg) translateX(40px) rotate(-120deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(480deg) translateX(40px) rotate(-480deg);
  }
}
@keyframes particle-orbit-4 {
  0% {
    transform: translate(-50%, -50%) rotate(180deg) translateX(40px) rotate(-180deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(540deg) translateX(40px) rotate(-540deg);
  }
}
@keyframes particle-orbit-5 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg) translateX(40px) rotate(-240deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(600deg) translateX(40px) rotate(-600deg);
  }
}
@keyframes particle-orbit-6 {
  0% {
    transform: translate(-50%, -50%) rotate(300deg) translateX(40px) rotate(-300deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(660deg) translateX(40px) rotate(-660deg);
  }
}
@media (min-width: 768px) {
  .error-404__digit {
    font-size: 6rem;
  }
  .error-404__zero-container {
    height: 6rem;
    width: 6rem;
  }
}
@media (min-width: 320px) {
  .error-404__content {
    padding: 1.5rem;
  }
  .error-404__digit {
    font-size: 4rem;
  }
  .error-404__zero-container {
    height: 4rem;
    width: 4rem;
    margin: 0 1rem;
  }
  .error-404__zero-inner {
    border-width: 8px;
  }
  .error-404__actions {
    flex-direction: column;
    align-items: center;
  }
  .error-404__contact-info {
    flex-direction: column;
    gap: 1rem;
  }
}
.swiper-button-prev,
.swiper-button-next {
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 50%;
  text-align: center !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem !important;
}

@media (min-width: 320px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}
/**
 * Main SCSS file for KMT Theme
 * Imports all partials
 * @package kmtsolutions
 * @since 1.0.0
 */
/**
 * Editor Styles for KMT Theme
 * Styles for WordPress block editor
 */
:root {
  --wp--preset--color--primary: #1e40af;
  --wp--preset--color--secondary: #f59e0b;
  --wp--preset--color--link: #0ea5e9;
  --wp--preset--color--text: #1e1e1e;
  --wp--preset--color--text-muted: #6b7280;
  --wp--preset--color--background: #f9fafb;
  --wp--preset--color--surface: #ffffff;
  --wp--preset--color--btn-success: #16a34a;
  --wp--preset--color--btn-warning: #f59e0b;
  --wp--preset--color--btn-danger: #dc2626;
  --wp--preset--color--border: #e5e7eb;
  --wp--preset--font-family--lora: Lora, Playfair Display, ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  --wp--preset--font-family--nunito: Nunito, Inter, ui-sans-serif, system-ui, sans-serif;
  --wp--preset--font-family--jetbrains-mono: JetBrains Mono, ui-monospace, SFMono-Regular, Monaco, Consolas, monospace;
  --wp--preset--font-size--small: 0.875rem;
  --wp--preset--font-size--medium: 1rem;
  --wp--preset--font-size--large: 1.25rem;
  --wp--preset--font-size--x-large: 1.5rem;
  --wp--preset--font-size--xx-large: 2rem;
  --wp--preset--font-size--heading-1: 3.75rem;
  --wp--preset--font-size--heading-2: 3.125rem;
  --wp--preset--font-size--heading-3: 2.8125rem;
  --wp--preset--font-size--heading-4: 2.5rem;
  --wp--custom--font-weight--regular: 400;
  --wp--custom--font-weight--medium: 500;
  --wp--custom--font-weight--semibold: 600;
  --wp--custom--font-weight--bold: 700;
}

.editor-styles-wrapper {
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1e1e1e;
  background-color: #f9fafb;
}

.wp-block {
  margin-bottom: 1rem;
}

.wp-block-heading {
  font-family: "Lora", "Playfair Display", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.wp-block-button__link {
  font-family: "Nunito", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 8px;
  background-color: #1e40af;
  color: #f9fafb;
}

.wp-block-paragraph {
  margin-bottom: 1rem;
}

.wp-block-list {
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.wp-block-code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Monaco, Consolas, monospace;
  background-color: #e5e7eb;
  padding: 0.5rem;
  border-radius: 4px;
}

/*# sourceMappingURL=main.css.map */
