@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700&family=IBM+Plex+Sans+Thai:wght@300;400;500&display=swap');

:root {
  --g100: #fdfaf3;
  --g200: #f9e9b8;
  --g400: #f5c842;
  --g600: #d4a017;
  --g800: #b8860b;
  --dark: #1a1005;
  --mid:  #2a1b05;
  --gray: #6b7280;
}

.ct-page { font-family: 'IBM Plex Sans Thai', sans-serif; background: var(--g100); min-height: 80vh; }

/* hero */
.ct-hero {
  background: linear-gradient(135deg, #2a1b05 0%, #4a3008 60%, #2a1b05 100%);
  padding: 64px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.ct-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, #f5c842 1.5px, transparent 1.5px);
  background-size: 28px 28px; opacity: 0.06;
}
.ct-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.ct-hero-label {
  display: inline-block; font-size: 12px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--g400);
  border: 1px solid rgba(245,200,66,.35); background: rgba(245,200,66,.08);
  border-radius: 9999px; padding: 5px 18px; margin-bottom: 18px;
}
.ct-hero-title {
  font-family: 'Kanit', sans-serif; font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700; color: #fff; margin: 0 0 14px; line-height: 1.2;
}
.ct-hero-title span { color: var(--g400); }
.ct-hero-sub { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; margin: 0; }
.ct-gold-line {
  width: 40px; height: 3px; border-radius: 9999px;
  background: linear-gradient(90deg, var(--g400), var(--g800)); margin: 20px auto 0;
}

/* content */
.ct-content { max-width: 1100px; margin: 0 auto; padding: 56px 24px 72px; }
.ct-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

/* info cards */
.ct-section-title {
  font-family: 'Kanit', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark);
  margin: 0 0 24px; display: flex; align-items: center; gap: 10px;
}
.ct-section-title::after {
  content: ''; flex: 1; height: 2px; border-radius: 9999px;
  background: linear-gradient(90deg, var(--g400), transparent);
}

.ct-info-card {
  background: #fff; border-radius: 16px; border: 1px solid rgba(212,160,23,.18);
  box-shadow: 0 4px 20px rgba(26,16,5,.07); padding: 28px; margin-bottom: 20px;
}
.ct-info-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 14px 0;
  border-bottom: 1px solid rgba(212,160,23,.1);
}
.ct-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.ct-info-item:first-child { padding-top: 0; }

.ct-info-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--g400) 0%, var(--g600) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(245,200,66,.35);
}
.ct-info-icon svg { color: var(--dark); }

.ct-info-text { flex: 1; }
.ct-info-label { font-size: 12px; color: var(--gray); font-weight: 500; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 4px; }
.ct-info-value { font-size: 15px; color: var(--dark); font-weight: 500; line-height: 1.5; }
.ct-info-value a { color: var(--g800); text-decoration: none; font-weight: 600; }
.ct-info-value a:hover { color: var(--g600); text-decoration: underline; }

/* hours table */
.ct-hours { width: 100%; border-collapse: collapse; margin-top: 4px; }
.ct-hours td { padding: 5px 0; font-size: 14px; }
.ct-hours td:first-child { color: var(--gray); width: 140px; }
.ct-hours td:last-child { color: var(--dark); font-weight: 500; }
.ct-hours tr.highlight td { color: var(--g800); font-weight: 600; }

/* map */
.ct-map-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(26,16,5,.1); border: 1px solid rgba(212,160,23,.18); }
.ct-map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }

/* appointment CTA */
.ct-cta {
  background: linear-gradient(135deg, #2a1b05 0%, #4a3008 100%);
  border-radius: 20px; padding: 40px; text-align: center; margin-top: 40px;
  position: relative; overflow: hidden;
}
.ct-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, #f5c842 1.5px, transparent 1.5px);
  background-size: 24px 24px; opacity: 0.06;
}
.ct-cta-inner { position: relative; z-index: 1; }
.ct-cta h3 { font-family: 'Kanit', sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.ct-cta p { color: rgba(255,255,255,.7); font-size: 14px; margin: 0 0 24px; }
.ct-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g400); color: var(--dark);
  font-family: 'Kanit', sans-serif; font-size: 15px; font-weight: 700;
  padding: 13px 32px; border-radius: 10px; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(245,200,66,.4);
}
.ct-cta-btn:hover { background: var(--g600); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,.5); text-decoration: none; }

@media (max-width: 768px) {
  .ct-hero { padding: 48px 16px 64px; }
  .ct-grid { grid-template-columns: 1fr; gap: 28px; }
  .ct-content { padding: 36px 16px 48px; }
  .ct-map-wrap iframe { height: 300px; }
}
