/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* เอา font-family ออกจาก * เพื่อไม่บังคับทุก element */
}

body {
  font-family: 'Prompt', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

/* กำหนดฟ้อนต์หัวข้อให้ใช้ Libertinus Serif ตัวหนา */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libertinus Serif', serif;
  font-weight: 700; /* ตัวหนา */
  color: #333; /* หรือสีอื่นตามต้องการ */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }


.bg-light {
  background: #f9f9f9;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-weight: 600;
  font-size: 1.4rem;
  color: #4dc4d2;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #4dc4d2;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url('assets/img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #ffffff; /* เปลี่ยนสีข้อความเป็นเข้มสำหรับพื้นหลังสว่าง */
  text-align: center;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9) 0%,    /* ขาวทึบที่ด้านบน */
    rgba(255, 255, 255, 0.4) 60%,   /* ขาวโปร่งแสงกลาง */
    rgba(255, 255, 255, 0) 100%     /* โปร่งแสงเต็มที่ด้านล่าง */
  );
  z-index: -1;
}



.hero-content {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
}

.hero h1,
.hero p {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Headings */
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4dc4d2;
}

/* Content Blocks */
section p,
section ul {
  font-size: 1.05rem;
  margin: 0.5rem 0;
}

ul {
  padding-left: 1.2rem;
}

ul li {
  margin-bottom: 0.6rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 0;
  font-size: 0.95rem;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 10px;
  }
}

/* Contact Section Styles (Safe Scope) */
.contact-section-celebspa {
  padding: 60px 20px;
  background: #ffffff;
}

.contact-section-celebspa .contact-container-celebspa {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
}

.contact-section-celebspa .contact-card-celebspa {
  background: #f9fcff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  flex: 1 1 400px;
  margin-bottom: 20px;
}

.contact-section-celebspa .contact-card-celebspa i {
  color: #00BCD4;
  margin-right: 8px;
}

.contact-section-celebspa .contact-link-celebspa {
  color: #00BCD4;
  text-decoration: none;
}

.contact-section-celebspa .contact-link-celebspa:hover {
  text-decoration: underline;
}
/* About CelebSpa Section Styling - Scoped */
.about-celebspa {
  background: #f9fcff;
  padding: 60px 0;
}

