/* ================================================
   SIYA THAI MASSAGE — Global Stylesheet
   ================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --color-bg: #FAF7F2;
  --color-primary: #8B6F47;
  --color-gold: #C9A84C;
  --color-gold-dark: #B0913C;
  --color-dark: #2C2218;
  --color-light: #F0E8DC;
  --color-white: #FFFFFF;
  --color-muted: #6F5E4A;
  --color-border: #E5DDD0;
  --color-success: #2F7D5B;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(44, 34, 24, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 34, 24, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 34, 24, 0.12);
  --shadow-xl: 0 24px 60px rgba(44, 34, 24, 0.16);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  --container-max: 1240px;
  --header-height: 84px;
}

/* ---------- Reset ---------- */
*, *::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;
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: 52px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
  margin-bottom: 1em;
}

p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

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

.section {
  padding: 100px 0;
}

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

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

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-bg);
}

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

.section-header p {
  color: var(--color-muted);
  margin-top: 16px;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-gold:hover {
  background-color: var(--color-gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

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

.navbar.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

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

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

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: height var(--transition), filter var(--transition);
  /* Drop-shadow keeps the dark "Thai Massage" text readable when shown
     over a dark hero (transparent navbar). */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.navbar.scrolled .logo-img {
  height: 48px;
  filter: none;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
}

/* ---------- Mobile menu toggle ---------- */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span,
.menu-toggle.dark span {
  background-color: var(--color-dark);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Mobile slide-in menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85%, 340px);
  background-color: var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: 1050;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--color-gold);
}

.mobile-menu .btn {
  margin-top: 24px;
  align-self: flex-start;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero .eyebrow {
  color: var(--color-gold);
  animation: heroFadeUp 1s ease 0.1s both;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--color-white);
  margin-bottom: 20px;
  animation: heroFadeUp 1s ease 0.3s both;
}

.hero .hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 36px;
  animation: heroFadeUp 1s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1s ease 0.7s both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  animation: bounce 2.4s infinite;
}

.scroll-indicator svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-white);
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* Subpage hero (smaller) */
.hero-sub {
  min-height: 56vh;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-sub h1 {
  font-size: clamp(32px, 5vw, 52px);
}

/* ---------- Intro section ---------- */
.intro-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.intro-block h2 {
  margin-bottom: 24px;
}

.intro-block p {
  font-size: 17px;
  color: var(--color-muted);
  margin-bottom: 32px;
}

/* ---------- Cards: Treatments ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.card-body h3 {
  margin-bottom: 12px;
  color: var(--color-dark);
}

.card-body p {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 20px;
  flex: 1;
}

/* Treatment listing card (2-col) */
.treatments-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 36px;
}

.treatment-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

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

.treatment-card .card-image {
  aspect-ratio: 16 / 9;
}

.treatment-card .card-body {
  padding: 32px;
}

.price-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 20px 0 24px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--color-dark);
}

.price-row .duration {
  color: var(--color-muted);
}

.price-row .price {
  font-weight: 700;
  color: var(--color-primary);
}

/* ---------- Testimonial ---------- */
.testimonial {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 120px;
  line-height: 0.7;
  color: var(--color-gold);
  margin-bottom: 24px;
  display: block;
}

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 28px);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.stars {
  color: var(--color-gold);
  font-size: 20px;
  letter-spacing: 4px;
}

/* ---------- Two-column block ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }

.two-col-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.two-col-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.two-col-image:hover img {
  transform: scale(1.04);
}

.two-col-text h2 {
  margin-bottom: 20px;
}

.two-col-text p {
  color: var(--color-muted);
  margin-bottom: 24px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.team-member:hover .team-photo {
  transform: scale(1.04);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.team-role {
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-quote {
  color: var(--color-muted);
  font-style: italic;
  font-size: 15px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

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

.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(44, 34, 24, 0.0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(44, 34, 24, 0.35);
}

.gallery-item .magnify {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition);
}

.gallery-item:hover .magnify {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item .magnify svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

/* ---------- Quick contact bar ---------- */
.contact-bar {
  background-color: var(--color-dark);
  color: var(--color-bg);
  padding: 36px 0;
}

.contact-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-bar-items {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.contact-bar-item .icon {
  font-size: 18px;
  color: var(--color-gold);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
  animation: pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 72px;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4),
                0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* ---------- Values (over-ons) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.value-icon {
  font-size: 36px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--color-muted);
  font-size: 15px;
}

/* ---------- Forms ---------- */
.form-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-group .required { color: var(--color-gold); }

.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-dark);
  background-color: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238B6F47' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.form-group.has-error .form-control {
  border-color: #c0392b;
}

.form-group.has-error .form-error {
  display: block;
}

.form-success {
  background-color: #e8f5ee;
  color: var(--color-success);
  border: 1.5px solid var(--color-success);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-success.show {
  display: block;
  animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Contact page layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}

.contact-info-list {
  margin: 28px 0 36px;
  display: grid;
  gap: 18px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-item .icon {
  font-size: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.contact-info-item span,
.contact-info-item a {
  color: var(--color-muted);
}

.contact-info-item a:hover {
  color: var(--color-gold);
}

.hours-table {
  width: 100%;
  margin: 12px 0 28px;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--color-border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 12px 0;
  font-size: 15px;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-primary);
  font-weight: 600;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 480px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--color-dark);
  color: rgba(250, 247, 242, 0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer h4 {
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer p,
.footer li {
  font-size: 14px;
  line-height: 1.8;
}

.footer a {
  color: rgba(250, 247, 242, 0.75);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--color-gold);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  /* Logo's dark "Thai Massage" text would disappear on the dark footer.
     Inverting + brightening keeps it legible while preserving silhouette. */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
}

/* ---------- Animations: fade-in on scroll ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > :first-child { order: 1; }
  .two-col.reverse > :last-child  { order: 2; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .section { padding: 80px 0; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .logo-img { height: 44px; }
  .navbar.scrolled .logo-img { height: 40px; }
  .footer-logo-img { height: 76px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-bar .container { flex-direction: column; text-align: center; }
  .contact-bar-items { justify-content: center; gap: 20px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .treatments-list { grid-template-columns: 1fr; }
  .price-table { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 18px;
    bottom: 18px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .form-card { padding: 24px 18px; }
  h1 { font-size: 30px; }
}
