/* =============================================
   Prandara Massage — Premium Mobile Massage Design System
   Color: Red-Black-Gold | Style: Dark Premium
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Noto+Serif+Thai:wght@400;600;700&family=Sarabun:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --primary: #B91C1C;
  --primary-light: #DC2626;
  --primary-dark: #7F1D1D;
  --secondary: #D4AF37;
  --secondary-light: #E8C84A;
  --bg-dark: #0A0A0A;
  --bg-darker: #050505;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --bg-section-alt: #111111;
  --text: #F5F5F5;
  --text-muted: #A3A3A3;
  --text-dim: #737373;
  --border: #2A2A2A;
  --border-gold: rgba(212, 175, 55, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(185, 28, 28, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Noto Serif Thai', 'Cinzel', serif;
  --font-body: 'Sarabun', sans-serif;
  --font-accent: 'Cinzel', serif;
  --max-width: 1200px;
  --nav-height: 80px;
}

/* ── Flag Images ── */
.lang-flag {
  vertical-align: middle;
  border-radius: 2px;
  margin-right: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Chinese Decorative Pattern (SVG overlay) ── */
.chinese-pattern {
  position: relative;
}

.chinese-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23D4AF37' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.chinese-pattern>* {
  position: relative;
  z-index: 1;
}

/* ── Decorative Borders ── */
.gold-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  margin: 0 auto 24px;
}

.gold-line-left {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  margin-bottom: 16px;
}

/* ── Section Styling ── */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-section-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.section-header .subtitle {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo-img {
  height: 55px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.footer-brand .footer-logo-img {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.nav-logo .logo-accent {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--text) !important;
  padding: 10px 28px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-left: 16px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.lang-btn:hover {
  border-color: var(--secondary);
  background: rgba(212, 175, 55, 0.1);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  min-width: 120px;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
  background: rgba(185, 28, 28, 0.15);
  color: var(--text);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Subtle zoom animation */
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.6) 40%,
      rgba(10, 10, 10, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid var(--border-gold);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  animation: fadeInDown 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s both;
  background: rgba(212, 175, 55, 0.05);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s both;
  letter-spacing: -0.01em;
}

.hero h1 .text-red {
  color: var(--primary);
}

.hero-line {
  display: block;
}

.hero h1 .text-gold {
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s both;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(185, 28, 28, 0.3);
}

.btn-primary:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(185, 28, 28, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--secondary-light);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--secondary);
  color: var(--bg-dark);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--secondary-light);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}

.hero-scroll span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid var(--secondary);
  border-radius: 14px;
  position: relative;
}

.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 4px;
  animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ══════════════════════════════════════
   ABOUT PREVIEW SECTION
   ══════════════════════════════════════ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.about-text .subtitle {
  font-family: var(--font-accent);
  color: var(--secondary);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-text .highlight {
  color: var(--secondary);
  font-weight: 600;
}

/* ══════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-price .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.service-card-price .duration {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   WHY CHOOSE US / FEATURES
   ══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.feature-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: transparent;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(185, 28, 28, 0.35), 0 0 60px rgba(185, 28, 28, 0.15);
}

.feature-card:hover .feature-icon img {
  transform: scale(1.08);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
}

.testimonial-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-inner::before {
  content: '"';
  font-family: var(--font-accent);
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.slider-btn:hover {
  border-color: var(--secondary);
  background: rgba(212, 175, 55, 0.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--secondary);
  transform: scale(1.2);
}

/* ══════════════════════════════════════
   CONTACT / CTA SECTION
   ══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(185, 28, 28, 0.15) 0%, transparent 60%);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.contact-info-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--bg-darker);
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-brand .logo-accent {
  color: var(--secondary);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.footer-social a svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   PAGE BANNER (for inner pages)
   ══════════════════════════════════════ */
.page-banner {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 12px;
  position: relative;
}

.page-banner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  position: relative;
}

/* ══════════════════════════════════════
   SERVICES PAGE — Detailed Cards
   ══════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.service-detail-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.service-detail-img {
  height: 250px;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-card:hover .service-detail-img img {
  transform: scale(1.08);
}

.service-detail-body {
  padding: 32px;
}

.service-detail-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-detail-body p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-pricing {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .duration {
  color: var(--text-muted);
}

.price-row .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── LINE QR Code Card ── */
.line-qr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-qr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.line-qr-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text);
  margin: 0;
}

