  :root {
      --primary: #daac4d;
      --secondary: #9B9B9B;
      --light: #fdf0de;
      --dark: #591410;
  }

  body {
      font-family: 'Open Sans', sans-serif;
      color: var(--secondary);
  }





  h1,
  h2,
  h3,
  h4,
  h5 {
      font-family: 'Roboto', sans-serif;
      color: var(--dark);
      line-height: 1.3;
  }




  .btn-custom {
      background: var(--primary);
      color: var(--dark);
      border-radius: 50px;
      padding: 15px 30px;
      font-weight: 500;
      transition: all 0.3s ease;
  }

  .btn-custom:hover {
      background: var(--dark);
      color: #fff;
  }

  .section-light {
      background: var(--light);
  }

  .section-dark {
      background: var(--dark);
      color: var(--light);
  }



  /* ✅ Shine Effect แบบแสงวิ่งเฉียง */
  .btn-custom {
      position: relative;
      background: var(--primary);
      color: var(--dark);
      border-radius: 50px;
      padding: 15px 30px;
      font-weight: 500;
      overflow: hidden;
  }

  .btn-custom::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -75%;
      width: 50%;
      height: 200%;
      background: rgba(255, 255, 255, 0.4);
      transform: rotate(25deg);
      /* ✅ แสงเฉียง */
      animation: shineEffect 2.5s infinite linear;
  }

  @keyframes shineEffect {
      0% {
          left: -75%;
      }

      100% {
          left: 125%;
      }
  }

  /* ✅ หยุด animation ตอน hover */
  .btn-custom:hover::before {
      animation-play-state: paused;
  }









  /* ✅ Navbar */
  .navbar {
      background: var(--dark);
      padding: 0.5rem 1rem;
  }

  /* โลโก้ */
  .navbar-brand {
      display: flex;
      align-items: center;
      /* จัดกึ่งกลางแนวตั้ง */
  }

  .navbar-brand img {
      height: 50px;
      width: 100px;
      display: block;
      /* กัน margin/padding แปลกๆ */
  }

  /* Responsive โลโก้เล็กลงในมือถือ */
  @media (max-width: 768px) {
      .navbar-brand img {
          height: 50px;
      }
  }


  .page-header {
      position: relative;
      background: linear-gradient(rgba(22, 22, 22, 0.7), rgba(22, 22, 22, 0.7)),
          url("img/dost.jpg") center center/cover no-repeat;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  /* ให้ข้อความอยู่เหนือ overlay */
  .page-header .container {
      position: relative;
      z-index: 2;
  }

  /* Responsive เหมือน index */
  @media (max-width: 768px) {
      .page-header h1 {
          font-size: 30px;
          font-weight: 600;
      }

      .page-header p {
          font-size: 14px;
          font-weight: 400;
      }
  }



  /* Hero */
  .hero-section {
      position: relative;
      background-image: url("../img/slider-1.jpg");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
  }

  .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      /* ความจาง */
      z-index: 1;
  }

  .hero-section .container {
      position: relative;
      z-index: 2;
      /* ให้ข้อความอยู่เหนือ overlay */
  }


  /* ให้ข้อความอยู่เหนือ overlay */
  .page-header .container {
      position: relative;
      z-index: 2;
  }

  /* Responsive เหมือน index */
  @media (max-width: 768px) {
      .page-header h1 {
          font-size: 30px;
          font-weight: 600;
      }

      .page-header p {
          font-size: 14px;
          font-weight: 400;
      }
  }

  /* ✅ Hero Fonts */
  .hero-section h1 {
      font-size: 56px;
      /* ใหญ่ขึ้น */
      font-weight: 700;
      line-height: 1.2;
  }

  .hero-section p {
      font-size: 16px;
      /* เล็กลง */
      font-weight: 400;
      /* เบาลง */
      line-height: 1.6;
      max-width: 500px;
      /* ไม่กว้างเต็มจอ */
      margin: 0 auto;
  }

  /* ✅ Responsive */
  @media (max-width: 768px) {
      .hero-section h1 {
          font-size: 36px;
          /* ย่อสำหรับมือถือ */
      }

      .hero-section p {
          font-size: 13px;
      }
  }


  /*** Feature ***/

  /* ✅ Mobile & Tablet (default) */
  .feature-text {
      text-align: start;
      /* ตัวอักษรชิดซ้าย */
  }

  /* ✅ Desktop */
  @media (min-width: 992px) {
      .container.feature {
          max-width: 1140px;
          /* ใช้ขนาด container ปกติ */
          margin: 0 auto;
          /* จัดกลาง */
      }

      .feature-text {
          text-align: center;
          /* desktop ให้ข้อความอยู่กลาง */
          padding-left: 0;
          /* รีเซ็ต padding เดิม */
          padding-right: 0;
      }
  }

  @media (min-width: 1400px) {
      .container.feature {
          max-width: 1320px;
      }
  }





  .social-link {
      color: #eee;
      transition: color 0.3s ease;
  }

  .social-link:hover {
      color: #d4af37;
      /* สีทองตอน hover */
  }

  /* Hover effect for footer links */
  .section-dark a {
      transition: color 0.3s ease;
  }

  .section-dark a:hover,
  .section-dark .social-link:hover {
      color: #daac4d !important;
  }



  .contact-link {
      transition: all 0.2s ease-in-out;
      font-weight: 400;
      /* ปกติ */
      color: inherit;
      /* ใช้สีเดิม */
      text-decoration: none;
  }

  .contact-link:hover {
      font-weight: 800;
      /* ตัวหนา */
      color: inherit;
      /* คงสีเดิม ไม่เปลี่ยน */
  }






  /* WhatsApp Button - ขวาล่าง */
  .whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      background: #25d366;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  /* ✅ Pulse effect */
  .whatsapp-btn.pulse::after {
      content: "";
      position: absolute;
      width: 50px;
      height: 50px;
      top: 0;
      left: 0;
      border-radius: 50%;
      background: rgba(37, 211, 102, 0.5);
      animation: pulseWhatsapp 1.5s infinite;
      z-index: -1;
  }

  @keyframes pulseWhatsapp {
      0% {
          transform: scale(1);
          opacity: 0.7;
      }

      70% {
          transform: scale(1.8);
          opacity: 0;
      }

      100% {
          transform: scale(1);
          opacity: 0;
      }
  }

  /* WhatsApp Bubble */
  .whatsapp-bubble {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 280px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      display: none;
      z-index: 1000;
      animation: fadeInUp 0.5s ease forwards;
  }

  /* Bubble Header */
  .whatsapp-bubble .bubble-header {
      background: #25d366;
      color: #fff;
      font-weight: bold;
      padding: 12px;
      font-size: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  /* Bubble Body */
  .whatsapp-bubble .bubble-body {
      padding: 12px;
      font-size: 14px;
      color: #333;
      line-height: 1.4;
  }

  /* ปุ่ม X */
  .bubble-close {
      cursor: pointer;
      font-size: 18px;
  }

  /* Fade-in Effect */
  @keyframes fadeInUp {
      0% {
          opacity: 0;
          transform: translateY(20px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }



  /* Default: จอใหญ่จัดกลาง */
  .text-responsive {
      text-align: center;
  }

  /* มือถือ (<768px) จัดชิดซ้าย */
  @media (max-width: 768px) {
      .text-responsive {
          text-align: left !important;
      }
  }


  .brand-logo {
      max-height: 60px;
      object-fit: contain;
  }


