/* =============================================
   CSS VARIABLES & RESET
============================================= */
:root {
  --blue-900: #0a1f44;
  --blue-800: #0d2d6b;
  --blue-700: #1145a0;
  --blue-600: #1a5fc8;
  --blue-500: #2980f5;
  --blue-400: #5aa3ff;
  --blue-200: #bcd8ff;
  --blue-100: #ddeeff;
  --blue-50: #f0f7ff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --accent: #2980f5;
  --accent-dark: #1145a0;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 16px rgba(26, 95, 200, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 12px 40px rgba(26, 95, 200, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 24px 64px rgba(26, 95, 200, 0.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* =============================================
   UTILITIES
============================================= */
.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.15;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 700px;
  margin: 12px auto 0;
  line-height: 1.7;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 95, 200, 0.35);
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 8px 30px rgba(26, 95, 200, 0.45);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-wa:hover {
  background: #1da851;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-200);
}
.btn-outline:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--blue-700);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  color: white;
}

/* =============================================
   NAVBAR 
============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-100);
  box-shadow:
    0 1px 0 var(--gray-100),
    var(--shadow-sm);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1.1;
}
.logo-text span {
  color: var(--blue-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover {
  color: var(--blue-600);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  gap: 5px;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-700);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1001;

  /* FIX: Sembunyikan sepenuhnya saat tutup biar tidak membocorkan shadow */
  transform: translateY(-150%);
  visibility: hidden;
  opacity: 0;
  transition:
    transform var(--transition),
    visibility var(--transition),
    opacity var(--transition);

  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.mobile-menu a.mobile-link {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a.mobile-link:hover {
  background: var(--blue-50);
  color: var(--blue-600);
}

.mobile-wa-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.mobile-wa-btn {
  width: 100%;
  justify-content: center;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e8f3ff 0%, #f0f8ff 40%, #ddeeff 100%);
  padding-top: var(--nav-h);
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.7),
    rgba(41, 128, 245, 0.08)
  );
  border: 1px solid rgba(41, 128, 245, 0.15);
  animation: float linear infinite;
}
.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 8%;
  top: 20%;
  animation-duration: 12s;
  animation-delay: 0s;
}
.bubble:nth-child(2) {
  width: 50px;
  height: 50px;
  left: 85%;
  top: 15%;
  animation-duration: 9s;
  animation-delay: -3s;
}
.bubble:nth-child(3) {
  width: 120px;
  height: 120px;
  left: 70%;
  top: 60%;
  animation-duration: 15s;
  animation-delay: -6s;
}
.bubble:nth-child(4) {
  width: 30px;
  height: 30px;
  left: 30%;
  top: 75%;
  animation-duration: 8s;
  animation-delay: -1s;
}
.bubble:nth-child(5) {
  width: 60px;
  height: 60px;
  left: 55%;
  top: 10%;
  animation-duration: 11s;
  animation-delay: -4s;
}
.bubble:nth-child(6) {
  width: 20px;
  height: 20px;
  left: 15%;
  top: 55%;
  animation-duration: 7s;
  animation-delay: -2s;
}
.bubble:nth-child(7) {
  width: 90px;
  height: 90px;
  left: 92%;
  top: 80%;
  animation-duration: 13s;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-block: 80px 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: rgba(41, 128, 245, 0.08);
  border: 1px solid rgba(41, 128, 245, 0.2);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInDown 0.7s 0.1s ease both;
}
.hero-title .accent {
  color: var(--blue-500);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 44ch;
  animation: fadeInDown 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInDown 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--blue-200);
  animation: fadeInDown 0.7s 0.4s ease both;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s 0.2s ease both;
}
.hero-card-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-visual-placeholder {
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #e0eeff, #bcd8ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-visual-icon {
  font-size: 5rem;
}
.hero-visual-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-700);
}
.hero-visual-city {
  font-size: 0.9rem;
  color: var(--blue-600);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.float-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.float-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-900);
  font-weight: 700;
}
.float-text span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.hero-float-stars {
  position: absolute;
  top: -16px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: floatCard 4s 2s ease-in-out infinite;
}
.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}
.stars-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 4px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =============================================
   FEATURES MARQUEE
============================================= */
#features {
  background: var(--blue-700);
  padding: 26px 0;
  overflow: hidden;
}
.marquee-wrapper {
  overflow: hidden;
}
.features-track {
  display: flex;
  gap: 0;
  will-change: transform;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.feature-pill .icon {
  font-size: 1.1rem;
}
.feature-pill .sep {
  margin-left: 28px;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* =============================================
   SERVICES
============================================= */
#services {
  padding: 96px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  transform: scale(1.1) rotate(-5deg);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.service-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--blue-50);
  color: var(--blue-600);
}

/* =============================================
   WHY US
============================================= */
#whyus {
  padding: 96px 0;
  background: var(--blue-50);
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.whyus-text .section-sub {
  max-width: 46ch;
}

