/* ===== Harmonized Color Tokens (Brand Green + Shopee Orange) ===== */
:root {
  /* Brand / Grab */
  --grab-green: #00B14F;
  --grab-green-dark: #0A8F47;         /* เข้มขึ้นนิดให้เกรเดียนท์ลื่น */
  --grab-green-light: #E7F6EF;        /* ปรับเป็นเขียวอ่อนที่กลมกลืนขึ้น */
  --grab-gradient: linear-gradient(135deg, var(--grab-green) 0%, var(--grab-green-dark) 100%);

  /* Warm accent (ยังเป็นเหลือง/อำพัน ให้เข้ากับส้ม Shopee) */
  --grab-yellow: #FFB020;
  --grab-yellow-light: #FFF4DF;

  /* Neutral */
  --grab-gray: #F6F7FB;
  --text-dark: #17212C;               /* เข้มขึ้นเล็กน้อยเพื่ออ่านง่าย */
  --text-light: #6B7280;

  /* Premium block */
  --premium-dark: #0D1B22;
  --premium-gold: #FFD166;            /* ทองโทนอุ่น เข้ากับส้ม/เหลือง */
  --premium-light: #F7FAFC;
  --premium-gradient: linear-gradient(135deg, #0D1B22 0%, #1F3643 100%);

  /* Others (ยังคงของเดิม) */
  --flash-purple: #6E40C9;
  --line-green: #06C755;

  /* === Shopee-style Accent (ใหม่) === */
  --accent-orange: #EE4D2D;
  --accent-orange-2: #FF6A3D;
  --accent-orange-light: #FFF3EF;
  --accent-gradient: linear-gradient(90deg, var(--accent-orange-2), var(--accent-orange));

  /* Utility tints for chips/cards usedในบล็อก Shopee */
  --card-border: #FFE0D6;
  --chip-bg: #FFF7F5;
  --pill-bg: #FFF2ED;
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Kanit', sans-serif;
}

body {
  background-color: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== Animations & Keyframes ===== */
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 192, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 192, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 192, 0, 0);
  }
}

@keyframes green-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 230, 118, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -15px, 0);
  }
  70% {
    transform: translate3d(0, -7px, 0);
  }
  90% {
    transform: translate3d(0, -3px, 0);
  }
}

@keyframes pulseBlue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 106, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 106, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 106, 255, 0);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== Utility Classes ===== */
.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-animation.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.pulse {
  animation: green-pulse 2s infinite;
}

.highlight-badge {
  background: var(--grab-yellow);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
  font-size: 1.1rem;
  animation: pulseGold 2s infinite;
}

/* ===== Typography & Section Titles ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  color: var(--text-dark);
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  font-size: 2.5rem;
}

.section-title h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--grab-green);
  border-radius: 3px;
}

.section-title p {
  max-width: 600px;
  margin: 15px auto 0;
  color: var(--text-light);
  font-size: 1.1rem;
}

.service-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
}

.service-title i {
  margin-right: 10px;
  color: var(--grab-yellow);
}

/* ===== Buttons ===== */
.call-now-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  background: linear-gradient(135deg, #FFC000, #FF8C00);
  border-radius: 60px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 192, 0, 0.4);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: pulse-gold 2s infinite;
}

.call-now-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.call-now-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 192, 0, 0.6);
}

.call-now-btn:hover i {
  transform: translateX(5px);
}

.call-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.call-now-btn:hover::before {
  left: 100%;
}

.call-now-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: 0.6s;
  z-index: -1;
}

.call-now-btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: 0s;
}

.btn-grab {
  background: var(--grab-gradient);
  color: white;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 177, 79, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-grab:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--grab-green-dark);
  transition: width 0.5s ease;
  z-index: -1;
}

.btn-grab:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 177, 79, 0.35);
}

.btn-grab:hover:before {
  width: 100%;
}

.btn-outline-grab {
  border: 2px solid var(--grab-green);
  color: var(--grab-green);
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.3s;
  background: transparent;
}

