/* ==========================================================================
   EAZYFAST LANDING PAGE STYLING
   Clean, Elegant, and Modern Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #0193ac;
  --primary-light: #e5f4f7;
  --primary-dark: #00778c;
  --accent: #1c61e7;
  --accent-light: #e1ebff;
  --accent-dark: #124cb8;

  --neutral-dark: #1a1a1a;
  --neutral-title: #242424;
  --neutral-body: #64748b;
  --neutral-light: #f8fafc;
  --neutral-border: #e2e8f0;

  --white: #ffffff;
  --success: #10b981;
  --shadow-sm: 0 1px 3px rgba(163, 55, 55, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(1, 147, 172, 0.08), 0 8px 10px -6px rgba(1, 147, 172, 0.08);
  --shadow-lg: 0 20px 50px -12px rgba(17, 24, 39, 0.05);
  --shadow-accent: 0 10px 20px -5px rgba(28, 97, 231, 0.2);

  /* Fonts */
  --font-title: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--neutral-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  color: var(--neutral-title);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-light);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --------------------------------------------------------------------------
   3. Reusable UI Components & Utility Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--neutral-light);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: var(--neutral-title);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-body);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(1, 147, 172, 0.25);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28, 97, 231, 0.35);
}

.btn-whatsapp {
  background-color: #1b8b4a;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(27, 139, 74, 0.15);
}

.btn-whatsapp:hover {
  background-color: #156d3a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(21, 109, 58, 0.25);
}

.btn-secondary {
  background-color: var(--accent-light);
  color: var(--accent);
}

.btn-secondary:hover {
  background-color: #cbdcfc;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--neutral-border);
  color: var(--neutral-title);
}

.btn-outline:hover {
  background-color: var(--neutral-light);
  border-color: var(--primary);
  color: var(--primary);
}

/* Cards & Hover Effects */
.card {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-normal);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 147, 172, 0.2);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation (Standardized Navbar Style)
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(226, 232, 240, .6);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--neutral-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--neutral-title);
  letter-spacing: -.5px;
  flex-shrink: 0;
}

.logo-img {
  height: 35px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg) brightness(1.2);
  /* Inverts dark text to white, and keeps cyan box cyan with black text inside */
  opacity: 0.95;
  transition: var(--transition-normal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-title);
  font-size: .875rem;
  font-weight: 500;
  color: var(--neutral-body);
  padding: .45rem .9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-cta {
  margin-left: .75rem;
  white-space: nowrap;
}

#nav-cta {
  background-color: #128C7E;
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .875rem;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

#nav-cta:hover {
  background-color: #0e6c61;
  color: #ffffff;
  box-shadow: none;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-title);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(229, 244, 247, 0.6) 0%, rgba(255, 255, 255, 1) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge i {
  color: var(--accent);
  font-size: 0.9rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 36px;
  color: var(--neutral-body);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--neutral-border);
  padding-top: 24px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  background-color: #cbd5e1;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-title);
}

.hero-trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-trust-text strong {
  color: var(--neutral-title);
}

/* Hero Visual Art (Mockup/Illustration style) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-box {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(225, 235, 255, 0.4) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.visual-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.visual-badge-1 {
  top: 15%;
  left: -8%;
}

.visual-badge-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 2s;
}

.visual-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.visual-badge-2 .visual-badge-icon {
  background-color: var(--accent-light);
  color: var(--accent);
}

.visual-badge-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.visual-badge-info p {
  font-size: 0.75rem;
  color: var(--neutral-body);
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.visual-main-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, var(--white) 30%, rgba(255, 255, 255, 0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  position: absolute;
  border: 2px dashed rgba(1, 147, 172, 0.2);
  border-radius: 50%;
}

.visual-circle-1 {
  width: 250px;
  height: 250px;
  animation: rotateClockwise 25s linear infinite;
}

.visual-circle-2 {
  width: 170px;
  height: 170px;
  animation: rotateCounterClockwise 15s linear infinite;
}

.visual-center-logo {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  border: 4px solid var(--primary-light);
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCounterClockwise {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* --------------------------------------------------------------------------
   6. Stats Grid Section
   -------------------------------------------------------------------------- */
.stats {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -15px;
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, #02b6d5, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   7. About (Sejarah) Timeline
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  padding-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--neutral-border);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 24px;
  width: 50%;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  margin-left: 50%;
  justify-content: flex-start;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  justify-content: flex-end;
}

.timeline-dot {
  position: absolute;
  top: 25px;
  right: -8px;
  width: 16px;
  height: 16px;
  background-color: var(--white);
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
  right: auto;
}

.timeline-card {
  width: 90%;
  max-width: 480px;
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: 30px;
}

.timeline-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
  background-color: var(--primary);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.timeline-card p {
  font-size: 0.925rem;
  color: var(--neutral-body);
}

/* --------------------------------------------------------------------------
   8. Visi & Misi Section
   -------------------------------------------------------------------------- */
