#svg_logo {
  width: 100px;
  opacity: 1;
  position: fixed;
  margin-bottom: 198px;
} 

.loader {
  border-top: 2px solid #b38f54;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  transition: opacity 2s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slide-top {
  animation: slide-top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide-top {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
  }
}

.splashContainer {
  visibility: visible;
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f1f63;
  z-index: 999;
  flex-direction: column;
}

::-webkit-scrollbar {
    width: 10px;
  }
  
::-webkit-scrollbar-track {
    background: #ffffffea;
  }
  
  
::-webkit-scrollbar-thumb {
    background: #b38f54;
    border-radius: 12px;
  
  }
  
::-webkit-scrollbar-thumb:hover {
    background: rgb(209, 166, 98);
  }
.navContainer {
  border-bottom: 1px solid #b38f54;
  color: #b38f54;
  font-family: Archivo, sans-serif;
  padding: 16px;
  z-index: 6;
  position: sticky;
  top: 0;
  left: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  user-select: none;
  height: fit-content;
}

.navLogo img {
  height: 3.5em;
  display: block;
}

.site-title {
  margin-bottom: 6px;
  font-size: 1.3rem;
  text-align: center;
  color: #b38f54;
}

.site-tagline {
  margin-top: -4px;
  margin-bottom: 0;
  font-size: 1rem;
  text-align: center;
  color: #b38f54;
}

.navMainMenu {
  align-self: center;
}

.navMainMenu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navMainMenu a {
  color: #b38f54;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s ease-in-out;
  font-size: 1rem;
  text-transform: uppercase;
}

.navMainMenu a:hover,
.navMainMenu a:focus {
  color: #d4b375;
  text-decoration: none;
}

.navLogo,
.navMainMenu a,
.phoneMenu button {
  cursor: pointer;
}

.phoneMenu {
  display: none;
}

@media (max-width: 940px) {
  .navMainMenu {
    display: none;
  }

  .phoneMenu {
    display: block;
  }

  .phoneMenu button {
    background: none;
    border: none;
    color: #b38f54;
    font-size: 1.8rem;
    cursor: pointer;
  }

  .phoneMenu button:hover {
    color: #d4b375;
  }
}