.about-block-celebspa {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

.about-block-celebspa:hover {
  transform: translateY(-4px);
}

.about-subtitle-celebspa {
  color: #00BCD4;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mission-list-celebspa {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.mission-list-celebspa li {
  margin-bottom: 1rem;
}

.section-title-celebspa {
  font-size: 2rem;
  color: #00BCD4;
  margin-bottom: 2rem;
  text-align: center;
}

.small-text-celebspa {
  font-size: 0.9rem;
  font-weight: normal;
  color: #777;
}
.centered-intro {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.about-belief-block .about-belief-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: #555; /* สีเทาเข้มจางกว่าดำ */
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.about-belief-block .about-belief-text strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333; /* ให้ข้อความไทยเข้มขึ้นเล็กน้อย */
}
.about-belief-block .about-belief-text em {
  font-size: 1.2rem;
  color: #666;
  font-style: italic;
}
.mission-list-celebspa li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.mission-list-celebspa li i {
  color: #00BCD4;
  font-size: 1.2rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.mission-list-celebspa .text-content {
  flex: 1;
}

.mission-list-celebspa .thai-text {
  font-weight: 600;
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
  line-height: 1.4;
}

.mission-list-celebspa .eng-text {
  font-weight: 400;
  color: #555;
  font-size: 0.95rem;
  font-family: 'Prompt', sans-serif;
  line-height: 1.3;
  margin: 0;
}

/* Responsive: บนมือถือลดขนาดข้อความเล็กลง */
@media (max-width: 600px) {
  .mission-list-celebspa li {
    gap: 0.6rem;
  }

  .mission-list-celebspa .thai-text {
    font-size: 1rem;
  }

  .mission-list-celebspa .eng-text {
    font-size: 0.9rem;
  }
}
/* ...ส่วนอื่นๆ ตามที่คุณให้มา... */

/* ===== Service Slider Section (แก้ไข) ===== */
.service-slider-celebspa {
  max-width: 1120px; /* แสดง 3 กล่องเต็ม */
  margin: 0 auto 60px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.service-slider-celebspa-track {
  display: flex;
  transition: transform 0.5s ease;
}

.service-slider-celebspa-box {
  flex: 0 0 calc((100% / 3) - 13.33px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.12);
  padding: 20px 24px;
  margin-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.service-slider-celebspa-box:last-child {
  margin-right: 0;
}

.service-slider-celebspa-box h4 {
  font-family: 'Libertinus Serif', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #222;
}

.service-slider-celebspa-box h4 span {
  display: block;
  font-weight: 400;
  font-size: 1rem;
  color: #555;
  margin-top: 2px;
}

.service-slider-celebspa-box p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.service-slider-celebspa-box p i {
  font-style: italic;
  color: #777;
}

.service-slider-celebspa-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 4px;
  flex-grow: 1;
}

.service-slider-celebspa-box ul li {
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.service-slider-celebspa-box ul li i {
  color: #00BCD4; /* สีฟ้าไอคอน */
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ปุ่มเลื่อนซ้ายขวา (แบบเดิม) */
.service-slider-celebspa-buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  pointer-events: none;
}

.service-slider-celebspa-buttons button {
  pointer-events: all;
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00BCD4; /* สีฟ้าปุ่ม */
  font-size: 1.3rem;
}

.service-slider-celebspa-buttons button:hover {
  background: rgba(0,0,0,0.15);
}

.service-slider-celebspa-buttons .prev {
  left: 0;
}

.service-slider-celebspa-buttons .next {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .service-slider-celebspa {
    max-width: 540px; /* 2 กล่อง */
  }

  .service-slider-celebspa-box {
    flex: 0 0 calc((100% / 2) - 10px);
  }
}

@media (max-width: 480px) {
  .service-slider-celebspa {
    max-width: 280px; /* 1 กล่อง */
  }

  .service-slider-celebspa-box {
    flex: 0 0 100%;
    margin-right: 0;
    padding: 16px 20px;
  }
}
/* Aftercare Section Styling */
/* รีเซตเบื้องต้น */
.services-grid, .service-item, .celeb-wrapper, .celeb-club-box {
  box-sizing: border-box;
}

/* โครงตารางหลัก */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 คอลัมน์ */
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* กล่องบริการทั่วไป */
.service-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease;
}

.service-item i {
  font-size: 2rem;
  color: #a274ff;
}

/* ข้อความในบริการ */
.service-item strong {
  font-size: 1.25rem;
  color: #333;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

.service-item ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.service-item li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  color: #444;
}

.service-item li i {
  color: #28a745;
}

/* กล่อง Celeb Club */
.celeb-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.celeb-club-box {
  max-width: 320px;
  background-color: #fff;
  padding: 1.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.celeb-club-box i {
  font-size: 2rem;
  color: #f39c12;
  margin-bottom: 0.5rem;
}

/* Responsive สำหรับจอเล็ก */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .celeb-wrapper {
    margin-top: 1rem;
  }

  .celeb-club-box {
    max-width: 90%;
  }
}
.about-images {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: nowrap;
}

.about-images img {
  width: 30%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

/* ทำให้แต่ละรูปเลื่อนขึ้นและ fade-in แบบไล่เวลา */
.about-images img:nth-child(1) {
  animation-delay: 0.1s;
}

.about-images img:nth-child(2) {
  animation-delay: 0.3s;
}

.about-images img:nth-child(3) {
  animation-delay: 0.5s;
}

/* Animation keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive - ให้รูปเล็กลงและเรียงเป็นแถวเดียวบนมือถือ */
@media (max-width: 768px) {
  .about-images {
    gap: 1rem;
  }

  .about-images img {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .about-images {
    flex-wrap: wrap;
  }

  .about-images img {
    width: 90%;
    margin-bottom: 1rem;
  }
}
.about-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.delivery-card p:first-of-type {
  font-weight: 700;       /* หนา */
  font-size: 1.2rem;      /* ขยายขนาด */
  color: #00BCD4;         /* สีเด่น เช่น สีน้ำเงิน */
  margin-bottom: 0.3rem;  /* เว้นระยะจากบรรทัดถัดไป */
}
/* === Locations Section === */
.locations-section {
  padding: 80px 20px;
  background-color: #f9fafc;
}

.locations-container {
  max-width: 1140px;
  margin: 0 auto;
}

.locations-title {
  font-size: 2rem;
  color: #00BCD4;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
}

.locations-title i {
  margin-right: 8px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  font-size: 0.98rem;
  line-height: 1.6;
  color: #333;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.location-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.location-card p {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
}

.location-card i {
  color: #00BCD4;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #00BCD4;
  text-decoration: none;
  font-weight: 500;
  margin-top: 8px;
}

.map-link:hover {
  text-decoration: underline;
}

/* === Responsive === */
@media (max-width: 992px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .locations-title {
    font-size: 1.6rem;
  }

  .location-card {
    font-size: 1rem;
    padding: 20px;
  }

  .location-card h3 {
    font-size: 1.1rem;
  }
}

/* === Animation Keyframes === */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.locations-intro {
  text-align: center;
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  color: #444;
}

.locations-intro em {
  font-style: italic;
  color: #666;
}
.nationwide-shipping-section {
  padding: 80px 20px;
  background: #f9fafc;
  text-align: center;
}

.shipping-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
  font-family: 'Libertinus Serif', serif;
}

.shipping-subtitle {
  color: #00BCD4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.shipping-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 40px 30px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.shipping-icon i {
  font-size: 2.5rem;
  color: #00BCD4;
}

.shipping-description p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.shipping-address-box {
  background: #f1fbff;
  border-left: 4px solid #00BCD4;
  padding: 1rem;
  border-radius: 8px;
  text-align: left;
  font-size: 0.95rem;
  color: #333;
}

.shipping-address-box i {
  margin-right: 6px;
  color: #00BCD4;
}

.btn-download {
  display: inline-block;
  background-color: #00BCD4;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-download i {
  margin-right: 6px;
}

.btn-download:hover {
  background-color: #00aabb;
}

@media (max-width: 600px) {
  .shipping-box {
    padding: 30px 20px;
  }

  .shipping-address-box {
    font-size: 0.9rem;
  }

  .shipping-title {
    font-size: 1.8rem;
  }
}
.contact-channels {
  margin-top: 60px;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
}

.channels-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #00BCD4;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.channels-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.channels-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #f9fcff;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  min-width: 240px;
  max-width: 300px;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.channel-card i {
  font-size: 2rem;
  color: #00BCD4;
  flex-shrink: 0;
}

.channel-card strong {
  font-size: 1.1rem;
  color: #222;
}

.channel-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .channels-grid {
    flex-direction: column;
    align-items: center;
  }

  .channel-card {
    width: 100%;
    max-width: 90%;
  }
}
.facebook-plugin-container iframe {
  max-width: 100%;
}
.facebook-page-wrapper-celebspa {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
/* ===== Service Grid CelebSpa ===== */
.service-grid-celebspa {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-grid-celebspa-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.service-grid-celebspa-box img {
  width: 48px;
  margin-bottom: 14px;
}

.service-grid-celebspa-box h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.service-grid-celebspa-box h4 span {
  display: block;
  font-size: 0.95rem;
  color: #666;
}

.service-grid-celebspa-box p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.service-grid-celebspa-box p.eng {
  font-size: 0.85rem;
  font-style: italic;
  color: #777;
}

.service-grid-celebspa-box ul {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.service-grid-celebspa-box ul li {
  display: flex;
  gap: 6px;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-grid-celebspa {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-grid-celebspa {
    grid-template-columns: 1fr;
  }
}
/* === Service Guarantee Section === */
.service-guarantee-section {
  padding: 64px 20px;
  background-color: #f9fafc;
}

.service-guarantee-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

/* Title */
.service-guarantee-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00BCD4;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

/* Description */
.service-guarantee-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.service-guarantee-desc-en {
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
  margin-bottom: 2rem;
}

/* List */
.service-guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.service-guarantee-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #333;
  background: #f4f8fb;
  padding: 14px 22px;
  border-radius: 12px;
}

/* Icon */
.service-guarantee-list li i {
  color: #00BCD4;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .service-guarantee-container {
    padding: 36px 24px;
  }

  .service-guarantee-title {
    font-size: 1.8rem;
  }

  .service-guarantee-desc {
    font-size: 1rem;
  }
}
/* === CELEB MODERN NAVBAR STYLE === */

/* ตัวกล่อง Navbar หลัก */
.celeb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* กำหนดความสูงให้แน่นอน */
  background: rgba(18, 18, 18, 0.85); /* สีดำโปร่งแสง */
  border-bottom: 1px solid rgba(255,255,255,0.1); /* เพิ่มเส้นขอบบางๆ */
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05); /* เงานุ่มๆ */
  z-index: 1000;
  transition: all 0.3s ease;
}

/* จัดเลย์เอาต์ภายใน */
.celeb-navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* ปรับแต่งโลโก้ */
.celeb-logo img {
  height: 55px; /* ปรับขนาดโลโก้ให้พอดี */
  width: auto;
  transition: transform 0.3s ease;
}

.celeb-logo:hover img {
  transform: scale(1.05); /* ขยายเล็กน้อยเมื่อชี้ */
}

/* ปรับแต่งรายการเมนู */
.celeb-nav-menu {
  display: flex;
  list-style: none;
  gap: 32px; /* ระยะห่างระหว่างเมนู */
  margin: 0;
  padding: 0;
}

/* ดีไซน์ตัวอักษรลิ้งค์ */
.celeb-nav-link {
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
}

/* Effect เส้นขีดล่างเมื่อเอาเมาส์ไปชี้ */
.celeb-nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00BCD4; /* สีธีมฟ้าของคุณ */
  transition: width 0.3s ease;
}

.celeb-nav-link:hover {
  color: #00BCD4;
}

.celeb-nav-link:hover::after {
  width: 100%; /* ลากเส้นเต็มเมื่อชี้ */
}

/* ส่วน Actions ด้านขวา (ปุ่ม Booking) */
.celeb-nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.celeb-btn-booking {
  background-color: #333;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px; /* ปุ่มทรงแคปซูลมนๆ */
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.celeb-btn-booking:hover {
  background-color: #00BCD4; /* เปลี่ยนเป็นสีธีมเมื่อชี้ */
  transform: translateY(-2px); /* ลอยขึ้นเล็กน้อย */
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.3);
}

/* Responsive: ซ่อนเมนูเมื่อจอเล็กกว่า 992px (มือถือ/แท็บเล็ต) 
   หมายเหตุ: ต้องมี JavaScript สำหรับ Hamburger Menu หากต้องการใช้บนมือถือ */
@media (max-width: 992px) {
  .celeb-nav-menu {
    display: none; /* ซ่อนเมนูปกติไว้ก่อน */
  }
  .celeb-btn-booking {
     padding: 8px 16px;
     font-size: 0.8rem;
  }
}
/* === CELEB PREMIUM HERO (New Design) === */

/* โครงสร้างหลัก */
.cp-hero-section {
  position: relative;
  width: 100%;
  height: 85vh; /* ความสูงเกือบเต็มจอ (ปรับได้) */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* ภาพพื้นหลัง + เอฟเฟกต์ซูม */
.cp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.cp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cp-zoom-in 20s infinite alternate; /* ภาพจะค่อยๆ ซูมเข้า-ออก */
}

@keyframes cp-zoom-in {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* แผ่นฟิล์มสีดำทับภาพ (เพื่อให้ตัวหนังสือเด่น) */
.cp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: -1;
}

/* จัดการตัวหนังสือ */
.cp-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.cp-subtitle {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #00BCD4; /* สีทองอ่อน */
  opacity: 0.9;
}

.cp-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 4rem; /* ขนาดตัวอักษรใหญ่ */
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cp-desc {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* ปุ่มกดสีฟ้า Cyan (สีเดียวกับโลโก้) */
.cp-btn-cyan {
  display: inline-block;
  padding: 12px 35px;
  /* ใช้การไล่สีจากฟ้าโลโก้ ไปยังฟ้าสว่างเพื่อให้ดูมีมิติ */
  background: linear-gradient(45deg, #00BCD4, #00E5FF);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  /* ปรับเงาให้เป็นสีฟ้าจางๆ */
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cp-btn-cyan:hover {
  transform: translateY(-3px);
  /* เงาจะฟุ้งขึ้นเมื่อเอาเมาส์วาง */
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
  /* สลับสี Gradient ตอน Hover */
  background: linear-gradient(45deg, #00E5FF, #00BCD4);
}
/* === Wave Animation (ส่วนคลื่นด้านล่าง) === */
.cp-waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0; /* แก้ช่องว่างด้านล่าง */
  z-index: 1;
}

.cp-waves {
  position: relative;
  display: block;
  width: 100%;
  height: 100px; /* ความสูงของคลื่น */
  min-height: 80px;
  max-height: 150px;
}

/* Animation การขยับของคลื่น */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

/* Responsive: มือถือ */
@media (max-width: 768px) {
  .cp-title {
    font-size: 2.5rem;
  }
  .cp-waves {
    height: 60px;
    min-height: 60px;
  }
  .cp-hero-section {
    height: 70vh; /* ลดความสูงในมือถือ */
  }
}
/* === CELEB SIGNATURE ABOUT SECTION (Blue Theme) === */
.cp-about-section {
  padding: 100px 0;
  background-color: #fff;
  overflow: hidden;
}

/* Header Styles */
.cp-heading-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cp-heading-subtitle {
  font-family: 'Prompt', sans-serif;
  color: #00BCD4; /* เปลี่ยนเป็นสีฟ้าโลโก้ */
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cp-divider-center {
  width: 60px;
  height: 4px; /* หนาขึ้นนิดหน่อยให้ดูชัด */
  background: #00BCD4; /* สีฟ้าโลโก้ */
  margin: 0 auto 60px auto;
  border-radius: 2px;
}

/* Grid Layout */
.cp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Content Side --- */
.cp-quote {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #2c3e50; /* สีน้ำเงินเข้มเกือบดำ ดูทางการ */
  margin-bottom: 40px;
  border-left: 4px solid #00BCD4; /* เส้นข้างสีฟ้า */
  padding-left: 20px;
  line-height: 1.4;
  background: linear-gradient(90deg, rgba(0, 188, 212, 0.05) 0%, rgba(255,255,255,0) 100%); /* ไล่สีพื้นหลังจางๆ */
  padding: 20px; /* เพิ่ม padding ให้ดูเป็นกล่องข้อความสวยๆ */
  border-radius: 0 10px 10px 0;
}

.cp-quote span {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  color: #00BCD4; /* สีฟ้า */
  margin-top: 10px;
  font-style: normal;
  font-weight: 500;
}

/* Timeline Style */
.cp-timeline-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 40px;
  border-left: 1px dashed #b2ebf2; /* เส้นประสีฟ้าอ่อน */
}

.cp-timeline-item:last-child {
  border-left: none;
}

/* จุดกลมๆ บน Timeline */
.cp-timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid #00BCD4;
  border-radius: 50%;
}

.cp-year {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #cfd8dc; /* สีเทาจางๆ */
  position: absolute;
  top: -8px;
  left: -80px; 
  width: 60px;
  text-align: right;
}

.cp-year.text-brand {
  color: #00BCD4; /* ปีปัจจุบันใช้สีแบรนด์ */
  font-size: 2.2rem; /* ใหญ่กว่าปกตินิดนึง */
}

.cp-milestone {
  font-family: 'Prompt', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.cp-text-th {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.6;
}

.cp-text-en {
  font-size: 0.85rem;
  color: #78909c; /* สีเทาอมฟ้า */
  font-style: italic;
  line-height: 1.5;
}

/* --- Gallery Side (Collage) --- */
.cp-about-gallery {
  position: relative;
  height: 500px;
}

.cp-img-box {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 188, 212, 0.15); /* เงาสีฟ้าจางๆ */
  transition: transform 0.3s ease;
  border-radius: 4px; /* มนมุมนิดหน่อย */
}

.cp-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-img {
  width: 70%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 2;
}

.sub-img-1 {
  width: 45%;
  height: 40%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 5px solid #fff;
}

.sub-img-2 {
  width: 35%;
  height: 35%;
  top: 10%;
  right: 5%;
  z-index: 1;
  opacity: 0.9;
  filter: sepia(20%) hue-rotate(180deg) saturate(150%); /* ย้อมสีภาพให้ออกโทนเย็นๆ เล็กน้อย */
}

/* กรอบเส้นแต่ง */
.cp-img-border {
  position: absolute;
  width: 70%;
  height: 80%;
  border: 2px solid #00BCD4; /* เส้นกรอบสีฟ้า */
  top: 25px;
  left: 25px;
  z-index: 0;
  opacity: 0.3;
}

/* Hover Effect */
.cp-about-gallery:hover .sub-img-2 {
  filter: none;
  z-index: 4;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .cp-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cp-year {
    position: relative;
    top: 0;
    left: 0;
    text-align: left;
    margin-bottom: 5px;
    width: auto;
  }
  
  .cp-timeline-item {
    padding-left: 25px;
    border-left: 2px solid #b2ebf2;
  }
  
  .cp-timeline-item::before {
    left: -7px;
  }

  .cp-about-gallery {
    height: 400px;
  }
}
/* === CELEB VISION, MISSION & BELIEF (Premium Style) === */
.cp-vision-mission-section {
  padding: 80px 0;
  background-color: #fcfdfd; /* สีพื้นหลังขาวอมฟ้าจางๆ */
}

/* Grid Layout */
.cp-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* แบ่งครึ่ง */
  gap: 50px;
  margin-bottom: 80px;
}

/* Common Card Style */
.cp-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04); /* เงาฟุ้งนุ่มนวล */
  border-top: 4px solid #00BCD4; /* เส้นสีฟ้าด้านบน */
  height: 100%;
}

.cp-card-header {
  margin-bottom: 30px;
}

.cp-vm-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cp-vm-divider {
  width: 60px;
  height: 3px;
  background-color: #00BCD4; /* ขีดสีฟ้า */
}

/* --- Vision Specific --- */
.cp-vision-quote-box {
  background: rgba(0, 188, 212, 0.05); /* พื้นหลังสีฟ้าจาง */
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-left: 4px solid #00BCD4;
}

.cp-quote-th {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.4rem;
  color: #00BCD4;
  margin-bottom: 8px;
  line-height: 1.4;
}

.cp-quote-en {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: #777;
  font-style: italic;
}

.cp-content-group {
  margin-bottom: 25px;
}

.cp-text-th {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}

.cp-text-en {
  font-family: 'Prompt', sans-serif;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  line-height: 1.5;
}

/* --- Mission Specific --- */
.cp-mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cp-mission-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.cp-icon-check {
  font-size: 1.2rem;
  color: #00BCD4; /* ไอคอนสีฟ้า */
  margin-top: 2px;
  flex-shrink: 0; /* ป้องกันไอคอนบีบตัว */
}

/* --- Belief Block (Highlight) --- */
.cp-belief-block {
  text-align: center;
  position: relative;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed #d1eef2; /* เส้นประสีฟ้าอ่อน */
  max-width: 900px;
  margin: 0 auto;
}

.cp-belief-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #aaa;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cp-quote-mark {
  font-family: 'Libertinus Serif', serif;
  font-size: 4rem;
  color: #00BCD4;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -15px;
}

