*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0A0A0F;
  --dark: #10101A;
  --card: #14141F;
  --blue: #1A6EFF;
  --blue-light: #4D8FFF;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --white: #F0F4FF;
  --slate: #8A95B0;
  --slate-dim: #4A5068;
  --border: rgba(255,255,255,0.07);
}
 
html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), #0040CC);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(26,110,255,0.35);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 3px;
  color: var(--white); line-height: 1;
}
.logo-sub {
  font-size: 0.6rem; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--slate); text-decoration: none;
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), #A07830);
  color: var(--black) !important;
  padding: 0.6rem 1.4rem; border-radius: 6px;
  font-weight: 700 !important; font-size: 0.78rem !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); color: var(--black) !important; }

/* HERO SLIDER BACKGROUND */
.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 50px 5vw;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.9);
  z-index: 1; 
}

/* Tombol Slider */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

/* Indikator Slider (Dots) */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--blue);
  width: 25px;
  border-radius: 5px;
}

.slider-dots .dot:hover {
  background: var(--gold);
  transform: scale(1.2);
}

.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding-top: 6rem;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-weight: 600;
  margin-bottom: 2rem;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

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

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 9vw, 4rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
}

.hero-title .line-blue { color: var(--blue); }
.hero-title .line-gold { color: var(--gold); }
.hero-title .line-white { color: var(--white); }

.hero-desc {
  font-size: 0.90rem; color: var(--slate);
  max-width: 460px; line-height: 1.75;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.hero-desc strong { color: var(--white); font-weight: 500; }

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--blue) 0%, #0D4FCC 100%);
  color: #fff; padding: 0.9rem 2rem; border-radius: 8px;
  text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1px;
  text-transform: uppercase; transition: all 0.3s;
  box-shadow: 0 4px 30px rgba(26,110,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(26,110,255,0.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--white); text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 2rem; border-radius: 8px;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

/* WAVE VISUAL */
.hero-visual {
  position: absolute; right: 0; top: 90px; bottom: 0; width: 48%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

.wave-container {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

canvas#waveCanvas {
  width: 100%; height: 100%;
  opacity: 0.85;
}

.speaker-circle {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1e2040, #0A0A0F);
  border: 1px solid rgba(26,110,255,0.2);
  box-shadow:
    0 0 0 20px rgba(26,110,255,0.03),
    0 0 0 40px rgba(26,110,255,0.02),
    0 0 80px rgba(26,110,255,0.15),
    inset 0 0 60px rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
}

.speaker-inner {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #252545, #0e0e20);
  border: 1px solid rgba(26,110,255,0.15);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.speaker-core {
  width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #ffffff);
  box-shadow: 0 0 30px rgba(26,110,255,0.5), inset 0 0 20px rgba(0,0,30,0.7);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
 
.speaker-logo {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

/* STATS */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.50rem 1vw;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0.5rem 1rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; line-height: 1;
  color: var(--white);
}
.stat-num span { color: var(--blue); }
.stat-num .gold { color: var(--gold); }

.stat-label {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--slate); font-family: 'Montserrat', sans-serif;
  font-weight: 500; margin-top: 0.3rem;
}

/* SECTIONS */
section { padding: 3rem 5vw; }

.section-eyebrow {
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-family: 'Montserrat', sans-serif;
  font-weight: 700; margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1; letter-spacing: 1px;
}

.section-sub {
  font-size: 1rem; color: var(--slate);
  max-width: 520px; line-height: 1.75; font-weight: 300;
}

/* SERVICES */
#layanan { background: var(--dark); }

.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 1rem; flex-wrap: wrap; gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--card);
  padding: 2rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
  cursor: default;
}
.service-card:hover { background: #1A1A28; }

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(26,110,255,0.1);
  border: 1px solid rgba(26,110,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; font-size: 1.5rem;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(26,110,255,0.2);
  box-shadow: 0 0 20px rgba(26,110,255,0.25);
}

.service-icon.gold-icon {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.2);
}
.service-card:hover .gold-icon { background: rgba(201,168,76,0.2); box-shadow: 0 0 20px rgba(201,168,76,0.2); }

.service-name {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.5px;
}

.service-desc {
  font-size: 0.90em; color: var(--slate); line-height: 1.7; font-weight: 300;
}

.service-tag {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-light); font-family: 'Montserrat', sans-serif; font-weight: 600;
}

/* EQUIPMENT */
#equipment {
  position: relative; overflow: hidden;
}

#equipment::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,110,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.equipment-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: center; margin-top: 1rem;
}

.equipment-list { display: flex; flex-direction: column; gap: 1rem; }

.equip-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1rem 1.5rem;
  background: var(--card); border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer; transition: all 0.25s;
}
.equip-item:hover, .equip-item.active {
  border-color: rgba(26,110,255,0.3);
  background: rgba(26,110,255,0.06);
}
.equip-item.active { border-color: rgba(26,110,255,0.5); }

/* Equip Number Icon */
.equip-num {
  font-size: 1.5rem;
  color: var(--slate-dim);
  min-width: 40px;
  text-align: center;
  transition: color 0.25s;
}

