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

/* lighttheme*/
:root {
  --bg: #f5f0e8;
  --bg2: #ede7d9;
  --surface: #ffffff;
  --card: #faf7f2;
  --border: rgba(60, 50, 30, 0.12);
  --text: #1e1a14;
  --muted: #7a6e5e;
  --accent: #2d6a4f;
  --accent-h: #1b4332;
  --accent2: #d4a017;
  --accent-bg: rgba(45, 106, 79, 0.08);
  --shadow: 0 4px 24px rgba(30, 26, 20, 0.1);
  --shadow-lg: 0 12px 48px rgba(30, 26, 20, 0.15);
  --nav-bg: rgba(245, 240, 232, 0.88);
  --tag-bg: rgba(45, 106, 79, 0.1);
  --tag-color: #2d6a4f;
  --btn-text: #ffffff;
  --hero-dot: rgba(45, 106, 79, 0.08);
  --card-hover-border: rgba(45, 106, 79, 0.35);
  --step-num: rgba(45, 106, 79, 0.08);
  --product-bg: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  --footer-bg: #1e1a14;
  --footer-text: #f5f0e8;
  --footer-muted: #a89880;
  --toggle-track: #d4c9b5;
  --toggle-thumb: #2d6a4f;
}

/* DARK THEME */
[data-theme="dark"] {
  --bg: #141210;
  --bg2: #1c1814;
  --surface: #1f1c17;
  --card: #252118;
  --border: rgba(255, 240, 200, 0.08);
  --text: #f0ead8;
  --muted: #9e9280;
  --accent: #52b788;
  --accent-h: #74c69d;
  --accent2: #ffd166;
  --accent-bg: rgba(82, 183, 136, 0.1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
  --nav-bg: rgba(20, 18, 16, 0.9);
  --tag-bg: rgba(82, 183, 136, 0.12);
  --tag-color: #52b788;
  --btn-text: #141210;
  --hero-dot: rgba(82, 183, 136, 0.06);
  --card-hover-border: rgba(82, 183, 136, 0.3);
  --step-num: rgba(82, 183, 136, 0.08);
  --product-bg: linear-gradient(135deg, #1a2e22, #1e2d1a);
  --footer-bg: #0c0a08;
  --footer-text: #f0ead8;
  --footer-muted: #7a6e5e;
  --toggle-track: #3a3328;
  --toggle-thumb: #52b788;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

/*   DOT PATTERN OVERLAY  */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    circle,
    var(--hero-dot) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/*NAV*/
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-bottom: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}
nav ul a:hover {
  color: var(--accent);
  background: var(--accent-bg);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--btn-text) !important;
  padding: 8px 20px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s !important;
  box-shadow: 0 2px 12px rgba(45, 106, 79, 0.25);
}
.nav-cta:hover {
  background: var(--accent-h) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.35) !important;
}

/* hamburger mobile*/
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 201;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* DARK MODE TOGGLE  */
.theme-toggle {
  width: 46px;
  height: 26px;
  background: var(--toggle-track);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.theme-toggle::after {
  content: "☀️";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--toggle-thumb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition:
    transform 0.3s,
    background 0.3s;
}
[data-theme="dark"] .theme-toggle::after {
  content: "🌙";
  transform: translateX(20px);
}

/* HERO  */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 48px 80px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tag-bg);
  border: 1px solid rgba(45, 106, 79, 0.2);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeLeft 0.7s ease both;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  animation: fadeLeft 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 460px;
  animation: fadeLeft 0.7s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeLeft 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--accent);
  color: var(--btn-text);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 106, 79, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  animation: fadeLeft 0.7s 0.4s ease both;
}
.stat-box {
  background: var(--surface);
  padding: 20px 18px;
  text-align: center;
  transition: background 0.35s;
}
.stat-n {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-l {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 5px;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeRight 0.8s 0.2s ease both;
}

.hero-card-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  width: 340px;
  position: relative;
  z-index: 2;
  transition:
    box-shadow 0.35s,
    background 0.35s,
    border-color 0.35s;
}
.hero-card-main .card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.hero-card-main h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-card-main p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.card-price {
  margin-top: 20px;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-card-float {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
  transition:
    background 0.35s,
    border-color 0.35s;
}
.hero-card-float.f1 {
  top: -20px;
  right: -24px;
  animation: floatY 4s ease-in-out infinite;
}
.hero-card-float.f2 {
  bottom: 24px;
  left: -32px;
  animation: floatY 4s 2s ease-in-out infinite;
}

.float-icon {
  font-size: 1.4rem;
}
.float-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 400;
}