.cp-belief-quote {
  font-family: 'Libertinus Serif', serif;
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cp-highlight-text {
  color: #00BCD4;
  position: relative;
  display: inline-block;
}

/* ขีดเส้นใต้ปากกาไฮไลท์ */
.cp-highlight-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 188, 212, 0.15);
  z-index: -1;
}

.cp-belief-en {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  color: #777;
  font-style: italic;
  font-weight: 300;
}

/* Responsive (มือถือ) */
@media (max-width: 992px) {
  .cp-vm-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cp-card {
    padding: 30px 20px;
  }
  
  .cp-belief-quote {
    font-size: 1.5rem;
  }
}
/* === CELEB SERVICES SECTION (Premium Grid) === */
.cp-services-section {
  padding: 100px 0;
  background-color: #fff;
}

/* --- Intro Section --- */
.cp-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 80px;
}

.cp-intro-item {
  text-align: center;
  padding: 0 10px;
}

.cp-icon-top {
  font-size: 2.5rem;
  color: #00BCD4; /* สีฟ้า */
  margin-bottom: 20px;
  opacity: 0.8;
}

.cp-intro-item .th {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.6;
}

.cp-intro-item .en {
  font-family: 'Prompt', sans-serif;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  line-height: 1.5;
}

/* --- Service Grid (6 Cards) --- */
.cp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 คอลัมน์ */
  gap: 30px;
  margin-bottom: 40px;
}

