/* ==========================================================================
   รับจ้างแปลภาษา.com — Modern Homepage Styles
   ========================================================================== */

:root {
  --navy-900: #0a1a3a;
  --navy-800: #0f2350;
  --navy-700: #163063;
  --navy-600: #1d3d7a;
  --gold: #f4b740;
  --gold-dark: #e09c16;
  --teal: #14b8a6;
  --line: #06c755;
  --ink: #1d2a45;
  --muted: #5c6b8c;
  --soft: #f6f8fc;
  --card: #ffffff;
  --border: #e6ebf4;
  --shadow-sm: 0 4px 14px rgba(15, 35, 80, 0.06);
  --shadow-md: 0 14px 34px rgba(15, 35, 80, 0.10);
  --shadow-lg: 0 28px 60px rgba(15, 35, 80, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --font-head: "Prompt", "Sarabun", system-ui, sans-serif;
  --font-body: "Sarabun", "Noto Sans Thai", system-ui, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--soft);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

section { position: relative; }

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-white { background: #ffffff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--navy-600);
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(29, 61, 122, 0.08);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.section-head { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #ffd166, #f4b740); color: var(--navy-900); box-shadow: 0 12px 28px rgba(244, 183, 64, 0.35); }
.btn-gold:hover { box-shadow: 0 16px 36px rgba(244, 183, 64, 0.45); }
.btn-line { background: var(--line); color: #ffffff; box-shadow: 0 12px 28px rgba(6, 199, 85, 0.32); }
.btn-line:hover { box-shadow: 0 16px 36px rgba(6, 199, 85, 0.42); }
.btn-navy { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: #fff; box-shadow: 0 12px 28px rgba(15, 35, 80, 0.28); }
.btn-navy:hover { box-shadow: 0 16px 36px rgba(15, 35, 80, 0.38); }
.btn-ghost { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(15, 35, 80, 0.08);
  padding: 10px 0;
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; background: #fff; box-shadow: var(--shadow-sm); }
.brand-text { line-height: 1.2; }
.brand-text strong { display: block; font-family: var(--font-head); font-size: 19px; color: #fff; transition: color 0.3s ease; }
.brand-text span { font-size: 12.5px; color: rgba(255, 255, 255, 0.72); transition: color 0.3s ease; }
.site-header.scrolled .brand-text strong { color: var(--navy-900); }
.site-header.scrolled .brand-text span { color: var(--muted); }

.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a { display: inline-block; padding: 10px 16px; border-radius: 10px; font-weight: 500; font-size: 16px; color: rgba(255, 255, 255, 0.92); transition: color 0.25s, background 0.25s; }
.main-nav a:hover { background: rgba(255, 255, 255, 0.14); }
.site-header.scrolled .main-nav a { color: var(--navy-800); }
.site-header.scrolled .main-nav a:hover { background: rgba(29, 61, 122, 0.08); }

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border: 5px solid transparent;
  border-top-color: currentColor;
  vertical-align: 3px;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 760px;
  max-width: 92vw;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.dropdown a.dd-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 10px;
  white-space: nowrap;
}
.dropdown a.dd-link:hover { background: rgba(29, 61, 122, 0.06); color: var(--navy-600); }
.dropdown a.dd-link i { color: var(--gold-dark); width: 16px; text-align: center; font-size: 13px; }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; transition: 0.25s; }
.site-header.scrolled .nav-toggle span { background: var(--navy-900); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  color: #fff;
  z-index: 1100;
  padding: 96px 26px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #fff; display: block; padding: 13px 0; font-size: 18px; font-family: var(--font-head); font-weight: 500; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-menu .mm-sub { padding-left: 18px; }
.mobile-menu .mm-sub a { font-size: 15px; font-weight: 400; font-family: var(--font-body); color: rgba(255, 255, 255, 0.85); }
.mobile-menu .mm-title { font-size: 13px; letter-spacing: 2px; color: var(--gold); margin: 18px 0 4px; font-family: var(--font-head); text-transform: uppercase; }
.mobile-menu .btn { margin-top: 26px; width: 100%; }
.mm-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 168px 0 120px;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(244, 183, 64, 0.18), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(20, 184, 166, 0.16), transparent 60%),
    linear-gradient(150deg, #081430 0%, var(--navy-900) 45%, var(--navy-700) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--soft));
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  color: #ffe9b8;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffd166, #f4b740);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 19px; color: rgba(255, 255, 255, 0.85); max-width: 560px; margin-bottom: 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 640px;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 10px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.hero-stat b { display: block; font-family: var(--font-head); font-size: 24px; color: #ffd166; }
.hero-stat span { font-size: 12.5px; color: rgba(255, 255, 255, 0.78); }

.hero-visual { position: relative; }
.hero-visual .hero-img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.08);
  transform: rotate(1.5deg);
}
.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
}
.hero-float .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 19px;
  color: #fff;
}
.hero-float b { display: block; font-family: var(--font-head); font-size: 15px; color: var(--navy-900); line-height: 1.3; }
.hero-float span { font-size: 12.5px; color: var(--muted); }
.hero-float.top { top: 8%; right: -18px; }
.hero-float.bottom { bottom: 10%; left: -24px; }
.ic-gold { background: linear-gradient(135deg, #ffd166, #f4b740); }
.ic-line { background: var(--line); }

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 15.5px; }
.trust-item i { color: var(--teal); font-size: 22px; }
.trust-item b { color: var(--navy-900); font-family: var(--font-head); }

/* ==========================================================================
   Cards / generic
   ========================================================================== */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* ==========================================================================
   Services featured
   ========================================================================== */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card .sc-img { position: relative; height: 190px; overflow: hidden; }
.service-card .sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .sc-img img { transform: scale(1.08); }
.service-card .sc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 26, 58, 0.5), transparent 55%); }
.service-card .sc-icon {
  position: absolute;
  left: 20px; bottom: -24px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #ffd166;
  display: grid;
  place-items: center;
  font-size: 21px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card .sc-body { padding: 40px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 21px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 15px; flex: 1; margin-bottom: 16px; }
.service-card .sc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.service-card .sc-tags span {
  font-size: 12px;
  color: var(--navy-600);
  background: rgba(29, 61, 122, 0.07);
  padding: 4px 10px;
  border-radius: 999px;
}
.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-700);
}
.sc-link i { transition: transform 0.25s ease; }
.service-card:hover .sc-link i { transform: translateX(4px); }

