/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  --primary-dark: #0a1620;
  --primary-navy: #152531;
  --accent-gold: #f0b90b;
  --accent-cyan: #00d4ff;
  --steel-100: #e8edf0;
  --steel-300: #8a9ca8;
  --steel-500: #5c7a89;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   RESET & BASE - FIX FULL WIDTH
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f6f8;
  color: #1a1a2e;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Fix untuk semua container */
.container,
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
}

/* Fix untuk row */
.row {
  margin-left: 0;
  margin-right: 0;
}

/* Fix untuk col */
[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.accent-text {
  color: var(--accent-gold);
}

.accent-cyan {
  color: var(--accent-cyan);
}

/* ========================================
   SCROLLBAR CUSTOM
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4a80a;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar-custom {
  background: rgba(10, 22, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  transition: var(--transition-smooth);
  width: 100%;
  margin: 0;
}

.navbar-custom .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar-custom.scrolled {
  padding: 6px 0;
  background: rgba(10, 22, 32, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-custom .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-custom .navbar-brand img {
  height: 36px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar-custom.scrolled .navbar-brand img {
  height: 30px;
}

.navbar-custom .brand-text {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}

.navbar-custom .brand-text span {
  color: var(--accent-gold);
}

.navbar-custom .nav-link {
  color: rgba(255,255,255,0.7) !important;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  padding: 8px 16px !important;
  position: relative;
}

.navbar-custom .nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-custom .nav-link:hover::before,
.navbar-custom .nav-link.active::before {
  width: 60%;
}

.navbar-custom .nav-link:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.navbar-custom .nav-link.active {
  color: var(--accent-gold) !important;
}

/* ========================================
   DROPDOWN NAVBAR
   ======================================== */
.navbar-custom .dropdown-menu {
  background: rgba(10, 22, 32, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.navbar-custom .dropdown-menu .dropdown-item {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 10px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.navbar-custom .dropdown-menu .dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.navbar-custom .dropdown-menu .dropdown-item:hover::before {
  transform: scaleY(1);
}

.navbar-custom .dropdown-menu .dropdown-item:hover {
  background: rgba(240, 185, 11, 0.08);
  color: #fff;
  transform: translateX(6px);
}

.navbar-custom .dropdown-menu .dropdown-item i {
  color: var(--accent-gold);
  width: 22px;
  margin-right: 10px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.navbar-custom .dropdown-menu .dropdown-item:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.navbar-custom .dropdown-menu .dropdown-divider {
  border-color: rgba(255,255,255,0.06);
  margin: 6px 0;
}

.navbar-custom .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.navbar-custom .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-gold {
  background: var(--accent-gold);
  color: #0a1620 !important;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  transition: var(--transition-bounce);
  border: none;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-gold:hover::after {
  width: 300px;
  height: 300px;
}

.btn-gold:hover {
  background: #d4a80a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(240, 185, 11, 0.4);
}

.btn-outline-gold {
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  background: transparent;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-bounce);
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-outline-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-outline-gold:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline-gold:hover {
  color: #0a1620 !important;
  transform: translateY(-3px) scale(1.02);
}

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes pulseGlow {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(-20px, 20px); }
}

@keyframes pulseGlow2 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.15) translate(30px, -30px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-3deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* ========================================
   SLIDESHOW HERO
   ======================================== */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  object-fit: cover;
  transform: scale(1.1);
}

.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slideshow .slide-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-slideshow .slide-indicators .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
}

.hero-slideshow .slide-indicators .dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.hero-slideshow .slide-indicators .dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
  border-color: rgba(255,255,255,0.3);
}

.hero-slideshow .slide-indicators .dot.active::after {
  border-color: var(--accent-gold);
  animation: pulse 2s ease-in-out infinite;
}

.hero-slideshow .slide-indicators .dot:hover {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.hero-slideshow .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,32,0.6) 100%);
  pointer-events: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background: linear-gradient(135deg, #0a1620 0%, #1a2a3a 50%, #152531 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,185,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow2 10s ease-in-out infinite;
}

.hero-section .hero-badge {
  display: inline-block;
  background: rgba(240, 185, 11, 0.15);
  border: 1px solid rgba(240, 185, 11, 0.2);
  color: var(--accent-gold);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
  backdrop-filter: blur(4px);
}

.hero-section h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-section h1 .highlight {
  background: linear-gradient(135deg, var(--accent-gold), #ffd700, var(--accent-gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

.hero-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-section .d-flex {
  animation: fadeInUp 1s ease 0.6s both;
}

/* ========================================
   STATS STRIP
   ======================================== */
.stats-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  animation: fadeInUp 1s ease 0.8s both;
  width: 100%;
}

.stats-strip .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.stat-item {
  text-align: center;
  padding: 8px 0;
  cursor: default;
}

.stat-item .number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition-smooth);
  display: inline-block;
}

