/* ===========================
   RELAX MIND THAI SPA - CSS
   Dark Luxury Theme
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold: #D4A373;
  --gold-dim: rgba(212,163,115,0.15);
  --gold-border: rgba(212,163,115,0.25);
  --bg: #0F0F0F;
  --bg-alt: #1A1A1A;
  --bg-dark: #0A0A0A;
  --white: #ffffff;
  --muted: #BFBFBF;
  --green: #25D366;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --red: #ef4444;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--sans); line-height: 1.6; min-height: 100vh; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
address { font-style: normal; }

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 60;
}
.announce-bar a { color: var(--bg); font-weight: 700; }
.announce-bar .sep { opacity: 0.5; }

/* NAVBAR */
nav.navbar {
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 37px;
  z-index: 50;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Services Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dropdown > a::after { content: '▾'; font-size: 11px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: rgba(20,20,20,0.99);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform-origin: top center;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateX(-50%) translateY(-4px) scaleY(0.97);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) scaleY(1);
}
.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.dropdown-menu a:first-child {
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid var(--glass-border);
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(212,163,115,0.07); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--gold); padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0; right: 0;
  background: rgba(15,15,15,0.99);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 20px 20px;
  max-height: calc(100vh - 101px);
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  cursor: pointer;
}
.mobile-menu .mob-services-list { display: none; }
.mobile-menu .mob-services-list.open { display: block; }
.mobile-menu .mob-services-list a {
  padding-left: 16px;
  font-size: 13px;
  color: var(--muted);
}
.mobile-menu .mob-services-list a:first-child { color: var(--gold); font-weight: 700; }
.mobile-menu .book-btn {
  display: block;
  margin-top: 14px;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  padding: 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  border: none;
}

/* STICKY BOTTOM CTA */
.sticky-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  padding: 10px 12px;
  gap: 8px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
}
.sticky-bottom a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sticky-bottom a:hover { transform: scale(1.03); }
.sticky-bottom .btn-call { background: var(--gold); color: var(--bg); }
.sticky-bottom .btn-wa { background: var(--green); color: #fff; }
.sticky-bottom .btn-dir { background: transparent; color: var(--gold); border: 2px solid var(--gold); }

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 40px 24px;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content .hero-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--white);
  margin-bottom: 12px;
}
.hero-content .hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(212,163,115,0.5); }
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-green:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(37,211,102,0.4); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--gold);
  transition: transform 0.2s;
}
.btn-outline:hover { transform: scale(1.04); }

/* URGENCY BAR */
.urgency-bar {
  background: linear-gradient(90deg, rgba(212,163,115,0.15), rgba(212,163,115,0.08), rgba(212,163,115,0.15));
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  text-align: center;
  padding: 12px 16px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

/* SECTIONS */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg); }
.container { max-width: 1280px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }
.container-sm { max-width: 700px; margin: 0 auto; }

/* SECTION HEADINGS */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-subtitle { color: var(--muted); font-size: 16px; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.divider { width: 64px; height: 2px; background: var(--gold); margin: 16px 0; border-radius: 2px; }
.divider-center { margin: 16px auto; }

/* GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-lg-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* GLASS CARD */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.glass-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(212,163,115,0.12); }
.gold-card {
  background: rgba(212,163,115,0.07);
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  padding: 24px;
}

