/* ============================================
   Modern Thai Blessing Theme
   พื้นหลัง: ขาว | หลัก: ชมพู | เน้น: ทอง
   ============================================ */

:root {
  --pink-50:  #FFF5F8;
  --pink-100: #FFE4ED;
  --pink-200: #FFC8D9;
  --pink-300: #FFA0BD;
  --pink-400: #FF6B95;
  --pink-500: #E94B7B;
  --pink-600: #C53163;
  --pink-700: #9B244B;

  --gold-100: #FBF1D8;
  --gold-200: #F5E0A0;
  --gold-300: #EDC76B;
  --gold-400: #D4A53A;
  --gold-500: #B8861E;
  --gold-600: #8C6311;

  --white: #FFFFFF;
  --off-white: #FFFAF5;
  --cream: #FFF8EE;

  --text: #2A1A22;
  --text-soft: #5C4751;
  --text-mute: #8A7780;

  --line: #F2DEE5;
  --line-soft: #FBEEF3;

  --shadow-sm: 0 2px 8px rgba(197, 49, 99, .06);
  --shadow-md: 0 8px 24px rgba(197, 49, 99, .09);
  --shadow-lg: 0 20px 50px rgba(197, 49, 99, .12);

  --grad-pink: linear-gradient(135deg, #FF6B95 0%, #E94B7B 50%, #C53163 100%);
  --grad-gold: linear-gradient(135deg, #EDC76B 0%, #D4A53A 50%, #B8861E 100%);
  --grad-pink-gold: linear-gradient(135deg, #FF6B95 0%, #E94B7B 40%, #D4A53A 100%);
  --grad-soft: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 100%);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sarabun', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ Decorative background ============ */
body::before {
  content: '';
  position: fixed;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,200,217,.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  bottom: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,224,160,.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Mitr', 'Sarabun', sans-serif;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

/* ============ HEADER ============ */
.header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo img {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold-300);
  padding: 3px;
  background: var(--white);
}
.logo-text h1 {
  font-size: 1.15rem;
  background: var(--grad-pink-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .3px;
}
.logo-text p {
  font-size: .78rem;
  color: var(--text-mute);
  margin-top: 2px;
}
.header-cta {
  display: flex;
  gap: 10px;
}
.btn-call, .btn-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  transition: all .25s;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-call {
  background: var(--grad-pink);
}
.btn-line {
  background: linear-gradient(135deg, #06C755 0%, #00B341 100%);
}
.btn-call:hover, .btn-line:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============ HERO ============ */
.hero {
  background: var(--grad-soft);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '🪷';
  position: absolute;
  top: 30px; left: 10%;
  font-size: 4rem;
  opacity: .15;
  animation: float 6s ease-in-out infinite;
}
.hero::after {
  content: '🕉️';
  position: absolute;
  bottom: 40px; right: 10%;
  font-size: 4rem;
  opacity: .15;
  animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--pink-600);
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--gold-300);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 18px;
  line-height: 1.3;
}
.hero h2 span {
  background: var(--grad-pink-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 760px;
  margin: 0 auto 30px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-big {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: all .25s;
}
.cta-big.gold {
  background: var(--grad-pink-gold);
}
.cta-big.line {
  background: linear-gradient(135deg, #06C755 0%, #00B341 100%);
}
.cta-big:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ============ SECTION TITLE ============ */
section {
  padding: 70px 0;
  position: relative;
}
.services-bg, .gallery-bg, .reviews-bg, .areas-bg {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.chip {
  display: inline-block;
  padding: 7px 18px;
  background: var(--pink-50);
  color: var(--pink-600);
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 14px;
  border: 1px solid var(--pink-200);
}
.section-title h3 {
  font-size: clamp(1.55rem, 3.5vw, 2.3rem);
  margin-bottom: 12px;
}
.section-title h3 span {
  background: var(--grad-pink-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title p {
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto;
}

/* ============ SERVICES (circle cards) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 22px;
  text-align: center;
  border: 1.5px solid var(--line);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,200,217,.4) 0%, transparent 70%);
  border-radius: 50%;
  transition: all .4s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.service-card:hover::before {
  transform: scale(1.3);
}
.service-icon {
  width: 78px; height: 78px;
  margin: 0 auto 18px;
  background: var(--grad-pink-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(233,75,123,.25);
}
.service-card h4 {
  font-size: 1.1rem;
  color: var(--pink-700);
  margin-bottom: 9px;
  position: relative;
}
.service-card h4 a {
  color: inherit;
}
.service-card p {
  font-size: .92rem;
  color: var(--text-soft);
  position: relative;
}

/* ============ HIGHLIGHTS ============ */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.highlight-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 22px;
  border-radius: var(--r-md);
  border-left: 4px solid var(--gold-400);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.highlight-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.highlight-item .num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--grad-pink-gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(233,75,123,.25);
}
.highlight-item h4 {
  color: var(--pink-700);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.highlight-item p {
  font-size: .92rem;
  color: var(--text-soft);
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
  transition: all .3s;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(197,49,99,.65);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}
.gallery-item:hover img {
  transform: scale(1.12);
}
.gallery-item:hover::after {
  opacity: 1;
}

/* ============ CONTENT SECTION ============ */
.content-section {
  background: var(--white);
}
.content-block {
  max-width: 920px;
  margin: 0 auto;
  background: var(--off-white);
  padding: 44px 36px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.content-block h3 {
  color: var(--pink-700);
  margin: 32px 0 14px;
  font-size: 1.35rem;
  padding-bottom: 9px;
  border-bottom: 2px dashed var(--gold-300);
}
.content-block h3:first-of-type { margin-top: 0; }
.content-block p {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 1.01rem;
}
.content-block a {
  color: var(--pink-600);
  font-weight: 700;
  border-bottom: 1.5px dashed var(--pink-300);
  transition: all .2s;
}
.content-block a:hover {
  color: var(--gold-500);
  border-bottom-color: var(--gold-400);
}
.content-img {
  width: 100%;
  border-radius: var(--r-md);
  margin: 18px 0;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

/* ============ PRICE CALCULATOR ============ */
.calc-bg {
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--cream) 100%);
}
.calc-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 38px;
  border-radius: var(--r-xl);
  border: 2px solid var(--gold-300);
  box-shadow: var(--shadow-lg);
}
.calc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap;
}
.calc-row:last-of-type { border-bottom: none; }
.calc-row label {
  flex: 1;
  min-width: 200px;
  font-weight: 600;
  color: var(--text);
}
.calc-row select,
.calc-row input[type="number"] {
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .98rem;
  font-family: inherit;
  background: var(--off-white);
  transition: border-color .2s;
  min-width: 180px;
}
.calc-row select:focus,
.calc-row input[type="number"]:focus {
  outline: none;
  border-color: var(--gold-400);
}
.calc-row input[type="checkbox"] {
  width: 22px; height: 22px;
  cursor: pointer;
  accent-color: var(--pink-500);
}
.calc-result {
  margin-top: 24px;
  background: var(--grad-pink-gold);
  color: var(--white);
  padding: 24px;
  border-radius: var(--r-md);
  text-align: center;
}
.calc-result .label {
  font-size: .92rem;
  opacity: .9;
  margin-bottom: 6px;
}
.calc-result .price {
  font-family: 'Mitr', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.calc-result small {
  display: block;
  font-size: .82rem;
  opacity: .85;
  margin-top: 4px;
}
.calc-note {
  text-align: center;
  margin-top: 16px;
  font-size: .88rem;
  color: var(--text-mute);
}

/* ============ AREAS / TAMBONS ============ */
.tambons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.tambon-chip {
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
  transition: all .25s;
  position: relative;
}
.tambon-chip::before {
  content: '📍';
  margin-right: 5px;
}
.tambon-chip:hover {
  background: var(--pink-50);
  border-color: var(--gold-400);
  color: var(--pink-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============ MAP ============ */
.map-wrap {
  margin-top: 32px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 22px;
  font-family: 'Mitr', serif;
  font-size: 4rem;
  color: var(--gold-300);
  line-height: 1;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.review-stars {
  color: var(--gold-400);
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
}
.review-text {
  color: var(--text-soft);
  font-size: .96rem;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.review-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-300);
}
.review-author strong {
  display: block;
  color: var(--pink-700);
  font-size: .96rem;
}
.review-author small {
  display: block;
  color: var(--text-mute);
  font-size: .82rem;
  margin-top: 1px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  margin-bottom: 14px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}
.faq-item:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
}
.faq-q {
  padding: 18px 50px 18px 22px;
  font-weight: 700;
  color: var(--pink-700);
  cursor: pointer;
  position: relative;
  font-size: 1.02rem;
  transition: background .25s;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  color: var(--gold-500);
  font-weight: 400;
  transition: transform .25s;
}
.faq-item.active .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item.active .faq-q {
  background: var(--pink-50);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}
.faq-item.active .faq-a {
  max-height: 600px;
  padding: 0 22px 20px;
}
.faq-a p {
  color: var(--text-soft);
  font-size: .98rem;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* ============ CONTACT CTA ============ */
.contact-cta {
  background: var(--grad-pink-gold);
  color: var(--white);
  padding: 60px 30px;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-cta::before, .contact-cta::after {
  content: '🪔';
  position: absolute;
  font-size: 6rem;
  opacity: .12;
}
.contact-cta::before { top: 20px; left: 30px; }
.contact-cta::after { bottom: 20px; right: 30px; }
.contact-cta h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 14px;
  position: relative;
}
.contact-cta p {
  font-size: 1.02rem;
  margin-bottom: 26px;
  opacity: .95;
  position: relative;
}
.contact-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.contact-cta .cta-big.gold {
  background: var(--white);
  color: var(--pink-600);
}
.contact-cta .cta-big.line {
  background: rgba(255,255,255,.15);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(135deg, #2A1A22 0%, #3D2330 100%);
  color: rgba(255,255,255,.85);
  padding: 50px 0 28px;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-links a {
  color: var(--gold-200);
  font-weight: 600;
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--gold-400);
}
.footer p {
  font-size: .92rem;
  line-height: 1.75;
}
.footer a {
  color: var(--gold-300);
}

/* ============ FLOAT BUTTONS ============ */
.float-btn {
  position: fixed;
  right: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transition: all .25s;
  animation: pulse 2.5s infinite;
}
.float-call {
  bottom: 90px;
  background: var(--grad-pink);
}
.float-line {
  bottom: 22px;
  background: linear-gradient(135deg, #06C755 0%, #00B341 100%);
}
.float-btn:hover {
  transform: scale(1.12);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(233,75,123,.4); }
  50% { box-shadow: 0 6px 28px rgba(233,75,123,.7), 0 0 0 12px rgba(233,75,123,.08); }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42,26,34,.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.show { display: flex; }
.lightbox img {
  max-width: 92%;
  max-height: 92vh;
  border-radius: var(--r-md);
  box-shadow: 0 0 50px rgba(255,255,255,.1);
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 26px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}

/* ============ INDEX-specific ============ */
.search-wrap {
  max-width: 720px;
  margin: 28px auto 0;
}
.search-box {
  display: flex;
  gap: 10px;
  background: var(--white);
  padding: 10px;
  border-radius: 999px;
  border: 2px solid var(--gold-300);
  box-shadow: var(--shadow-md);
}
.search-box input {
  flex: 1;
  border: none;
  padding: 12px 22px;
  font-size: 1.02rem;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: var(--text);
}
.search-box input::placeholder {
  color: var(--text-mute);
}
.search-box button {
  background: var(--grad-pink-gold);
  color: var(--white);
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: .98rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 48px auto 0;
}
.stat-card {
  background: var(--white);
  padding: 26px 18px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.stat-card .num {
  font-family: 'Mitr', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--grad-pink-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .label {
  color: var(--text-soft);
  font-size: .92rem;
  margin-top: 4px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 0 auto 32px;
  max-width: 980px;
}
.filter-tab {
  background: var(--white);
  color: var(--text-soft);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: all .2s;
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--grad-pink-gold);
  color: var(--white);
  border-color: transparent;
}

.province-block {
  background: var(--white);
  padding: 26px;
  margin-bottom: 22px;
  border-radius: var(--r-lg);
  border-left: 5px solid var(--gold-400);
  box-shadow: var(--shadow-sm);
}
.province-block h3 {
  color: var(--pink-700);
  font-size: 1.3rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.province-block h3 .count {
  background: var(--pink-50);
  color: var(--pink-600);
  padding: 3px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
}
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 11px;
}
.district-card {
  background: var(--off-white);
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  transition: all .22s;
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
}
.district-card::before {
  content: '🏯';
  flex-shrink: 0;
}
.district-card:hover {
  background: var(--pink-50);
  border-color: var(--gold-400);
  color: var(--pink-700);
  transform: translateX(4px);
}

/* ============ Animations ============ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
  .header-cta .btn-call span,
  .header-cta .btn-line span { display: none; }
  .btn-call, .btn-line {
    padding: 10px 14px;
  }
  .logo-text h1 { font-size: 1rem; }
  .logo-text p { font-size: .72rem; }
  .logo img { width: 46px; height: 46px; }

  section { padding: 50px 0; }
  .hero { padding: 50px 0 65px; }
  .hero::before, .hero::after { font-size: 2.5rem; }
  .content-block { padding: 28px 20px; }
  .calc-wrap { padding: 24px 18px; }
  .calc-row label { min-width: 100%; margin-bottom: 6px; }
  .calc-row select,
  .calc-row input[type="number"] { width: 100%; }
  .contact-cta { padding: 40px 20px; }
  .footer-links { gap: 14px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services-grid,
  .highlights,
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tambons-grid { grid-template-columns: repeat(2, 1fr); }
}
