:root {
  --primary: #0d5c63;
  --primary-deep: #08363b;
  --accent: #f4a259;
  --surface: #f7f4ea;
  --ink: #152325;
  --muted: #5b6b70;
  --line: rgba(11, 66, 72, 0.16);
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Nunito Sans', sans-serif;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

body.theme-energetic {
  --primary: #174a7a;
  --primary-deep: #0d2e52;
  --accent: #ff8359;
  --surface: #fff2e7;
}

body.theme-clinical {
  --primary: #15566a;
  --primary-deep: #0b3340;
  --accent: #49b7ac;
  --surface: #edf7f8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--ink);
  line-height: 1.62;
  background:
    radial-gradient(1100px 420px at -5% -8%, rgba(244, 162, 89, 0.21), transparent 60%),
    radial-gradient(880px 460px at 108% -2%, rgba(13, 92, 99, 0.2), transparent 58%),
    linear-gradient(165deg, #f2f8fa 0%, #eef6f1 44%, #f8efe3 100%);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image: linear-gradient(rgba(11, 66, 72, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 66, 72, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.32;
}

body::after {
  background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.74rem;
  color: var(--primary);
  margin: 0 0 10px;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.8);
}

.section-title {
  font-family: var(--heading-font);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: clamp(1.7rem, 3.3vw, 2.9rem);
  margin: 0 0 12px;
}

.section-sub {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 22px;
}

.header-strip {
  background: linear-gradient(90deg, var(--primary-deep), #114f57);
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.strip-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

.strip-inner p {
  margin: 0;
}

.strip-link {
  font-weight: 800;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px) saturate(130%);
  background: rgba(242, 249, 249, 0.78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.mobile-nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 9px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  height: 2px;
  border-radius: 2px;
  background: #16424a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.brand {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  position: relative;
  font-weight: 700;
  color: #1d3d41;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.22s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  transition: transform 0.2s ease, box-shadow 0.24s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.35) 50%, transparent 62%);
  transform: translateX(-140%);
  transition: transform 0.52s ease;
}

.btn:hover::after {
  transform: translateX(140%);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 12px 20px rgba(10, 65, 72, 0.28);
}

.btn-accent {
  color: #1f1308;
  background: linear-gradient(135deg, #f8b066, var(--accent));
  box-shadow: 0 12px 20px rgba(244, 162, 89, 0.32);
}

.hero {
  padding: 30px 0 42px;
}

.hero-full {
  width: 100%;
  
  margin-left: 0;
  margin-right: 0;
  padding: 0 clamp(14px, 2.8vw, 34px);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: 100%;
  max-width: none;
}

.hero-side {
  max-width: none;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  transition: transform 0.16s linear;
}

.shape-a {
  width: 132px;
  height: 132px;
  left: -26px;
  bottom: -24px;
  background: radial-gradient(circle, rgba(244, 162, 89, 0.58), rgba(244, 162, 89, 0));
}

.shape-b {
  width: 190px;
  height: 190px;
  right: -34px;
  top: 20%;
  background: radial-gradient(circle, rgba(67, 220, 200, 0.48), rgba(67, 220, 200, 0));
}

.shape-c {
  width: 120px;
  height: 120px;
  right: 22%;
  top: -38px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  min-height: 470px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(145deg, rgba(6, 26, 31, 0.9), rgba(13, 92, 99, 0.74)),
    linear-gradient(120deg, #153a40 0%, #165f66 40%, #113f45 100%);
  background-size: cover;
  background-position: center;
  animation: heroFade 0.46s ease;
}

.hero-slide.has-image {
  background-image: linear-gradient(145deg, rgba(6, 26, 31, 0.84), rgba(13, 92, 99, 0.58)), var(--slide-image);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 62%;
  height: 70%;
  background: radial-gradient(ellipse at 20% 75%, rgba(244, 162, 89, 0.2), transparent 64%);
}

.hero-slide::after {
  content: '';
  position: absolute;
  width: 310px;
  height: 310px;
  right: -92px;
  top: -120px;
  background: radial-gradient(circle, rgba(244, 162, 89, 0.52), rgba(244, 162, 89, 0));
}

.hero-slide > * {
  position: relative;
  z-index: 3;
}

.hero-slide.is-active {
  display: block;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.hero h1 {
  margin: 0 0 14px;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.03;
  max-width: 13ch;
}

.hero p {
  margin-top: 0;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 58ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-pill {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-controls {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(71, 71, 71, 0.44);
  color: #b9b9b9;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 1.1rem;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  width: 10px;
  height: 10px;
  background: rgba(255, 106, 106, 0.34);
}

.hero-dot.is-active {
  width: 30px;
  background: #c51818;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-side {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(220px 110px at 100% 0%, rgba(244, 162, 89, 0.22), transparent 70%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(241, 248, 248, 0.86));
  border: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(10, 59, 68, 0.14);
  backdrop-filter: blur(8px);
  padding: clamp(20px, 3vw, 30px);
}

.booking-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
}

.hero-side h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  line-height: 1.15;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.booking-grid {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
}

.booking-grid article {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 66, 72, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.booking-grid h4 {
  margin: 0 0 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #426166;
}

.booking-grid p {
  color: #17343a;
  margin: 0;
  font-weight: 700;
}

.booking-btn {
  width: 100%;
}

.trust-band {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.84), rgba(244, 250, 250, 0.65));
  border: 1px solid rgba(18, 87, 94, 0.18);
  border-radius: 999px;
  padding: 12px 18px;
  text-align: center;
  font-weight: 800;
  color: #1f5458;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 18px rgba(12, 63, 70, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.trust-item::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #35b3a7, #0f7f88);
  box-shadow: 0 0 0 5px rgba(22, 133, 140, 0.12);
}

.trust-item::after,
.service-card::before,
.timeline-content::before,
#kontak .card::before,
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(240px 150px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.trust-item.is-pointer-active,
.service-card.is-pointer-active,
.timeline-content.is-pointer-active,
#kontak .card.is-pointer-active,
.cta-band.is-pointer-active {
  transform: translateY(-3px);
}

.trust-item.is-pointer-active::after,
.service-card.is-pointer-active::before,
.timeline-content.is-pointer-active::before,
#kontak .card.is-pointer-active::before,
.cta-band.is-pointer-active::before {
  opacity: 1;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid rgba(11, 66, 72, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 252, 0.72));
  box-shadow: 0 14px 24px rgba(9, 48, 58, 0.09);
  padding: 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 92, 99, 0.34);
  box-shadow: 0 20px 32px rgba(10, 50, 57, 0.14);
}

.feature-card {
  position: relative;
}

.feature-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 10px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-deep));
}

.feature-card p {
  margin: 0;
  color: #224245;
  font-weight: 700;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(15, 93, 101, 0.18);
  background:
    radial-gradient(200px 120px at 105% -5%, rgba(244, 162, 89, 0.2), transparent 72%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 250, 0.78));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 92, 99, 0.16), rgba(13, 92, 99, 0));
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--primary), #167a84);
  box-shadow: 0 8px 14px rgba(15, 90, 98, 0.24);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-family: var(--heading-font);
}