.cp-service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* เงานุ่มๆ */
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.cp-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15); /* เงาสีฟ้าเมื่อชี้ */
  border-color: rgba(0, 188, 212, 0.3);
}

.cp-card-img {
  width: 100%;
  /* เปลี่ยนจาก 4/3 เป็น 3/4 (แนวตั้ง) หรือ 2/3 (ยาวกว่า) */
  aspect-ratio: 3 / 4; 
  overflow: hidden;
  position: relative;
  background-color: #fafafa; /* สีพื้นหลังรองรับ */
}

.cp-card-img img {
  width: 100%;
  height: 100%;
  /* ใช้ contain ถ้าอยากให้เห็นครบทุกมิลลิเมตร (แต่อาจมีขอบขาว) */
  /* ใช้ cover ถ้าอยากให้เต็มกรอบสวยๆ (อาจตัดขอบนิดเดียว) */
  object-fit: cover; 
  object-position: top center; /* จัดให้เริ่มโชว์จากด้านบนเสมอ (กันหัวภาพโดนตัด) */
  transition: transform 0.6s ease;
}

/* Effect เพิ่มเติม: เมื่อเอาเมาส์ชี้การ์ด ให้ภาพซูมเข้าเล็กน้อย */
.cp-service-card:hover .cp-card-img img {
  transform: scale(1.1);
}