.stat-item:hover .number {
  color: var(--accent-gold);
  transform: scale(1.1) translateY(-3px);
}

.stat-item .number span {
  font-size: 1.2rem;
  color: var(--steel-300);
}

.stat-item .label {
  color: var(--steel-300);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
  transition: var(--transition-smooth);
}

.stat-item:hover .label {
  color: #fff;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header .eyebrow {
  display: inline-block;
  background: rgba(240, 185, 11, 0.12);
  color: var(--accent-gold);
  padding: 4px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.section-header .eyebrow:hover {
  background: rgba(240, 185, 11, 0.2);
  transform: scale(1.05);
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
}

.section-header p {
  color: var(--steel-500);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 16px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  width: 100%;
}

.about-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240,185,11,0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240,185,11,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  color: #4a5a6a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badge-list .badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f4f8;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a2a3a;
  transition: var(--transition-bounce);
  cursor: default;
}

.badge-list .badge-item:hover {
  background: var(--primary-navy);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-sm);
}

.badge-list .badge-item i {
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.badge-list .badge-item:hover i {
  transform: rotate(10deg) scale(1.2);
}

/* ========================================
   VISI MISI SECTION
   ======================================== */
.visi-misi-section {
  background: var(--primary-navy);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.visi-misi-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.visi-misi-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,185,11,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.visi-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.visi-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(240,185,11,0.05) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.visi-box:hover::before {
  opacity: 1;
}

.visi-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  border-color: var(--accent-gold);
}

.visi-box .eyebrow {
  color: var(--accent-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.visi-box p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 8px;
}

.misi-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-smooth);
  cursor: default;
}

.misi-item:hover {
  padding-left: 15px;
  border-color: var(--accent-gold);
}

.misi-item:last-child {
  border-bottom: none;
}

.misi-item .number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.5;
  min-width: 50px;
  transition: var(--transition-smooth);
}

.misi-item:hover .number {
  opacity: 1;
  transform: scale(1.1);
}

.misi-item p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
  padding: 80px 0;
  background: #f8fafc;
  width: 100%;
}

.team-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

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

.team-grid .team-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.team-grid .team-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-grid .team-item:hover img {
  transform: scale(1.1);
}

.team-grid .team-item .team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.team-grid .team-item:hover .team-overlay {
  transform: translateY(0);
}

.team-grid .team-item .team-overlay .name {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
}

.team-grid .team-item .team-overlay .role {
  color: var(--accent-gold);
  font-size: 0.7rem;
  opacity: 0.8;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
  padding: 80px 0;
  background: #fff;
  width: 100%;
}

.services-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.service-card {
  background: #f8fafc;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-bounce);
  height: 100%;
  border: 1px solid transparent;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: rgba(240, 185, 11, 0.2);
}

.service-card .service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card .service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.1) 100%);
}

.service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-card .service-body {
  padding: 24px 28px 28px;
  position: relative;
}

.service-card .service-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--steel-300);
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 8px 0 12px;
  transition: var(--transition-smooth);
}

.service-card:hover h3 {
  color: var(--accent-gold);
}

.service-card p {
  color: #4a5a6a;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card .btn-link-gold {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.service-card .btn-link-gold:hover {
  gap: 14px;
  color: #d4a80a;
}

/* ========================================
   EQUIPMENT SECTION
   ======================================== */
.equipment-section {
  padding: 80px 0;
  background: #f8fafc;
  width: 100%;
}

.equipment-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========================================
   EQUIPMENT GALLERY
   ======================================== */
.equipment-gallery {
  margin-top: 10px;
}

.equipment-gallery .row {
  --bs-gutter-y: 1rem;
  --bs-gutter-x: 1rem;
}