.visimisi-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: stretch;
}

.visi-card {
  background: linear-gradient(135deg, var(--neutral-title), var(--neutral-dark));
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visi-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 10rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.visi-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.visi-card p {
  font-size: 1.125rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  font-weight: 300;
  color: #cbd5e1;
}

.misi-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.misi-item {
  display: flex;
  gap: 16px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  transition: var(--transition-normal);
}

.misi-item:hover {
  border-color: rgba(28, 97, 231, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.misi-item:nth-child(5) {
  grid-column: span 2;
}

.misi-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.misi-content h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.misi-content p {
  font-size: 0.95rem;
  color: var(--neutral-body);
}

/* --------------------------------------------------------------------------
   9. Layanan Section
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  text-align: left;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--neutral-body);
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   10. Kategori / Niche Grid
   -------------------------------------------------------------------------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cat-item {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  transition: var(--transition-normal);
  cursor: pointer;
}

.cat-icon {
  font-size: 2.25rem;
  color: var(--neutral-title);
  margin-bottom: 16px;
  transition: var(--transition-fast);
}

.cat-item h4 {
  font-size: 1rem;
  font-weight: 600;
}

.cat-item p {
  font-size: 0.8rem;
  color: var(--neutral-body);
  margin-top: 4px;
}

.cat-item:hover {
  background-color: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-5px);
}

.cat-item:hover .cat-icon {
  color: var(--accent);
}

.categories-more {
  text-align: center;
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   11. Meet the Team Section
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 147, 172, 0.2);
}

.team-img-wrapper {
  width: 100%;
  aspect-ratio: 1.25;
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.06);
}

/* Team Avatar Illustrations using elegant SVG / gradient backgrounds */
.team-avatar-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(225, 235, 255, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
  font-weight: 800;
}

.team-avatar-bg-2 {
  background: linear-gradient(135deg, rgba(28, 97, 231, 0.1) 0%, rgba(1, 147, 172, 0.1) 100%);
  color: var(--accent);
}

.team-avatar-bg-3 {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0284c7;
}

.team-info {
  padding: 24px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-desc {
  font-size: 0.875rem;
  color: var(--neutral-body);
  margin-bottom: 8px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--neutral-border);
}

.team-social-icon {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: var(--transition-fast);
}

.team-social-icon:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   11.5 Gallery Section
   -------------------------------------------------------------------------- */
.gallery-section {
  padding: 80px 0;
}

.gallery-group {
  margin-bottom: 60px;
}

.gallery-group:last-child {
  margin-bottom: 0;
}

.gallery-title {
  font-size: 1.75rem;
  margin-bottom: 30px;
  color: var(--neutral-title);
  position: relative;
  display: inline-block;
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-border);
  aspect-ratio: 1;
}

.gallery-item.wide {
  aspect-ratio: 1.77;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   11.6 Keluarga Kami Gallery (Static Grid inside Meet the Team Section)
   -------------------------------------------------------------------------- */
.team-gallery {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--neutral-border);
  text-align: center;
}

.team-gallery-title {
  font-size: 1.5rem;
  color: var(--neutral-dark);
  margin-bottom: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neutral-dark) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.team-gallery-item {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
  cursor: pointer;
  position: relative;
  transition: var(--transition-normal);
}

.team-gallery-item::after {
  content: '\f002';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: rgba(1, 147, 172, 0.85);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 2;
  pointer-events: none;
}

.team-gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.team-gallery-item:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.team-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.9);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .team-gallery-item {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
  }
}

/* Lightbox Modal for Photo Zoom */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(15, 23, 42, 0.95);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid var(--white);
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  color: var(--primary);
  background-color: var(--white);
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   11.8 Partners (Mitra Kami) Section
   -------------------------------------------------------------------------- */
.partners-section {
  padding: 80px 0;
  background-color: var(--white);
}

.partners-scroll-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px 4px 20px 4px;
}

.partner-logo-card {
  flex: 1 1 200px;
  max-width: 240px;
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  aspect-ratio: 2.5;
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-normal);
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(1, 147, 172, 0.3);
}

.partner-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   11.9 Shipping Partners & Payment Channels Section
   -------------------------------------------------------------------------- */
.shipping-payment-section {
  padding: 60px 0;
  border-top: 1px dashed var(--neutral-border);
}

.shipping-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.subsection-title {
  font-size: 1.25rem;
  color: var(--neutral-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.subsection-desc {
  font-size: 0.9rem;
  color: var(--neutral-muted);
  margin-bottom: 20px;
}

.logo-grid-small {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.logo-badge-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  aspect-ratio: 2.2;
}

.logo-badge-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition-normal);
}

.logo-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(1, 147, 172, 0.3);
}

