/*
Theme Name:  เช็คประโยคภาษาอังกฤษ — TranslationFind
Theme URI:   https://www.xn--12cfamm7h2bhn4c0b7aq5r9a5e.com/
Author:      TranslationFind / IDEAL PARTNER GROUP
Author URI:  https://www.translationfind.com/
Description: เทมเพลตสำหรับเว็บบริการรับเช็คแกรมม่า ตรวจไวยากรณ์ และ Proofreading ภาษาอังกฤษโดยเจ้าของภาษา — Navy & Amber Premium Theme
Version:     2.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tf-proofreading
Tags:        thai, proofreading, business, professional, dark, navy
*/

/* ============================================================
   TRANSLATIONFIND PROOFREADING THEME — MASTER STYLESHEET
   Navy #1a2b48 + Amber #f39c12 + Cream #fdf9f3
   ============================================================ */

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

/* ── Variables ──────────────────────────────────────────── */
:root {
  --navy:   #1a2b48;
  --navy2:  #233560;
  --navy3:  #2d4070;
  --amber:  #f39c12;
  --amber2: #f5b942;
  --amber3: #d4870a;
  --green:  #27ae60;
  --green2: #2ecc71;
  --cream:  #fdf9f3;
  --cream2: #f0e8d8;
  --text:   #2c2c2c;
  --text2:  #555555;
  --text3:  #888888;
  --white:  #ffffff;
  --radius: 8px;
  --radius-lg: 13px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sarabun', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy); }

/* ── TOP BAR ────────────────────────────────────────────── */
.tf-topbar {
  background: var(--navy);
  padding: 9px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tf-topbar-left  { font-size: 13px; color: rgba(255,255,255,.55); }
.tf-topbar-right { display: flex; gap: 18px; }
.tf-topbar-right a {
  color: var(--amber2);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tf-topbar-right a:hover { color: #fff; }

/* ── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid rgba(243,156,18,.18);
  box-shadow: 0 2px 20px rgba(0,0,0,.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 66px;
  max-width: 1200px;
  margin: 0 auto;
}
.site-logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--amber), var(--amber2));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 19px; color: var(--navy);
  flex-shrink: 0;
}
.logo-name {
  color: #fff;
  font-family: 'Noto Serif Thai', serif;
  font-size: 15px; font-weight: 700; line-height: 1.2;
}
.logo-tagline { font-size: 10px; color: rgba(255,255,255,.38); letter-spacing: 1px; }

/* Primary nav */
.primary-nav { display: flex; gap: 4px; align-items: center; }
.primary-nav a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all .2s;
}
.primary-nav a:hover,
.primary-nav a.current { color: var(--amber2); background: rgba(243,156,18,.1); }
.primary-nav .nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
}
.primary-nav .nav-cta:hover { background: var(--amber2) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ───────────────────────────────────────────────── */
.tf-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 60%, #1e3a5f 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.tf-hero::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(243,156,18,.08), transparent 65%);
}
.tf-hero::after {
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(39,174,96,.06), transparent 65%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: center;
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(243,156,18,.12);
  border: 1px solid rgba(243,156,18,.3);
  padding: 5px 14px; border-radius: 30px; margin-bottom: 18px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--amber); border-radius: 50%;
  animation: blink 2s infinite;
}
.badge-text { font-size: 12px; color: var(--amber2); letter-spacing: .8px; }
.tf-hero h1 {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff; line-height: 1.15;
  margin-bottom: 16px; font-weight: 700;
}
.tf-hero h1 em { color: var(--amber2); font-style: normal; }
.hero-desc { font-size: 16px; color: rgba(255,255,255,.62); line-height: 1.8; margin-bottom: 30px; max-width: 500px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-pills { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.5); }
.pill-check { color: var(--green2); }

/* Hero price card */
.hero-price-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(243,156,18,.22);
  border-radius: 14px; padding: 30px;
  backdrop-filter: blur(8px);
}
.hpc-title {
  font-size: 11px; letter-spacing: 2px; color: var(--amber2);
  text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hpc-title::after { content: ''; flex: 1; height: 1px; background: rgba(243,156,18,.2); }
.price-row-card {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
}
.price-row-card:last-of-type { border-bottom: none; }
.prn { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.88); margin-bottom: 3px; }
.prd { font-size: 11px; color: rgba(255,255,255,.33); }
.prp { font-family: 'Noto Serif Thai', serif; font-size: 26px; font-weight: 700; color: var(--amber2); line-height: 1; }
.pru { font-size: 11px; color: rgba(255,255,255,.33); text-align: right; margin-top: 2px; }
.hpc-note { margin-top: 14px; font-size: 11px; color: rgba(255,255,255,.27); text-align: center; line-height: 1.6; }
.hpc-cta {
  display: block; margin-top: 18px;
  background: var(--amber); color: var(--navy);
  text-align: center; padding: 12px;
  border-radius: var(--radius); font-weight: 700; font-size: 14px;
  transition: background .2s;
}
.hpc-cta:hover { background: var(--amber2); color: var(--navy); }

