/* Utility classes */
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.footer-custom {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Futura PT', sans-serif !important;
}

.footer-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(250, 204, 21, 0.2), rgba(249, 115, 22, 0.2));
}

.footer-circle-1 {
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(250, 204, 21, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.footer-circle-2 {
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 6rem;
  height: 6rem;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  filter: blur(40px);
}

.footer-container {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
  max-width: 1600px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

@media (max-width: 576px) {
  .footer-container {
    max-width: 540px;
  }

  .footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 576px) {
  .footer-container {
    max-width: 540px;
  }

  .footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .footer-container {
    max-width: 720px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .footer-container {
    max-width: 960px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1200px) {
  .footer-container {
    max-width: 1140px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .col-span-2 {
    grid-column: span 2 / span 2;
  }
}

@media (min-width: 1400px) {
  .footer-container {
    max-width: 1320px;
  }
}


/* Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-about h2 {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Futura PT', sans-serif !important;
  color: #fff;
}

.footer-about .subtext {
  color: #d1d3d4;
  font-size: 14px;
  font-family: 'Futura PT', sans-serif !important;
}

.footer-description {
  color: #d1d3d4;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 18px;
  max-width: 512px;
  font-family: 'Futura PT', sans-serif !important;
}

.map-box {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-heading .text-header {
  font-size: 20px;
  color: #fff;
  font-family: 'Futura PT', sans-serif !important;
}

.heading-bar {
  width: 4px;
  height: 24px;
  background: linear-gradient(to bottom, #facc15, #f97316);
  border-radius: 8px;
}

.links a {
  display: flex;
  align-items: center;
  color: #d1d3d4;
  text-decoration: none;
  font-size: 18px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
}

.links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #facc15;
  border-radius: 50%;
}

.links a:hover {
  transform: translateX(6px);
}

.links a:hover::before {
  background: #f97316;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 24px;
}

.social {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #d1d3d4;
  text-decoration: none;
  font-size: 1.1rem;
}

.social:hover {
  background: rgba(250, 204, 21, 0.2);
  color: #facc15;
}

/* Contact */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact .icon {
  width: 32px;
  height: 32px;
  background: rgba(250, 204, 21, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #facc15;
  transition: all 0.3s ease;
  cursor: default;
}

.footer-contact .icon:hover {
  background: rgba(250, 204, 21, 0.3);
}

/* ปิดคลิกโดยไม่ปิด hover */
.footer-contact .icon {
  user-select: none;
  pointer-events: auto;
}

.footer-contact .icon:active {
  pointer-events: none;
}


.footer-contact .title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-family: 'Futura PT', sans-serif !important;
}

.footer-contact p {
  color: #d1d3d4;
  font-size: 14px;
  line-height: 1.6;
  font-family: 'Futura PT', sans-serif !important;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
  margin: 0 auto;
  padding: 24px 15px 24px 15px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* max-width: 1600px; */
}

/* 
@media (min-width: 576px) {
  .footer-bottom-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .footer-bottom-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .footer-bottom-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .footer-bottom-container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .footer-bottom-container {
    max-width: 1320px;
  }
} */

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
  }
}

.footer-copy p {
  color: #d1d3d4;
  font-size: 14px;
  font-family: 'Futura PT', sans-serif !important;
}

.footer-copy .small {
  font-size: 12px;
  margin-top: 4px;
  font-family: 'Futura PT', sans-serif !important;
}

@media (max-width: 768px) {
  .footer-copy p {
    text-align: center;
  }
}

@media (max-width: 425px) {
  .footer-policy a {
    margin-left: 8px !important;
  }
}

.footer-policy a {
  color: #d1d3d4;
  text-decoration: none;
  font-size: 14px;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