.cp-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cp-card-content h4 {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.sub-th {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: #00BCD4;
  font-weight: 500;
  margin-bottom: 15px;
}

.desc-th {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 5px;
  line-height: 1.5;
}

.desc-en {
  font-size: 0.85rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 20px;
}

.cp-check-list {
  list-style: none;
  padding: 0;
  margin-top: auto; /* ดันรายการไปล่างสุด */
}

.cp-check-list li {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.cp-check-list i {
  color: #00BCD4;
  margin-right: 8px;
}

/* --- Feature Card (Trade - Card 7) --- */
.cp-feature-card {
  display: flex;
  background: #fcfdfd;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0, 188, 212, 0.2);
  min-height: 350px;
}

.cp-feature-img {
  width: 45%; /* รูปกว้าง 45% */
  position: relative;
}

.cp-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-feature-content {
  width: 55%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.title-trade {
  font-family: 'Libertinus Serif', serif;
  font-size: 2rem;
  color: #333;
}

.badge-new {
  background: #00BCD4;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.sub-trade {
  font-family: 'Prompt', sans-serif;
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
}

.desc-trade-th {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
}

.desc-trade-en {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin-bottom: 25px;
}

.cp-trade-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.cp-check-list.inline li {
  display: inline-block;
  margin-right: 20px;
}

.btn-trade-contact {
  background: #333;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.btn-trade-contact:hover {
  background: #00BCD4;
  transform: translateX(5px);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .cp-intro-grid, .cp-service-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 คอลัมน์ */
  }
  
  .cp-feature-card {
    flex-direction: column; /* มือถือ: Trade เรียงตั้ง */
  }
  .cp-feature-img, .cp-feature-content {
    width: 100%;
  }
  .cp-feature-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .cp-intro-grid, .cp-service-grid {
    grid-template-columns: 1fr; /* มือถือ: 1 คอลัมน์ */
  }
}
/* === CELEB AFTERCARE & DELIVERY === */
.cp-aftercare-section {
  padding: 80px 0 100px 0;
  background-color: #fff; /* พื้นหลังขาวสะอาด */
  background-image: radial-gradient(#f0fcfd 15%, transparent 16%), radial-gradient(#f0fcfd 15%, transparent 16%); /* ลายจุดจางๆ เพิ่มลูกเล่น */
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

/* Header Styles (Reuse from previous sections) */
.cp-heading-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cp-heading-subtitle {
  font-family: 'Prompt', sans-serif;
  color: #00BCD4;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cp-divider-center {
  width: 60px;
  height: 4px;
  background: #00BCD4;
  margin: 0 auto 50px auto;
  border-radius: 2px;
}

/* === Delivery Wrapper Box === */
.cp-delivery-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08); /* เงาใหญ่นุ่ม */
  padding: 50px;
  max-width: 1000px;
  margin: 0 auto; /* จัดกึ่งกลาง */
  border: 1px solid rgba(0, 188, 212, 0.15);
  position: relative;
  overflow: hidden;
}

/* แถบสีตกแต่งด้านซ้าย */
.cp-delivery-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: #00BCD4;
}

/* Sub-Header inside box */
.cp-delivery-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.icon-header {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00BCD4, #008ba3);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.cp-sub-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
}

.cp-sub-desc {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  color: #777;
  margin: 0;
}

/* === Grid Layout === */
.cp-delivery-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* Card Design */
.cp-delivery-card {
  flex: 1; /* แบ่งพื้นที่เท่ากัน */
  text-align: center;
  padding: 20px 10px;
  transition: transform 0.3s ease;
}

.cp-delivery-card:hover {
  transform: translateY(-5px);
}

.cp-step-icon {
  width: 70px;
  height: 70px;
  background: #f0fbff; /* สีฟ้าจางมาก */
  color: #00BCD4;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px dashed #00BCD4;
  transition: all 0.3s;
}

.cp-delivery-card:hover .cp-step-icon {
  background: #00BCD4;
  color: #fff;
  border-style: solid;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.25);
}

.cp-card-head {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.cp-card-body .th {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.5;
}

.cp-card-body .en {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  line-height: 1.4;
}

.highlight-contact {
  font-weight: 600;
  color: #00BCD4;
  font-size: 1rem;
  margin-top: 10px;
}

/* Connector Arrow (ลูกศรเชื่อม) */
.cp-connector {
  align-self: flex-start;
  margin-top: 25px; /* จัดให้ตรงกับระดับไอคอน */
  color: #ddd;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .cp-delivery-grid {
    flex-direction: column; /* เรียงลงมาเป็นแนวตั้ง */
    gap: 40px;
  }
  
  .cp-connector {
    align-self: center;
    transform: rotate(90deg); /* หมุนลูกศรลง */
    margin: -20px 0; /* ปรับระยะห่าง */
  }
  
  .cp-delivery-wrapper {
    padding: 30px 20px;
  }
  
  .cp-delivery-header {
    flex-direction: column;
    text-align: center;
  }
}
/* === CELEB SERVICE GUARANTEE (Premium Card Style) === */
.cp-guarantee-section {
  padding: 80px 0;
  background-color: #fcfdfd; /* สีพื้นเดียวกับ section ก่อนหน้าเพื่อความต่อเนื่อง */
}

.cp-guarantee-card {
  position: relative;
  background: #fff;
  max-width: 800px;
  margin: 0 auto; /* จัดกึ่งกลางหน้าจอ */
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.08); /* เงาฟุ้งสีฟ้าจางๆ */
  border: 1px solid rgba(0, 188, 212, 0.15); /* ขอบบางๆ */
  text-align: center;
  overflow: hidden; /* ตัดส่วนเกินของลายน้ำ */
  z-index: 1;
}

/* ไอคอนโล่ด้านบน */
.cp-guarantee-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00BCD4, #0097a7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 30px auto;
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

/* Typography */
.cp-guarantee-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

