/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --purple-deep: #003d20;
  --purple-main: #296132;
  --purple-bg: #548642;
  --purple-dark: #003d20;
  --gold-main: #c9a84c;
  --gold-light: #e0c96e;
  --gold-dark: #a8872e;
  --gold-warm: #d4a843;
  --cream: #faf6ee;
  --white: #ffffff;
  --dark: #1a0e2e;
  --text-light: #f0e8f8;
  --text-muted: #f9f871;
  --border-gold: rgba(201, 168, 76, 0.3);
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--purple-bg);
  color: var(--text-light);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Cinzel', 'Playfair Display', serif; }

a { color: var(--gold-main); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

/* ===== THAI ORNAMENTAL BORDER PATTERN ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  border: 12px solid transparent;
  border-image: repeating-linear-gradient(
    45deg,
    var(--gold-main) 0px,
    var(--gold-dark) 4px,
    transparent 4px,
    transparent 8px,
    var(--gold-main) 8px,
    var(--gold-dark) 12px,
    transparent 12px,
    transparent 16px
  ) 12;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 0.8rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: #296132;
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold-main);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 0.5rem 2rem;
  background: #003d20;
  box-shadow: 0 4px 30px rgba(0, 61, 32, 0.5);
}
.nav-logo img { height: 50px; transition: height 0.3s; border-radius: 8px; }
.navbar.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-light); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px;
  position: relative; padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold-main);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-main); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--dark) !important; padding: 0.6rem 1.5rem;
  border-radius: 50px; font-weight: 700 !important;
  letter-spacing: 0.5px; text-transform: uppercase;
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5); }

.lang-switcher {
  position: relative;
  margin-left: 1rem;
  display: flex;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(0, 61, 32, 0.55);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-flag {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
}

.lang-toggle .lang-flag {
  font-size: 1rem;
}

.lang-toggle:hover {
  border-color: var(--gold-main);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.25);
}

.lang-caret {
  font-size: 0.75rem;
  opacity: 0.8;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 170px;
  background: #003d20;
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 0.4rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 1100;
  box-shadow: 0 12px 30px rgba(0, 61, 32, 0.45);
}

.lang-menu.open {
  display: flex;
}

.lang-option {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-light);
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-option .lang-flag {
  font-size: 1rem;
}

.lang-option:hover {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-light);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 5px; z-index: 1001;
}
.hamburger span {
  width: 28px; height: 2px; background: var(--gold-main);
  transition: all 0.3s; 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); }

/* ===== SIDE BOOK BANNER ===== */
.side-book-banner {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  z-index: 999;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--dark);
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 20px rgba(0, 61, 32, 0.3);
  transition: all 0.3s;
}
.side-book-banner:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
  color: var(--dark);
  box-shadow: 0 4px 30px rgba(201, 168, 76, 0.5);
}
.side-book-text { text-transform: uppercase; }
.side-book-phone { font-size: 0.8rem; }

/* ===== HERO ===== */
.hero {
  min-height: auto;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 2rem;
  background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-bg) 40%, var(--purple-deep) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(84, 134, 66, 0.35) 0%, transparent 70%);
}

/* Thai decorative border for hero */
.thai-border-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  border: 16px solid transparent;
  background: 
    linear-gradient(var(--purple-bg), var(--purple-bg)) padding-box,
    repeating-linear-gradient(
      90deg,
      var(--gold-main) 0px,
      var(--gold-dark) 3px,
      transparent 3px,
      transparent 6px
    ) border-box;
  opacity: 0;
}

.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
  animation: particleFloat 8s infinite ease-in-out;
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
  50% { transform: translateY(-50px) scale(1.3); opacity: 0.6; }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-logo {
  width: 300px;
  max-width: 80vw;
  height: auto;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
  border-radius: 0;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.3));
}

/* Hero/banner image placed below logo */
.hero-banner {
  width: 100%;
  max-width: 920px;
  height: auto;
  margin: 1.2rem auto 1.6rem;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 61, 32, 0.45);
  object-fit: cover;
}

/* ===== SLIDESHOW STYLES ===== */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0.8rem auto 1rem;
  display: block;
}

.slideshow-container {
  position: relative;
  width: 100%;
  background: var(--purple-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 61, 32, 0.45);
}

