/* ============================================================
   Thai Massage Sothon — Master Stylesheet
   ============================================================ */

:root {
  --primary: #C4933F;
  --primary-dark: #A37A2E;
  --primary-light: #D4A95A;
  --secondary: #1A1A0F;
  --accent: #F5E6D0;
  --accent-dark: #E8D4B8;
  --accent-light: #FAF3EB;
  --cream: #FBF7F2;
  --cream-dark: #F0EAE0;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --text-muted: #999999;
  --border: #E8E0D6;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================================
   1. Reset & Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--secondary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

a {
  text-decoration: none;
  color: var(--primary);
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   2. Section Shared
   ============================================================ */

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background-color: var(--primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-label {
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   3. Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 147, 63, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 147, 63, 0.35);
}

.btn-service {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--border);
  font-size: 0.8rem;
  padding: 10px 20px;
  width: 100%;
}

.btn-service:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-sm {
  font-size: 0.75rem;
  padding: 10px 20px;
  letter-spacing: 0.5px;
}

.btn-lg {
  font-size: 0.9rem;
  padding: 18px 44px;
}

/* ============================================================
   4. Navigation
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(251, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.logo-icon img,
.logo-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
  transition: color var(--transition);
}

.navbar:not(.scrolled) .logo-name {
  color: var(--white);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.nav-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
  border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--text) !important;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-menu a:hover {
  background-color: var(--accent-light);
  color: var(--primary) !important;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.navbar.scrolled .nav-phone {
  color: var(--text);
}

.nav-phone:hover {
  color: var(--primary);
}

.nav-phone i {
  font-size: 0.9rem;
}

.btn-book-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-book-nav:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 147, 63, 0.3);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background-color: var(--secondary);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 80px 32px 32px;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .btn-book-nav {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 24px;
  font-size: 0.85rem;
}

.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.navbar.scrolled .phone-link {
  background-color: var(--accent-light);
  color: var(--text);
}

.phone-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.mobile-book {
  font-size: 0.7rem;
  padding: 8px 16px;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: flex;
  }
}

/* ============================================================
   5a. Page Hero (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background-color: var(--secondary);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 147, 63, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: var(--primary-light);
}

.page-hero .section-label::before {
  display: none;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
  color: var(--primary-light);
}

.page-hero .breadcrumb span {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 56px;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 100px 0 44px;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
}

/* ============================================================
   5b. Hero (homepage)
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 15, 0.55) 0%,
    rgba(26, 26, 15, 0.40) 40%,
    rgba(26, 26, 15, 0.65) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(196, 147, 63, 0.15);
  border: 1px solid rgba(196, 147, 63, 0.4);
  color: var(--primary-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--primary-light);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-buttons .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}

.hero-info-item i {
  color: var(--primary-light);
  font-size: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  animation: scrollDown 2s ease-in-out infinite;
}

/* ============================================================
   6. Trust Bar
   ============================================================ */

.trust-bar {
  background-color: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.trust-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ============================================================
   7. About
   ============================================================ */

.about-section {
  padding: 100px 0;
  background-color: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 2;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -24px;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  border-radius: var(--radius-md);
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-content .section-label {
  margin-bottom: 12px;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-features li,
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-features li i,
.about-feature i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.about-feature strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   8. Services
   ============================================================ */

.services-section {
  padding: 100px 0;
  background-color: var(--white);
}

/* ── Search Bar ───────────────────────────────────────────────── */

.svc-search-bar {
  position: relative;
  max-width: 480px;
  margin: 0 auto 28px;
}

.svc-search-bar i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.svc-search-bar input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.svc-search-bar input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 147, 63, 0.15);
}

.svc-search-bar input::placeholder {
  color: var(--text-muted);
}

/* ── Category Tabs ────────────────────────────────────────────── */

.svc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.svc-tab {
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.svc-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.svc-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── Category Group ───────────────────────────────────────────── */

.svc-cat-group {
  margin-bottom: 56px;
}

.svc-cat-group:last-child {
  margin-bottom: 0;
}

.svc-cat-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

/* ── Loading State ────────────────────────────────────────────── */

.svc-loading {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

.service-detail {
  padding: 100px 0;
  background-color: var(--white);
}

.service-detail .service-pricing {
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-detail .service-addon {
  margin-bottom: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-pricing {
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-pricing-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dur-item {
  border: 1px solid var(--border);
  border-bottom: none;
}

.dur-item:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dur-item:last-child {
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.dur-item:only-child {
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--border);
}

.dur-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}

.dur-item summary::-webkit-details-marker {
  display: none;
}

.dur-item summary::marker {
  display: none;
  content: '';
}

.dur-item summary:hover {
  background: var(--accent-light);
}

.dur-item[open] summary {
  background: var(--accent-light);
  border-bottom: 1px solid var(--border);
}

.dur-item[open] {
  border-color: var(--primary);
  border-width: 2px;
}

.dur-item[open]:last-child {
  border-bottom-width: 2px;
}

.dur-duration {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dur-name {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  display: block;
}

.dur-price {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.dur-price s {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.82rem;
}

.dur-btns {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
}

.dur-btns a,
.dur-btns button {
  flex: 1;
  padding: 12px 0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.dur-btns a {
  border: 2px solid var(--border);
  color: var(--text);
  background: var(--white);
}

.dur-btns a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.dur-btns button {
  background: var(--primary);
  color: var(--white);
  border: none;
}

.dur-btns button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(196, 147, 63, 0.3);
}

.service-addon {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 8px;
  padding: 8px 16px;
  background-color: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary-light);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
}

.btn-learn-more:hover {
  color: var(--primary-dark);
  gap: 10px;
}

.btn-learn-more i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.btn-learn-more:hover i {
  transform: translateX(3px);
}

/* ============================================================
   9. Gallery
   ============================================================ */

.gallery-section {
  padding: 100px 0;
  background-color: var(--cream);
}

.gallery-section--white {
  background-color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26, 26, 15, 0.6) 100%
  );
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  border-radius: 50%;
  font-size: 0.85rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: translateY(0);
}

.gallery-large {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* ============================================================
   10. Reviews
   ============================================================ */

.reviews-section {
  padding: 100px 0;
  background-color: var(--cream);
}

.reviews-section--white {
  background-color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.review-stars i {
  color: var(--primary);
  font-size: 0.9rem;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar-initials {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.review-author-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   11. CTA
   ============================================================ */

.cta-section {
  padding: 100px 0;
  background-color: var(--secondary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 147, 63, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section .section-label {
  color: var(--primary-light);
}

.cta-section .section-label::before {
  background-color: var(--primary-light);
}

.cta-section h2,
.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p,
.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-section .btn-outline:hover {
  background-color: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

/* ============================================================
   11a. Values / Why Us
   ============================================================ */

.values-section {
  padding: 100px 0;
  background-color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  background-color: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.value-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.25rem;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   12. Gift Cards
   ============================================================ */

.gift-cards-section {
  padding: 100px 0;
  background-color: var(--cream);
}

.gift-card-widget {
  max-width: 900px;
  min-height: 600px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.gift-card-widget iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

/* ============================================================
   13. Location
   ============================================================ */

.locations-section {
  padding: 100px 0;
  background-color: var(--white);
}

.location-single {
  max-width: 640px;
  margin: 0 auto;
}

.location-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.location-map {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info {
  padding: 32px;
}

.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
}

.location-info p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.location-info a {
  color: var(--primary);
  font-weight: 500;
}

.location-info a:hover {
  color: var(--primary-dark);
}

.location-hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.location-hours h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.hours-row .day {
  color: var(--text-light);
  font-weight: 400;
}

.hours-row .time {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   14. Booking
   ============================================================ */

.booking-section {
  padding: 100px 0;
  background-color: var(--white);
}

.booking-widget {
  max-width: 900px;
  min-height: 600px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.booking-widget iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

.booking-fallback {
  text-align: center;
  padding: 60px 32px;
}

.booking-fallback p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ============================================================
   15. FAQ
   ============================================================ */

.faq-section {
  padding: 100px 0;
  background-color: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item .faq-answer {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   16. Footer
   ============================================================ */

.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-logo span {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo .logo-name {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.footer-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.footer-brand p,
.footer-logo p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-contact strong {
  color: var(--white);
  font-size: 0.95rem;
}

.footer-contact p,
.footer-location p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-contact a,
.footer-location a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact a:hover,
.footer-location a:hover {
  color: var(--primary-light);
}

.footer-email a {
  color: var(--white);
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary-light);
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* ============================================================
   17. Mobile Sticky Bar
   ============================================================ */

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
}

.mobile-sticky-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  padding: 4px 8px;
}

.mobile-sticky-item i {
  font-size: 1.1rem;
}

.mobile-sticky-item:hover,
.mobile-sticky-item.active {
  color: var(--primary);
}

.mobile-sticky-item.primary {
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
}

.mobile-sticky-item.primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}

/* ============================================================
   18. Booking Modal
   ============================================================ */

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.booking-modal.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.booking-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-modal.active .booking-modal-content {
  transform: translateY(0);
}

.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.booking-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--secondary);
}

.booking-modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.booking-modal-close:hover {
  background-color: var(--accent-dark);
}

.booking-modal-body {
  height: 70vh;
  overflow: hidden;
}

.booking-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   19. Lightbox
   ============================================================ */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-close:hover {
  transform: scale(1.05);
}

/* ============================================================
   20. Back to Top
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(196, 147, 63, 0.35);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(196, 147, 63, 0.4);
}

/* ============================================================
   21. Loading Skeleton
   ============================================================ */

.skeleton {
  background: linear-gradient(
    90deg,
    var(--cream-dark) 25%,
    var(--cream) 50%,
    var(--cream-dark) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 14px;
  margin-bottom: 10px;
  border-radius: var(--radius-sm);
}

.skeleton-text:last-child {
  width: 70%;
}

.skeleton-heading {
  height: 28px;
  width: 60%;
  margin-bottom: 16px;
}

.skeleton-image {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
}

/* ============================================================
   Animations
   ============================================================ */

@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ============================================================
   21b. Blog
   ============================================================ */

.blog-section {
  padding: 80px 0;
}

.blog-search-bar {
  max-width: 500px;
  margin: 0 auto 48px;
}

.blog-search-bar input {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.blog-search-bar input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 147, 63, 0.15);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image .blog-card-icon {
  font-size: 3rem;
  color: var(--primary-light);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-date i {
  margin-right: 4px;
}

.blog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.blog-post-section {
  padding: 80px 0;
}

.blog-post {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-meta {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.blog-post-date {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-post-date i {
  margin-right: 6px;
  color: var(--primary);
}

.blog-post-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

.blog-post-body p {
  margin-bottom: 20px;
}

.blog-post-body h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--secondary);
}

.blog-post-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--secondary);
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 16px 0;
  padding-left: 28px;
}

.blog-post-body li {
  margin-bottom: 8px;
}

.blog-post-body a {
  color: var(--primary);
  text-decoration: underline;
  transition: color var(--transition);
}

.blog-post-body a:hover {
  color: var(--primary-dark);
}

.blog-post-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--accent-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-light);
}

.blog-post-tags {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-light);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
}

.blog-post-nav {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-post-nav {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   22. Responsive — 1024px
   ============================================================ */

@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.75rem; }

  .section-title {
    font-size: 2.25rem;
  }

  .container {
    padding: 0 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-info {
    gap: 24px;
  }
}

/* ============================================================
   22. Responsive — 768px
   ============================================================ */

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 2rem; }

  .section-title {
    font-size: 2rem;
  }

  .about-section,
  .services-section,
  .values-section,
  .gallery-section,
  .reviews-section,
  .cta-section,
  .gift-cards-section,
  .locations-section,
  .booking-section,
  .faq-section {
    padding: 72px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-info {
    flex-direction: column;
    gap: 12px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-items {
    gap: 24px;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .about-image::before {
    top: 16px;
    left: -16px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-large {
    grid-column: span 2;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 28px 24px;
  }

  .review-card {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .booking-modal-content {
    width: 95%;
    max-height: 85vh;
  }

  .booking-modal-body {
    height: 60vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  body {
    padding-bottom: 68px;
  }
}

/* ============================================================
   22. Responsive — 640px
   ============================================================ */

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 8px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card-image {
    height: 200px;
  }

  .svc-tabs {
    gap: 6px;
  }

  .svc-tab {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .svc-cat-title {
    font-size: 1.5rem;
  }

  .dur-btns {
    flex-direction: column;
    gap: 8px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery-large {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }

  .gift-card-widget,
  .booking-widget {
    min-height: 500px;
    border-radius: var(--radius-md);
  }

  .gift-card-widget iframe,
  .booking-widget iframe {
    min-height: 500px;
  }

  .location-map {
    height: 220px;
  }

  .location-info {
    padding: 24px;
  }

  .faq-item summary {
    padding: 16px 20px;
    font-size: 1.05rem;
  }

  .faq-item .faq-answer {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }
}

/* ============================================================
   22. Responsive — 480px
   ============================================================ */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .section-title {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.78rem;
    padding: 12px 24px;
  }

  .btn-lg {
    padding: 14px 32px;
  }

  .about-section,
  .services-section,
  .values-section,
  .gallery-section,
  .reviews-section,
  .cta-section,
  .gift-cards-section,
  .locations-section,
  .booking-section,
  .faq-section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .value-card {
    padding: 24px 20px;
  }

  .trust-items {
    flex-direction: column;
    gap: 16px;
  }

  .about-image::before {
    top: 12px;
    left: -12px;
  }

  .about-features li,
  .about-feature {
    font-size: 0.88rem;
  }

  .service-card-body {
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer {
    padding-top: 56px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .mobile-menu {
    max-width: 100%;
    padding: 72px 24px 24px;
  }

  .mobile-menu a {
    font-size: 1.3rem;
  }

  .booking-modal-header {
    padding: 16px 20px;
  }

  .booking-modal-header h3 {
    font-size: 1.15rem;
  }
}
