.elementor-20 .elementor-element.elementor-element-469ec92{--display:grid;--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-20 .elementor-element.elementor-element-f76e810{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-20 .elementor-element.elementor-element-469ec92{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-20 .elementor-element.elementor-element-469ec92{--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for html, class: .elementor-element-f5fe22b *//* นำเข้าฟอนต์ (ถ้าในเว็บมีอยู่แล้ว สามารถลบออกได้) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@400;600;700&family=Poppins:wght@600;800&display=swap');

.tfl-footer {
  width: 100%;
  background-color: #1e1b4b; /* สีน้ำเงินเข้ม/ม่วงเข้ม ตามรูป */
  color: #ffffff;
  font-family: 'Noto Sans Lao', sans-serif;
  padding: 60px 24px 20px 24px;
  box-sizing: border-box;
}

.tfl-footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* โครงสร้าง Grid สำหรับ Desktop */
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1.2fr 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 50px;
}

/* --- ส่วนโลโก้และรายละเอียด (Col 1) --- */
.footer-logo {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 20px;
}

.plus-icon {
  color: #f5a623; /* สีเหลืองส้ม */
  font-size: 24px;
  margin-left: 2px;
  margin-top: -4px;
}

.footer-desc {
  color: #a5a6c4; /* สีข้อความเทาอมม่วง */
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  max-width: 320px;
}

/* ปุ่มโซเชียล */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #312e61;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #4a478a;
  transform: translateY(-2px);
}

/* --- ส่วนเมนูลิงก์ (Col 2, 3, 4) --- */
.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 16px;
}

.footer-menu a {
  text-decoration: none;
  color: #a5a6c4;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-menu a:hover {
  color: #ffffff;
}

/* --- ส่วนดาวน์โหลดแอป (Col 5) --- */
.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: max-content;
}

.btn-download:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-text .small-text {
  font-size: 9px;
  line-height: 1.2;
  font-family: sans-serif;
}

.btn-text .large-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

/* --- ส่วนลิขสิทธิ์ (Bottom) --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: left;
}

.footer-bottom p {
  color: #a5a6c4;
  font-size: 14px;
  margin: 0;
}

/* ==========================================
   RESPONSIVE (รองรับมือถือและแท็บเล็ต)
   ========================================== */

/* หน้าจอแท็บเล็ต (Tablet < 1024px) */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: span 3; /* ให้โลโก้กินพื้นที่เต็มแถวแรก */
    max-width: 100%;
  }
  .footer-desc {
    max-width: 600px;
  }
}

/* หน้าจอมือถือ (Mobile < 768px) */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr; /* เปลี่ยนเป็นเรียง 1 คอลัมน์ (บนลงล่าง) */
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    text-align: center; /* จับข้อความลิขสิทธิ์กึ่งกลางในมือถือ */
  }

  /* ปรับปุ่มดาวน์โหลดแอปให้ขยายเต็มความกว้าง */
  .app-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .btn-download {
    width: 100%;
    justify-content: center;
  }
}ิ/* End custom CSS */