.btn-outline-grab:hover {
  background: var(--grab-green-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 177, 79, 0.15);
}

.btn-yellow {
  background: var(--grab-yellow);
  color: var(--text-dark);
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 192, 0, 0.2);
  animation: pulse-gold 2s infinite;
}

.btn-yellow:hover {
  background: #e6a900;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 192, 0, 0.3);
  color: white;
}

.grab-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #00e676, #00c853);
  border-radius: 60px;
  border: none;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 200, 83, 0.4);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.grab-btn i {
  margin-left: 10px;
  font-size: 1.2rem;
  transition: transform 0.4s ease;
}

.grab-btn:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 35px rgba(0, 200, 83, 0.6);
}

.grab-btn:hover i {
  transform: translateX(8px);
}

.grab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
  z-index: -1;
}

.grab-btn:hover::before {
  left: 100%;
}

.grab-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: 0.6s;
  z-index: -1;
}

.grab-btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: 0s;
}

.btn-flash {
  background: var(--flash-purple);
  color: #fff !important;
  border-radius: 60px;
  padding: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(110, 64, 201, 0.3);
}

.btn-flash:hover {
  background: #5a34a8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(110, 64, 201, 0.4);
}

.btn-line {
  background: var(--line-green);
  color: #111;
  border-radius: 60px;
  padding: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.btn-line:hover {
  background: #00C300;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 185, 0, 0.4);
}

.btn-messenger {
  background: #006AFF;
  color: #fff;
  padding: 15px 40px;
  font-size: 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 106, 255, 0.3);
}

.btn-messenger:hover {
  background: #0051c9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 106, 255, 0.4);
}

.cta .btn-outline-light {
  border: 2px solid white;
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s;
}

.cta .btn-outline-light:hover {
  background: white;
  color: var(--grab-green);
}

/* ===== Navbar ===== */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 5px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo-container {
  background: var(--grab-green-light);
  border-radius: 10px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-container {
  padding: 4px 12px;
}

.logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 100px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--grab-green);
  position: relative;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--premium-dark);
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--grab-green), var(--premium-gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.logo:hover .logo-text::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-toggler {
  border: none;
  color: var(--grab-green);
  font-size: 1.5rem;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 400;
  margin: 0 8px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--grab-green) !important;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grab-green);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
  width: 70%;
}

/* ===== Hero Sections ===== */
.reviews-hero {
  background: linear-gradient(135deg, var(--grab-green-light) 0%, rgba(255,255,255,1) 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.reviews-hero:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--grab-green);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  opacity: 0.1;
}

.reviews-hero:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--grab-yellow);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
  opacity: 0.1;
}

.reviews-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-hero h1 span {
  color: var(--grab-green);
  position: relative;
  display: inline-block;
}

.reviews-hero h1 span:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--grab-yellow-light);
  z-index: -1;
  border-radius: 3px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== Card Components ===== */
.service-card, .feature-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s;
  height: 100%;
  border: 1px solid #f0f0f0;
  margin-bottom: 25px;
  position: relative;
}

.service-card:hover, .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,177,79,0.15);
  border-color: var(--grab-green-light);
}

.service-card:after, .feature-card:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--grab-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover:after, .feature-card:hover:after {
  transform: scaleX(1);
}

.service-icon, .feature-icon {
  width: 80px;
  height: 80px;
  background: var(--grab-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 20px;
  transition: 0.4s;
  border: 2px solid var(--grab-green-light);
}

.service-icon i, .feature-icon i {
  font-size: 32px;
  color: var(--grab-green);
  transition: 0.4s;
}

.service-card:hover .service-icon, .feature-card:hover .feature-icon {
  background: var(--grab-green);
  transform: scale(1.1);
}

.service-card:hover .service-icon i, .feature-card:hover .feature-icon i {
  color: #fff;
  animation: bounce 0.6s;
}

.service-content, .feature-card h3 {
  padding: 0 25px 30px;
  text-align: center;
}

.service-content h3, .feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-content p, .feature-card p {
  text-align: center;
  color: var(--text-light);
  min-height: 80px;
}

.service-price, .feature-price {
  text-align: center;
  color: var(--grab-green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 10px;
}

.service-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--grab-green);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.review-card, .review-box {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 177, 79, 0.1);
}