.footerContainer {
    background: #1f1f63;
    font-family: 'Bai Jamjuree', sans-serif;
    color: #fff;
    padding-bottom: 30px;
  }
  
  .footerHeaderRow {
    padding: 12px;
    border-bottom: 1px solid #b38f54;
    text-align: center;
  }
  
  .footerLogoRow {
    padding: 17px 50px;
    text-align: center;
  }
  
  .footerLogoRow img {
    height: 3.5em;
    display: block;
    margin: 0 auto;
  }
  
  .footerTitle {
    color: #B38F54;
    margin-bottom: 6px;
    font-size: 1.3rem;
  }
  
  .footerTagline {
    color: #B38F54;
    margin: -4px 0 0 0;
    font-size: 1rem;
  }
  
  .footerSeparator {
    width: 50%;
    height: 1px;
    background: #b38f54;
    margin: 4px auto 8px auto;
  }
  
  .footerMessage {
    color: #ffffff;
    line-height: 1.8em;
    font-weight: 300;
    border-bottom: 1px solid #b38f54;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
  
  .footerContact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footerContact li {
    display: flex;
    align-items: center;
    margin: 12px 0;
  }
  
  .footerContact ion-icon {
    margin-right: 8px;
    font-size: 24px;
    color: #B38F54;
  }
  
  .footerContact a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease-in-out;
  }
  
  .footerContact a:hover,
  .footerContact a:focus {
    color: #b38f54;
  }
  
  .footerSectionsContainer {
    margin-top: 20px;
  }
  
  .footerSectionsContainer h3 {
    color: #B38F54;
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  
  .footerSectionsContainer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footerSectionsContainer li {
    padding: 8px 0;
  }
  
  .footerSectionsContainer a.footerLink {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  
  .footerSectionsContainer a.footerLink:hover,
  .footerSectionsContainer a.footerLink:focus {
    color: #B38F54;
  }
  /* Social Icons */
  .icon-button {
    background-color: transparent;
    border-radius: 3.6rem;
    cursor: pointer;
    display: inline-block;
    font-size: 1.8rem;
    height: 3.6rem;
    line-height: 3.6rem;
    margin: 0 5px;
    position: relative;
    text-align: center;
    user-select: none;
    width: 3.6rem;
    transition: transform 0.2s ease-in-out, color 0.3s ease
  }
  
  .icon-button:hover {
    transform: scale(1.05);
  }
  
  
  .icon-button ion-icon {
    color: #ededed;
    transition: all 0.3s ease;
  }
  
  .youtube:hover ion-icon {
    color: #B38F54;
  }
  
  .facebook:hover ion-icon {
    color: #B38F54;
  
  }
  
  .linkedin:hover ion-icon {
    color: #B38F54;
  }
  
  
  /* Responsive */
  @media (max-width: 992px) {
    .footerLogoRow {
      text-align: center;
      padding-left: 0;
    }
  
    .footerSectionsContainer {
      text-align: center;
    }
  
    .footerSectionsContainer ul {
      padding-left: 0;
    }
  }
  
  @media (max-width: 576px) {
    .footerMessage {
      text-align: center;
    }
  
    .footerSectionsContainer h3 {
      margin-top: 16px;
    }
  }
  
.sidenav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    background-color: #1f1f63;
    overflow-x: hidden;
    padding-top: 60px;
    transition: width 0.5s ease;
  }
  
  .sidenav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .sidenav a {
    display: block;
    padding: 12px 8px;
    font-size: 22px;
    color: #b38f54;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s ease;
  }
  
  .sidenav a:hover,
  .sidenav a:focus {
    color: #f1f1f1;
    outline: none;
  }
  
  .sidenav .closebtn {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    color: #b38f54;
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .sidenav .closebtn:hover,
  .sidenav .closebtn:focus {
    color: #ffffff;
    outline: none;
  }
  
  @media screen and (max-height: 450px) {
    .sidenav {
      padding-top: 30px;
    }
  
    .sidenav a {
      font-size: 18px;
      padding: 10px;
    }
  }
  
.dialoButton {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    font-size: 18px;
    color: rgb(193, 163, 98);
    border: 2px solid rgb(193, 163, 98);
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
  }
  
  .dialoButton::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: rgb(193, 163, 98);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .dialoButton:hover::before {
    scale: 3;
  }
  
  .dialoButton:hover {
    color: #212121;
    scale: 1.1;
  }
  
  .dialoButton:active {
    scale: 1;
  }
  
  .secoundButton {
    background: #c09264;
    font-size: 19px;
    border-radius: 6px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 10px;
    padding-left: 10px;
    transition: 0.3s;
    border-color: rgba(255, 255, 255, 0);
    color: white;
  }
  
  .secoundButton:hover {
    background: #262626;
    border: 2px solid #c09264;
  }
  
  .secoundButton:disabled {
    background: #868686;
    border: none;
  }
  
.custom-button {
  position: relative;
  padding: 10px 28px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  isolation: isolate;
}

.button-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s ease;
}

.button-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6c5735 0%, #b38f54 50%, #e8b765 100%);
  transition: all 0.3s ease;
}

.button-icon {
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-button:hover .button-content {
  transform: translateY(-1px);
}

.custom-button:hover .button-icon {
  transform: translateX(4px);
}

.custom-button:hover .button-background {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.custom-button:active .button-content {
  transform: translateY(1px);
}

.custom-button:active .button-background {
  transform: scale(0.98);
  filter: brightness(0.95);
}

.custom-button:focus-visible {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}

.custom-button {
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.1), 0 4px 8px rgba(79, 70, 229, 0.1),
    0 -1px 2px rgba(79, 70, 229, 0.05);
  transition: all 0.3s ease;
}

.custom-button:hover {
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.2),
    0 8px 16px rgba(79, 70, 229, 0.2), 0 -2px 4px rgba(79, 70, 229, 0.1);
}

@keyframes shine {
  from {
    transform: translateX(-100%) rotate(45deg);
  }
  to {
    transform: translateX(100%) rotate(45deg);
  }
}

.custom-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%) rotate(45deg);
  z-index: 1;
}

.custom-button:hover::after {
  animation: shine 1s ease;
}

.input-container {
    position: relative;
    margin-top: 18px;
    width: 100%;
  }
  
  .input {
    font-size: 1em;
    padding: 0.6em 1em;
    border: none;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.03);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #333;
  }
  
  .input:hover {
    background-color: #f2f2f2;
  }
  
  .input:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .input::placeholder {
    color: #999;
  }
  
  .highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b38f54;
    transition: width 0.3s ease;
  }
  
  .input:focus + .highlight {
    width: 100%;
  }
  
  @keyframes input-focus {
    from {
      transform: scale(1);
      box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
    }
    to {
      transform: scale(1.02);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
  }
  
  .input:focus {
    animation: input-focus 0.3s ease;
  }