.line-qr-card .gold-line-left {
  width: 60px;
  margin-bottom: 16px;
  align-self: center;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.line-qr-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
}

.line-qr-image-wrapper {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(6, 199, 85, 0.1);
  border: 1px solid rgba(6, 199, 85, 0.2);
  transition: all var(--transition);
}

.line-qr-image-wrapper:hover {
  box-shadow: 0 0 40px rgba(6, 199, 85, 0.2);
  transform: scale(1.02);
}

.line-qr-image-wrapper img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  border-radius: 8px;
}

.line-qr-id {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 10px 20px;
  background: rgba(6, 199, 85, 0.08);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(6, 199, 85, 0.15);
}

.line-id-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.line-id-value {
  color: #06C755;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-line {
  background: #06C755;
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
  width: 100%;
  justify-content: center;
}

.btn-line:hover {
  background: #05b34d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(6, 199, 85, 0.4);
}

/* ══════════════════════════════════════
   REVIEWS PAGE
   ══════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 3px;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.review-name {
  font-weight: 600;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── Review Avatar Images ── */
.review-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
  flex-shrink: 0;
}

/* ── Reviews Stats Dashboard ── */
.reviews-stats-container {
  margin-bottom: 40px;
}

.stats-overview {
  display: flex;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  margin-bottom: 24px;
}

.stats-big {
  text-align: center;
  min-width: 140px;
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 4px;
}

.stats-stars {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.stars-filled {
  color: var(--secondary);
  letter-spacing: 2px;
}

.stars-empty {
  color: rgba(255,255,255,0.15);
  letter-spacing: 2px;
}

.stats-total {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.stats-bars {
  flex: 1;
}

.stats-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.stats-bar-row:last-child {
  margin-bottom: 0;
}

.stats-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-width: 36px;
  text-align: right;
}

.stats-bar {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 5px;
  overflow: hidden;
}

.stats-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 5px;
  transition: width 0.8s ease;
}

.stats-bar-fill.four {
  background: linear-gradient(90deg, #c4a035, #d4af37);
}

.stats-bar-fill.three {
  background: linear-gradient(90deg, #a08828, #b89e2f);
}

.stats-count {
  font-size: 0.85rem;
  color: var(--text-dim);
  min-width: 40px;
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--secondary);
}

.filter-btn.active {
  background: var(--secondary);
  color: var(--bg-dark);
  border-color: var(--secondary);
  font-weight: 600;
}

/* ── Load More ── */
.load-more-wrapper {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.reviews-counter {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.load-more-btn {
  padding: 16px 48px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* ── Responsive Reviews ── */
@media (max-width: 768px) {
  .stats-overview {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  .filter-tabs {
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story.reverse {
  direction: rtl;
}

.about-story.reverse>* {
  direction: ltr;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════
   ERROR PAGES (404, 500)
   ══════════════════════════════════════ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.error-code {
  font-family: var(--font-accent);
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(185, 28, 28, 0.3);
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 16px;
}

.error-page p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════
   PRIVACY POLICY
   ══════════════════════════════════════ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
  list-style: disc;
}

/* ══════════════════════════════════════
   PRICE LIST HERO
   ══════════════════════════════════════ */
.price-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.price-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.price-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

.price-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(10, 10, 10, 0.95) 100%);
  z-index: 1;
}

.price-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.price-hero-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid var(--border-gold);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  animation: fadeInDown 1s ease 0.3s both;
}

.price-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  animation: fadeInUp 1s ease 0.5s both;
}

.price-hero-content h1 .text-gold {
  color: var(--secondary);
}

.price-hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  animation: fadeInUp 1s ease 0.7s both;
}

/* ══════════════════════════════════════
   LUXURY PRICE TABLE
   ══════════════════════════════════════ */
.price-section {
  background: var(--bg-dark);
  padding-top: 80px;
  padding-bottom: 80px;
}

.price-section .section-header h2 .text-gold {
  color: var(--secondary);
}

.price-table-wrapper {
  position: relative;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.98));
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 60px rgba(212, 175, 55, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.price-table-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}

.price-table thead tr {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(185, 28, 28, 0.1) 100%);
  border-bottom: 2px solid var(--border-gold);
}

.price-table th {
  padding: 20px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  white-space: nowrap;
}

.price-table th.service-col {
  text-align: left;
  padding-left: 32px;
  min-width: 280px;
  font-size: 1rem;
}