/* ── STATS BAR ──────────────────────────────────────────── */
.tf-stats {
  background: #fff;
  border-top: 3px solid var(--amber);
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 28px 5%;
  display: flex; justify-content: center;
}
.stat-item { flex: 1; max-width: 200px; text-align: center; padding: 0 20px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  height: 36px; width: 1px; background: var(--cream2);
}
.stat-num { font-family: 'Noto Serif Thai', serif; font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--text2); margin-top: 5px; }

/* ── BANNER IMAGE STRIP ─────────────────────────────────── */
.tf-banner-strip { width: 100%; overflow: hidden; position: relative; max-height: 320px; }
.tf-banner-strip img { width: 100%; max-height: 320px; object-fit: cover; display: block; }
.tf-banner-strip .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,43,72,.65) 0%, rgba(26,43,72,.2) 60%, transparent 100%);
}
.tf-banner-strip .overlay-content {
  position: absolute; top: 50%; left: 5%;
  transform: translateY(-50%); max-width: 560px;
}
.tf-banner-strip .overlay-title {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(22px, 3vw, 36px); font-weight: 700;
  color: #fff; line-height: 1.3; margin-bottom: 12px;
}
.tf-banner-strip .overlay-sub { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 20px; }
.tf-banner-strip .overlay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #f39c12, #f5b942);
  color: var(--navy); padding: 12px 28px;
  border-radius: var(--radius); font-weight: 700; font-size: 15px;
  transition: opacity .2s;
}
.tf-banner-strip .overlay-btn:hover { opacity: .9; color: var(--navy); }

