/* =========================================================
   Mercedes-Benz & Alphard Rental Phuket
   Premium Black & Gold Theme — style.css
   Font: Kanit
========================================================= */

:root {
  --gold:        #c9a24b;
  --gold-light:  #e8cd86;
  --gold-deep:   #9c7a2e;
  --gold-grad:   linear-gradient(135deg, #f3dca0 0%, #c9a24b 45%, #9c7a2e 100%);

  --bg:          #0a0a0a;
  --bg-2:        #101010;
  --bg-3:        #161513;
  --card:        #141312;
  --card-2:      #1b1916;

  --text:        #f4f1ea;
  --muted:       #a9a299;
  --muted-2:     #6f6a62;
  --line:        rgba(201, 162, 75, 0.18);
  --line-soft:   rgba(255, 255, 255, 0.07);

  --radius:      16px;
  --radius-lg:   26px;
  --shadow:      0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 18px 50px rgba(201, 162, 75, 0.22);

  --maxw:        1200px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Kanit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: #0a0a0a; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: 110px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .6; }

h1, h2, h3, h4 { font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; }

.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 100px; font-weight: 500; font-size: .98rem;
  letter-spacing: .02em; transition: all .35s var(--ease); position: relative;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: var(--gold-grad); color: #0a0a0a;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(201,162,75,.4); }

.btn-ghost {
  border: 1px solid var(--line); color: var(--text); background: rgba(255,255,255,.02);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0; transition: all .4s var(--ease);
}
.site-header.scrolled {
  padding: 12px 0; background: rgba(8,8,8,.85);
  backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { height: 42px; width: auto; }
.logo-img {
  height: 58px; width: auto; display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.55));
  transition: height .35s var(--ease), filter .35s var(--ease);
}
.logo-img:hover { filter: drop-shadow(0 6px 16px rgba(201,162,75,.5)); }
.site-header.scrolled .logo-img { height: 48px; }
.footer-logo-img { height: 88px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-weight: 600; font-size: 1.02rem; letter-spacing: .02em; }
.logo-text span { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: .95rem; color: var(--muted); position: relative; transition: color .3s; font-weight: 300; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--gold-grad); transition: width .3s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }

.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--text); transition: all .3s var(--ease); border-radius: 2px; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 90px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #0a0a0a; }
/* รูปพื้นหลังจริง (เบลอ + หรี่แสง) */
.hero-bg::before {
  content: ""; position: absolute; inset: -30px; z-index: -1;
  background: url("/images/background1.webp") center/cover no-repeat;
  filter: blur(4px) brightness(.6) saturate(1.05);
  transform: scale(1.08);
}
/* เคลือบเงาดำ-ทอง ให้ตัวอักษรอ่านชัด */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 75% 18%, rgba(201,162,75,.20), transparent 60%),
    radial-gradient(700px 600px at 8% 92%, rgba(201,162,75,.10), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,.80) 0%, rgba(10,10,10,.55) 42%, rgba(10,10,10,.93) 100%);
}

.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px;
  border: 1px solid var(--line); border-radius: 100px; font-size: .8rem;
  color: var(--gold-light); margin-bottom: 26px; background: rgba(201,162,75,.05);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 600; margin-bottom: 24px; }
