/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #C6A969;
  --secondary: #00453F;
  --text-dark: #292524;
  --gray: #71717B;
  --background: #FAF9F3;
  --accent: #2B7FFF;
}

body {
  font-family: 'Inter';
}

html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway';
}

/* Navbar */
/* Default navbar layout */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  /* Semi-transparent white */
  backdrop-filter: blur(15px);
  /* Frosted glass blur effect */
  -webkit-backdrop-filter: blur(15px);
  /* Safari support */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* Optional subtle shadow */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  /* Optional subtle border */
  z-index: 999;
  /* Ensure it stays above content */
}


.nav-links,
.nav-buttons,
.menu-toggle,
.mobile-menu {
  transition: all 0.3s ease;
}



.nav-buttons .login-btn,
.nav-buttons .trial-btn {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu a,
.mobile-menu .login-btn {
  margin: 10px 0;
}

/* Tablet view */
@media (max-width: 992px) {

  .nav-links,
  .nav-buttons .trial-btn {
    display: none;
    /* Hide links & trial button */
  }

  .nav-buttons .login-btn {
    display: inline-block;
    /* Keep Login button */
  }

  .menu-toggle {
    display: block;
    /* Show hamburger */
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .nav-buttons .login-btn {
    display: none;
    /* Hide Login button too */
  }
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #697077;
  text-decoration: none;
}

.logo-img {
  height: 20px;
  margin-right: 8px;
  /* space between image and text */
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

.nav-buttons button {
  margin-left: 15px;
  padding: 8px 20px;
  border: 1px solid #b08d3d;
  border-radius: 8px;
  height: 56px;
  cursor: pointer;
}

.login-btn {
  background: transparent;
  color: #C6A969;
  border: 2px solid black;
  border-radius: 8px;
  width: 118px;
  font-size: 20px;
}

.trial-btn {
  background: #C6A969;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  height: 56px;
  width: 212px;
  font-size: 20px;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* สำคัญ! ให้ wrap เวลาแคบ */
  gap: 40px;
  /* ระยะห่างระหว่าง content กับ image */
  padding: 80px 60px;
}

.hero-content {
  flex: 1;
  min-width: 280px;
  max-width: 800px;
}


.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
  color: #00453F;
  letter-spacing: 0;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-content .trial-btn {
  padding: 12px 24px;
}


.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
  /* จัดภาพให้อยู่กลางเมื่อ column */
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    /* เปลี่ยนเป็น stack */
    text-align: center;
    /* จัดข้อความ & รูปให้อยู่กลาง */
    padding: 110px 30px;
    /* ลด padding สำหรับมือถือ */
    height: 1068px;
    background-color: #FAF9F3;

  }

  .hero-content {
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 46px;
    /* slightly smaller on small screens */
    margin-bottom: 40px;
  }

  .hero-content p {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .hero-content .trial-btn {
    padding: 10px 20px;
  }

  .hero-image {
    width: 100%;
    margin-top: 20px;
    /* ระยะห่างรูปกับข้อความ */
  }

  .hero-image img {
    width: 100%;
    /* ให้รูปขยายเต็ม container */
    height: auto;
    /* รักษาสัดส่วน */
  }
}

@media (max-width: 435px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* สำคัญ! ให้ wrap เวลาแคบ */
    gap: 60px;
    /* ระยะห่างระหว่าง content กับ image */
    height: 932px;
    padding: 30px 30px;
    /* ลด padding สำหรับมือถือ */
    background-color: #FAF9F3;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 50px;
  }
}



/* Section 2: Intro */
.intro-section {
  background-color: #00453F;
  /* Dark green */
  color: #d4af37;
  /* Gold for heading */
  text-align: center;
  padding: 200px 40px;
  height: 799px;
}

.intro-section .mainp {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  color: #C6A969;
  font-family: 'Raleway';
}

.intro-section .supp {
  font-size: 20px;
  font-weight: 300;
  color: #FFFFFF;
  font-family: 'inter';
}

.intro-section h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 40px;
  color: #C6A969;
}

.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.intro-divider .line {
  flex: 1;
  height: 2px;
  background: #d4af37;
  max-width: 400px;
}