/* ── SECTION COMMONS ────────────────────────────────────── */
.tf-section      { padding: 72px 5%; }
.tf-section-in   { max-width: 1100px; margin: 0 auto; }
.bg-white        { background: #fff; }
.bg-cream        { background: var(--cream); }
.bg-navy         { background: var(--navy); }
.sec-eyebrow {
  display: block; font-size: 11px; letter-spacing: 3px;
  color: var(--amber3); text-transform: uppercase; margin-bottom: 10px;
}
.bg-navy .sec-eyebrow { color: var(--amber); }
.sec-heading {
  font-family: 'Noto Serif Thai', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--navy); margin-bottom: 12px; line-height: 1.2;
}
.bg-navy .sec-heading { color: #fff; }
.sec-lead { font-size: 16px; color: var(--text2); line-height: 1.75; max-width: 560px; }
.bg-navy .sec-lead { color: rgba(255,255,255,.48); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Sarabun', sans-serif;
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-amber { background: linear-gradient(135deg, var(--amber), var(--amber2)); color: var(--navy); }
.btn-amber:hover { opacity: .9; color: var(--navy); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber2); }
.btn-navy  { background: var(--navy);  color: #fff; }
.btn-navy:hover  { background: var(--navy2); color: #fff; }
.btn-lg { padding: 15px 38px; font-size: 16px; }

/* ── IMPORTANCE ─────────────────────────────────────────── */
.imp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 44px; }
.imp-text p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
.imp-visual { background: var(--cream); border-radius: 14px; padding: 28px; border: 1.5px solid var(--cream2); }
.comp-intro { font-size: 12px; color: var(--text3); letter-spacing: .5px; margin-bottom: 14px; text-transform: uppercase; }
.comp-lbl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; opacity: .7; margin-bottom: 6px; }
.comp-before {
  background: #fff; border-radius: 8px; padding: 14px 18px;
  border-left: 4px solid #e74c3c; color: #c0392b;
  font-size: 14px; line-height: 1.6; margin-bottom: 12px;
}
.comp-after {
  background: #fff; border-radius: 8px; padding: 14px 18px;
  border-left: 4px solid var(--green); color: #1e8449;
  font-size: 14px; line-height: 1.6;
}

/* ── SERVICES ───────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.svc-card {
  background: #fff; border: 1.5px solid var(--cream2);
  border-radius: var(--radius-lg); padding: 30px;
  transition: all .3s; cursor: default;
}
.svc-card:hover { border-color: var(--amber); box-shadow: 0 6px 28px rgba(243,156,18,.11); transform: translateY(-4px); }
.svc-num  { font-family: 'Noto Serif Thai', serif; font-size: 44px; font-weight: 700; color: var(--cream2); line-height: 1; margin-bottom: 12px; }
.svc-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.svc-en   { font-size: 12px; color: var(--text3); margin-bottom: 11px; letter-spacing: .5px; }
.svc-desc { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tag  { background: var(--cream); color: var(--text2); font-size: 12px; padding: 4px 10px; border-radius: 20px; border: 1px solid var(--cream2); }

/* ── PRICING ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; max-width: 820px; }
.pc {
  background: var(--cream); border: 1.5px solid var(--cream2);
  border-radius: var(--radius-lg); padding: 34px;
  position: relative; transition: all .3s;
}
.pc:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.pc.featured { border-color: var(--amber); background: #fff; box-shadow: 0 8px 32px rgba(243,156,18,.14); }
.feat-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--navy);
  font-size: 11px; font-weight: 700; padding: 4px 18px;
  border-radius: 20px; white-space: nowrap; letter-spacing: .4px;
}
.pc-name  { font-size: 13px; color: var(--text3); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.pc-price { font-family: 'Noto Serif Thai', serif; font-size: 52px; font-weight: 700; color: var(--navy); line-height: 1; }
.pc-unit  { font-size: 15px; color: var(--text3); margin-bottom: 22px; }
.pc-divider { height: 1px; background: var(--cream2); margin: 20px 0; }
.pc-features { display: flex; flex-direction: column; gap: 11px; }
.pc-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text2); line-height: 1.5; }
.feat-check { color: var(--amber); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pc-action { display: block; margin-top: 24px; text-align: center; padding: 13px; border-radius: var(--radius); font-weight: 700; font-size: 15px; transition: all .2s; }
.pc-note { margin-top: 14px; font-size: 12px; color: var(--text3); text-align: center; line-height: 1.6; }

/* ── HOW TO ORDER ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.step-item { text-align: center; padding: 16px; }
.step-circle {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--amber), var(--amber2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif Thai', serif; font-size: 22px; font-weight: 700; color: var(--navy);
  margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(243,156,18,.3);
}
.step-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.step-desc  { font-size: 13px; color: rgba(255,255,255,.43); line-height: 1.7; }
.step-cta   { text-align: center; margin-top: 46px; }

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; align-items: start; }
.about-checklist { background: var(--cream); border-radius: 14px; padding: 32px; border: 1.5px solid var(--cream2); }
.about-checklist-title { font-size: 11px; letter-spacing: 2px; color: var(--amber3); text-transform: uppercase; margin-bottom: 18px; }
.about-check-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.about-check-item:last-child { margin-bottom: 0; }
.check-ok { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.check-text { font-size: 14px; color: var(--text2); line-height: 1.6; }
.about-quote {
  margin-top: 22px; padding: 16px;
  background: var(--navy); border-radius: 9px; text-align: center;
}
.about-quote p {
  font-family: 'Noto Serif Thai', serif; font-size: 15px; font-weight: 700;
  color: var(--amber2); line-height: 1.6; margin: 0;
}

/* ── TEAM SECTION ───────────────────────────────────────── */
.team-photo-wrap {
  margin-top: 36px; border-radius: 14px; overflow: hidden;
  border: 2px solid var(--cream2); box-shadow: 0 8px 32px rgba(0,0,0,.10);
  position: relative;
}
.team-photo-wrap img { width: 100%; height: 360px; object-fit: cover; display: block; }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,43,72,.75) 0%, transparent 55%);
}
.team-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px;
}
.team-caption-title { font-family: 'Noto Serif Thai', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.team-caption-sub { font-size: 14px; color: rgba(255,255,255,.7); }
.team-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.team-badge {
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px; border-radius: 30px; font-size: 13px; color: #fff;
}
.team-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.team-card {
  background: #fff; border: 1.5px solid var(--cream2);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all .3s; cursor: default;
}
.team-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 6px 24px rgba(243,156,18,.1); }
.team-card-icon { font-size: 32px; margin-bottom: 14px; }
.team-card-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.team-card-desc  { font-size: 14px; color: var(--text2); line-height: 1.7; }
.team-en-box {
  margin-top: 44px; background: var(--navy); border-radius: 14px;
  padding: 36px 40px; position: relative; overflow: hidden;
}
.team-en-box::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(243,156,18,.08), transparent 65%);
}
.team-en-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; position: relative; z-index: 1; }
.team-en-label { font-size: 11px; letter-spacing: 2px; color: var(--amber2); text-transform: uppercase; margin-bottom: 14px; }
.team-en-text  { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.8; }

