/* =============================================
   CLINK LAUNDRY – style.css
   Theme: Fresh Blue – Clean & Professional
   Fonts: Sora (headings) + Nunito (body)
   ============================================= */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --blue-dark: #0c4a6e;
  --blue-mid: #0284c7;
  --blue-main: #0ea5e9;
  --blue-light: #38bdf8;
  --cyan: #06b6d4;
  --sky-pale: #e0f2fe;
  --sky-lightest: #f0f9ff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --accent-yellow: #fcd34d;
  --accent-amber: #f59e0b;
  --wa-green: #25d366;
  --wa-dark: #128c7e;

  /* Gradients */
  --grad-main: linear-gradient(135deg, var(--blue-main), var(--cyan));
  --grad-dark: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  --grad-hero: linear-gradient(145deg, #e0f7ff 0%, #f0fffe 40%, #eff8ff 100%);

  /* Typography */
  --font-head: "Sora", sans-serif;
  --font-body: "Nunito", sans-serif;

  /* Spacing */
  --section-py: 96px;
  --container-max: 1200px;
  --container-px: 24px;

  /* Shadows */
  --shadow-sm:
    0 1px 3px rgba(14, 165, 233, 0.08), 0 1px 2px rgba(14, 165, 233, 0.06);
  --shadow-md:
    0 4px 16px rgba(14, 165, 233, 0.12), 0 2px 8px rgba(14, 165, 233, 0.08);
  --shadow-lg:
    0 12px 40px rgba(14, 165, 233, 0.18), 0 4px 16px rgba(14, 165, 233, 0.1);
  --shadow-xl: 0 24px 64px rgba(14, 165, 233, 0.22);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── TYPOGRAPHY HELPERS ── */
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky-pale);
  color: var(--blue-main);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-main);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.btn-outline {
  background: var(--white);
  color: var(--blue-main);
  border: 2px solid var(--blue-main);
}
.btn-outline:hover {
  background: var(--sky-pale);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--grad-main);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-white-outline:hover {
  background: white;
  color: var(--blue-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: 0 4px 32px rgba(14, 165, 233, 0.08);
  padding-top: 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: var(--grad-main);
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-dark);
  line-height: 1;
}
.brand-name span {
  color: var(--blue-main);
}
.navbar:not(.scrolled) .brand-name {
  color: var(--blue-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue-main);
  background: var(--sky-pale);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--blue-main);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.shape-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #bae6fd, transparent);
  top: -200px;
  right: -100px;
}
.shape-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #cffafe, transparent);
  bottom: -100px;
  left: -100px;
}
.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #fde68a, transparent);
  top: 30%;
  left: 40%;
  opacity: 0.2;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.hero-badge svg {
  color: var(--accent-yellow);
  fill: var(--accent-yellow);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-800);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  display: block;
  color: var(--blue-main);
  font-size: 0.7em;
  font-weight: 700;
  margin-top: 4px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* Hero Illustration */
.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.illus-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.main-illus {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 64px rgba(14, 165, 233, 0.25));
  animation: floatIllus 6s ease-in-out infinite;
}

@keyframes floatIllus {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}

.sparkle-group {
  animation: sparkle 3s ease-in-out infinite alternate;
}
@keyframes sparkle {
  0% {
    opacity: 0.6;
    transform: scale(0.9) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
  }
}

/* Float cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  white-space: nowrap;
  z-index: 10;
}

.float-card strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-800);
  display: block;
  line-height: 1;
}
.float-card small {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 600;
}
.float-card span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray-700);
}
.float-card > div {
  display: flex;
  flex-direction: column;
}

.float-card-1 {
  top: 8%;
  left: -10%;
  animation: floatCard1 5s ease-in-out infinite;
}
.float-card-2 {
  bottom: 22%;
  left: -12%;
  animation: floatCard2 6s ease-in-out infinite;
  background: var(--blue-dark);
  color: white;
}
.float-card-2 span {
  color: white;
}
.float-card-3 {
  top: 12%;
  right: -10%;
  animation: floatCard3 4.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}
@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(10px) rotate(-1deg);
  }
}
@keyframes floatCard3 {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ── LAYANAN ── */
.layanan {
  padding: var(--section-py) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-main);
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.service-card:hover::before {
  opacity: 0.03;
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.featured-card {
  background: var(--grad-main);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.featured-card h3,
.featured-card p {
  color: white !important;
}
.featured-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  background: var(--icon-bg, var(--sky-pale));
  color: var(--icon-color, var(--blue-main));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--sky-pale);
  color: var(--blue-main);
}
.service-tag-white {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* ── PRICE LIST ── */
.pricelist {
  padding: var(--section-py) 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

.price-bg-decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(56, 189, 248, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    );
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.price-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  color: white;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}
.price-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
}