.review-card:hover, .review-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 177, 79, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--grab-green);
}

.customer-info {
  flex: 1;
}

.customer-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.review-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.review-rating {
  color: var(--grab-yellow);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.review-content {
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.review-service {
  background: var(--grab-green-light);
  color: var(--grab-green);
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 500;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 1px solid var(--grab-green-light);
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,177,79,0.15);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--grab-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--grab-green);
  font-size: 36px;
  transition: 0.3s;
}

.step-card:hover .step-icon {
  background: var(--grab-green);
  color: #fff;
  transform: rotate(15deg);
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,177,79,0.1);
  height: 100%;
  border: 1px solid #eaeaea;
  transition: 0.4s;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0,177,79,0.2);
}

.contact-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.contact-card-body {
  padding: 30px;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.contact-card h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 3px;
  background: var(--grab-green);
  border-radius: 2px;
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.address-box {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.address-box h4 {
  color: var(--flash-purple);
  margin-bottom: 20px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.address-box h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--grab-green);
  border-radius: 2px;
}

.address-box p {
  margin-bottom: 10px;
  color: var(--text-light);
}

.address-box strong {
  color: var(--text-dark);
}

.flash-steps {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.flash-steps h3 {
  color: var(--flash-purple);
  margin-bottom: 20px;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}

.flash-steps h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--grab-green);
  border-radius: 2px;
}

.flash-steps ol {
  padding-left: 20px;
}

.flash-steps li {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.flash-steps li strong {
  color: var(--text-dark);
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0,177,79,0.1);
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover, .faq-question.active {
  color: var(--grab-green);
}

.faq-question:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.3s;
}

.faq-question.active:after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer.show {
  padding: 0 20px 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-light);
}

.gallery{padding:100px 0;background:var(--grab-gray);position:relative;overflow:hidden}.gallery:before{content:'';position:absolute;top:-50px;right:-50px;width:200px;height:200px;background:var(--grab-yellow);opacity:.1;border-radius:50%}.gallery-item{position:relative;border-radius:16px;overflow:hidden;margin-bottom:25px;box-shadow:0 10px 20px rgba(0,0,0,.08);height:280px;transition:all .4s;transform:scale(.95)}.gallery-item:hover{transform:scale(1);box-shadow:0 15px 30px rgba(0,177,79,.2);z-index:2}.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}.gallery-item:hover img{transform:scale(1.1)}.gallery-overlay{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(0,0,0,.8));padding:20px;color:#fff;opacity:0;transition:opacity .3s}.gallery-item:hover .gallery-overlay{opacity:1}.gallery-badge{position:absolute;top:15px;right:15px;background:var(--grab-green);color:#fff;padding:5px 12px;border-radius:20px;font-size:.85rem;font-weight:500;z-index:2}



/* ===== Reviews Section ===== */
.reviews-section, .reviews {
  padding: 80px 0;
  background: #f7f7f7;
}

.review-filter {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: white;
  border: 2px solid var(--grab-green);
  border-radius: 30px;
  padding: 8px 20px;
  margin: 0 5px 10px;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--grab-green);
  color: white;
}

.review-stats {
  text-align: center;
  margin-bottom: 40px;
}

.overall-rating {
  font-size: 3rem;
  font-weight: 700;
  color: var(--grab-green);
  margin-bottom: 10px;
}

.stars {
  color: var(--grab-yellow);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.rating-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.rating-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  margin: 5px 0 10px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: var(--grab-yellow);
  border-radius: 5px;
}

.review-count {
  font-size: 1.1rem;
  color: var(--text-light);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.review-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.review-box p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1rem;
}