.whyus-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
  transform: translateX(4px);
}
.why-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-body strong {
  display: block;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.why-body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.whyus-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.counter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-50) 0%, transparent 60%);
}
.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.counter-card--dark {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-color: transparent;
}
.counter-card--dark .counter-num {
  color: white;
}
.counter-card--dark .counter-label {
  color: rgba(255, 255, 255, 0.75);
}
.counter-card--dark::before {
  background: rgba(255, 255, 255, 0.05);
}
.counter-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1;
  position: relative;
}
.counter-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}
.counter-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 8px;
  font-weight: 600;
}

/* =============================================
   PRICELIST / KATALOG
============================================= */
#pricelist {
  padding: 96px 0;
  background: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.catalog-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.catalog-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px) scale(1.02);
}
.catalog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.catalog-item:hover img {
  transform: scale(1.06);
}

.catalog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 31, 68, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  gap: 4px;
  opacity: 0;
  transition: opacity var(--transition);
}
.catalog-item:hover .catalog-overlay {
  opacity: 1;
}
.catalog-zoom-icon {
  font-size: 1.4rem;
}
.catalog-zoom-text {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.pricelist-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pricelist-cta-text {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 15, 40, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lb-content {
  position: relative;
  max-width: min(900px, 92vw);
  max-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 100%;
  max-height: 85svh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transition:
    transform var(--transition-slow),
    opacity var(--transition);
}
.lb-img.transitioning {
  opacity: 0;
  transform: scale(0.95);
}
.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  user-select: none;
}
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lb-prev {
  left: 20px;
}
.lb-next {
  right: 20px;
}
.lb-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.lb-dots {
  position: fixed;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.lb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.lb-dot.active {
  background: white;
  transform: scale(1.3);
}

/* =============================================
   PROCESS
============================================= */
#process {
  padding: 96px 0;
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}
#process::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(41, 128, 245, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
#process .section-tag {
  background: rgba(41, 128, 245, 0.15);
  border-color: rgba(41, 128, 245, 0.3);
  color: var(--blue-400);
}
#process .section-title {
  color: white;
}
#process .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin-inline: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(41, 128, 245, 0.4);
  transition: var(--transition);
}
.step-card:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(41, 128, 245, 0.6);
}
.step-title {
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  font-size: 1rem;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* =============================================
   LOCATION + INFO
============================================= */
#location {
  padding: 96px 0;
  background: var(--gray-50);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  display: block;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
  transform: translateX(4px);
}
.info-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-card-body strong {
  display: block;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 4px;
}
.info-card-body p,
.info-card-body a {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.info-card-body a {
  color: var(--blue-600);
  font-weight: 600;
}
.info-card-body a:hover {
  text-decoration: underline;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.88rem;
}
.hours-grid .day {
  color: var(--gray-700);
  font-weight: 600;
}
.hours-grid .time {
  color: var(--blue-600);
  font-weight: 700;
}
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  background: #d1fae5;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 8px;
}
.open-dot {
  width: 6px;
  height: 6px;
  background: #059669;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials {
  padding: 96px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-200);
  transform: translateY(-4px);
}
.testi-card--dark {
  background: linear-gradient(145deg, var(--blue-700), var(--blue-900));
  border-color: transparent;
}
.testi-card--dark .testi-text {
  color: rgba(255, 255, 255, 0.85);
}
.testi-card--dark .testi-name {
  color: white;
}
.testi-card--dark .testi-role {
  color: rgba(255, 255, 255, 0.55);
}
.testi-card--dark .testi-quote {
  color: rgba(255, 255, 255, 0.3);
}
.testi-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--blue-200);
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--blue-900);
  font-size: 0.9rem;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* =============================================
   CTA SECTION
============================================= */
#cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-900) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
#cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(41, 128, 245, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: auto;
}
.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-200);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.footer-logo .logo-text {
  color: white;
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 34ch;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.6);
}
.social-link:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: white;
  transform: translateY(-3px);
}
.footer-col-title {
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--blue-400);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
}
.footer-bottom a {
  color: var(--blue-400);
}

/* =============================================
   SCROLL TO TOP  (no floating WA button)
============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  width: 48px;
  height: 48px;
  background: var(--blue-600);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--blue-700);
  transform: translateY(-3px);
}

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (min-width: 769px) {
  .mobile-menu,
  .menu-overlay {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .steps-grid::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}

@media (max-width: 768px) {
  /* hide desktop links & CTA, show hamburger */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-block: 60px 80px;
    gap: 40px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-float-card {
    left: 50%;
    transform: translateX(-50%) !important;
    bottom: -16px;
  }
  .hero-float-stars {
    right: 0;
  }
  .hero-sub {
    margin-inline: auto;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .whyus-counters {
    order: -1;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricelist-cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .container {
    width: min(100%, 100% - 32px);
  }
}