.service-card .section-sub {
  color: #4d6066;
  line-height: 1.7;
}

.timeline {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7%;
  right: 7%;
  top: 20px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(13, 92, 99, 0.78), rgba(244, 162, 89, 0.86));
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-width: 0;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-index {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(160deg, var(--primary), #1790a0);
  box-shadow: 0 10px 18px rgba(13, 92, 99, 0.24);
  z-index: 2;
}

.timeline-content {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(244, 162, 89, 0.08), rgba(244, 162, 89, 0.01) 14%, transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(241, 249, 250, 0.8));
  border: 1px solid rgba(236, 154, 85, 0.58);
  box-shadow: 0 12px 20px rgba(10, 58, 68, 0.08);
  padding: 18px 16px;
  min-height: 122px;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.timeline-item.is-current .timeline-content,
.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  border-color: rgba(244, 162, 89, 0.95);
  box-shadow: 0 16px 25px rgba(13, 84, 92, 0.14);
}

.timeline-item.is-current .timeline-index,
.timeline-item:hover .timeline-index {
  background: linear-gradient(160deg, #f08e31, #f4a259);
}

#layanan,
#kontak {
  position: relative;
}

#layanan::before,
#kontak::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

#layanan::before {
  background:
    radial-gradient(380px 170px at 100% 0%, rgba(244, 162, 89, 0.12), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
}

#kontak::before {
  background:
    radial-gradient(300px 140px at 0% 0%, rgba(13, 92, 99, 0.08), transparent 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

#kontak .grid-3 {
  gap: 18px;
}