/* SERVICE CARDS */
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,163,115,0.2);
  border-color: var(--gold-border);
}
.service-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.service-card-body { padding: 20px; }
.service-card-title { font-family: var(--serif); font-size: 1.2rem; color: var(--white); font-weight: 700; margin-bottom: 6px; }
.service-card-desc { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.service-card-price { color: var(--gold); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.service-card-link {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card-link:hover { box-shadow: 0 0 16px rgba(212,163,115,0.4); transform: scale(1.02); }

/* REVIEW CARDS */
.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
}
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 10px; }
.review-text { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-name { color: var(--gold); font-weight: 700; font-size: 14px; }

/* TRUST BADGES */
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 16px;
  border-radius: 12px;
}
.trust-icon { color: var(--gold); font-size: 20px; flex-shrink: 0; }
.trust-text { color: var(--white); font-weight: 500; font-size: 15px; }

/* OFFER CARDS */
.offer-card {
  background: var(--glass);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer-card-body { padding: 24px; flex: 1; }
.offer-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.offer-title { font-family: var(--serif); font-size: 1.3rem; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.offer-price { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.offer-original { color: var(--muted); font-size: 14px; text-decoration: line-through; margin-left: 8px; }
.offer-list { list-style: none; margin: 16px 0; }
.offer-list li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; padding: 4px 0; }
.offer-list li::before { content: '▸'; color: var(--gold); }
.offer-btns { display: flex; gap: 10px; padding: 16px 24px 24px; }
.offer-btns a { flex: 1; text-align: center; padding: 11px; border-radius: 12px; font-weight: 700; font-size: 14px; transition: transform 0.2s; }
.offer-btns a:hover { transform: scale(1.03); }
.offer-btns .btn-call-sm { background: var(--gold); color: var(--bg); }
.offer-btns .btn-wa-sm { background: var(--green); color: #fff; }

/* FAQ */
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
}
.faq-q { font-weight: 700; color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.faq-a { color: var(--muted); font-size: 15px; }

/* FINAL CTA */
.final-cta {
  background: linear-gradient(135deg, #1a1008, #0f0f0f, #0a0f1a);
  border-top: 1px solid var(--gold-border);
  padding: 80px 24px;
  text-align: center;
}
.final-cta h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--gold); margin-bottom: 12px; }
.final-cta p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.final-cta .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CONTACT CARDS */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
}
.contact-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: rgba(212,163,115,0.1); }
.contact-label { font-weight: 700; color: var(--white); font-size: 15px; margin-bottom: 2px; }
.contact-sub { color: var(--muted); font-size: 13px; margin-bottom: 4px; }
.contact-link { color: var(--gold); font-weight: 600; font-size: 15px; }
.contact-link:hover { text-decoration: underline; }
.contact-link-green { color: var(--green); font-weight: 600; font-size: 15px; }
.contact-link-green:hover { text-decoration: underline; }

/* FORM */
.booking-form { background: rgba(255,255,255,0.04); border: 1px solid var(--gold-border); border-radius: 20px; padding: 32px; position: relative; }
.form-badge { position: absolute; top: -14px; right: 20px; background: var(--gold); color: var(--bg); padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.form-title { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; color: var(--muted); font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select option { background: #1a1a1a; color: var(--white); }
.form-submit { width: 100%; padding: 14px; background: var(--gold); color: var(--bg); border: none; border-radius: 12px; font-weight: 700; font-size: 16px; cursor: pointer; margin-top: 8px; font-family: var(--sans); transition: transform 0.2s, box-shadow 0.2s; }
.form-submit:hover { transform: scale(1.02); box-shadow: 0 0 20px rgba(212,163,115,0.4); }
.form-note { text-align: center; color: var(--muted); font-size: 12px; margin-top: 10px; }

/* SERVICE PAGE DETAIL */
.service-price-box { background: rgba(212,163,115,0.07); border: 1px solid var(--gold-border); border-radius: 12px; padding: 20px 24px; margin-bottom: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.service-price-label { font-size: 16px; font-weight: 700; color: var(--white); }
.service-price-val { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.service-price-disc { font-size: 13px; font-weight: 600; color: var(--red); }
.benefits-list { list-style: none; }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; color: var(--muted); font-size: 15px; border-bottom: 1px solid var(--glass-border); }
.benefits-list li:last-child { border: none; }
.benefits-list li span.check { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 14px; border-radius: 50px; background: rgba(212,163,115,0.1); color: var(--gold); font-size: 13px; font-weight: 600; }
.subsection-title { font-family: var(--serif); font-size: 1.3rem; color: var(--white); font-weight: 700; padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--glass-border); margin-bottom: 12px; }

/* GALLERY */
.gallery-section-title { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--gold-border); }
.gallery-img-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--glass-border); aspect-ratio: 4/3; }
.gallery-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.gallery-img-wrap:hover img { transform: scale(1.05); }

/* LOCATION */
.map-placeholder { height: 320px; background: rgba(212,163,115,0.05); border: 1px solid var(--gold-border); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; }
.map-icon { font-size: 48px; margin-bottom: 12px; }

/* FOOTER */
footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--gold-border);
  padding: 64px 24px 100px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
  gap: 40px;
}
.footer-brand { font-family: var(--serif); font-size: 1.6rem; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.footer-desc { color: var(--muted); font-size: 14px; line-height: 1.7; }
.footer-col-title { font-weight: 600; color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1280px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }

/* STARS RATING */
.rating-bar { background: var(--bg-alt); padding: 40px 24px; text-align: center; border-bottom: 1px solid var(--glass-border); }
.stars-lg { color: var(--gold); font-size: 28px; margin-bottom: 10px; }
.rating-score { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.rating-sub { color: var(--muted); font-size: 14px; }

/* BADGE PILL */
.badge-pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: 50px; background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); font-weight: 700; font-size: 13px; margin-bottom: 20px; }

/* ABOUT FLOATING BADGE */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 20px; border: 1px solid var(--gold-border); width: 100%; }
.about-float-badge { position: absolute; bottom: -20px; left: -20px; background: rgba(15,15,15,0.95); border: 1px solid var(--gold-border); border-radius: 12px; padding: 16px 20px; max-width: 240px; }
.about-float-title { color: var(--gold); font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.about-float-sub { color: var(--muted); font-size: 12px; }

/* LEGAL PAGES */
.legal-block { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 14px; padding: 24px; margin-bottom: 16px; }
.legal-title { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.legal-text { color: var(--muted); font-size: 15px; line-height: 1.75; }
.legal-list { list-style: none; margin-top: 10px; }
.legal-list li { color: var(--muted); font-size: 14px; padding: 3px 0 3px 14px; position: relative; }
.legal-list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

/* EXPERIENCE BLOCK */
.exp-grid { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; margin-top: 40px; }
.exp-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.exp-emoji { font-size: 32px; }
.exp-label { color: var(--white); font-weight: 600; font-size: 15px; }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  nav.navbar { position: sticky; top: 37px; }
  .grid-2, .grid-3, .grid-lg-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { min-height: 75vh; }
  .about-float-badge { display: none; }
  .exp-grid { gap: 32px; }
  .offer-btns { flex-direction: column; }
  .service-price-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .final-cta .cta-btns { flex-direction: column; align-items: center; }
  .grid-4 { grid-template-columns: 1fr; }
}