.slide {
  display: none;
  width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slide.active {
  display: block;
}

.fade {
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Navigation Dots */
.slideshow-dots {
  text-align: center;
  padding: 0.6rem 0 0.3rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background-color: rgba(201, 168, 76, 0.7);
  transform: scale(1.2);
}

.dot.active {
  background-color: var(--gold-main);
  transform: scale(1.3);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0; animation: fadeInUp 1s 0.5s forwards;
}

.hero-hours {
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeInUp 1s 0.6s forwards;
}
.hero-hours p {
  font-family: 'Cinzel', serif;
  color: var(--gold-main);
  font-size: 1.1rem;
  font-weight: 600;
}
.hours-time {
  font-size: 0.95rem !important;
  color: var(--text-light) !important;
  margin-top: 0.3rem;
}

.hero-buttons {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeInUp 1s 0.7s forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--dark); padding: 0.8rem 2rem; border: none; border-radius: 50px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  letter-spacing: 0.5px; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  text-transform: uppercase;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
  color: var(--dark);
}

.btn-icon { font-size: 1.1rem; }

.btn-secondary {
  border: 2px solid var(--gold-main); color: var(--gold-main);
  padding: 0.8rem 2rem; border-radius: 50px; background: transparent;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s; text-decoration: none; text-transform: uppercase;
}
.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
  color: var(--gold-light);
}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION SHARED ===== */
.section {
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section-subtitle {
  color: var(--text-muted); font-size: 1rem;
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}

.gold-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
  margin: 1.2rem auto 0; border-radius: 2px;
}

/* ===== THAI ORNAMENT DECORATION ===== */
.thai-ornament {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  background: radial-gradient(circle, var(--gold-main) 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.thai-ornament::before,
.thai-ornament::after {
  content: '';
  position: absolute;
  width: 100px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.thai-ornament::after {
  width: 2px; height: 100px;
}

/* ===== SERVICES GRID ===== */
#services {
  background: linear-gradient(180deg, var(--purple-bg) 0%, var(--purple-deep) 50%, var(--purple-bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(41, 97, 50, 0.25);
  border: 2px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-main), var(--gold-light), var(--gold-main));
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-main);
  box-shadow: 0 20px 50px rgba(0, 61, 32, 0.4), 0 0 30px rgba(201, 168, 76, 0.2);
}
.service-card:hover::before { opacity: 1; }

.service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 61, 32, 0.65) 100%);
  pointer-events: none;
}

.service-info {
  padding: 1.5rem 1.8rem 1.8rem;
  text-align: center;
}

.service-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.price-tag {
  color: var(--gold-main);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.price-divider {
  color: var(--gold-main);
  font-weight: 400;
  margin: 0 0.2rem;
  opacity: 0.6;
}

/* ===== ABOUT SECTION ===== */
#about {
  background: var(--purple-dark);
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-hours-card {
  background: rgba(41, 97, 50, 0.25);
  border: 2px solid var(--border-gold);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2rem;
}

.about-hours-card h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold-main);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.about-hours-time {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.thai-ornament-small {
  width: 40px; height: 40px;
  margin: 0 auto 1rem;
  background: radial-gradient(circle, var(--gold-main) 30%, transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
}

.about-address-card {
  background: rgba(41, 97, 50, 0.2);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.5rem;
}

.about-address-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-main);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.address-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.about-links a {
  color: var(--gold-main);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.about-links a:hover { color: var(--gold-light); }
.link-divider { color: var(--text-muted); margin: 0 0.3rem; }

/* ===== CONTACT ===== */
#contact {
  background: linear-gradient(180deg, var(--purple-bg) 0%, var(--purple-deep) 100%);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.contact-detail p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-detail a { color: var(--text-muted); transition: color 0.3s; }
.contact-detail a:hover { color: var(--gold-main); }

.contact-form {
  background: #296132;
  border: 2px solid var(--border-gold);
  border-radius: 20px; padding: 2.5rem;
}

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 0.5rem; font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.9rem 1.2rem;
  background: rgba(0, 61, 32, 0.55);
  border: 1px solid var(--border-gold);
  border-radius: 10px; color: var(--text-light);
  font-family: 'Inter', sans-serif; font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold-main);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--dark); }

