.elementor-9874 .elementor-element.elementor-element-995f8f1{margin-top:0px;margin-bottom:0px;padding:20px 0px 0px 0px;}.elementor-9874 .elementor-element.elementor-element-7a6aaf7 > .elementor-widget-container{margin:-16px 0px 0px 0px;}.elementor-9874 .elementor-element.elementor-element-6c0aa36, .elementor-9874 .elementor-element.elementor-element-6c0aa36 > .elementor-background-overlay{border-radius:0px 0px 0px 0px;}.elementor-9874 .elementor-element.elementor-element-6c0aa36{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}@media(max-width:1024px){.elementor-9874 .elementor-element.elementor-element-995f8f1{padding:20px 0px 0px 0px;}}@media(max-width:767px){.elementor-9874 .elementor-element.elementor-element-995f8f1{padding:20px 0px 0px 0px;}.elementor-9874 .elementor-element.elementor-element-6c0aa36, .elementor-9874 .elementor-element.elementor-element-6c0aa36 > .elementor-background-overlay{border-radius:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-bc35c5a *//* ใช้วิธีการโหลดฟอนต์ที่เชื่อถือได้มากขึ้น */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* จำกัดขอบเขตของ CSS ให้อยู่เฉพาะภายใน .contact-section เท่านั้น */
.contact-section {
  color: #fff;
  text-align: center;
  padding: 80px 0;
  /* ไม่กำหนด font-family ที่นี่ แต่จะกำหนดเฉพาะภายในแต่ละ element */
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-section .title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: transparent;
  margin-bottom: 30px;
  line-height: 1.2;

  background: linear-gradient(270deg, #c69214, #d30528, #c69214);
  background-size: 600% 100%;
  background-repeat: no-repeat;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: animateContactGradient 4s ease-in-out infinite;
}

@keyframes animateContactGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.contact-section .cta-container {
  background: linear-gradient(to right, #c69214, #d30528);
  border-radius: 30px;
  padding: 15px 30px;
  box-shadow: 0 4px 15px rgba(198, 146, 20, 0.5); /* ทองอมส้มในเงา */
  display: inline-block;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .cta-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(198, 146, 20, 0.7); /* เงามากขึ้นเมื่อ hover */
}


.contact-section .cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* ปรับปรุงการจัดวาง contact details */
.contact-section .contact-details {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  min-width: 250px;
}

.contact-section .contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: background-color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.contact-section .contact-info .info-item:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.contact-section .contact-info img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ปรับปรุงการจัดวาง QR codes */
.contact-section .qr-codes {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-section .qr-code {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.contact-section .qr-code:hover {
  transform: translateY(-5px);
}

.contact-section .qr-code img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-section .qr-code p {
  font-weight: 500;
  margin: 0;
}

/* ปรับปรุง footer */
.contact-section .footer {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.contact-section .company-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFA500;
  margin: 0;
  letter-spacing: 1px;
}

.contact-section .established {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 10px 0 0 0;
  letter-spacing: 2px;
}

/* Responsive Design - ปรับปรุงให้ดีขึ้น */
@media (max-width: 1024px) {
  .contact-section .contact-details {
    gap: 40px;
  }
  
  .contact-section .title {
    font-size: 2.5rem;
  }
  
  .contact-section .cta-text {
    font-size: 1.3rem;
  }
  
  .contact-section .qr-code img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section .contact-details {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .contact-section .contact-info {
    width: 100%;
    max-width: 400px;
  }
  
  .contact-section .title {
    font-size: 2rem;
  }
  
  .contact-section .cta-container {
    padding: 12px 25px;
  }
  
  .contact-section .cta-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-section .title {
    font-size: 1.7rem;
  }
  
  .contact-section .qr-codes {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-section .contact-info .info-item {
    padding: 8px;
  }
  
  .contact-section .company-name {
    font-size: 1.5rem;
  }
  
  .contact-section .established {
    font-size: 0.9rem;
  }
}
  /* ปรับสีข้อความ "WhatsApp" และ "Social Media" */
  .contact-section .qr-code p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #fff; /* สีขาว */
    margin-top: 10px;
    transition: color 0.3s ease;
  }

  .contact-section .qr-code:hover p {
    color: #d30528; /* สีแดงเข้มเมื่อ hover */
  }
  
  /* เพิ่มสไตล์สำหรับอีเมลและเบอร์โทรศัพท์ */
.contact-section .contact-info a {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff; /* สีขาว */
  transition: color 0.3s ease;
}

.contact-section .contact-info a:hover {
  color: #d30528; /* สีแดงเมื่อ hover */
}

 
/* Inquiry Section - แบบเรียบง่าย */
.contact-section .inquiry-section {
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section .inquiry-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}

.contact-section .inquiry-link {
  font-family: 'Inter', sans-serif; /* ฟอนต์เหมือนกับ inquiry-description */
  font-size: 1.2rem; /* ขนาดฟอนต์เท่ากัน */
  font-weight: 600;
  text-decoration: none;
  color: #FFA500;
  transition: color 0.3s ease;
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.contact-section .inquiry-link:hover {
  color: #d30528;
  border-bottom-color: #d30528;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-section .inquiry-section {
    margin-top: 30px;
    padding: 15px 0;
  }
  
  .contact-section .inquiry-description {
    font-size: 1.1rem;
  }

  .contact-section .inquiry-link {
    font-size: 1.1rem; /* ขนาดฟอนต์ของลิงค์เล็กลงเมื่อหน้าจอเล็กลง */
  }
}

@media (max-width: 480px) {
  .contact-section .inquiry-description {
    font-size: 1rem;
  }
  
  .contact-section .inquiry-link {
    font-size: 1rem; /* ขนาดฟอนต์เท่ากัน */
  }
}/* End custom CSS */
/* Start custom CSS for section, class: .elementor-element-6c0aa36 */.elementor-9874 .elementor-element.elementor-element-6c0aa36 {
  --opacity: 1.5; /* ปรับค่า opacity ที่นี่ */
  background: linear-gradient(to top right, rgba(77, 0, 3, var(--opacity)), rgba(43, 0, 3, var(--opacity)));
}/* End custom CSS */