.intro-divider img {
  margin: 0 20px;
  height: 116px;
  width: 150px;
}

.intro-section p {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.4;
  font-size: 16px;
}



/* Section 3: Features */
.features-section {
  background-color: #DFFBED;
  text-align: center;
  padding: 100px 40px;
}

.features-section h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: #18181B;
  font-weight: 400;
}

.features-subtitle {
  color: #555;
  margin-bottom: 85px;
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Desktop = 3 columns */
  gap: 70px 115px;
  padding: 0 150px;
}

/* ✅ Tablet & Mobile: force to 1 column */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 100px;
    padding: 0 175px;
  }

  .intro-section p {
    max-width: 750px;
  }

  .intro-section {
    height: 850px;
  }

}
@media (max-width: 922px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 100px;
    padding: 0 175px;
  }


}


@media (max-width: 435px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 100px;
    padding: 0 20px;
  }
  .feature-item p {
  color: #52525B;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}
  .intro-section {
    height: 1000px;
    padding: 100px 30px
  }

  .intro-section p {
    max-width: 350px;
    text-align: center;
  }

  .intro-section h2 {
    font-size: 40px;

  }

  .intro-section .mainp {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #C6A969;
    font-family: 'Figtree';
  }

  /* .feature-item{
    padding: 40px 0px;
  } */

}

.feature-item {
  /* background: #fff; */
  /* padding: 40px 20px; */
  border-radius: 10px;
  /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item img {
  height: 50px;
  margin-bottom: 50px;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #18181B;
}

.feature-item p {
  color: #52525B;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}






/* ===== FEATURE DUO SECTION ===== */

.feature-duo {
  background-color: #f9f7f1;
  padding: 100px 40px;
}

.feature-row {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 80px;
  padding: 10px 100px;
}

@media (max-width: 435px) {
  .feature-row {
    padding: 0;
    gap: 10px;
    margin-bottom: 5px;

  }

  .image-content {
    width: 300px;
    text-align: center;
    overflow: hidden;

  }


}

.feature-row.reverse {
  flex-direction: row-reverse;
  /* Desktop reverse */
}

.text-content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.fullycontrol-icon {
  width: 48px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.feature-row ul {
  margin-left: 30px;
  margin-top: 15px;
}

.feature-row ul li {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 300;
  color: #292524;
}

.text-content h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #262626;
  font-weight: 400;
}

.text-content p {
  font-size: 20px;
  font-weight: 300;
  max-width: 500px;
  line-height: 3;
  color: #292524;
}

.image-content {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 922px) {
  .text-content {

  max-width: 1000px;
}
  .feature-row {
    text-align: left;
    padding: 10px 10px;
  flex-direction: column;
  }
  .image-content {
  text-align: left;
}
.text-content p{
  max-width: 1000px;
  font-size: 20px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
  /* Desktop reverse */
  padding: 60px 60px;
}
.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
}

/* ===== Responsive: Tablet & Mobile ===== */
@media (max-width: 768px) {
  .feature-row {
    flex-direction: column;
    /* Always stack: text on top */
    text-align: left;
    padding: 10px 10px;
    
  }

  .text-content {
  max-width: 800px;
}

  .feature-row.reverse {
    flex-direction: column;
    /* Force normal stack for reverse too */
    padding: 0;
  }

  .text-content {
    max-width: 100%;
    text-align: left;
  }

  .image-content {
    width: 100%;
    margin-top: 20px;
  }

  .image-content img {
    width: 100%;
    height: auto;
  }
  .feature-row ul {
    margin-left: 30px;
    margin-top: 15px;
  }

  .feature-row ul li {
    margin-bottom: 15px;
    text-align: left;
  }

}


/* Pricing Section */
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}

.pricing-section {
  background: #e6f7f0;
  text-align: center;
  padding: 100px 40px;
}

.pricing-section h2 {
  font-size: 42px;
  color: #153d35;
  margin-bottom: 24px;
  font-weight: 400;
}

.pricing-subtitle {
  color: #0B4F4A;
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 300;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 50px 30px;
  flex: 1;
  max-width: 400px;
  min-height: 750px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 22px;
  color: #C6A969;
  font-weight: 600;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
}

.pricing-card .price {
  font-size: 60px;
  font-weight: 700;
  color: #292524;
  margin-bottom: 35px;
}

.pricing-card .price small {
  font-size: 16px;
  font-weight: normal;
  color: #555;
}

.pricing-card .price .smalls {
  font-size: 16px;
  font-weight: normal;
  font-weight: 400;
  color: #292524;
}

.pricing-card .price sup {
  font-size: 20px;
  font-weight: 400;
  vertical-align: super;
}

.pricing-card p {
  font-size: 16px;
  color: #71717B;
  margin-bottom: 35px;
  font-weight: 300;
}

.team-size {
  margin-bottom: 30px;
  color: #292524 !important;
  font-size: 16px;
  font-weight: 400 !important;

}

.team-btn {
  background: white;
  border: none;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 5px;
  width: 80px;
  height: 40px;
  border: 1px solid #CAD5E2;
  font-size: 16px;
  color: #62748E;
}

.team-btn.active {
  background: #F1F5F9;
  /* gold highlight */
  color: black;
  border: 1px solid black;
}


.pricing-card ul {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 50px;
}

.pricing-card ul li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  list-style: none;

}