.form-submit {
  width: 100%; padding: 1rem; border: none; border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--dark); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  letter-spacing: 1px; text-transform: uppercase;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: #003d20;
  padding: 3rem 2rem 1.5rem;
  border-top: 3px solid var(--gold-main);
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 1.5rem;
}
.footer-brand img {
  height: 200px;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  border: 2px solid var;
}
.footer-brand h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-main);
  font-size: 1.3rem;
  letter-spacing: 4px;
}
.footer-brand h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold-main);
  font-size: 1.0rem;
  letter-spacing: 4px;
}

.footer-info {
  margin-bottom: 1.5rem;
}
.footer-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-info a {
  color: var(--gold-main);
  transition: color 0.3s;
}
.footer-info a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* stagger effect for service cards */
.service-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.25s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.35s; }
.service-card.reveal:nth-child(5) { transition-delay: 0.45s; }
.service-card.reveal:nth-child(6) { transition-delay: 0.55s; }
.service-card.reveal:nth-child(7) { transition-delay: 0.65s; }
.service-card.reveal:nth-child(8) { transition-delay: 0.75s; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-main), var(--gold-dark));
  color: var(--dark); border: none; font-size: 1.2rem;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: all 0.3s; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.5);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    flex-direction: column; padding: 5rem 2rem 2rem;
    background: #003d20; backdrop-filter: blur(20px);
    transition: right 0.4s; gap: 1.5rem;
    border-left: 2px solid var(--gold-main);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }

  .side-book-banner { display: none; }
  /* improve touch targets on tablet */
  .nav-links a { font-size: 1rem; padding: 0.75rem 0; }
  .nav-cta { padding: 0.8rem 1.6rem; font-size: 0.95rem; }
  .lang-switcher { margin-left: 0.5rem; }
  .lang-toggle { padding: 0.4rem 0.6rem; }

  /* reposition floating actions slightly for smaller viewports */
  .whatsapp-float { left: 1rem; bottom: 1rem; width: 48px; height: 48px; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; max-width: 500px; }
  .service-image { height: 220px; }
  .hero-logo { width: 84px; height: 84px; }
  .hero-banner { max-width: 100%; border-radius: 10px; margin: 0.8rem auto 1rem; }
  .hero-tagline { font-size: 1rem; margin-bottom: 0.8rem; }
  .hero-slideshow { max-width: 550px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
    padding: 0.8rem 1.6rem; font-size: 0.95rem;
  }

  /* make form and interactive elements easier to tap */
  .form-group input, .form-group select, .form-group textarea, .form-submit {
    font-size: 1rem; padding: 0.9rem 1rem;
  }

  /* move WhatsApp to bottom-right on smaller screens */
  .whatsapp-float { left: auto; right: 1rem; bottom: 1rem; width: 44px; height: 44px; }
  .whatsapp-float svg { width: 20px; height: 20px; }
}

@media (max-width: 600px) {
  .hero-logo { width: 64px; height: 64px; }
  .section { padding: 3rem 1rem; }
  .service-info { padding: 1rem; }
  .service-name { font-size: 1rem; letter-spacing: 1px; }
  .price-tag { font-size: 0.8rem; }
  .contact-form { padding: 1rem; }
  .about-hours-card { padding: 1.5rem; }
  .about-address-card { padding: 1rem; }
  body::before { border-width: 6px; }

  /* compact WhatsApp and ensure it doesn't overlap important content */
  .whatsapp-float { width: 40px; height: 40px; right: 0.9rem; bottom: 0.9rem; }
  .whatsapp-float svg { width: 16px; height: 16px; }

  /* ensure hero buttons wrap neatly and remain tappable */
  .hero-buttons { gap: 0.6rem; }

  /* slideshow responsive */
  .hero-slideshow { max-width: 450px; margin: 0.6rem auto 0.8rem; }
  .slideshow-dots { padding: 0.5rem 0 0.2rem; gap: 0.5rem; }
  .dot { height: 8px; width: 8px; margin: 0 4px; }
  .hero-tagline { margin-bottom: 0.8rem; font-size: 0.95rem; }
  .hero-hours { margin-bottom: 0.8rem; }
  .hero-hours p { font-size: 0.95rem; }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.2rem;
  left: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #84ac51;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(132, 172, 81, 0.35);
  z-index: 999;
  transition: all 0.3s;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(132, 172, 81, 0.5);
}
.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(132, 172, 81, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(132, 172, 81, 0); }
  100% { box-shadow: 0 0 0 0 rgba(132, 172, 81, 0); }
}