.review-box strong {
  color: var(--grab-green);
  display: block;
  text-align: right;
  font-size: 0.95rem;
}

/* ===== Repair Images ===== */
.repair-images {
  margin: 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.repair-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.repair-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 177, 79, 0.2);
}

.repair-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: 500;
  text-align: center;
  font-size: 0.9rem;
}

/* ===== CTA Sections ===== */
.cta {
  padding: 80px 0;
  background: var(--grab-gradient);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}
  
  /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--grab-green-light) 0%, rgba(255,255,255,1) 100%);
      padding: 40px 0 40px;
      position: relative;
      overflow: hidden;
    }
   
    .hero:before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: var(--grab-green);
      border-radius: 50%;
      top: -100px;
      right: -50px;
      opacity: 0.1;
    }
   
    .hero:after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: var(--grab-yellow);
      border-radius: 50%;
      bottom: -150px;
      left: -100px;
      opacity: 0.1;
    }
   
    .hero-content {
      position: relative;
      z-index: 2;
    }
   
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      color: var(--text-dark);
    }
   
    .hero h1 span {
      color: var(--grab-green);
      position: relative;
      display: inline-block;
    }
    
    .hero h1 span:after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      width: 100%;
      height: 12px;
      background: var(--grab-yellow-light);
      z-index: -1;
      border-radius: 3px;
    }
   
    .hero p {
      font-size: 1.1rem;
      color: var(--text-light);
      margin-bottom: 30px;
      max-width: 600px;
    }
   
    .hero-img {
      position: relative;
      text-align: center;
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
   
    .hero-img img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 8px solid white;
    }
    
    .highlight-badge {
      background: var(--grab-yellow);
      color: var(--text-dark);
      padding: 8px 18px;
      border-radius: 30px;
      font-weight: 600;
      display: inline-block;
      margin-top: 20px;
      animation: pulse 2s infinite;
      font-size: 1.1rem;
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(255, 192, 0, 0.4); }
      70% { box-shadow: 0 0 0 12px rgba(255, 192, 0, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 192, 0, 0); }
    }



/* ===== Flash Express Section ===== */
.flash-express-section {
  padding: 40px 0;
  background: linear-gradient(135deg,#f8f5ff 0%,#e6f5ec 100%);
  position: relative;
  overflow: hidden;
}

.flash-container {
  position: relative;
  z-index: 2;
}

.flash-header {
  text-align: center;
  margin-bottom: 50px;
}

.flash-header h2 {
  font-weight: 700;
  color: var(--flash-purple);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.flash-header h2:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--grab-yellow);
  border-radius: 3px;
}

.flash-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.flash-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.flash-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.flash-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--flash-purple);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.flash-text h3 {
  font-size: 1.4rem;
  color: var(--flash-purple);
  margin-bottom: 8px;
}

.flash-text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.flash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.flash-note {
  text-align: center;
  margin-top: 20px;
  color: var(--flash-purple);
  font-weight: 500;
  font-size: 1.1rem;
}

.flash-logo {
  text-align: center;
  margin-top: 20px;
}

.flash-logo img {
  max-width: 200px;
}

/* ===== Delivery Process ===== */
.delivery-process {
  padding: 80px 0;
  background: #fff;
}

.delivery-process h2 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--grab-green);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.delivery-process h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grab-green);
  border-radius: 2px;
}

/* ===== Contact & Social ===== */
.contact {
  padding: 100px 0;
  background: #fff;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--grab-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grab-green);
  font-size: 20px;
  transition: 0.3s;
}

.social-icon:hover {
  background: var(--grab-green);
  color: #fff;
  transform: translateY(-3px) rotate(5deg);
}