.th-icon {
  color: var(--secondary);
  margin-right: 8px;
  font-size: 0.8rem;
}

.price-table th.time-col {
  min-width: 90px;
  position: relative;
}

.price-table th.time-col::before {
  content: '⏱';
  display: block;
  font-size: 0.7rem;
  margin-bottom: 4px;
  opacity: 0.7;
}

/* Table Body Rows */
.price-row-item {
  transition: all var(--transition);
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.price-row-item:last-child {
  border-bottom: none;
}

.price-row-item:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.06) 0%, rgba(185, 28, 28, 0.04) 100%);
}

.price-row-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.015);
}

.price-row-item:nth-child(even):hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(185, 28, 28, 0.05) 100%);
}

/* Highlight Row (Luxury tier) */
.highlight-row {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, rgba(185, 28, 28, 0.06) 100%) !important;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.highlight-row:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12) 0%, rgba(185, 28, 28, 0.08) 100%) !important;
}

/* Service Name Cell */
.service-name {
  padding: 20px 16px 20px 32px;
  text-align: left;
}

.service-name-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.service-name strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
}

.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.tag-luxury {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  animation: luxuryPulse 3s ease infinite;
}

@keyframes luxuryPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
  50% { box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.2); }
}

/* Price Cells */
.price-cell {
  padding: 20px 12px;
  text-align: center;
  vertical-align: middle;
}

.price-value {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  transition: all var(--transition);
}

.price-value::before {
  content: '฿';
  font-size: 0.75rem;
  color: var(--secondary);
  margin-right: 2px;
  font-weight: 400;
}