.equipment-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-bounce);
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  aspect-ratio: 4/3;
}

.equipment-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.equipment-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.equipment-image-wrapper:hover img {
  transform: scale(1.08);
}

.equipment-image-wrapper .image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.equipment-image-wrapper:hover .image-label {
  opacity: 1;
  transform: translateY(0);
}

/* Overlay untuk efek gelap */
.equipment-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.equipment-image-wrapper:hover::after {
  opacity: 1;
}

/* Icon zoom indicator */
.equipment-image-wrapper .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: rgba(240, 185, 11, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1620;
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  opacity: 0;
}

.equipment-image-wrapper:hover .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ========================================
   RESPONSIVE EQUIPMENT GALLERY
   ======================================== */
@media (max-width: 991.98px) {
  .equipment-image-wrapper .image-label {
    font-size: 0.85rem;
    padding: 16px 20px 14px;
  }
  .equipment-image-wrapper .zoom-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .equipment-section {
    padding: 50px 0;
  }
  
  .equipment-gallery .row {
    --bs-gutter-y: 0.75rem;
    --bs-gutter-x: 0.75rem;
  }
  
  .equipment-image-wrapper {
    aspect-ratio: 4/3;
  }
  
  .equipment-image-wrapper .image-label {
    font-size: 0.75rem;
    padding: 12px 16px 10px;
  }
  
  .equipment-image-wrapper .zoom-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .equipment-gallery .row {
    --bs-gutter-y: 0.5rem;
    --bs-gutter-x: 0.5rem;
  }
  
  .equipment-image-wrapper {
    aspect-ratio: 4/3;
  }
  
  .equipment-image-wrapper .image-label {
    font-size: 0.7rem;
    padding: 10px 14px 8px;
  }
  
  .equipment-image-wrapper .zoom-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
/* ========================================
   INDUSTRY SECTION
   ======================================== */
.industry-section {
  padding: 80px 0;
  background: #fff;
  width: 100%;
}

.industry-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.industry-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f4f8;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  color: #1a2a3a;
  transition: var(--transition-bounce);
  border: 1px solid transparent;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.industry-chip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(240,185,11,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.industry-chip:hover::after {
  width: 300px;
  height: 300px;
}

.industry-chip:hover {
  background: var(--primary-navy);
  color: #fff;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(21,37,49,0.15);
  border-color: var(--accent-gold);
}

.industry-chip i {
  font-size: 1.2rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

.industry-chip:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.clients-section {
  padding: 40px 0;
  background: #f8fafc;
  width: 100%;
}

.clients-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 50px;
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  transition: var(--transition-smooth);
}

.clients-logos:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-gold);
}

.clients-logos img {
  height: 32px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.clients-logos img:hover {
  opacity: 1;
  transform: scale(1.15) rotate(-2deg);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: var(--primary-navy);
  padding: 80px 0;
  color: #fff;
  width: 100%;
}

.contact-section .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-section .section-header .eyebrow {
  background: rgba(240, 185, 11, 0.15);
}

.contact-section .section-header p {
  color: rgba(255,255,255,0.6);
}

/* ========================================
   CONTACT CARDS
   ======================================== */
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent-gold);
  transform: translateX(4px);
}

.contact-card b {
  display: block;
  color: var(--steel-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-card span {
  color: #fff;
  font-size: 0.95rem;
}

.contact-card .wa-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap 0.3s ease;
}

.contact-card .wa-link:hover {
  gap: 10px;
  text-decoration: underline;
}

/* ========================================
   CONTACT MAP WRAPPER (untuk iframe)
   ======================================== */
.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  height: 100%;
  min-height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.contact-map-wrapper:hover {
  border-color: var(--accent-gold);
}

/* ========================================
   IFRAME MAPS
   ======================================== */
.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
}

/* ========================================
   MAP PIN / INFO DI BAWAH MAPS
   ======================================== */
.contact-map-wrapper .map-pin {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 0 0 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-smooth);
  margin-top: auto;
}

.contact-map-wrapper .map-pin:hover {
  border-color: var(--accent-gold);
}