/* All services chips */
.all-services { margin-top: 44px; }
.all-services h3 { text-align: center; font-size: 24px; margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chips a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  transition: all 0.25s ease;
}
.chips a:hover { background: var(--navy-700); color: #fff; border-color: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chips a i { font-size: 13px; }

/* ==========================================================================
   Why us
   ========================================================================== */

.why-section { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #fff; }
.why-section .eyebrow { background: rgba(255, 255, 255, 0.1); color: #ffe9b8; }
.why-section .section-head h2 { color: #fff; }
.why-section .section-head p { color: rgba(255, 255, 255, 0.75); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 30px 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.12); }
.why-card .ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--navy-900);
  background: linear-gradient(135deg, #ffd166, #f4b740);
  margin-bottom: 18px;
}
.why-card h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.why-card p { color: rgba(255, 255, 255, 0.72); font-size: 14.5px; }

/* ==========================================================================
   Process
   ========================================================================== */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  color: rgba(29, 61, 122, 0.1);
  line-height: 1;
  margin-bottom: 8px;
}
.step-card .ic { color: var(--navy-600); font-size: 24px; margin-bottom: 10px; }
.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 15px; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 860px; margin: 0 auto 34px; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--gold); }
.price-card .ic {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-sm);
}
.price-card.featured .ic { background: linear-gradient(135deg, #ffd166, #f4b740); color: var(--navy-900); }
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-card .amount { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--navy-900); margin: 10px 0 2px; }
.price-card .amount small { font-size: 17px; color: var(--muted); font-weight: 500; }
.price-card .per { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.price-card ul { text-align: left; margin-bottom: 24px; }
.price-card ul li { display: flex; gap: 10px; padding: 7px 0; font-size: 15px; color: var(--ink); }
.price-card ul li i { color: var(--teal); margin-top: 3px; }

.price-note {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(244, 183, 64, 0.1);
  border: 1px dashed rgba(224, 156, 22, 0.5);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  color: #7a5a10;
  font-size: 15.5px;
  text-align: center;
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.review-card .quote { font-size: 16.5px; color: var(--ink); font-style: italic; margin-bottom: 22px; line-height: 1.7; }
.review-card .quote::before { content: "\201C"; font-family: Georgia, serif; font-size: 40px; color: var(--gold); display: block; line-height: 0.6; margin-bottom: 10px; }
.review-card .rc-head { display: flex; align-items: center; gap: 14px; }
.review-card .rc-head img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.review-card .rc-head b { display: block; font-family: var(--font-head); font-size: 15.5px; color: var(--navy-900); }
.review-card .rc-head span { font-size: 13px; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 15px; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 26px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold-dark);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 22px; color: var(--muted); font-size: 15.5px; }

/* ==========================================================================
   SEO content
   ========================================================================== */

.seo-content .container { max-width: 880px; }
.seo-block { margin-bottom: 44px; }
.seo-block h2 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 16px; }
.seo-block h3 { font-size: 22px; margin: 30px 0 14px; }
.seo-block p { color: var(--ink); margin-bottom: 16px; font-size: 17px; }
.seo-block a { color: var(--navy-600); text-decoration: underline; text-underline-offset: 3px; }

.lang-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 26px 0; }
.lang-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.lang-card b { display: block; font-family: var(--font-head); font-size: 16px; color: var(--navy-900); }
.lang-card span { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   Map / contact
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  flex-shrink: 0;
}
.contact-card.line .ic { background: var(--line); }
.contact-card.mail .ic { background: linear-gradient(135deg, #ea4335, #c5221f); }
.contact-card h3 { font-size: 17px; margin-bottom: 3px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 15.5px; }

.map-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(244, 183, 64, 0.2), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: #fff;
  padding: 78px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 640px; margin: 0 auto 32px; font-size: 17px; }
.cta-band .cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.72); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-col h4 { color: #fff; font-size: 17px; margin-bottom: 18px; font-family: var(--font-head); }
.footer-col p { font-size: 15px; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.72); font-size: 15px; transition: color 0.2s; }
.footer-col ul a:hover { color: #ffd166; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 14px; }
.footer-brand strong { font-family: var(--font-head); color: #fff; font-size: 19px; line-height: 1.3; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 17px;
  transition: background 0.25s, transform 0.25s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-3px); }