.hero h1 .light { font-weight: 200; display: block; color: var(--muted); font-size: .55em; letter-spacing: .04em; margin-top: 6px; }
.hero p.lead { font-size: 1.12rem; color: var(--muted); max-width: 520px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

/* กรอบกระจกสไตล์ iOS (liquid glass) ครอบ hero-stats */
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-stats .stat {
  text-align: center; padding: 16px 8px; border-radius: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.hero-stats .stat strong { display: block; font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 700; line-height: 1.05; white-space: nowrap; }
.hero-stats .stat strong span { font-size: inherit; }
.hero-stats .stat > span { font-size: .76rem; color: var(--muted); letter-spacing: .03em; }

.hero-visual { position: relative; }
.hero-card {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; top: -40%; right: -20%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,162,75,.18), transparent 70%);
}
.hero-car-img {
  width: 100%; border-radius: 14px; background: radial-gradient(circle at 50% 100%, #1f1d19, #0d0c0b);
  padding: 16px; margin-bottom: 22px; object-fit: cover;
}
/* รูปถ่ายจริงในการ์ด hero — ให้เต็มกรอบ ไม่มีขอบ padding */
.hero-card .hero-car-img { padding: 0; }
.hero-card .price-row { display: flex; align-items: baseline; justify-content: space-between; }
.hero-card .price-row .name { font-weight: 500; font-size: 1.1rem; }
.hero-card .price-row .name small { display: block; color: var(--muted); font-size: .78rem; font-weight: 300; }
.hero-card .price { color: var(--gold); font-size: 1.3rem; font-weight: 600; }
.hero-card .price small { color: var(--muted); font-size: .72rem; font-weight: 300; }

.float-tag {
  position: absolute; background: rgba(20,19,18,.9); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 14px; padding: 12px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); font-size: .85rem;
}
.float-tag svg { width: 22px; height: 22px; color: var(--gold); }
.float-tag.t1 { top: -22px; left: -26px; animation: floaty 5s ease-in-out infinite; }
.float-tag.t2 { bottom: -22px; right: -18px; animation: floaty 6s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =========================================================
   TRUST BAR
========================================================= */
.trustbar { padding: 40px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.trust-item { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .92rem; }
.trust-item svg {
  width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; box-sizing: content-box; padding: 11px;
  border-radius: 50%; border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(201,162,75,.18), rgba(201,162,75,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 6px 16px rgba(0,0,0,.28);
}

/* =========================================================
   FLEET
========================================================= */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.car-card {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; transition: all .45s var(--ease); position: relative;
}
.car-card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.car-media { position: relative; background: radial-gradient(circle at 50% 120%, #201d18, #0c0b09); overflow: hidden; }
.car-media .car-img { width: 100%; height: 300px; object-fit: cover; display: block; }

/* ---------- Car image slider ---------- */
.car-slider { position: relative; overflow: hidden; }
.car-slides { display: flex; transition: transform .55s var(--ease); }
.car-slides .car-img { min-width: 100%; width: 100%; height: 300px; object-fit: cover; display: block; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%;
  background: rgba(8,8,8,.55); border: 1px solid var(--line); color: #fff; display: grid; place-items: center;
  z-index: 2; opacity: 0; transition: opacity .3s var(--ease), background .3s, color .3s; backdrop-filter: blur(6px);
}
.slider-btn svg { width: 20px; height: 20px; }
.car-slider:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: var(--gold); color: #0a0a0a; }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 2; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.55); transition: all .3s var(--ease); }
.slider-dots button.active { background: var(--gold); width: 22px; border-radius: 5px; }
@media (max-width: 768px) { .slider-btn { opacity: 1; width: 36px; height: 36px; } }
@media (prefers-reduced-motion: reduce) { .car-slides { transition: none; } }
.car-tag {
  position: absolute; top: 20px; left: 20px; z-index: 3; background: var(--gold-grad); color: #0a0a0a;
  font-size: .72rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; letter-spacing: .04em;
}
.car-body { padding: 30px; }
.car-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.car-body .sub { color: var(--gold); font-size: .85rem; letter-spacing: .06em; margin-bottom: 18px; }
.car-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.car-specs .spec { text-align: center; padding: 14px 8px; background: rgba(255,255,255,.02); border: 1px solid var(--line-soft); border-radius: 12px; }
.car-specs .spec svg { width: 22px; height: 22px; color: var(--gold); margin: 0 auto 8px; }
.car-specs .spec strong { display: block; font-size: 1rem; font-weight: 500; }
.car-specs .spec span { font-size: .72rem; color: var(--muted); }
.car-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.car-foot .from { color: var(--muted); font-size: .78rem; }
.car-foot .from b { display: block; color: var(--gold); font-size: 1.35rem; font-weight: 600; }

/* =========================================================
   SERVICES
========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  padding: 36px 30px; border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--card); transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: var(--line); background: var(--card-2); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201,162,75,.1); border: 1px solid var(--line); margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--gold); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   STEPS
========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; padding: 0 10px; }
.step .num {
  width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); background: var(--card); font-size: 1.4rem; font-weight: 600; color: var(--gold);
  position: relative; z-index: 2;
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 32px; left: 60%; width: 80%; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent); z-index: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .9rem; }

/* =========================================================
   FEATURES / WHY
========================================================= */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr;
  grid-template-areas: "head visual" "list visual";
  column-gap: 60px; row-gap: 30px; align-items: start;
}
.why-head { grid-area: head; }
.why-visual { grid-area: visual; align-self: stretch; }
.why-list { grid-area: list; display: grid; gap: 20px; align-content: start; }
.why-item { display: flex; gap: 18px; padding: 22px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--card); transition: all .35s var(--ease); }
.why-item:hover { border-color: var(--line); transform: translateX(6px); }
.why-item .ic { width: 50px; height: 50px; border-radius: 12px; background: rgba(201,162,75,.1); display: grid; place-items: center; flex-shrink: 0; }
.why-item .ic svg { width: 24px; height: 24px; color: var(--gold); }
.why-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: .92rem; }

.why-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: radial-gradient(circle at 50% 30%, #1c1a16, #0b0a09); padding: 50px 40px; min-height: 420px; display: flex; flex-direction: column; justify-content: center; }
.why-visual .badge-lg { font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.why-visual p { color: var(--muted); }

/* =========================================================
   STATS
========================================================= */
.stats { background: linear-gradient(180deg, #0c0b09, #0a0a0a); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-box {
  padding: 30px 12px; border-radius: 18px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.stat-box strong { display: block; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; line-height: 1; white-space: nowrap; }
.stat-box strong span { font-size: inherit; }
.stat-box > span { color: var(--muted); font-size: .9rem; letter-spacing: .04em; }

/* =========================================================
   GALLERY
========================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid var(--line-soft); background: radial-gradient(circle at 50% 100%, #1c1a16, #0c0b09); display: grid; place-items: center; transition: all .4s var(--ease); }
.gallery-item:hover { border-color: var(--gold); transform: scale(.98); }
.gallery-item.big { grid-column: span 2; grid-row: span 2; }
.gallery-item svg { width: 60%; opacity: .8; }
.gallery-item { cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  align-items: center; justify-content: center;
  background: rgba(6, 6, 6, .95); backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; animation: lbFade .25s var(--ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img {
  max-width: 90vw; max-height: 84vh; border-radius: 12px;
  border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(0,0,0,.45); color: var(--text);
  font-size: 1.8rem; line-height: 1; display: grid; place-items: center; transition: all .3s;
}
.lightbox-close:hover { background: var(--gold); color: #0a0a0a; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(0,0,0,.45); color: var(--text);
  font-size: 2.2rem; line-height: 1; display: grid; place-items: center; transition: all .3s;
}
.lightbox-nav:hover { background: var(--gold); color: #0a0a0a; }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: .9rem; letter-spacing: .05em;
  background: rgba(0,0,0,.5); border: 1px solid var(--line); padding: 6px 16px; border-radius: 100px;
}
@media (max-width: 600px) {
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.7rem; }
  .lightbox-nav.prev { left: 10px; } .lightbox-nav.next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; }
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { padding: 32px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--card); position: relative; }
.testi-card .stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 3px; }
.testi-card p { font-size: .98rem; margin-bottom: 22px; color: var(--text); font-weight: 200; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; color: #0a0a0a; font-weight: 600; }
.testi-author strong { display: block; font-size: .95rem; font-weight: 500; }
.testi-author span { font-size: .8rem; color: var(--muted); }

/* =========================================================
   PRICING
========================================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { padding: 38px 32px; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); background: var(--card); transition: all .4s var(--ease); position: relative; }
.price-card.featured { border-color: var(--gold); background: linear-gradient(170deg, var(--card-2), var(--card)); box-shadow: var(--shadow-gold); }
.price-card.featured::before { content: "แนะนำ"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #0a0a0a; font-size: .72rem; font-weight: 600; padding: 5px 18px; border-radius: 100px; }
.price-card:hover { transform: translateY(-6px); }
.price-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.price-card .desc { color: var(--muted); font-size: .85rem; margin-bottom: 20px; }
.price-card .amount { font-size: 2.6rem; font-weight: 700; margin-bottom: 4px; }
.price-card .amount small { font-size: .9rem; color: var(--muted); font-weight: 300; }
.price-card .unit { color: var(--muted); font-size: .82rem; margin-bottom: 24px; }
.price-features { display: grid; gap: 12px; margin-bottom: 28px; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.price-features li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.price-card .btn { width: 100%; }

/* =========================================================
   FAQ
========================================================= */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; background: var(--card); transition: border-color .3s; }
.faq-item.open { border-color: var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px; font-size: 1.05rem; font-weight: 400; text-align: left; }
.faq-q .ic { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: all .3s; color: var(--gold); }
.faq-item.open .faq-q .ic { background: var(--gold); color: #0a0a0a; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: .96rem; }

/* =========================================================
   CONTACT / BOOKING
========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.contact-info > p { color: var(--muted); margin-bottom: 34px; }
.contact-methods { display: grid; gap: 18px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--card); transition: all .35s var(--ease); }
.contact-method:hover { border-color: var(--gold); transform: translateX(6px); }
.contact-method .ic { width: 50px; height: 50px; border-radius: 12px; background: rgba(201,162,75,.1); display: grid; place-items: center; flex-shrink: 0; }
.contact-method .ic svg { width: 24px; height: 24px; color: var(--gold); }
.contact-method span { display: block; font-size: .78rem; color: var(--muted); }
.contact-method strong { font-size: 1.05rem; font-weight: 500; }

.booking-form { background: linear-gradient(160deg, var(--card-2), var(--card)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.booking-form h3 { font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 8px; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: rgba(0,0,0,.3); border: 1px solid var(--line-soft);
  border-radius: 12px; color: var(--text); font-family: inherit; font-size: .95rem; font-weight: 300; transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field select option { background: #141312; }
.field textarea { resize: vertical; min-height: 90px; }
.booking-form .btn { width: 100%; margin-top: 8px; }
.form-note { text-align: center; font-size: .8rem; color: var(--muted-2); margin-top: 16px; }

/* =========================================================
   GOOGLE MAP (ฝังแผนที่จริง + ปุ่มเปิด)
========================================================= */
.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; filter: grayscale(.15) contrast(1.05); }
.map-open-btn {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold-grad); color: #0a0a0a;
  padding: 12px 20px; border-radius: 100px; font-weight: 500; font-size: .92rem; box-shadow: var(--shadow-gold);
  transition: transform .3s var(--ease);
}
.map-open-btn:hover { transform: translateY(-2px); }
.map-open-btn svg { width: 18px; height: 18px; }
@media (max-width: 600px) { .map-wrap iframe { height: 340px; } .map-open-btn { right: 12px; bottom: 12px; padding: 10px 16px; font-size: .82rem; } }

.map-card {
  display: block; position: relative; height: 380px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
  background: radial-gradient(circle at 32% 36%, #1a2722 0%, #0e1613 60%, #0b0f0d 100%);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.map-card:hover { transform: translateY(-4px); border-color: var(--gold); }
/* เส้นกริดเหมือนแผนที่ */
.map-grid { position: absolute; inset: 0; opacity: .9;
  background-image:
    linear-gradient(rgba(201,162,75,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,.08) 1px, transparent 1px);
  background-size: 46px 46px;
}
/* เส้นถนนเฉียง */
.map-card::before {
  content: ""; position: absolute; inset: -10%; z-index: 1;
  background:
    linear-gradient(58deg, transparent 47%, rgba(201,162,75,.16) 47.5%, rgba(201,162,75,.16) 49%, transparent 49.5%),
    linear-gradient(-32deg, transparent 62%, rgba(255,255,255,.05) 62.5%, rgba(255,255,255,.05) 64%, transparent 64.5%);
}
.map-pin { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -100%); z-index: 2; }
.map-pin svg { width: 56px; height: 56px; color: var(--gold); filter: drop-shadow(0 10px 18px rgba(0,0,0,.6)); }
.map-pin .ping {
  position: absolute; left: 50%; bottom: -4px; width: 24px; height: 24px; transform: translateX(-50%);
  border-radius: 50%; background: rgba(201,162,75,.5); animation: mapPing 2.2s ease-out infinite;
}
@keyframes mapPing { 0% { transform: translateX(-50%) scale(.4); opacity: .7; } 100% { transform: translateX(-50%) scale(2.6); opacity: 0; } }
.map-info {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(12,11,9,.82); backdrop-filter: blur(10px); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 20px;
}
.map-place strong { display: block; font-weight: 500; }
.map-place span { font-size: .82rem; color: var(--muted); }
.map-btn {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold-grad); color: #0a0a0a;
  padding: 11px 20px; border-radius: 100px; font-weight: 500; font-size: .9rem; white-space: nowrap;
  transition: box-shadow .3s var(--ease);
}
.map-btn svg { width: 18px; height: 18px; }
.map-card:hover .map-btn { box-shadow: var(--shadow-gold); }
@media (max-width: 600px) {
  .map-card { height: 340px; }
  .map-info { flex-direction: column; align-items: flex-start; }
  .map-btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .map-pin .ping { animation: none; opacity: 0; } }

/* =========================================================
   CTA STRIP
========================================================= */
.cta-strip { text-align: center; background: radial-gradient(circle at 50% 0%, rgba(201,162,75,.12), transparent 60%); }
.cta-strip h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; margin-bottom: 18px; }
.cta-strip p { color: var(--muted); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-about p { color: var(--muted); font-size: .92rem; margin: 18px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-soft); display: grid; place-items: center; transition: all .3s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0a; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--muted); font-size: .92rem; transition: color .3s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; color: var(--muted); font-size: .92rem; margin-bottom: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: var(--muted-2); font-size: .85rem; }
.footer-bottom .credits a { color: var(--muted); }
.footer-bottom .credits a:hover { color: var(--gold); }

/* =========================================================
   FLOATING ACTION BUTTONS
========================================================= */
.fab-stack { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: all .3s var(--ease); position: relative; }
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.1) translateY(-2px); }
.fab.call { background: var(--gold-grad); color: #0a0a0a; }
.fab.line { background: #06c755; color: #fff; }
.fab.wa { background: #25d366; color: #fff; }
.fab.fb { background: #1877f2; color: #fff; }
.fab.maps { background: #ea4335; color: #fff; }

/* ปุ่มแอ็กชัน — ซ่อนไว้ ค่อยเด้งขึ้นทีละปุ่มตอนเปิดเมนู */
.fab-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.fab-actions .fab { opacity: 0; transform: scale(.3) translateY(20px); pointer-events: none; }
.fab-stack.open .fab-actions .fab { opacity: 1; transform: none; pointer-events: auto; }
.fab-stack.open .fab-actions .fab:nth-child(1) { transition-delay: .24s; }
.fab-stack.open .fab-actions .fab:nth-child(2) { transition-delay: .19s; }
.fab-stack.open .fab-actions .fab:nth-child(3) { transition-delay: .14s; }
.fab-stack.open .fab-actions .fab:nth-child(4) { transition-delay: .09s; }
.fab-stack.open .fab-actions .fab:nth-child(5) { transition-delay: .04s; }

/* ป้ายชื่อข้างปุ่ม (โผล่ตอนเปิดเมนู) */
.fab-label {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: rgba(18,17,15,.92); color: var(--text); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 9px; font-size: .82rem; font-weight: 400; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all .3s var(--ease); backdrop-filter: blur(6px);
}
.fab-stack.open .fab-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ปุ่ม popup หลัก (toggle) + เอฟเฟกต์คลื่นกระเพื่อม */
.fab-toggle {
  width: 62px; height: 62px; border-radius: 50%; background: var(--gold-grad); color: #0a0a0a;
  display: grid; place-items: center; box-shadow: var(--shadow-gold); position: relative; z-index: 2;
  transition: transform .35s var(--ease);
}
.fab-toggle:hover { transform: scale(1.06); }
.fab-toggle svg { grid-area: 1 / 1; width: 28px; height: 28px; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.fab-toggle .ic-close { opacity: 0; transform: rotate(-90deg) scale(.6); }
.fab-stack.open .fab-toggle .ic-chat { opacity: 0; transform: rotate(90deg) scale(.6); }
.fab-stack.open .fab-toggle .ic-close { opacity: 1; transform: rotate(0) scale(1); }
.fab-toggle::before, .fab-toggle::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(201, 162, 75, .45); z-index: -1; animation: fabWave 2.6s ease-out infinite;
}
.fab-toggle::after { animation-delay: 1.3s; }
@keyframes fabWave { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(2.4); opacity: 0; } }
.fab-stack.open .fab-toggle::before, .fab-stack.open .fab-toggle::after { animation: none; opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .fab-toggle::before, .fab-toggle::after { animation: none; opacity: 0; }
}
/* ปุ่มสลับภาษา (มุมซ้ายล่าง) */
.lang-switch {
  position: fixed; left: 22px; bottom: 22px; z-index: 950; display: flex; gap: 2px;
  background: rgba(20,19,18,.9); backdrop-filter: blur(10px); border: 1px solid var(--line);
  border-radius: 100px; padding: 4px; box-shadow: var(--shadow);
}
.lang-btn {
  padding: 7px 14px; border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--muted);
  letter-spacing: .05em; transition: all .3s var(--ease);
}
.lang-btn.active { background: var(--gold-grad); color: #0a0a0a; }
.lang-btn:hover:not(.active) { color: var(--text); }

.back-top { position: fixed; left: 22px; bottom: 80px; z-index: 900; width: 48px; height: 48px; border-radius: 50%; background: var(--card-2); border: 1px solid var(--line); color: var(--gold); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: all .3s; }
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold); color: #0a0a0a; }
.back-top svg { width: 22px; height: 22px; }

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* =========================================================
   PAGE HERO (sub pages)
========================================================= */
.page-hero { padding: 170px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 400px at 50% 0%, rgba(201,162,75,.14), transparent 65%); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; margin-bottom: 22px; font-size: .85rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; max-width: 460px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid {
    grid-template-columns: 1fr; grid-template-rows: auto;
    grid-template-areas: "head" "visual" "list"; gap: 30px;
  }
  .why-visual img { height: 420px !important; }
  .fleet-grid, .services-grid, .testi-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .step:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav, .header-cta .btn-ghost { display: none; }
  .logo-img,
  .site-header.scrolled .logo-img { width: 120px; height: 60px; object-fit: contain; }
  .header-cta .btn-gold { display: none; }
  .footer-logo-img { height: 70px; }
  .menu-toggle { display: flex; }
  .nav.mobile-open {
    display: flex; position: fixed; top: 0; right: 0; width: 78%; max-width: 320px; height: 100vh;
    flex-direction: column; align-items: flex-start; gap: 8px; padding: 100px 32px 40px;
    background: #0c0b09; border-left: 1px solid var(--line); z-index: 999; transform: translateX(0); box-shadow: -20px 0 60px rgba(0,0,0,.6);
  }
  .nav.mobile-open a { font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 998; backdrop-filter: blur(4px); }
  .services-grid, .pricing-grid, .testi-grid, .fleet-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 8px; }
  .hero-stats .stat { padding: 14px 4px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* trustbar: การ์ดครอบแต่ละรายการ + จัดกึ่งกลาง */
  .trustbar { padding: 34px 0; }
  .trustbar .container { flex-direction: column; align-items: stretch; gap: 14px; }
  .trust-item {
    width: 100%; justify-content: center; text-align: center; gap: 12px;
    background: var(--card); border: 1px solid var(--line-soft); border-radius: 14px;
    padding: 16px 18px; font-size: 1rem;
  }
  /* บริการของเรา: จัดกึ่งกลาง icon + ตัวหนังสือ */
  .service-card { text-align: center; }
  .service-icon { margin-left: auto; margin-right: auto; }
  /* ขั้นตอน: 1 คอลัมน์ การ์ดเรียงลง เลขขวา–ข้อความซ้าย */
  .steps { grid-template-columns: 1fr; row-gap: 20px; }
  .step {
    display: flex; align-items: center; gap: 16px; text-align: left;
    padding: 16px 18px; background: var(--card); border: 1px solid var(--line-soft); border-radius: 14px;
  }
  .step .num { order: 1; margin: 0; flex-shrink: 0; width: 50px; height: 50px; font-size: 1.2rem; }
  .step-text { order: 2; flex: 1; }
  .step h3 { margin-bottom: 4px; }

  /* stats: ตัวเลขทองใหญ่เท่ากันทุกตัว */
  .stat-box strong { font-size: 3rem; }
  .stat-box strong span { font-size: inherit; }

  /* pricing: จัดหัวข้อการ์ดให้อยู่กึ่งกลาง */
  .price-card h3,
  .price-card .desc,
  .price-card .amount,
  .price-card .unit { text-align: center; }
  .price-card .featured::before { } /* badge already centered */

  /* จัดกึ่งกลางหัวข้อ/ชื่อ ทั้งเว็บ (เฉพาะมือถือ) */
  .why-head { text-align: center; }
  .contact-info { text-align: center; }
  .contact-method { text-align: left; }
  .car-body h3,
  .car-body .sub { text-align: center; }

  /* แกลเลอรี: โชว์รูปเต็ม (masonry 2 คอลัมน์ ไม่ครอบภาพ) */
  .gallery-grid { display: block; column-count: 2; column-gap: 12px; grid-auto-rows: auto; }
  .gallery-item,
  .gallery-item.big { display: block; width: 100%; height: auto; margin: 0 0 12px; break-inside: avoid; grid-column: auto; grid-row: auto; }
  .gallery-item img { height: auto; object-fit: contain; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .stats-grid, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .car-specs { grid-template-columns: repeat(3, 1fr); }
  .booking-form { padding: 26px; }
  .price-card.featured { transform: none; }
}