.price-card-featured {
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-800);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
  transform: scale(1.04);
}
.price-card-featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.price-card-featured h4 {
  color: var(--gray-800);
}
.price-card-featured p {
  color: var(--gray-600);
}
.price-card-featured .price-range {
  color: var(--blue-main);
}
.price-card-featured .price-icon {
  color: var(--blue-main);
  background: var(--sky-pale);
}

.price-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-main);
  color: white;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
  white-space: nowrap;
}

.price-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.price-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.price-range {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 8px;
}
.price-range small {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
}

.price-card p {
  font-size: 0.85rem;
  opacity: 0.75;
}

.price-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}
.price-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

/* ── WHY US ── */
.why-us {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid var(--gray-100);
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-pale);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--blue-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-item:hover .why-icon {
  background: var(--grad-main);
  color: white;
  transform: scale(1.1);
}

.why-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── LOKASI ── */
.lokasi {
  padding: var(--section-py) 0;
  background: var(--white);
}

.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.lokasi-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--sky-lightest);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--sky-pale);
  transition: var(--transition);
}
.info-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sky-pale);
  color: var(--blue-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--wa-green);
  color: white;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  margin-top: 8px;
}
.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

/* Map */
.map-wrap {
  position: relative;
}

.map-container {
  width: 100%;
  height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 3px solid var(--sky-pale);
}

.map-open-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  color: var(--blue-main);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.map-open-btn:hover {
  background: var(--blue-main);
  color: white;
  transform: translateY(-2px);
}

/* ── FOOTER ── */
.footer {
  background: #082f49;
}

.footer-wave {
  line-height: 0;
  background: var(--white);
}
.footer-wave svg {
  width: 100%;
  height: 60px;
}

.footer-body {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--blue-main);
  border-color: var(--blue-main);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.88rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
.footer-love span {
  display: inline;
}

/* ── FLOATING WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.12);
  background: var(--wa-dark);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--gray-800);
  color: white;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--gray-800);
}

/* ── ANIMATIONS (scroll-reveal) ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.service-card:nth-child(1) {
  transition-delay: 0s;
}
.service-card:nth-child(2) {
  transition-delay: 0.08s;
}
.service-card:nth-child(3) {
  transition-delay: 0.16s;
}
.service-card:nth-child(4) {
  transition-delay: 0.08s;
}
.service-card:nth-child(5) {
  transition-delay: 0.16s;
}
.service-card:nth-child(6) {
  transition-delay: 0.24s;
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
  }

  .hero-container {
    gap: 40px;
  }
  .hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  .lokasi-grid {
    gap: 32px;
  }

  .float-card-1 {
    left: -5%;
  }
  .float-card-2 {
    left: -5%;
  }
  .float-card-3 {
    right: -5%;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --container-px: 16px;
  }

  /* Navbar */
  .hamburger {
    display: flex;
  }
  .btn-nav {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 40px rgba(14, 165, 233, 0.12);
    border-bottom: 1px solid var(--sky-pale);
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-md);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 72px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 80px;
    text-align: center;
  }
  .hero-text {
    align-items: center;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-cta {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    justify-content: center;
    width: 100%;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-illustration {
    order: -1;
  }
  .illus-wrap {
    max-width: 280px;
  }

  .float-card-1 {
    left: 0;
    top: 0;
    transform: scale(0.85);
  }
  .float-card-2 {
    left: 0;
    bottom: 5%;
    transform: scale(0.85);
  }
  .float-card-3 {
    right: 0;
    top: 0;
    transform: scale(0.85);
  }

  /* Sections */
  .section-header {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Prices */
  .price-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .price-card-featured {
    transform: none;
  }
  .price-card-featured:hover {
    transform: translateY(-6px);
  }
  .price-badge-top {
    top: -12px;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Lokasi */
  .lokasi-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-container {
    height: 320px;
    border-radius: var(--radius-lg);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Floating WA */
  .wa-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .wa-float-tooltip {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE – SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 16px;
  }
  .stat strong {
    font-size: 1.5rem;
  }

  .btn {
    padding: 13px 22px;
    font-size: 0.9rem;
  }

  .map-container {
    height: 280px;
    border-radius: var(--radius-md);
    /* Edge-to-edge on smallest screens */
    margin: 0 calc(-1 * var(--container-px));
    width: calc(100% + 2 * var(--container-px));
  }
  .map-wrap {
    overflow: hidden;
  }

  .float-card-1,
  .float-card-2,
  .float-card-3 {
    display: none;
  }
}

/* ── UTILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