/* ── TRANSLATION SERVICE ────────────────────────────────── */
.trans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 44px; align-items: center; }
.trans-check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.trans-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text2); }
.trans-check-icon { color: var(--amber); font-size: 15px; }
.trans-panel { background: var(--cream); border-radius: 14px; padding: 32px; border: 1.5px solid var(--cream2); }
.trans-panel-title { font-size: 12px; letter-spacing: 2px; color: var(--amber3); text-transform: uppercase; margin-bottom: 18px; }
.trans-doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trans-doc-item { background: #fff; border-radius: 8px; padding: 12px 14px; font-size: 13px; color: var(--text2); border: 1px solid var(--cream2); }
.trans-contact-box { margin-top: 18px; background: var(--navy); border-radius: 9px; padding: 16px 18px; }
.trans-contact-label { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.trans-contact-info  { font-size: 14px; color: var(--amber2); font-weight: 600; }
.trans-contact-tel   { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── WHY US ─────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.why-card {
  background: #fff; border-radius: 12px; padding: 26px;
  display: flex; gap: 15px; align-items: flex-start;
  border: 1.5px solid var(--cream2); transition: all .3s;
}
.why-card:hover { border-color: var(--amber); box-shadow: 0 4px 20px rgba(243,156,18,.09); }
.why-icon-box {
  width: 46px; height: 46px; border-radius: 9px;
  background: rgba(243,156,18,.1); border: 1.5px solid rgba(243,156,18,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.why-card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.why-card-desc  { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ── CONTACT BAR ────────────────────────────────────────── */
.tf-contact-bar { background: linear-gradient(135deg, var(--amber), var(--amber2)); padding: 48px 5%; }
.tf-contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.tf-contact-text h3 {
  font-family: 'Noto Serif Thai', serif; font-size: 24px; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
}
.tf-contact-text p { font-size: 14px; color: rgba(13,27,62,.62); margin: 0; }
.tf-contact-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.tf-ch-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 20px; border-radius: var(--radius);
  font-family: 'Sarabun', sans-serif; font-size: 14px; font-weight: 700;
  transition: all .2s; border: none; cursor: pointer;
}
.tf-ch-btn:hover { transform: translateY(-2px); opacity: .9; }
.ch-email { background: var(--navy); color: #fff; }
.ch-line  { background: #00B900; color: #fff; }
.ch-tel   { background: rgba(13,27,62,.75); color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--navy); padding: 52px 5% 24px; border-top: 3px solid var(--amber3); }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px; margin-bottom: 40px;
}
.footer-brand    { font-family: 'Noto Serif Thai', serif; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-desc     { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.75; max-width: 280px; }
.footer-col-head { font-size: 11px; letter-spacing: 2px; color: var(--amber2); text-transform: uppercase; margin-bottom: 14px; }
.footer-links    { display: flex; flex-direction: column; gap: 9px; }
.footer-links a  { font-size: 14px; color: rgba(255,255,255,.43); transition: color .2s; }
.footer-links a:hover { color: var(--amber2); }
.footer-contact-list { display: flex; flex-direction: column; gap: 11px; }
.footer-ci { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-ci-icon  { color: var(--amber); flex-shrink: 0; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.23); }
.footer-keywords { max-width: 1100px; margin: 16px auto 0; font-size: 11px; color: rgba(255,255,255,.14); line-height: 1.9; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeUp .65s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid    { grid-template-columns: 1fr 1fr; }
  .team-cards  { grid-template-columns: 1fr 1fr; }
  .steps-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-price-card   { display: none; }
  .imp-grid, .about-grid, .trans-grid,
  .pricing-grid, .why-grid { grid-template-columns: 1fr; }
  .svc-grid, .team-cards, .steps-grid, .team-en-grid { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .primary-nav       { display: none; }
  .nav-toggle        { display: flex; }
  .primary-nav.open  {
    display: flex; flex-direction: column;
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--navy2);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(243,156,18,.15);
    gap: 4px;
  }
  .stats-inner       { flex-wrap: wrap; gap: 18px; }
  .stat-item + .stat-item::before { display: none; }
  .tf-contact-inner  { flex-direction: column; text-align: center; }
  .tf-contact-btns   { justify-content: center; }
  .footer-bottom     { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn       { width: 100%; justify-content: center; }
  .tf-topbar { flex-direction: column; text-align: center; }
}