.equip-num i {
  font-size: 1.5rem;
}

.equip-item.active .equip-num {
  color: var(--blue);
}

.equip-item.active .equip-num i {
  text-shadow: 0 0 10px rgba(26,110,255,0.5);
}

.equip-info h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.9rem; margin-bottom: 0.35rem;
}
.equip-info p { font-size: 0.8rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* Equipment Showcase dengan Background Soft */
.equipment-showcase {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 3rem;
  aspect-ratio: 4/2;
  display: flex; 
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  transition: all 0.3s ease; 
}

/* Atau versi dengan gradien yang lebih smooth */
.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(10, 10, 15, 0.85) 0%, 
    rgba(20, 20, 31, 0.8) 50%,
    rgba(10, 10, 15, 0.85) 100%);
  backdrop-filter: blur(5px);
  z-index: 0;
}

/* Konten tetap terlihat jelas */
.equip-visual {
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(20, 20, 31, 0.5);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 80%;
  margin: 0 auto;
}

/* Teks dan icon menjadi lebih terang */
.equip-visual .equip-badge {
  color: var(--gold-light);
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.equip-visual .equip-title {
  color: var(--white);
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.equip-visual .equip-caption {
  color: var(--slate);
  text-shadow: 0 0 3px rgba(0,0,0,0.3);
}

/* Icon gambar menjadi lebih jelas */
.equip-icon-img {
  filter: drop-shadow(0 0 10px rgba(26,110,255,0.3));
}

.glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26,110,255,0.15), transparent 50%, rgba(201,168,76,0.08));
  pointer-events: none;
  z-index: 0;
}

.equip-icon-big { font-size: 6rem; margin-bottom: 1.5rem; display: block; line-height: 1; }

.equip-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(26,110,255,0.15); border: 1px solid rgba(26,110,255,0.3);
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.75rem; color: var(--blue-light);
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1rem;
}

.equip-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.2rem; margin-bottom: 0.5rem;
}
.equip-caption { font-size: 0.82rem; color: var(--slate); font-weight: 300; }

/* Equipment Showcase Image */
.equip-icon-img {
  width: 220px;
  height: 220px;
  margin-bottom: 1.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* PRICING */
#harga { background: var(--dark); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 1rem;
}

.price-card {
  background: var(--card); border-radius: 16px;
  border: 1px solid var(--border);
  padding: 2.5rem 2rem; position: relative;
  transition: transform 0.3s, border-color 0.3s;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured { border-color: rgba(26,110,255,0.5); }

.price-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,110,255,0.07) 0%, transparent 50%);
  pointer-events: none;
}

.price-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), #8B6820);
  color: var(--black); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 100px;
  font-family: 'Montserrat', sans-serif;
}

.price-tier {
  font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--slate); font-family: 'Montserrat', sans-serif;
  font-weight: 600; margin-bottom: 0.75rem;
}

.price-name {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.4rem; margin-bottom: 0.1rem;
}

.price-desc { font-size: 0.82rem; color: var(--slate); font-weight: 300; margin-bottom: 0.1rem; }

.price-amount {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
 
.price-amount .currency {
  font-size: 0.9rem; color: var(--slate); vertical-align: top;
  margin-top: 6px; display: inline-block;
  font-family: 'Montserrat', sans-serif; font-weight: 500;
}

.price-amount .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--white); letter-spacing: 1px;
}

.price-amount .period {
  font-size: 0.78rem; color: var(--slate-dim);
  font-family: 'Montserrat', sans-serif;
}

.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.1rem; }

.price-features li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.83rem; color: var(--slate); font-weight: 300;
}

.price-features li .check {
  color: var(--blue); font-size: 0.85rem; margin-top: 1px; flex-shrink: 0;
}
.price-features li .check.gold { color: var(--gold); }

.price-cta {
  display: block; text-align: center; margin-top: 2rem;
  padding: 0.85rem; border-radius: 8px; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.25s;
}

.price-cta.outline {
  border: 1px solid rgba(255,255,255,0.15); color: var(--white);
}
.price-cta.outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

.price-cta.solid {
  background: linear-gradient(135deg, var(--blue), #0D4FCC);
  color: #fff; box-shadow: 0 4px 20px rgba(26,110,255,0.3);
}
.price-cta.solid:hover { box-shadow: 0 6px 30px rgba(26,110,255,0.5); }

/* PORTFOLIO / EVENTS with Background Images */
#events {
  position: relative;
  overflow: hidden;
  padding: 3rem 5vw;
}

.events-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 1rem;
  margin-top: 2rem;
}

.event-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: scale(1.02);
}

/* Overlay gelap untuk membuat teks lebih terbaca */
.event-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
  z-index: 0;
}

.event-card.big {
  grid-row: 1 / 3;
}

.event-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 1;
}

.event-type {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.event-type i {
  margin-right: 5px;
}

.event-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--white);
}

.event-card.big .event-name {
  font-size: 1.2rem;
}

.event-meta {
  font-size: 0.7rem;
  color: var(--slate);
  margin-top: 0.4rem;
  font-weight: 300;
}

.event-meta i {
  margin-right: 4px;
  color: var(--gold);
}