.logo-badge-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 992px) {
  .shipping-payment-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .logo-grid-small {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .logo-badge-card {
    padding: 8px;
  }
}

/* --------------------------------------------------------------------------
   12. Partners / Channels Section
   -------------------------------------------------------------------------- */
.partners {
  padding: 60px 0;
  border-top: 1px solid var(--neutral-border);
  border-bottom: 1px solid var(--neutral-border);
}

.partners-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.partner-row {
  text-align: center;
}

.partner-row h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neutral-body);
  margin-bottom: 24px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  filter: grayscale(100%);
  opacity: 0.6;
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--neutral-title);
}

.partner-logo.shopee:hover {
  color: #fe5722;
}

.partner-logo.tokopedia:hover {
  color: #42b549;
}

.partner-logo.lazada:hover {
  color: #101c5c;
}

.partner-logo.tiktok:hover {
  color: #000000;
}

.partner-logo.blibli:hover {
  color: #0095da;
}

.partner-logo.webwoo:hover {
  color: #96588a;
}

/* --------------------------------------------------------------------------
   13. Footer & CTA
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-white {
  background-color: var(--white);
  color: var(--accent);
}

.cta-btn-white:hover {
  background-color: var(--neutral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-btn-trans {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.cta-btn-trans:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Footer layout */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 45px 0 25px 0;
  font-size: 0.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo-desc p {
  margin-top: 10px;
  line-height: 1.5;
}

.footer-column h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-info-item {
  display: flex;
  gap: 12px;
}

.footer-info-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-info-item p {
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   12b. Marketplace Stores Section
   -------------------------------------------------------------------------- */
.marketplace-stores {
  background-color: var(--white);
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.store-card {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.store-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background-color: var(--neutral-light);
}

.store-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.store-card:hover .store-img-wrapper img {
  transform: scale(1.05);
}

.store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
  z-index: 2;
}

.store-card:hover .store-overlay {
  opacity: 1;
}

.store-info {
  padding: 16px;
  text-align: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.store-badge.tokopedia {
  background-color: rgba(3, 172, 14, 0.1);
  color: #03ac0e;
}

.store-badge.shopee {
  background-color: rgba(238, 77, 45, 0.1);
  color: #ee4d2d;
}

.store-badge.lazada {
  background-color: rgba(15, 20, 122, 0.1);
  color: #0f147a;
}

.store-badge.tiktok {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--neutral-dark);
}

.store-badge.blibli {
  background-color: rgba(0, 149, 218, 0.1);
  color: #0095da;
}

.store-badge.webwoo {
  background-color: rgba(150, 88, 138, 0.1);
  color: #96588a;
}

.store-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-title);
}

.store-info h3 a {
  color: inherit;
  transition: var(--transition-fast);
}

.store-info h3 a:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   12c. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.testimonial-card {
  grid-column: span 2;
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(28, 97, 231, 0.2);
}

.testimonial-stars {
  color: #ffb800;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral-body);
  margin-bottom: 16px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border-top: 1px solid var(--neutral-border);
  padding-top: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.user-info p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.btn-read-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-read-review:hover {
  color: var(--accent);
}

/* 4th and 5th cards span 3 columns each to center beautifully */
.testimonial-card:nth-child(4),
.testimonial-card:nth-child(5) {
  grid-column: span 3;
}

/* --------------------------------------------------------------------------
   13. Lokasi Section
   -------------------------------------------------------------------------- */
.lokasi-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

.lokasi-map,
.lokasi-slider {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background-color: var(--white);
  height: 450px;
}

.lokasi-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lokasi-slider {
  position: relative;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  z-index: 3;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  box-sizing: border-box;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--neutral-title);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  pointer-events: auto;
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   14. Responsive Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .hero-grid {
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .stat-item:nth-child(2n)::after {
    display: none;
  }

  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .visimisi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 30px;
  }

  .lokasi-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lokasi-map,
  .lokasi-slider {
    height: 400px;
  }

  .stores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-card {
    grid-column: span 2 !important;
  }

  .testimonial-card:nth-child(5) {
    grid-column: span 4 !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .misi-list {
    grid-template-columns: 1fr;
  }

  .misi-item:nth-child(5) {
    grid-column: span 1;
  }

  .stores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-column: span 1 !important;
  }

  /* Navbar Mobile */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: var(--white);
    padding: 1.5rem;
    gap: .25rem;
    z-index: 999;
    border-top: 1px solid var(--neutral-border);
    overflow-y: auto;
  }

  .nav-links.open .nav-link {
    font-size: 1rem;
    padding: .7rem .9rem;
    border-radius: var(--radius-sm);
  }

  /* Timeline Mobile */
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    justify-content: flex-start !important;
    margin-bottom: 20px;
  }

  .timeline-dot {
    left: 12px !important;
    right: auto !important;
  }

  .timeline-card {
    width: calc(100% - 40px);
    margin-left: 40px !important;
    margin-right: 0 !important;
  }

  /* Grid conversions to single columns */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-badge,
  .hero-buttons,
  .hero-trust {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .stores-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none !important;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}