/* ========================================
   JK SERVICE – STYLE.CSS
   Premium Dark Industrial Theme
   Color Palette: Dark Charcoal + Orange Amber
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --orange: #F97316;
  --orange-light: #fb923c;
  --orange-dark: #ea6c0a;
  --orange-glow: rgba(249, 115, 22, 0.25);

  --dark-900: #0a0a0b;
  --dark-800: #111113;
  --dark-700: #18181b;
  --dark-600: #27272a;
  --dark-500: #3f3f46;
  --dark-400: #52525b;

  --text-white: #ffffff;
  --text-light: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  --border-subtle: rgba(255,255,255,0.08);
  --border-orange: rgba(249, 115, 22, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-orange: 0 8px 40px rgba(249, 115, 22, 0.3);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-900);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-light .section-title,
.section-header-light .section-subtitle {
  color: var(--text-white);
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.tag-light {
  background: rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.5);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.text-light-muted {
  color: rgba(255,255,255,0.65) !important;
}

.text-accent {
  color: var(--orange);
  position: relative;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
}

.btn-primary.btn-large {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  transform: translateY(-2px);
}

.btn-outline-light.btn-large {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.logo-accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-white);
  background: rgba(255,255,255,0.06);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(249,115,22,0.3);
  margin-left: 8px;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,11,0.85) 0%,
    rgba(10,10,11,0.6) 50%,
    rgba(10,10,11,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 760px;
  padding-left: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: #fb923c;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

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

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 1;
  animation: fadeIn 1.5s ease 1s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(249,115,22,0.8), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ===== TICKER ===== */
.ticker-bar {
  background: var(--orange);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 64px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== LAYANAN SECTION ===== */
.layanan-section {
  background: var(--dark-800);
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.layanan-card {
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.layanan-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.layanan-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,24,27,0.9) 0%, transparent 60%);
}

.card-badge-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(249,115,22,0.5);
  z-index: 2;
}

.card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}

.card-features li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-link {
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}

.card-link:hover {
  gap: 10px;
  color: var(--orange-light);
}

.card-featured {
  grid-row: span 1;
}

/* ===== ARMADA SECTION ===== */
.armada-section {
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
}

.armada-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.armada-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15) saturate(0.3);
}

.armada-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,11,0.95),
    rgba(10,10,11,0.85),
    rgba(10,10,11,0.98)
  );
}

.armada-section .container {
  position: relative;
  z-index: 1;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--border-orange);
  color: var(--orange);
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  box-shadow: 0 4px 14px rgba(249,115,22,0.4);
}

.armada-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.unit-card {
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.unit-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(249,115,22,0.2);
}

.unit-card.hidden {
  display: none;
}

.unit-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.badge-used { background: #52525b; }
.badge-rental { background: #0ea5e9; }

.unit-img-wrap {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.unit-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,24,27,1) 0%, transparent 50%);
}

.unit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unit-card:hover .unit-img-wrap img {
  transform: scale(1.08);
}

.unit-info {
  padding: 20px 22px 24px;
}

.unit-brand {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.unit-name {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.unit-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.unit-specs span {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--dark-600);
  padding: 4px 10px;
  border-radius: 50px;
}

.unit-price {
  margin-bottom: 16px;
}

.price-label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 2px;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.btn-unit {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 11px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
}

.btn-unit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
}

.armada-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.armada-cta p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ===== KEUNGGULAN ===== */
.keunggulan-section {
  background: var(--dark-800);
}

.keunggulan-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.keunggulan-img-side {
  position: relative;
}

.keunggulan-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.keunggulan-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.keunggulan-img-main:hover img {
  transform: scale(1.04);
}

.keunggulan-img-badge {
  position: absolute;
  bottom: -28px;
  right: -24px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(249,115,22,0.5);
}

.kbadge-number {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.kbadge-text {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-top: 4px;
}

.keunggulan-img-float {
  position: absolute;
  top: 24px;
  right: -36px;
  background: var(--dark-700);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.keunggulan-img-float span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: white;
  white-space: nowrap;
}

.keunggulan-content-side .section-tag {
  margin-bottom: 12px;
}

.keunggulan-content-side .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.keunggulan-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.keunggulan-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.keunggulan-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.keunggulan-item:hover {
  border-color: var(--border-orange);
  background: rgba(249,115,22,0.04);
}

.k-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.k-icon.orange {
  background: rgba(249,115,22,0.15);
  color: var(--orange);
}

.keunggulan-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.keunggulan-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROSES SECTION ===== */
.proses-section {
  background: var(--dark-900);
}

.proses-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.proses-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
}

.proses-item:hover {
  border-color: var(--border-orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}

.proses-number {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.proses-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: var(--transition);
}

.proses-item:hover .proses-icon {
  background: rgba(249,115,22,0.2);
  border-color: rgba(249,115,22,0.5);
}

.proses-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.proses-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.proses-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.proses-connector::after {
  content: '→';
  font-size: 24px;
  color: var(--orange);
  opacity: 0.5;
  padding: 0 12px;
}

/* ===== TESTIMONI ===== */
.testimoni-section {
  background: var(--dark-800);
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testi-card.testi-featured {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.02));
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-12px);
}

.testi-stars {
  font-size: 18px;
  color: #fbbf24;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
}

.testi-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
}

.testi-role {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.5);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249,115,22,0.4) 0%,
    rgba(10,10,11,0.85) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
}

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

/* ===== KONTAK SECTION ===== */
.kontak-section {
  background: var(--dark-800);
}

.kontak-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.kontak-info .section-tag {
  margin-bottom: 12px;
}

.kontak-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.kontak-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.kontak-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontak-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kontak-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.kontak-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.kontak-value {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.5;
  transition: var(--transition);
}

a.kontak-value:hover {
  color: var(--orange);
}

/* ===== FORM ===== */
.kontak-form-wrap {
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.kontak-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.form-group select option {
  background: var(--dark-700);
  color: white;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-900);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links-group ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== WA FLOAT BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 3s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(-8px);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark-700);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(0);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid var(--border-subtle);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .layanan-grid { grid-template-columns: 1fr 1fr; }
  .armada-grid { grid-template-columns: repeat(2, 1fr); }
  .keunggulan-wrap { grid-template-columns: 1fr; gap: 60px; }
  .keunggulan-img-side { max-width: 560px; margin: 0 auto; }
  .keunggulan-img-float { right: 0; }
  .proses-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .proses-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

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

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,11,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-subtle);
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; font-size: 16px; }
  .hamburger { display: flex; }

  .hero-content {
    padding: 140px 24px 60px;
  }

  .hero-stats {
    gap: 0;
    padding: 16px 12px;
  }

  .stat-item { padding: 0 12px; }
  .stat-number { font-size: 22px; }

  .layanan-grid { grid-template-columns: 1fr; }
  .armada-grid { grid-template-columns: 1fr; }
  .testimoni-grid { grid-template-columns: 1fr; }
  .testi-card.testi-featured { transform: none; }
  .kontak-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .proses-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .keunggulan-img-float {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 16px;
    display: inline-flex;
  }

  .keunggulan-img-badge {
    bottom: 16px;
    right: 16px;
    padding: 16px 20px;
  }
  .kbadge-number { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 10px 16px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