.pricing-card ul li::before {
  color: #7CCF00;
  /* green checkmark */
  margin-right: 10px;
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 12px;
  background-image: url('image/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-card hr {
  border: none;
  border-top: 1px solid #D1D5DC;
  margin: 20px -30px;
  /* ลบ padding ซ้าย-ขวาออก (ถ้า .pricing-card มี padding: 30px) */
  width: auto;
}

.start-btn {
  width: 100%;
  max-width: 320px;
  /* keeps max width on big screens */
  height: 56px;
  padding: 16px;
  border-radius: 8px;
  background: #C6A969;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'Inter';
}

.start-btns {
  width: 100%;
  max-width: 320px;
  /* keeps max width on big screens */
  height: 56px;
  padding: 16px;
  border-radius: 8px;
  background: #00453F;
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, transform 0.2s ease;
  font-family: 'Inter';
}

.start-btn:hover {
  background: #b29050;
  transform: translateY(-2px);
}

.start-btns:hover {
  background: #09443c;
  transform: translateY(-2px);
}

.start-btn:active {
  transform: translateY(0);
}

.ribbon-wrapper {
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  overflow: visible;
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -20px;
  background: #F12532; /* red */
  color: white;
  padding: 5px 30px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  /* transform: rotate(45deg); */
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 10;
}

.top-right-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F12532;
  color: white;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px 0 4px 0;
  font-family: 'Inter', sans-serif;
  z-index: 2;
}

.top-right-label::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 14px solid #F12532;
  border-left: 8px solid transparent;
}

.ribbon-banner {
  position: absolute;
  top: 20px;
  right: -20px;
  background: #ff5c5c; /* soft red */
  color: white;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  padding: 8px 20px;
  border-radius: 6px 0 0 6px;
  z-index: 2;
}

/* Triangle tail */
.ribbon-banner::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-top: 20px solid #b80000; /* darker red triangle */
  transform: rotate(270deg);
}


/* Responsive: ถ้าจอเล็กกว่าปุ่ม → ให้กว้าง 100% */
@media (max-width: 350px) {
  .start-btn {
    width: 100%;
  }

}






.pricing-card:nth-child(2) .start-btn,
.pricing-card:nth-child(3) .start-btn {
  background: #C6A969;
  /* gold for paid plans */
}

.saving-badge {
  background: #2B7FFF;
  color: #FFFFFF;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 12px;
  margin-left: 10px;
  font-weight: 400;
  font-family: 'Inter';
}


/* PM */
@media (max-width: 992px) {
  .pricing-cards {
    flex-direction: row;
    align-items: center;
  }

  .pricing-card {
    max-width: 50%;
  }
  .pricing-card:hover {
  transform:none ;
  box-shadow: none;
}

}


.mobile-only {
  display: none;
}