.messenger-container {
  background: var(--grab-gray);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.messenger-icon {
  font-size: 4rem;
  color: #006AFF;
  margin-bottom: 20px;
  animation: pulseBlue 2s infinite;
}

/* ===== Map ===== */
.map-container {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
  border: 3px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Floating Actions (tuneable, safe-area) ===== */
:root{
  --fab-edge: 10px;     /* ระยะห่างจากขอบขวา/ล่าง */
  --fab-gap: 15px;      /* ช่องว่างระหว่างปุ่ม */
}

.floating-btn-container{
  position: fixed;
  right: var(--fab-edge);
  bottom: calc(var(--fab-edge) + env(safe-area-inset-bottom)); /* กัน notch / home bar */
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: var(--fab-gap);
  /* ไม่ต้อง animate ทั้ง container เพื่อกันอาการสั่นเวลา hover */
}

.floating-btn{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform .3s, box-shadow .3s;
  animation: floatY 3s ease-in-out infinite; /* ให้ตัวปุ่มลอยนุ่มๆ */
}

.floating-btn:hover{
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.floating-btn.phone{
  background: linear-gradient(135deg,#007bff,#0066cc);
  animation: pulseGreen 2s infinite; /* ถ้าไม่อยากให้เต้น ลบบรรทัดนี้ออก */
}
.floating-btn.line{ background: linear-gradient(135deg,#06C755,#05a044); }
.floating-btn.messenger{ background: linear-gradient(135deg,#006AFF,#0051c9); }

.floating-btn::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.1);
  transform:translateY(100%);
  transition:transform .3s;
}
.floating-btn:hover::after{ transform:translateY(0); }

/* Tooltip */
.floating-btn .tooltip{
  position:absolute;
  right: 70px;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.8);
  color:#fff;
  padding:8px 15px;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s, right .2s;
}
.floating-btn:hover .tooltip{
  opacity:1;
  right: 75px;
}

/* เงาและโฮเวอร์ (สำหรับอุปกรณ์ที่รองรับ) */
@media (hover:hover){
  .floating-btn:hover{ box-shadow: 0 12px 28px rgba(0,0,0,.22); transform: translateY(-1px); }
}

/* ปรับระยะบนจอเล็กให้พอดี */
@media (max-width: 576px){
  :root{ --fab-right: 14px; --fab-bottom: 14px; --fab-size: 54px; }
}

/* เคารพการตั้งค่าลดแอนิเมชันของผู้ใช้ */
@media (prefers-reduced-motion: reduce){
  .floating-btn{ transition: none; }
}

/* กันซ้อนกับปุ่มแชท third-party (ถ้ามี) — ขยับขึ้นอีกนิด */
body.has-chat-widget .floating-btn-container{
  bottom: calc(var(--fab-bottom) + 64px + env(safe-area-inset-bottom));
}

/* (มีอยู่แล้วในโปรเจกต์คุณ) ตัวอย่าง keyframes */
@keyframes floatY{
  0%,100%{ transform: translateY(0) }
  50%{ transform: translateY(-4px) }
}
@keyframes pulseGreen{
  0%{ box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.6) }
  70%{ box-shadow: 0 0 0 14px rgba(0, 200, 83, 0) }
  100%{ box-shadow: 0 0 0 0 rgba(0, 200, 83, 0) }
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(to bottom, #0f1a1f, #1a1a1a);
  color: #ddd;
  padding: 80px 0 20px;
  position: relative;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grab-green);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
}

.footer-logo .logo-main {
  color: var(--grab-green);
  font-size: 1.8rem;
  font-weight: 800;
}

.footer-logo .logo-sub {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-title {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--grab-green);
  border-radius: 2px;
}

.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s;
  position: relative;
  padding-left: 0;
}

.footer-links a:before {
  content: '•';
  color: var(--grab-green);
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  color: var(--grab-green);
  padding-left: 15px;
}

.footer-links a:hover:before {
  opacity: 1;
}

.contact-info {
  margin-bottom: 15px;
  display: flex;
}

.contact-info i {
  width: 30px;
  color: var(--grab-green);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-info div {
  flex: 1;
}

.contact-info strong {
  color: white;
  display: block;
  margin-bottom: 5px;
}

.contact-info p {
  margin: 0;
  color: #bbb;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  margin-top: 40px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.copyright a {
  color: var(--grab-green);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 60px 0;
  background: var(--grab-gray);
}

/* ===== Mobile Responsive ===== */

@media (max-width: 768px) {
  .reviews-hero {
    padding: 40px 0 30px;
  }
  
  .reviews-hero h1 {
    font-size: 2.2rem;
  }
  
  .review-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    padding: 20px;
  }
  
  .review-cta {
    padding: 40px 20px;
  }
  
  .review-cta h2 {
    font-size: 1.8rem;
  }
  
  .repair-images {
    grid-template-columns: 1fr;
  }
  
  .navbar-nav {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
  }
  
  .navbar-nav .nav-link {
    display: block;
    padding: 12px 0;
    margin: 5px 0;
    border-radius: 30px;
    transition: all 0.3s;
    background: var(--grab-green-light);
  }
  
  .navbar-nav .nav-link:hover {
    background: var(--grab-green);
    color: white !important;
  }
  
  .navbar-nav .nav-link:after {
    display: none;
  }
  
  .navbar-nav .btn-yellow {
    margin-top: 10px;
    width: 100%;
  }
  
  .logo-container {
    padding: 5px 10px;
  }
  
  .logo-main {
    font-size: 1.5rem;
  }
  
  .logo-sub {
    font-size: 0.85rem;
  }
  
  .flash-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .reviews-hero h1 {
    font-size: 1.8rem;
  }
  
  .btn-grab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .logo-main {
    font-size: 1.3rem;
  }
  
  .logo-sub {
    font-size: 0.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/* === WCAG Contrast Fixes === */
/* 1) เพิ่มสีเขียวเฉดเข้มสำหรับตัวอักษรบนพื้นสว่าง */
:root { --grab-green-contrast: #007E3A; } /* ขาวกับสีนี้ได้ ~5.2:1 ผ่าน AA */

/* 2) ตัวหนังสือสีเขียวบนพื้นขาว/สว่าง */
.navbar .logo-text,
section.contact .logo-text,
.feature-price,
.review-service { color: var(--grab-green-contrast) !important; }

/* review-service เดิมพื้นเขียวอ่อน+ตัวเขียวอ่อนจะไม่ผ่าน ให้ใช้เขียวเข้มแทน */
.review-service { background: var(--grab-green-light); }

/* 3) ลิงก์เมนู: โหมดปกติใช้สีเข้มอ่านง่าย, ตอน hover/active อย่าใช้เขียวอ่อน */
.navbar .nav-link { color: #1A1A1A !important; }
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--grab-green-contrast) !important; }

/* 4) ป้าย/แท็กบนรูป: คงตัวอักษรสีขาว แต่ทำพื้นให้เข้มพอ */
.gallery-badge,
.service-tag { background: var(--grab-green-contrast) !important; color: #fff !important; }

/* 5) ข้อความใน “ติดต่อ” ที่เดิมเป็น #bbb บนพื้นขาว (ไม่พอ) ให้เข้มขึ้น */
section.contact .contact-info p { color: #444 !important; }  /* ~7:1 */

/* 6) ปุ่มสีเขียว (grab-btn): ถ้าต้องการตัวอักษร “สีขาว” ให้ทำพื้นเข้มขึ้นทั้งกราเดียนต์ */
.grab-btn {
  background: linear-gradient(135deg, #009A4E, #007E3A) !important; /* สว่างสุด ~3.66:1 กับขาว, ผ่านสำหรับ UI */
  color: #fff !important;
}
/* ถ้าชอบพื้นเดิมมากกว่า ให้สลับมาใช้ตัวอักษร “สีดำ” (ผ่านสบาย) */
// .grab-btn { color: #000 !important; }

/* 7) กันผลข้างเคียงใน footer: ถ้าในฟุตเตอร์มี .logo-text อยู่ ให้แสดงเป็นสีขาวบนพื้นเข้ม */
.footer .logo-text { color: #fff !important; }

.visually-hidden {
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