/* ใช้เส้นขีดกลางเดิม (Reuse class) */
.cp-divider-center {
  width: 60px;
  height: 4px;
  background: #00BCD4;
  margin: 0 auto 30px auto;
  border-radius: 2px;
}

.cp-guarantee-content .th {
  font-family: 'Prompt', sans-serif;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}

.cp-guarantee-content .en {
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* กล่องเงื่อนไข (Note Box) */
.cp-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f0fbfd; /* สีฟ้าจางมากๆ */
  color: #006064; /* สีตัวอักษรเข้ม */
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px dashed #00BCD4; /* เส้นประ */
}

.cp-guarantee-note i {
  font-size: 1.2rem;
  color: #00BCD4;
}

/* Watermark Icon (ลายน้ำจางๆ ด้านหลัง) */
.cp-watermark-icon {
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-size: 10rem;
  color: #00BCD4;
  opacity: 0.05; /* จางมาก */
  z-index: -1;
  transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 768px) {
  .cp-guarantee-card {
    padding: 40px 20px;
  }
  .cp-guarantee-title {
    font-size: 2rem;
  }
  .cp-guarantee-note {
    width: 100%; /* มือถือให้เต็มจอ */
    justify-content: center;
    font-size: 0.85rem;
    flex-direction: column; /* เรียงไอคอนไว้บน */
    gap: 5px;
    padding: 15px;
    border-radius: 12px;
  }
}
/* === CELEB SHIPPING SECTION (Premium Style) === */
.cp-shipping-section {
  padding: 80px 0;
  background-color: #fff;
  border-top: 1px solid #f0f0f0;
}

/* Container Box */
.cp-shipping-wrapper {
  display: flex;
  background: #fdfdfd;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  max-width: 1000px;
  margin: 0 auto;
}