/* แสดง dropdown เฉพาะมือถือ */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
    margin-top: 10px;
  }

  .team-size-select {
    width: 50%;
    padding: 6px;
    font-size: 1rem;
    border: none;
    color: #2B7FFF;
  }
   .team-size {
    display: none !important;
  }
}


@media (max-width: 435px) {
.pricing-card .price {
  font-size: 60px;
  font-weight: 700;
  color: #292524;
  margin-bottom: 35px;
}
.saving-badge {
  background: #2B7FFF;
  color: #FFFFFF;
  font-size: 10px;
  padding: 6px 12px;
  border-radius: 12px;
  margin-left: 10px;
  font-weight: 400;
  font-family: 'Inter';
}
  .plan-monthly .price {
  font-size: 40px !important;
  font-weight: 700;
  color: #292524;
  margin-bottom: 35px;
}
 .plan-yearly .price {
  font-size: 40px !important;
  font-weight: 700;
  color: #292524;
  margin-bottom: 35px;
}


  .pricing-cards {
    flex-direction: row;
    align-items: center;
    gap: 0px;
  }

  .pricing-card:hover {
  transform:none ;
  box-shadow: none;
}

  .pricing-section {
    padding: 100px 10px;
    background-color: white;
  }

  .pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 15px;
    flex: 1;
    max-width: 50%;
    text-align: left;
    position: relative;
    border: none;
    box-shadow: none;
  }

  .plan-free {
    border: 1px solid #00453F !important;
  }

}


.currency-switcher {
  text-align: right;
  margin-bottom: 20px;
  outline: none;
}

.currency-switcher select {
  background: transparent;
  border: none !important;
  font-size: 14px;
  color: #1D293D;
  font-weight: 400;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  padding: 5px 15px;


}

.currency-switcher select:focus {
  outline: none;
}






/* Section 6: Contact Us */
.contact-section {
  background: #09443c;
  /* ตามเดิม */
  padding: 120px 40px;
}

.contact-box {
  background: #fff;
  padding: 60px 30px 60px 60px;
  border-radius: 10px;
  max-width: 932px;
  margin: 0 auto;
}


.contact-left h2 {
  color: #333;
  margin-bottom: 20px;

}

.contact-left p {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #292524;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 15px;
  font-weight: 400;
}

.contact-left p img {
  width: 20px;
  margin-right: 10px;
}

.contact-img {
  width: 60px;
  margin-bottom: 20px;
}

.diamond-icons img {
  width: 120px;
  margin-left: 25px;
}

.contact-form {
  flex: 1.5;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 15px 0 15px;
  font-size: 16px;
  font-weight: 400;
  color: #404040;
  font-family: 'Raleway';
}

.contact-form label::after {
  content: '';
}

.required {
  color: #F12532 !important;
  font-size: 0.7em;
  vertical-align: super;
  /* เพิ่มเผื่อบาง browser ไม่รองรับ <sup> ดี */
  margin-left: 1px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 500px;
  height: 40px;
  max-width: 100%;
  /* prevent overflow on small screens */
  font-family: 'Inter';
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0px;
  width: 97%;
}

.custom-select-wrapper {
  position: relative;
  width: 100px;
  height: 100%;
  border-right: 1px solid #ccc;
  color: #71717B;
  font-family:'Inter' ;
  font-size: 12px;
}

.custom-select {
  display: flex;
  align-items: center;
  justify-content:left;
  padding: 5px 15px;
  cursor: pointer;
  background: white;
  height: 100%;
  font-size: 12px;
}

.custom-select img.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 5px;
}

.dropdown-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: auto; /* ให้ไปชิดขวา */
}

.custom-options {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  z-index: 99;
  width: 150px;
  max-height: 200px;
  overflow-y: auto;
  color: #52525B;
}

.custom-options.show {
  display: block;
}

.option {
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.option:hover {
  background-color: #f0f0f0;
}
@media (max-width: 922px) {
  .phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
  }

  .contact-form button {
    margin-top: 20px;
    background: #C6A969;
    /* Gold */
    color: #fff;
    border: none;
    padding: 12px 12px 12px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
  }

  .contact-left,
  .contact-form {
    min-width: 200px !important;
    max-width: 300px;
  }
  .contact-form button {
  width: 100% !important;
  }

}