#kontak .card {
  min-height: 156px;
  position: relative;
  overflow: hidden;
  border-color: rgba(13, 92, 99, 0.17);
  background:
    radial-gradient(240px 140px at 100% 0%, rgba(13, 92, 99, 0.09), transparent 74%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 251, 0.8));
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

#kontak .card h3 {
  margin-top: 2px;
  margin-bottom: 14px;
  font-family: var(--heading-font);
  font-size: 1.06rem;
}

#kontak .card p {
  margin: 0;
  color: #33484d;
  font-size: 1.08rem;
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.about-art {
  min-height: 370px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #0f3f45, #1a6670);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 36px rgba(8, 44, 52, 0.24);
}

.art-shape {
  position: absolute;
  border-radius: 50%;
}

.art-a {
  width: 240px;
  height: 240px;
  left: -38px;
  bottom: -74px;
  background: radial-gradient(circle, rgba(244, 162, 89, 0.8), rgba(244, 162, 89, 0));
}

.art-b {
  width: 200px;
  height: 200px;
  right: -42px;
  top: -40px;
  background: radial-gradient(circle, rgba(110, 241, 223, 0.66), rgba(110, 241, 223, 0));
}

.art-c {
  inset: 18% 16% auto;
  height: 160px;
  border-radius: 24px;
  transform: rotate(-8deg);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.chip-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip {
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(13, 92, 99, 0.1);
  border: 1px solid rgba(13, 92, 99, 0.12);
}

.testimonial-quote {
  margin-top: 0;
  margin-bottom: 14px;
  font-style: italic;
  color: #2a4145;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 66, 72, 0.15);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 252, 0.72));
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  padding: 15px;
}

.faq-a {
  display: none;
  padding: 0 15px 15px;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  padding: clamp(26px, 3.2vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(240px 140px at 90% -20%, rgba(244, 162, 89, 0.46), transparent 72%),
    linear-gradient(108deg, #102f35, #0f5058 58%, #165c66 100%);
  box-shadow: 0 22px 36px rgba(8, 43, 49, 0.32);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.cta-band:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 42px rgba(8, 43, 49, 0.36);
}

.cta-band p {
  margin: 0 0 22px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.87);
}

.site-footer {
  padding: 44px 0 30px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(235, 244, 246, 0.76));
}

.footer-appointment {
  margin-bottom: 26px;
}

.footer-booking-card {
  width: min(760px, 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 20px 0 16px;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-social i {
  font-size: 18px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #1c9d6a, #1a7a5f);
  box-shadow: 0 14px 28px rgba(15, 73, 58, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 73, 58, 0.42);
}

.wa-float-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  animation: waPulse 2.2s ease-in-out infinite;
}

.wa-float-icon {
  width: 20px;
  height: 20px;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-group > * {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.54s ease, transform 0.54s ease;
}

.stagger-group > *.stagger-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes waPulse {
  0%,
  100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.18);
  }

  50% {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .hero-wrap,
  .about-wrap {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline::before {
    left: 12%;
    right: 12%;
  }

  .about-art {
    min-height: 280px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slide {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .strip-inner {
    min-height: 46px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 64px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
  }

  .mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: rgba(244, 250, 250, 0.96);
    backdrop-filter: blur(10px);
    padding: 10px 4vw 16px;
  }

  .mobile-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .mobile-nav a {
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    color: #1d3d41;
  }

  .mobile-nav a:hover {
    background: rgba(13, 92, 99, 0.08);
  }

  .mobile-nav .btn {
    margin-top: 4px;
    width: 100%;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-full {
    padding: 0 12px;
  }

  .hero-slide {
    min-height: 380px;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-item {
    text-align: left;
    padding-left: 34px;
  }

  .service-card {
    padding: 20px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-index {
    margin: 0;
  }

  .timeline-content {
    text-align: left;
    min-height: 0;
    padding: 14px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .wa-float {
    right: 12px;
    bottom: 12px;
    padding-left: 12px;
    font-size: 0.9rem;
  }

  .wa-float-icon-wrap {
    width: 34px;
    height: 34px;
  }
}

/* Google Maps Embed Container */
.gmaps-container {
  position: relative;
  width: 100%;
  padding-bottom: 66.67%; /* 3:2 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.gmaps-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}