/* TESTIMONIALS */
#testimoni { background: var(--dark); }

.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 1rem;
}

.testi-card {
  background: var(--card); border-radius: 14px;
  border: 1px solid var(--border);
  padding: 2rem; transition: border-color 0.3s;
}
.testi-card:hover { border-color: rgba(201,168,76,0.2); }

.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1.25rem; letter-spacing: 2px; }

.testi-text {
  font-size: 0.88rem; color: var(--slate); line-height: 1.8;
  font-weight: 300; font-style: italic; margin-bottom: 1.5rem;
}

.testi-author { display: flex; align-items: center; gap: 0.85rem; }

.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0D2070);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  color: #fff; flex-shrink: 0;
}

.author-info .name {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.85rem;
}
.author-info .role { font-size: 0.75rem; color: var(--slate); font-weight: 300; }

/* CTA SECTION */
.cta-section {
  margin: 20px 90px 20px;
  background: linear-gradient(135deg, #0D1A3A 0%, #0A0A1F 50%, #1A0D2A 100%);
  border: 1px solid rgba(26,110,255,0.2);
  border-radius: 24px; padding: 4rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(26,110,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-title { font-size: clamp(2.5rem, 5vw, 4.5rem); }

.cta-section p {
  font-size: 1rem; color: var(--slate); max-width: 500px;
  margin: 1rem auto 2.5rem; font-weight: 300; line-height: 1.75;
}

.cta-section .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff;
  padding: 0.9rem 2rem; border-radius: 8px;
  text-decoration: none; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 1px;
  text-transform: uppercase; transition: all 0.3s;
}
.wa-btn:hover { background: #1DAA53; transform: translateY(-2px); }

/* FOOTER */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 5vw 2rem;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}

.footer-brand .logo-name { font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 0.25rem; display: block; }

.footer-desc {
  font-size: 0.82rem; color: var(--slate); line-height: 1.75;
  margin: 1rem 0; font-weight: 300; max-width: 280px;
}

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--slate); font-size: 0.85rem;
  transition: all 0.25s;
}
.social-link:hover { background: rgba(26,110,255,0.15); border-color: rgba(26,110,255,0.3); color: var(--blue-light); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  color: var(--slate); text-decoration: none; font-size: 0.82rem;
  font-weight: 300; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.contact-item {
  display: flex; gap: 0.75rem; margin-bottom: 0.85rem; align-items: flex-start;
  font-size: 0.82rem; color: var(--slate); font-weight: 300;
}
.contact-item .icon { color: var(--blue-light); flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-copy { font-size: 0.75rem; color: var(--slate-dim); font-weight: 300; }
.footer-copy span { color: var(--gold); }

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .equipment-layout { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .event-card.big { grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  
  .events-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .event-card {
    width: 100% !important;
    min-height: 180px !important;
  }
  
  .event-card.big {
    min-height: 200px !important;
    grid-row: auto !important;
  }
  
  .event-name {
    font-size: 0.9rem !important;
  }
  
  .event-card.big .event-name {
    font-size: 1rem !important;
  }
  
  .event-meta {
    font-size: 0.65rem !important;
  }
  
  .event-info {
    padding: 1rem !important;
  }
  
  /* PERBAIKAN EQUIPMENT SHOWCASE UNTUK HP */
  .equipment-showcase {
    aspect-ratio: 4/3 !important;
    padding: 1.5rem !important;
    border-radius: 14px !important;
    min-height: 250px !important;
  }
  
  .equip-visual {
    width: 95% !important;
    padding: 1rem !important;
  }
  
  .equip-icon-img {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 0.8rem !important;
  }
  
  .equip-badge {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.8rem !important;
  }
  
  .equip-title {
    font-size: 0.9rem !important;
  }
  
  .equip-caption {
    font-size: 0.7rem !important;
  }
  
  .showcase-overlay {
    backdrop-filter: blur(3px) !important;
  }
  
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section { margin: 20px 20px; padding: 2rem 2rem; }
  section { padding: 4rem 5vw; }
  
  /* Dropdown responsive */
  .dropdown-menu {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 1.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  
  .dropdown.open .dropdown-menu {
    display: block;
  }
  
  .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
  }
  
  .dropdown.open .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
  }
}

.nav-links a i {
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

.nav-cta i {
  margin-right: 0.5rem;
}

/* Dropdown Styling */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-toggle .fa-chevron-down {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.25s;
}

.dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu li a i {
  width: 18px;
  font-size: 0.85rem;
}

/* ========================================== */
/* DROPDOWN MORE - PERBAIKAN */
/* ========================================== */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-toggle .fa-chevron-down {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
}

/* Desktop: hover effect */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Dropdown menu - default tersembunyi */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  color: var(--slate);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.25s;
}

.dropdown-menu li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-menu li a i {
  width: 18px;
  font-size: 0.85rem;
}

/* Mobile: dropdown toggle */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 1.5rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important; /* Default: hidden */
    box-shadow: none;
  }
  
  /* Saat open: tampilkan */
  .dropdown.open .dropdown-menu {
    display: block !important;
  }
  
  .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
  }
  
  .dropdown.open .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
  }
}