/* --- Left Side: Info --- */
.cp-shipping-info {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.cp-shipping-icon {
  font-size: 3.5rem;
  color: #00BCD4;
  margin-bottom: 25px;
  background: rgba(0, 188, 212, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-shipping-head {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 15px;
}

.cp-text-group .cp-text-th {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.cp-text-group .cp-text-en {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

/* --- Right Side: Address Label --- */
.cp-address-card {
  flex: 1;
  background: #00BCD4; /* พื้นหลังสีแบรนด์ */
  padding: 50px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ลายกราฟิกพื้นหลัง */
.cp-address-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

.cp-label-header {
  position: relative;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cp-address-content {
  position: relative;
  background: rgba(255, 255, 255, 0.1); /* สีขาวโปร่งแสง */
  backdrop-filter: blur(5px);
  padding: 25px;
  border: 1px dashed rgba(255, 255, 255, 0.5); /* เส้นประเหมือนแสตมป์ */
  border-radius: 10px;
  margin-bottom: 30px;
}

.store-name {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.address-lines {
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.landmark {
  font-size: 0.9rem;
  opacity: 0.9;
}

.phone-line {
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Action Area */
.cp-action-area {
  position: relative;
  text-align: center;
}

.form-hint {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 15px;
}

.cp-btn-download {
  display: inline-block;
  background: #fff;
  color: #00BCD4;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cp-btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  background: #f0fcfd;
}

/* Responsive */
@media (max-width: 992px) {
  .cp-shipping-wrapper {
    flex-direction: column;
  }
  
  .cp-shipping-info, .cp-address-card {
    padding: 40px 30px;
  }
  
  .cp-shipping-icon {
    margin: 0 auto 20px auto;
  }
  
  .cp-shipping-info {
    text-align: center;
    align-items: center;
  }
}
/* === CELEB CONTACT SECTION === */
.cp-contact-section {
padding: 100px 0;
  background-color: #fff;
}

/* Intro Text */
.cp-intro-text {
  text-align: center;
  font-family: 'Prompt', sans-serif;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.6;
}

.cp-intro-text .en-text {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

/* Locations Grid */
.cp-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Location Card Styling */
.cp-location-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cp-location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.15);
  border-color: rgba(0, 188, 212, 0.3);
}

/* Special Style for Main Branch */
.cp-location-card.main-branch {
  border-color: #00BCD4;
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.1);
}

.badge-hq, .badge-cs {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #00BCD4;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 30px;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.badge-cs {
  background: #999;
}

.cp-loc-icon {
  font-size: 2.5rem;
  color: #00BCD4;
  margin-bottom: 20px;
}

.coming-soon .cp-loc-icon { color: #ccc; }

.cp-loc-name {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.cp-loc-details {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.cp-loc-details p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
}

.cp-loc-details i {
  color: #00BCD4;
  font-size: 1.1rem;
}

.highlight-tel {
  font-weight: 700;
  color: #333 !important;
  font-size: 1.1rem !important;
}

/* Map Button */
.cp-btn-map {
  display: inline-block;
  padding: 12px 25px;
  background: #f8f8f8;
  color: #555;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.cp-btn-map:hover {
  background: #00BCD4;
  color: #fff;
}

.cp-btn-map.disabled {
  border-color: #ddd;
  color: #aaa;
  cursor: default;
}

.cp-btn-map.disabled:hover {
  background: transparent;
  color: #aaa;
}

/* Contact Channels */
.cp-contact-channels {
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* ให้ LINE ใหญ่กว่านิดหน่อย */
  gap: 30px;
}

.cp-channel-box {
  background: #fcfdfd;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e6f2f3;
  display: flex;
  align-items: center;
  gap: 35px;
}

.line-box { border-left: 5px solid #06C755; }
.email-box { border-left: 5px solid #00BCD4; flex-direction: column; text-align: center; justify-content: center; }

/* QR Code Area */
.qr-code-area {
  text-align: center;
  flex-shrink: 0;
}

.qr-img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid #eee;
}

.scan-hint {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #06C755;
  letter-spacing: 2px;
}

/* Text Area */
.text-area { flex-grow: 1; }

.icon-line { font-size: 2.5rem; color: #06C755; margin-bottom: 10px; }
.icon-email { font-size: 2.5rem; color: #00BCD4; margin-bottom: 10px; }

.line-id, .email-address {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.sub-hint { font-size: 0.85rem; color: #999; margin-bottom: 20px; }

.btn-chat, .btn-email {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-chat { background: #06C755; color: #fff; }
.btn-email { background: #00BCD4; color: #fff; }

/* Responsive */
@media (max-width: 992px) {
  .cp-locations-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-contact-channels { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cp-locations-grid { grid-template-columns: 1fr; }
  .cp-channel-box { flex-direction: column; text-align: center; padding: 30px; }
  .cp-contact-section { padding: 60px 0; }
}
```สาเหตุที่แสดงผลในมือถือแล้ว "เพี้ยน" (เช่น ตัวหนังสือล้น, ขอบเบียด, หรือสัดส่วนดูแปลกๆ) หลักๆ มาจาก **Padding ที่หนาเกินไปสำหรับจอเล็ก** และ **ข้อความที่ยาวมาก (Email/Address) จนดันขอบจอ** ครับ

ผมปรับปรุง CSS ส่วนนี้ให้มีความยืดหยุ่น (Responsive) มากขึ้น โดยเน้นการลดช่องว่างและจัดการการตัดคำสำหรับมือถือครับ

### วิธีแก้: นำโค้ด CSS ชุดนี้ไปวางทับส่วน Contact ในไฟล์ `main.css`

```css
/* --- CONTACT & LOCATIONS SECTION (Responsive Fix) --- */
.cp-contact-section {
  padding: 80px 0;
  background-color: #fff;
  overflow: hidden; /* ป้องกันการเลื่อนซ้าย-ขวาบนมือถือ */
}

/* Grid สำหรับสาขา */
.cp-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.cp-location-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 20px;
  border: 1px solid #eee;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ปรับรายละเอียดใน Card ให้ตัดคำได้ดีขึ้น */
.cp-loc-details {
  text-align: left;
  margin-bottom: 25px;
  flex-grow: 1;
  word-break: break-word; /* ป้องกันที่อยู่ยาวจนดันกล่อง */
}

.cp-loc-details p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  line-height: 1.5;
}

/* ส่วนช่องทางการติดต่อ (LINE / Email) */
.cp-contact-channels {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.cp-channel-box {
  background: #fcfdfd;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e6f2f3;
  display: flex;
  align-items: center;
  gap: 30px;
  word-break: break-word;
}

/* จัดการ Email ให้ไม่ล้นจอ */
.email-address, .line-id {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
  overflow-wrap: break-word;
}

/* === RESPONSIVE BREAKPOINTS (หัวใจสำคัญของการแก้เพี้ยน) === */

/* สำหรับ Tablet (จอขนาดกลาง) */
@media (max-width: 992px) {
  .cp-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .cp-contact-channels {
    grid-template-columns: 1fr;
  }
  .cp-channel-box {
    padding: 30px;
  }
}

/* สำหรับ Mobile (จอขนาดเล็ก) */
@media (max-width: 768px) {
  .cp-contact-section {
    padding: 50px 0;
  }
  
  .cp-locations-grid {
    grid-template-columns: 1fr; /* เรียงเป็นแนวตั้ง 1 แถวเดียว */
    gap: 20px;
  }

  .cp-location-card {
    padding: 30px 20px; /* ลด Padding บนมือถือ */
  }

  .cp-channel-box {
    flex-direction: column; /* เปลี่ยนจากแนวนอนเป็นแนวตั้ง */
    text-align: center;
    padding: 30px 20px;
  }

  .cp-loc-name {
    font-size: 1.35rem;
  }

  .email-address {
    font-size: 1rem; /* ลดขนาด Font ของ Email ไม่ให้ล้นจอ */
  }

  .qr-img {
    width: 120px;
    height: 120px;
  }

  /* ปรับแต่งปุ่มให้กดง่ายในมือถือ */
  .btn-chat, .btn-email, .cp-btn-map {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
}

.cp-footer-note {
  font-size: 0.95rem;
  color: #666;
}

.cp-footer-note .en-text {
  color: #999;
  font-style: italic;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .cp-locations
/* === CELEB SOCIAL MEDIA (Pyramid Layout Fixed) === */
.cp-social-section {
  padding: 80px 0;
  background-color: #fff;
}

/* Grid Layout: แถวบนแบ่ง 2 ช่อง */
.cp-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 คอลัมน์เท่ากัน */
  gap: 30px;
  max-width: 1000px; /* ความกว้างรวม */
  margin: 0 auto; /* จัดกึ่งกลางหน้าจอ */
}

/* Card Style Common */
.cp-social-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 600px; /* ความสูงมาตรฐาน */
}

/* --- จัดการ TikTok (แถวล่าง) ให้สวยงาม --- */
.tiktok-card {
  grid-column: 1 / -1; /* สั่งให้กินพื้นที่ทั้งแถว */
  
  /* สำคัญ: บีบความกว้างไม่ให้ยืดเต็มจอ จะได้ดูสมส่วนเท่าเพื่อน */
  width: 100%;
  max-width: 485px; /* กว้างเท่ากับกล่อง Facebook/IG */
  
  /* จัดให้อยู่ตรงกลางเป๊ะๆ */
  margin: 0 auto; 
}

/* Header ของแต่ละการ์ด */
.card-header-social {
  padding: 15px;
  text-align: center;
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* สีหัวข้อ */
.facebook-card .card-header-social { background: #1877F2; }
.instagram-card .card-header-social { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tiktok-card .card-header-social { background: #000; }

/* พื้นที่ Embed */
.social-embed-box, .fb-wrapper {
  flex-grow: 1;
  background: #fff;
  overflow-y: auto; /* ถ้าเนื้อหายาว ให้เลื่อนลงได้เฉพาะในกล่อง */
}

/* ปรับ Facebook ให้ตรงกลาง */
.fb-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

/* --- Responsive: มือถือ --- */
@media (max-width: 992px) {
  .cp-social-grid {
    display: flex;
    flex-direction: column; /* เรียงลงมาตรงๆ */
    align-items: center; /* จัดกึ่งกลาง */
  }
  
  .cp-social-card {
    width: 100%;
    max-width: 500px; /* ในมือถือให้กว้างเต็มที่ */
    height: 500px; /* ลดความสูงลงหน่อย */
    margin-bottom: 20px;
  }
  
  /* ในมือถือ TikTok ไม่ต้องจัดพิเศษ */
  .tiktok-card {
    grid-column: auto;
    margin: 0;
  }
}
/* === CELEB FOOTER (Matches Navbar Style) === */
.cp-footer {
  background-color: #fafafa; /* ปรับเป็นสีเทาจางๆ เพื่อให้แยกกับส่วน TikTok ชัดเจน */
  border-top: 1px solid #e0e0e0;
  
  /* ดันลงมาให้ห่างจากส่วนบน 80px */
  margin-top: 80px !important; 
  
  padding: 40px 0; /* เพิ่มพื้นที่ด้านในบน-ล่าง */
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem;
  color: #666;
  position: relative;
  z-index: 10;
}

.cp-footer-wrapper {
  display: flex;
  justify-content: space-between; /* ชิดซ้าย-ขวา */
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ส่วน Copyright */
.cp-copyright p {
  margin: 0;
  line-height: 1.6;
}

.cp-copyright strong {
  color: #333;
  font-weight: 600;
}

.cp-designer {
  font-size: 0.85rem;
  color: #999;
}

.designer-link {
  color: #00BCD4; /* สีฟ้าแบรนด์ */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.designer-link:hover {
  color: #008ba3;
  text-decoration: underline;
}

/* ส่วนเมนูขวา (Footer Nav) */
.cp-footer-nav {
  display: flex;
  gap: 25px;
}

.cp-footer-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  position: relative;
}

/* Effect เส้นขีดล่างเหมือน Navbar */
.cp-footer-nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00BCD4;
  transition: width 0.3s ease;
}

.cp-footer-nav a:hover {
  color: #00BCD4;
}

.cp-footer-nav a:hover::after {
  width: 100%;
}

/* Responsive มือถือ */
@media (max-width: 768px) {
  .cp-footer-wrapper {
    flex-direction: column; /* เรียงลงมาตรงกลาง */
    text-align: center;
    gap: 15px;
  }
  
  .cp-footer-nav {
    gap: 20px;
    font-size: 0.9rem;
  }
}
/* --- OUR BELIEF: พื้นขาว คลีน --- */
.cp-belief-clean-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.cp-belief-title-main {
  font-family: 'Libertinus Serif', serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #333;
}
.cp-divider-cyan {
  width: 50px;
  height: 3px;
  background: #00BCD4;
  margin: 20px auto 40px;
}
.cp-belief-text-content .th {
  font-size: 1.4rem;
  color: #444;
  font-weight: 500;
  margin-bottom: 10px;
}
.cp-belief-text-content .en {
  font-size: 1rem;
  color: #aaa;
  font-style: italic;
}

/* --- SUSTAINABILITY: พื้นฟ้าอ่อน แยกส่วนชัดเจน --- */
.cp-sustain-premium-section {
  padding: 100px 0;
  background-color: #f8fdfe; /* สีฟ้าจางๆ ให้ดูสะอาดและต่างจากส่วนอื่น */
  border-top: 1px solid #f0f8f9;
}
.cp-sustain-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 2.2rem;
  color: #1a1a1a;
}
.cp-sustain-subtitle {
  color: #00BCD4;
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}
.cp-sustain-flex-layout {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}
.cp-sustain-desc {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  border-left: 3px solid #00BCD4;
  padding-left: 30px;
}
.cp-sustain-grid-items {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cp-sustain-mini-box {
  background: #fff;
  padding: 25px;
  text-align: center;
  border: 1px solid #e6f2f3;
  border-radius: 12px;
}
.cp-sustain-mini-box i {
  font-size: 2rem;
  color: #00BCD4;
  display: block;
  margin-bottom: 10px;
}
.cp-sustain-mini-box span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

/* Responsive */
@media (max-width: 992px) {
  .cp-sustain-flex-layout { flex-direction: column; text-align: center; }
  .cp-sustain-desc { border-left: none; border-bottom: 2px solid #00BCD4; padding: 0 0 20px 0; }
}
/* === MAINTENANCE SECTION STYLES === */
.cp-maintenance-section {
  padding: 100px 0;
  background-color: #fff;
}

.cp-maintenance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* แถวเดียว 4 กล่อง */
  gap: 25px;
}

.cp-maint-card {
  background: #fcfdfd;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #f0f8f9;
  transition: all 0.3s ease;
  text-align: center;
}

.cp-maint-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 188, 212, 0.08);
  border-color: #00BCD4;
}

.cp-maint-icon {
  font-size: 2.2rem;
  color: #00BCD4;
  margin-bottom: 20px;
}

.cp-maint-title {
  font-family: 'Libertinus Serif', serif;
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-weight: 700;
}

.cp-maint-sub {
  display: block;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  color: #00BCD4;
  font-weight: 500;
  margin-bottom: 15px;
}

.cp-maint-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cp-maint-en {
  font-size: 0.8rem;
  color: #aaa;
  font-style: italic;
  margin-bottom: 15px;
}

.cp-maint-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; /* รายการเช็กพอยท์ให้ชิดซ้าย */
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.cp-maint-list li {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 5px;
}

.cp-maint-list i {
  color: #00BCD4;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 1024px) {
  .cp-maintenance-grid { grid-template-columns: 1fr 1fr; } /* Tablet 2x2 */
}
@media (max-width: 576px) {
  .cp-maintenance-grid { grid-template-columns: 1fr; } /* Mobile 1x1 */
}
/* === ABOUT GALLERY LUXURY LAYOUT === */
.cp-about-gallery {
  position: relative;
  width: 100%;
  height: 550px; /* บังคับความสูงเพื่อให้มีพื้นที่จัดวาง */
  display: block;
}

.cp-img-box {
  position: absolute;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: all 0.5s ease;
}

.cp-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ป้องกันภาพเบี้ยว */
  display: block;
}

/* รูปหลัก: ใหญ่และอยู่กึ่งกลางเยื้องบน */
.main-img {
  width: 70%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 2;
}

/* รูปย่อย 1: ซ้อนทับด้านขวาล่าง */
.sub-img-1 {
  width: 45%;
  height: 250px;
  bottom: 50px;
  right: 0;
  z-index: 3;
  border: 8px solid #fff; /* ใส่ขอบขาวให้ดูเด่นออกมา */
}

/* รูปย่อย 2: ซ้อนอยู่ด้านหลังเพื่อสร้างความลึก */
.sub-img-2 {
  width: 35%;
  height: 200px;
  top: -30px;
  right: 30px;
  z-index: 1;
  opacity: 0.8;
}

/* เส้นขอบประดับ (เส้นสีฟ้า Cyan) */
.cp-img-border {
  position: absolute;
  width: 70%;
  height: 400px;
  border: 2px solid #00BCD4;
  top: 40px;
  left: 40px;
  z-index: 0;
  border-radius: 12px;
}

/* Hover Effect: เมื่อเมาส์วางให้รูปขยายขึ้นเล็กน้อย */
.cp-img-box:hover {
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(0, 188, 212, 0.2);
}

/* Responsive: สำหรับมือถือให้เรียงกันง่ายขึ้น */
@media (max-width: 992px) {
  .cp-about-gallery {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .cp-img-box, .cp-img-border {
    position: relative;
    width: 100% !important;
    height: 300px !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border: none !important;
  }
  .cp-img-border { display: none; }
}