.footer-line { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 22px 0; text-align: center; font-size: 14px; }
.footer-line a { color: #ffd166; }

/* Floating LINE button */
.float-line {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1050;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--line);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(6, 199, 85, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse 2.6s infinite;
}
.float-line:hover { transform: translateY(-4px) scale(1.05); }
@keyframes pulse {
  0% { box-shadow: 0 12px 30px rgba(6, 199, 85, 0.45), 0 0 0 0 rgba(6, 199, 85, 0.4); }
  70% { box-shadow: 0 12px 30px rgba(6, 199, 85, 0.45), 0 0 0 18px rgba(6, 199, 85, 0); }
  100% { box-shadow: 0 12px 30px rgba(6, 199, 85, 0.45), 0 0 0 0 rgba(6, 199, 85, 0); }
}

/* Scroll top */
.scroll-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1050;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-700);
  color: #fff;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  box-shadow: var(--shadow-md);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 140px; }
  .hero-visual { max-width: 520px; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lang-cards { grid-template-columns: repeat(2, 1fr); }
  .dropdown { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero { padding-top: 128px; padding-bottom: 90px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .reviews-grid, .steps-grid, .why-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float.top { right: 0; }
  .hero-float.bottom { left: 0; }
  .nav-toggle { display: flex; }
  .section-head h2 { font-size: 28px; }
}