@media (max-width: 435px) {
  .contact-box {
  padding: 60px 15px 60px 15px;

}
  .phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
  }

  .contact-form button {
    margin-top: 20px;
    background: #C6A969;
    /* Gold */
    color: #fff;
    border: none;
    padding: 12px 12px 12px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
  }

  .contact-left,
  .contact-form {
    min-width: 200px !important;
    /* smaller minimum width */
    max-width: 300px;
    /* limit maximum width */
  }
}



.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form button {
  margin-top: 20px;
  background: #C6A969;
  /* Gold */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  width: 97%;
  display: inline-flex;
  /* ✅ ใช้ Flexbox */
  align-items: center;
  /* ✅ จัดแนวกลางแนวตั้ง */
  justify-content: center;
  /* ✅ จัดให้อยู่กลางแนวนอน */
  gap: 8px;
  font-family: 'Raleway';
  /* ✅ เว้นระยะระหว่าง SVG กับข้อความ */
}



.phone-input select {
  border: none;
  padding: 10px;
  background: #f9f9f9;
  cursor: pointer;
  height: 40px;
}

.phone-input input {
  flex: 1;
  border: none;
  padding: 10px;
  height: 40px;
}

.phone-input select:focus,
.phone-input input:focus {
  outline: none;
}


.contact-heading {
  text-align: left;
  margin-bottom: 40px;
  color: #292524;
  font-size: 36px;
  font-weight: 400;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.contact-left,
.contact-form {
  min-width: 300px;
  /* smaller minimum width */
  max-width: 600px;
  /* limit maximum width */
}


/* Section 7: Footer */
.footer {
  background: #f9f7f1;
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  color: #333;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column p {
  margin: 10px 0;
}

.footer-column a {
  display: block;
  color: #333;
  text-decoration: none;
  margin: 15px 0;
}

.footer-logo {
  height: 30px;
  margin: 10px 0;
}

.footer-social a img {
  width: 20px;
  margin-right: 20px;
}

.footer-social {
  display: flex;
  margin: 10px 0;
}

.footer-column strong {
  font-size: 14px;
}

/* Move first footer column to last on tablet & mobile */
@media (max-width: 992px) {
  .footer-column:first-child {
    order: 4;
    /* push it to the end */
  }
}


/* Container รวม subtitle + switcher */
.pricing-section-header {
  display: flex;
  justify-content: space-between;
  /* Title left, switcher right */
  align-items: center;
  flex-wrap: wrap;
  /* ถ้าแคบมาก switcher จะดันลงข้างล่าง auto */
  margin-bottom: 60px;
}

/* Container flex: Subtitle + Switcher */
.pricing-subtitle-wrapper {
  display: flex;
  justify-content: center;
  /* center by default */
  align-items: center;
  position: relative;
  /* เพื่อจัด switcher แบบ absolute ขวา */
  margin-bottom: 60px;
}

/* Subtitle = Centered */
.pricing-subtitle {
  margin: 0;
  font-size: 18px;
  color: #0B4F4A;
  text-align: center;
  /* เผื่อบรรทัดยาว */
}

/* Switcher = Absolute Right */
.currency-switcher {
  position: absolute;
  right: 0;
  border: none;
}

.currency-switcher select {
  background: transparent;
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive: ถ้าจอเล็ก ให้เรียงบนล่าง */
@media (max-width: 600px) {
  .pricing-subtitle-wrapper {
    flex-direction: column;
    align-items: center;
    position: static;
    /* ยกเลิก absolute ในจอเล็ก */
    gap: 10px;
  }

  .currency-switcher {
    position: static;
    margin-top: 10px;
  }
}


/* ซ่อน switcher บน PC */
.plan-switcher {
  display: none;
  background: #f8f5eb;
  border-radius: 999px;
  padding: 5px;
  margin-bottom: 40px;
}

.plan-btn {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.plan-btn.active {
  background: #c6a969;
  color: #fff;
}

/* Show switcher only Tablet & Mobile */
@media (max-width: 992px) {
  .plan-switcher {
    display: inline-flex;
  }
}

/* For hide/show cards */
.hidden {
  display: none !important;
}