.contact-map-wrapper .map-pin .address {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-map-wrapper .map-pin .address i {
  color: var(--accent-gold);
}

.contact-map-wrapper .map-pin .map-link {
  color: var(--accent-gold);
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s ease;
}

.contact-map-wrapper .map-pin .map-link:hover {
  gap: 8px;
  text-decoration: underline;
}

/* ========================================
   PLACEHOLDER (jika iframe gagal load)
   ======================================== */
.contact-map-wrapper .map-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
  padding: 40px 20px;
}

.contact-map-wrapper .map-placeholder i {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   ANIMASI PULSE
   ======================================== */
@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
  .contact-map-wrapper {
    min-height: 250px;
  }
  
  .contact-map-wrapper iframe {
    height: 280px;
  }
}

@media (max-width: 767.98px) {
  .contact-section {
    padding: 50px 0;
  }
  
  .contact-map-wrapper {
    min-height: 200px;
  }
  
  .contact-map-wrapper iframe {
    height: 220px;
  }
  
  .contact-map-wrapper .map-pin {
    padding: 12px 16px;
  }
  
  .contact-map-wrapper .map-pin .address {
    font-size: 0.75rem;
  }
  
  .contact-card {
    padding: 16px 18px;
  }
}

@media (max-width: 575.98px) {
  .contact-map-wrapper iframe {
    height: 180px;
  }
  
  .contact-map-wrapper .map-pin .address {
    font-size: 0.7rem;
  }
}/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #060e14;
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.6);
  width: 100%;
}

.footer .container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.footer .brand-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer .brand-footer img {
  height: 30px;
  width: auto;
}

.footer .brand-footer span {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer .brand-footer span em {
  color: var(--accent-gold);
  font-style: normal;
}

.footer h5 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ========================================
   FAB WHATSAPP
   ======================================== */
.fab-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: scaleIn 0.5s ease 1.5s both;
}

.fab-wa a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition-bounce);
}

.fab-wa a:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  background: var(--accent-gold);
  color: #0a1620;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 25px rgba(240, 185, 11, 0.4);
}

/* ========================================
   LIGHTBOX / GALLERY POPUP
   ======================================== */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-overlay .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: lightboxIn 0.4s ease;
  cursor: default;
}

.lightbox-overlay .lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  object-fit: contain;
  border: 2px solid rgba(255,255,255,0.1);
}

.lightbox-overlay .lightbox-close {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-overlay .lightbox-close:hover {
  background: rgba(240, 185, 11, 0.2);
  border-color: var(--accent-gold);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-overlay .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox-overlay .lightbox-nav:hover {
  background: rgba(240, 185, 11, 0.2);
  border-color: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-overlay .lightbox-nav.prev {
  left: -70px;
}

.lightbox-overlay .lightbox-nav.next {
  right: -70px;
}

.lightbox-overlay .lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  background: rgba(0,0,0,0.5);
  padding: 4px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-overlay .lightbox-caption {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 8px 24px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  max-width: 80vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Gallery Image Style */
.gallery-image {
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
  display: block;
}

.gallery-image::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 2rem;
  background: rgba(0,0,0,0.6);
  padding: 12px 16px;
  border-radius: 50%;
  transition: var(--transition-bounce);
  pointer-events: none;
}

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

.gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-slideshow {
    height: 280px;
  }
  .section-header h2 {
    font-size: 2.2rem;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .lightbox-overlay .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox-overlay .lightbox-nav.next {
    right: 10px;
  }
  .lightbox-overlay .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  .lightbox-overlay .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 50px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  .hero-slideshow {
    height: 220px;
  }
  .stat-item .number {
    font-size: 1.5rem;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .contact-map-wrapper {
    min-height: 200px;
  }
  .clients-logos {
    gap: 20px 30px;
  }
  .clients-logos img {
    height: 24px;
  }
  
  .lightbox-overlay .lightbox-content img {
    max-height: 70vh;
  }
  .lightbox-overlay .lightbox-counter {
    bottom: -35px;
    font-size: 0.8rem;
  }
  .lightbox-overlay .lightbox-caption {
    bottom: -65px;
    font-size: 0.8rem;
    padding: 6px 16px;
    white-space: normal;
    max-width: 90vw;
  }
  .gallery-image::after {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-section h1 {
    font-size: 1.6rem;
  }
  .btn-gold, .btn-outline-gold {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
  .hero-slideshow {
    height: 180px;
  }
  .lightbox-overlay .lightbox-nav {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}