.hero-bg-shape {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.07), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BRANDS STRIP */
.brands-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: background 0.35s;
}
.brands-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.marquee-wrap {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-item {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
  padding: 0 32px;
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-item:hover {
  color: var(--accent);
}
.marquee-sep {
  color: var(--border);
  padding: 0 4px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
.section {
  padding: 96px 48px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sec-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s;
}
.sec-bg .section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.sec-header {
  margin-bottom: 56px;
}
.sec-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 560px;
}
.sec-title em {
  font-style: italic;
  color: var(--accent);
}

/* LAYANAN (DIPERBARUI) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: var(--shadow-lg);
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  margin-bottom: 10px;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: auto;
}
.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
  margin-top: 10px;
  margin-bottom: 18px;
}

.svc-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--tag-bg);
  padding: 6px 14px;
  border-radius: 6px;
  width: fit-content;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.process-step {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.35s;
}
.process-step:hover {
  background: var(--card);
}
.p-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--step-num);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.process-step:hover .p-num {
  color: var(--accent);
  opacity: 0.25;
}
.process-step h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.35s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  height: 150px;
  background: var(--product-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}
.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 60% 40%,
    rgba(255, 255, 255, 0.06),
    transparent
  );
}
.product-body {
  padding: 18px;
}
.product-body h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1rem;
}
.product-body p {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 14px;
  line-height: 1.5;
}
.product-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    background 0.35s,
    border-color 0.35s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--card-hover-border);
}
.stars {
  color: #d4a017;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card blockquote {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.92rem;
  font-style: italic;
  margin-bottom: 22px;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.author-sub {
  color: var(--muted);
  font-size: 0.77rem;
  margin-top: 2px;
}

/* CTA */
.cta-section {
  background: var(--accent);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% -20%,
    rgba(255, 255, 255, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-white {
  background: #fff;
  color: var(--accent);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-maps {
  background: #403b3bee;
  color: var(--accent);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn-maps:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.cta-info {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* FOOTER  */
.footer-wrap {
  background: var(--footer-bg);
  transition: background 0.35s;
}
footer {
  padding: 64px 48px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px;
  color: var(--footer-text);
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--footer-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo .logo-dot {
  background: #52b788;
}
.footer-desc {
  color: var(--footer-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.soc-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--footer-text);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: var(--footer-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: #52b788;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--footer-muted);
  font-size: 0.8rem;
}
.footer-bottom-bar a {
  color: var(--footer-muted);
  text-decoration: none;
}
.footer-bottom-bar a:hover {
  color: #52b788;
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track .service-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  opacity: 1;
  transform: none;
}

/* animasi masuk saat slide */
.carousel-track.sliding-next .service-card {
  animation: none;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.carousel-track.anim-next .service-card {
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.carousel-track.anim-prev .service-card {
  animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 1.5px solid var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 22px;
  border-radius: 4px;
}

/* end carousel */
@media (max-width: 900px) {
  .carousel-track .service-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 600px) {
  .carousel-track .service-card {
    flex: 0 0 100%;
  }
}

/* RESPONSIVE  */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: var(--shadow-lg);
  }

  nav ul.active {
    display: flex;
  }

  .nav-right {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 48px;
    text-align: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
  .section {
    padding: 72px 24px;
  }
  .sec-bg .section {
    padding: 72px 24px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
    text-align: center;
  }
  .cta-section {
    padding: 60px 24px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card .btn-primary,
  .service-card .btn-outline {
    width: 100%;
  }
}