.price-row-item:hover .price-value {
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Price Note */
.price-note {
  padding: 16px 32px;
  border-top: 1px solid rgba(42, 42, 42, 0.5);
  background: rgba(212, 175, 55, 0.03);
}

.price-note p {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: var(--font-accent);
  letter-spacing: 1px;
}

/* CTA under price table */
.price-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

/* ══════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE MOBILE SUPPORT
   Breakpoints: 1024 → 768 → 480 → 360 → 320
   ══════════════════════════════════════ */

/* ── Mobile Nav Backdrop Overlay ── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-backdrop.active {
  display: block;
  opacity: 1;
}

/* Body scroll lock when nav is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ── Safe Area Inset (iPhone notch support) ── */
@supports (padding: env(safe-area-inset-top)) {
  .navbar {
    padding-top: env(safe-area-inset-top);
  }

  .footer-bottom {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .hero-scroll {
    bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

/* ── Hero Dynamic Viewport Height ── */
@supports (height: 100dvh) {
  .hero {
    height: 100dvh;
  }
}

/* ════════════════════════════════════
   TABLET LANDSCAPE (≤ 1024px)
   ════════════════════════════════════ */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Price table — horizontal scroll with fade hint */
  .price-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  .price-table-wrapper::after {
    content: '';
    position: sticky;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, rgba(10, 10, 10, 0.8), transparent);
    pointer-events: none;
    flex-shrink: 0;
  }

  .price-table {
    min-width: 700px;
  }

  /* CTA section */
  .cta-section h2 {
    font-size: 2rem;
  }
}

/* ════════════════════════════════════
   TABLET PORTRAIT (≤ 768px)
   ════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* --- Navigation --- */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 40px 32px;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
    border-left: 1px solid var(--border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding: 14px 28px !important;
  }

  .lang-switcher {
    margin-left: 0;
    margin-right: 12px;
  }

  .nav-logo .logo-img {
    height: 44px;
  }

  /* --- Hero --- */
  .hero {
    min-height: 500px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 5.5vw, 2.5rem);
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 6px 18px;
    margin-bottom: 20px;
  }

  .hero-scroll {
    bottom: 24px;
  }

  .hero-scroll span {
    width: 24px;
    height: 38px;
  }

  /* --- Sections --- */
  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* --- About Preview --- */
  .about-preview {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-img-wrapper img {
    height: 300px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  /* --- About Page --- */
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story.reverse {
    direction: ltr;
  }

  /* --- Services --- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-img {
    height: 200px;
  }

  .service-card-body {
    padding: 20px;
  }

  .service-card:hover {
    transform: translateY(-4px);
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail-body {
    padding: 24px;
  }

  /* --- Features / Why Choose Us --- */
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 16px;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.85rem;
  }

  /* --- Testimonials --- */
  .testimonial-card {
    padding: 0 12px;
  }

  .testimonial-inner {
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* --- Contact / CTA --- */
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    padding: 28px;
  }

  .contact-info-card {
    padding: 24px;
  }

  /* --- Reviews --- */
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 24px;
  }

  .stats-overview {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .filter-tabs {
    justify-content: center;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  /* --- Value Cards --- */
  .value-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 28px 20px;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .footer-logo-img {
    height: 60px;
    margin: 0 auto 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }

  .gold-line-left {
    margin: 0 auto 16px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  }

  /* --- Page Banner --- */
  .page-banner h1 {
    font-size: 2rem;
  }

  .page-banner {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 40px;
  }

  /* --- Price Section Hero --- */
  .price-hero {
    height: 40vh;
    min-height: 280px;
  }

  .price-hero-content h1 {
    font-size: 1.8rem;
  }

  /* --- Price Table → Card Layout on Mobile --- */
  .price-table-wrapper {
    overflow-x: visible;
    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }

  .price-table-wrapper::after {
    display: none;
  }

  .price-table-glow {
    display: none;
  }

  .price-table {
    min-width: 0;
    width: 100%;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .price-row-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition);
  }

  .price-row-item:nth-child(even) {
    background: var(--bg-card);
  }

  .highlight-row {
    border-color: var(--border-gold) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
  }

  .service-name {
    padding: 20px 20px 12px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  }

  .service-name-inner {
    gap: 12px;
  }

  .service-name strong {
    font-size: 0.95rem;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .price-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
  }

  .price-cell:last-child {
    border-bottom: none;
  }

  /* Show duration labels on mobile via pseudo-element */
  .price-cell::before {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .price-cell:nth-child(2)::before { content: '60 mins'; }
  .price-cell:nth-child(3)::before { content: '90 mins'; }
  .price-cell:nth-child(4)::before { content: '120 mins'; }
  .price-cell:nth-child(5)::before { content: '150 mins'; }
  .price-cell:nth-child(6)::before { content: '180 mins'; }

  .price-value {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .price-note {
    background: none;
    border: none;
    padding: 16px 0;
    margin-top: 8px;
  }

  .price-note p {
    font-size: 0.8rem;
  }

  .price-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  /* --- LINE QR Card --- */
  .line-qr-card {
    padding: 28px 20px;
  }

  .line-qr-image-wrapper {
    padding: 16px;
  }

  .line-qr-image-wrapper img {
    width: 220px;
    height: 220px;
  }

  .line-qr-header h2 {
    font-size: 1.5rem;
  }

  .line-qr-desc {
    font-size: 0.9rem;
  }

  .line-qr-id {
    padding: 8px 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  /* --- Buttons (ensure touch-friendly) --- */
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
  }

  /* --- Error Pages --- */
  .error-code {
    font-size: 6rem;
  }

  .error-page h1 {
    font-size: 1.6rem;
  }

  /* --- Legal / Privacy --- */
  .legal-content {
    padding: 0 8px;
  }

  .legal-content h2 {
    font-size: 1.3rem;
    margin-top: 32px;
  }
}

/* ════════════════════════════════════
   SMALL PHONES (≤ 480px)
   ════════════════════════════════════ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* --- Hero --- */
  .hero h1 {
    font-size: clamp(1.3rem, 5vw, 1.9rem);
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 5px 14px;
  }

  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 8px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero-content {
    padding: 0 16px;
  }

  /* --- Sections --- */
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header .subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  /* --- Features --- */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .feature-icon {
    width: 72px;
    height: 72px;
  }

  /* --- Service Cards --- */
  .service-card-body h3 {
    font-size: 1.1rem;
  }

  .service-card-body p {
    font-size: 0.85rem;
  }

  .service-card-img {
    height: 180px;
  }

  /* --- Contact Info --- */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-info-card .icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .contact-info-card h4 {
    font-size: 1rem;
  }

  /* --- Contact Form --- */
  .contact-form {
    padding: 20px 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  /* --- Testimonials --- */
  .testimonial-card {
    padding: 0 4px;
  }

  .testimonial-inner {
    padding: 20px 16px;
  }

  .testimonial-inner::before {
    font-size: 3.5rem;
    top: -6px;
    left: 10px;
  }

  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .testimonial-author {
    font-size: 0.9rem;
  }

  .testimonial-role {
    font-size: 0.8rem;
  }

  /* --- Reviews --- */
  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .stats-number {
    font-size: 2.8rem;
  }

  .load-more-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    width: 100%;
  }

  /* --- About text --- */
  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-img-wrapper img {
    height: 240px;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-brand .footer-logo-img {
    height: 50px;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }

  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .footer-col a {
    padding: 5px 0;
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding: 16px 0;
    font-size: 0.8rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .footer-social a svg {
    width: 18px;
    height: 18px;
  }

  /* --- Buttons --- */
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  /* --- Price Hero --- */
  .price-hero-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 5px 12px;
  }

  .price-hero-content h1 {
    font-size: 1.5rem;
  }

  .price-cta .btn-lg,
  .price-cta .btn-gold {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  /* --- Price cards tighter --- */
  .price-cell {
    padding: 10px 16px;
  }

  .service-name {
    padding: 16px 16px 10px;
  }

  /* --- CTA Section --- */
  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }

  /* --- Page Banner --- */
  .page-banner h1 {
    font-size: 1.6rem;
  }

  .page-banner p {
    font-size: 0.95rem;
  }

  .page-banner {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 32px;
  }

  /* --- LINE QR --- */
  .line-qr-card {
    padding: 24px 16px;
  }

  .line-qr-image-wrapper img {
    width: 200px;
    height: 200px;
  }

  .btn-line {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* --- Error Pages --- */
  .error-code {
    font-size: 5rem;
  }

  .error-page h1 {
    font-size: 1.4rem;
  }

  .error-page p {
    font-size: 0.95rem;
  }

  /* --- Contact map --- */
  .contact-map {
    height: 220px;
  }
}

/* ════════════════════════════════════
   EXTRA SMALL PHONES (≤ 360px)
   ════════════════════════════════════ */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-desc {
    font-size: 0.88rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
    letter-spacing: 1.5px;
  }

  .hero-content {
    padding: 0 12px;
  }

  .nav-logo .logo-img {
    height: 38px;
  }

  .nav-links {
    width: 260px;
    padding: 32px 24px;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .feature-card {
    padding: 20px 12px;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
  }

  .feature-card h3 {
    font-size: 0.92rem;
  }

  .feature-card p {
    font-size: 0.82rem;
  }

  .service-card-body {
    padding: 16px;
  }

  .review-card {
    padding: 16px;
  }

  .testimonial-inner {
    padding: 18px 14px;
  }

  .contact-info-card {
    padding: 16px;
  }

  .contact-form {
    padding: 18px 14px;
  }

  .value-card {
    padding: 24px 16px;
  }

  /* Price cards */
  .price-cell {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .price-cell::before {
    font-size: 0.8rem;
  }

  .service-name {
    padding: 14px 12px 8px;
  }

  .service-icon {
    width: 34px;
    height: 34px;
  }

  .service-name strong {
    font-size: 0.88rem;
  }

  /* QR Card */
  .line-qr-image-wrapper img {
    width: 180px;
    height: 180px;
  }

  .line-qr-header h2 {
    font-size: 1.3rem;
  }

  /* About */
  .about-text h2 {
    font-size: 1.35rem;
  }

  .about-img-wrapper img {
    height: 200px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.3rem;
  }

  /* Page banner */
  .page-banner h1 {
    font-size: 1.4rem;
  }

  .page-banner {
    padding-top: calc(var(--nav-height) + 24px);
    padding-bottom: 24px;
  }

  /* Stats */
  .stats-number {
    font-size: 2.5rem;
  }

  .stats-overview {
    padding: 20px 16px;
  }
}

/* ════════════════════════════════════
   TINY PHONES (≤ 320px — iPhone SE)
   ════════════════════════════════════ */
@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 10px;
  }

  .hero {
    min-height: 450px;
  }

  .hero h1 {
    font-size: 1.25rem;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 4px 10px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .section {
    padding: 36px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .section-header .subtitle {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .nav-links {
    width: 240px;
    padding: 28px 20px;
    gap: 16px;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 10px 0;
  }

  .nav-logo .logo-img {
    height: 34px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .error-code {
    font-size: 4rem;
  }

  .error-page h1 {
    font-size: 1.2rem;
  }

  .footer-brand .footer-logo-img {
    height: 40px;
  }

  .gold-line {
    width: 50px;
    margin-bottom: 16px;
  }

  .gold-line-left {
    width: 40px;
    margin-bottom: 12px;
  }
}