/* ========================================
   LPKONE - NAVY BLUE THEME
   Custom CSS untuk tema biru navy
   ======================================== */

:root {
  --navy-primary: #1e3a5f;
  --navy-dark: #0f1f33;
  --navy-light: #2d4a6f;
  --navy-accent: #3d5a80;
  --gold: #c9a227;
  --gold-light: #e8d179;
  --gold-dark: #a88420;
}

/* ========================================
   NAVBAR STYLES
   ======================================== */
.navbar-navy {
  background: rgba(30, 58, 95, 0.95) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-navy.scrolled {
  background: rgba(30, 58, 95, 0.98) !important;
  box-shadow: 0 2px 20px rgba(30, 58, 95, 0.3);
}

.navbar-navy .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-navy .nav-link:hover,
.navbar-navy .nav-link.active {
  color: var(--gold) !important;
}

.navbar-navy .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-navy .nav-link:hover::after {
  width: 60%;
}

.navbar-navy .dropdown-menu {
  background: var(--navy-dark);
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-navy .dropdown-item {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.navbar-navy .dropdown-item:hover {
  background: var(--navy-primary);
  color: var(--gold);
}

/* ========================================
   HEADER MOBILE IMPROVEMENTS
   ======================================== */
/* Header Logo */
.header-logo {
  height: 80px !important;
  max-height: 80px !important;
  transition: all 0.3s ease;
}

/* Header CTA Button */
.btn-header-cta {
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.btn-header-cta i {
  font-size: 1.1rem;
}

.btn-header-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4) !important;
}

/* Header Padding */
.header {
  padding: 10px 0 !important;
}

/* Header Scrolled */
.header.scrolled {
  padding: 8px 0 !important;
  box-shadow: 0 2px 20px rgba(30, 58, 95, 0.15);
  background: white !important;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  font-size: 26px !important;
  padding: 5px;
}

/* Mobile Nav Menu */
@media (max-width: 1199px) {
  .header-logo {
    height: 60px !important;
    max-height: 60px !important;
  }

  .btn-header-cta {
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    border-radius: 50px !important;
    gap: 4px;
  }

  .btn-header-cta i {
    font-size: 1rem;
  }

  .header {
    padding: 8px 0 !important;
  }

  .navmenu ul {
    padding: 15px 0;
    max-height: calc(100vh - 100px);
  }

  .navmenu a {
    padding: 12px 20px !important;
    font-size: 16px !important;
  }

  .navmenu .dropdown ul {
    margin: 5px 15px !important;
    padding: 8px 0 !important;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }

  .mobile-nav-toggle {
    font-size: 28px !important;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .header-logo {
    height: 48px !important;
    max-height: 48px !important;
  }

  .btn-header-cta {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    gap: 3px;
  }

  .btn-header-cta i {
    font-size: 0.9rem;
  }

  .header {
    padding: 6px 0 !important;
  }

  .mobile-nav-toggle {
    font-size: 26px !important;
    margin-right: 5px;
  }

  .navmenu ul {
    inset: 55px 10px 10px 10px;
  }

  .navmenu a {
    padding: 10px 16px !important;
    font-size: 15px !important;
  }
}

/* ========================================
   HERO STYLES
   ======================================== */
.hero-navy {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero-navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-navy h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-navy p {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn-navy {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-navy:hover {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-outline-navy {
  border: 2px solid var(--navy-primary);
  color: var(--navy-primary);
  background: transparent;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-navy:hover {
  background: var(--navy-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 80px 0;
  background: #fff;
}

/* About Image */
.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-main-image {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}

.about-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(30, 58, 95, 0.2);
}

/* Floating Card */
.about-floating-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.about-floating-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  color: var(--navy-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-floating-text {
  display: flex;
  flex-direction: column;
}

.about-floating-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
}

.about-floating-label {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

/* About Content */
.about-content {
  padding: 20px 0;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(30, 58, 95, 0.06);
  color: var(--navy-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.about-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 2rem;
}

/* About Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(30, 58, 95, 0.06);
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  background: rgba(30, 58, 95, 0.02);
  border-color: rgba(30, 58, 95, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.08);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
}

.about-feature-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 3px;
}

.about-feature-item p {
  font-size: 0.82rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}

/* About Actions */
.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========================================
   DUAL SERVICE CARDS
   ======================================== */
.dual-services {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: white;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
}

.service-card .card-header-lms {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  color: white;
  padding: 2.5rem;
  text-align: center;
}

.service-card .card-header-lpk {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: white;
  padding: 2.5rem;
  text-align: center;
}

.service-card .card-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.service-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card .card-body {
  padding: 2rem;
}

.service-card .feature-list {
  list-style: none;
  padding: 0;
}

.service-card .feature-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card .feature-list li i {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-navy {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 60px 0;
}

.stats-navy .stats-item {
  text-align: center;
  padding: 20px;
}

.stats-navy .stats-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stats-navy .stats-item .purecounter {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stats-navy .stats-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Stats Cards - Modern Design */
.stats-card {
  background: white;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
  border: 1px solid rgba(30, 58, 95, 0.06);
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(30, 58, 95, 0.15);
  border-color: var(--gold);
}

.stats-card .stats-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.stats-card .stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-card .stats-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
  margin-bottom: 0;
}

.stats-card:hover .stats-label {
  color: var(--navy-primary);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-title h2 {
  color: var(--navy-primary);
  font-weight: 700;
}

.section-title p {
  color: var(--text-muted);
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing-navy .pricing-tem {
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.pricing-navy .pricing-tem:hover {
  border-color: var(--navy-primary);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
}

.pricing-navy .pricing-tem h3 {
  color: var(--navy-primary) !important;
}

.pricing-navy .featured {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 600;
}

.pricing-navy .btn-buy {
  background: var(--navy-primary);
  color: white;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.pricing-navy .btn-buy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* Pricing Cards - Modern Design */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
  border: 2px solid rgba(30, 58, 95, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  border-color: var(--navy-primary);
}

.pricing-popular {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
  transform: scale(1.03);
}

.pricing-popular:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.2);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
  z-index: 10;
  white-space: nowrap;
}

.popular-badge-green {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
}

.pricing-header h3 {
  color: var(--navy-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.pricing-icon {
  color: var(--navy-primary);
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
  color: var(--gold);
  transform: scale(1.1);
}

/* Price */
.price {
  text-align: center;
  padding: 1rem 0;
}

.price sup {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-primary);
  vertical-align: super;
}

.price span {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy-primary);
}

.price-highlight {
  color: var(--gold-dark) !important;
}

.price-period {
  font-size: 0.95rem;
  color: #6c757d;
  font-weight: 500;
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: #495057;
  border-bottom: 1px solid rgba(30, 58, 95, 0.05);
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-highlight {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08) 0%, rgba(201, 162, 39, 0.02) 100%);
  padding: 0.8rem 0.5rem !important;
  border-radius: 8px;
  color: var(--navy-primary) !important;
  font-weight: 600;
}

/* Pricing Button */
.btn-pricing {
  display: inline-block;
  background: var(--navy-primary);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--navy-primary);
}

.btn-pricing:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.btn-pricing-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-pricing-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* ========================================
   FEATURES SECTION - MODERN
   ======================================== */
.features {
  padding: 80px 0;
  background: #fff;
}

/* Features Image */
.features-image-wrapper {
  position: relative;
  padding: 20px;
}

.features-image-wrapper img {
  border-radius: 20px;
  filter: drop-shadow(0 15px 40px rgba(30, 58, 95, 0.12));
  transition: all 0.3s ease;
}

.features-image-wrapper:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 20px 50px rgba(30, 58, 95, 0.18));
}

/* Floating Cards */
.features-float-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-primary);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.features-float-card i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
}

.features-float-1 {
  top: 20px;
  right: 0;
  animation-delay: 0s;
}

.features-float-2 {
  bottom: 40px;
  left: 0;
  animation-delay: 1.5s;
}

.features-float-2 i {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card-modern {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 95, 0.06);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.04);
  transition: all 0.35s ease;
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  border-color: rgba(30, 58, 95, 0.12);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 14px;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-card-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.feature-card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.feature-card-content p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Legacy Features Styles */
.features-navy .feature-box {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.features-navy .feature-box:hover {
  border-color: var(--navy-primary);
  box-shadow: 0 5px 20px rgba(30, 58, 95, 0.1);
}

.features-navy .feature-box i {
  color: var(--navy-primary);
  font-size: 1.5rem;
}

/* ========================================
   ALT FEATURES SECTION - MODERN
   ======================================== */
.alt-features {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

/* Alt Features Image */
.alt-features-image-wrapper {
  position: relative;
  padding: 20px;
}

.alt-features-image-wrapper img {
  border-radius: 20px;
  filter: drop-shadow(0 15px 40px rgba(30, 58, 95, 0.12));
  transition: all 0.3s ease;
  width: 100%;
}

.alt-features-image-wrapper:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 20px 50px rgba(30, 58, 95, 0.18));
}

/* Floating Card */
.alt-features-float-card {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: white;
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.15);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.alt-features-float-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  color: var(--navy-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.alt-features-float-text {
  display: flex;
  flex-direction: column;
}

.alt-features-float-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-primary);
  line-height: 1;
}

.alt-features-float-label {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

/* Alt Features Content */
.alt-features-content {
  padding: 20px 0;
}

.alt-features-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(30, 58, 95, 0.06);
  color: var(--navy-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.alt-features-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.alt-features-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Alt Features Grid */
.alt-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.alt-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 95, 0.06);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.04);
  transition: all 0.35s ease;
}

.alt-feature-card:nth-child(5) {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
}

.alt-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
  border-color: rgba(30, 58, 95, 0.12);
}

.alt-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 14px;
  color: white;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.alt-feature-card:hover .alt-feature-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.alt-feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.alt-feature-content p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Legacy Styles */
.alt-features-navy .icon-box {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.alt-features-navy .icon-box:hover {
  background: var(--navy-primary);
  color: white;
}

.alt-features-navy .icon-box:hover i {
  color: var(--gold);
}

.alt-features-navy .icon-box:hover h4 {
  color: white;
}

.alt-features-navy .icon-box:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.alt-features-navy .icon-box i {
  color: var(--navy-primary);
  font-size: 2rem;
  transition: all 0.3s ease;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-navy .faq-item {
  border-left: 3px solid var(--navy-primary);
}

.faq-navy .faq-item.faq-active h3 {
  color: var(--navy-primary);
}

.faq-navy .faq-toggle {
  color: var(--navy-primary);
}

/* FAQ - Modern Design */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 0;
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(30, 58, 95, 0.15);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.08);
}

.faq-item.faq-active {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
}

.faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-item.faq-active .faq-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
}

.faq-item:hover .faq-icon {
  transform: scale(1.1);
}

.faq-question h3 {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-primary);
  margin: 0;
  padding: 0;
  line-height: 1.4;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item.faq-active .faq-question h3 {
  color: var(--gold-dark);
}

.faq-toggle {
  font-size: 1.2rem;
  color: var(--navy-primary);
  transition: all 0.3s ease;
  opacity: 0.5;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
  color: var(--gold);
  opacity: 1;
}

.faq-content {
  padding: 0 20px 18px 68px;
  text-align: justify;
}

.faq-content p {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.faq-item.faq-active .faq-content p {
  color: #495057;
}

/* FAQ CTA */
.faq .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* ========================================
   PORTFOLIO / SCREENSHOTS
   ======================================== */
/* Portfolio Filter Tabs */
.portfolio-filter-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: white;
  padding: 8px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

.portfolio-filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.portfolio-filter-tab:hover {
  background: rgba(30, 58, 95, 0.06);
  color: var(--navy-primary);
}

.portfolio-filter-tab.active {
  background: var(--navy-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

/* Screenshot Cards */
.portfolio-item-modern {
  transition: all 0.3s ease;
}

.portfolio-item-modern.hidden-item {
  display: none;
}

.screenshot-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.06);
  transition: all 0.35s ease;
  height: 100%;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(30, 58, 95, 0.12);
  border-color: var(--navy-primary);
}

/* Screenshot Image */
.screenshot-image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
}

.screenshot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.95;
}

.screenshot-card:hover .screenshot-image img {
  transform: scale(1.08);
  opacity: 1;
}

/* Screenshot Overlay */
.screenshot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 58, 95, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.screenshot-zoom {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--navy-primary);
  border-radius: 50%;
  font-size: 1.3rem;
  text-decoration: none;
  transform: scale(0.5);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.screenshot-card:hover .screenshot-zoom {
  transform: scale(1);
}

.screenshot-zoom:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* Screenshot Info */
.screenshot-info {
  padding: 1.2rem 1.5rem;
}

.screenshot-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: var(--navy-primary);
  margin-bottom: 10px;
}

.screenshot-badge.elearning {
  background: #28a745;
}

.screenshot-badge.jepang {
  background: var(--gold);
  color: var(--navy-dark);
}

.screenshot-badge.keuangan {
  background: #17a2b8;
}

.screenshot-badge i {
  font-size: 0.8rem;
  margin-right: 4px;
}

.screenshot-info h5 {
  color: var(--navy-primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.screenshot-info p {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

/* Portfolio Empty State */
.portfolio-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.06) 0%, rgba(30, 58, 95, 0.02) 100%);
  border-radius: 50%;
  color: var(--navy-primary);
  font-size: 2.5rem;
}

.portfolio-empty h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-navy .testimonial-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(30, 58, 95, 0.08);
}

.testimonials-navy .testimonial-item .profile img {
  border: 3px solid var(--gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer-navy {
  background: var(--navy-dark);
  color: white;
}

/* Footer Newsletter / CTA */
.footer-navy .footer-newsletter {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.footer-navy .footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 2rem;
  border: 2px solid rgba(201, 162, 39, 0.3);
}

.footer-navy .footer-newsletter h4 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-navy .footer-newsletter p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

/* Footer Top */
.footer-navy .footer-top {
  padding: 60px 0 40px;
}

/* Footer Logo */
.footer-logo img {
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.footer-logo:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Footer Description */
.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.contact-item i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

/* Footer Title */
.footer-title {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 12px;
}

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

/* Footer Links */
.footer-navy .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-navy .footer-links li {
  margin-bottom: 10px;
}

.footer-navy .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}

.footer-navy .footer-links a i {
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

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

.footer-navy .footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Social */
.footer-social-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  gap: 10px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

/* Footer WhatsApp Button */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-wa-btn:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Footer Copyright */
.footer-navy .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 20px;
  font-size: 0.9rem;
}

.footer-navy .credits a:hover {
  color: var(--gold) !important;
}

/* ========================================
   PROGRAM JEPANG SPECIFIC
   ======================================== */
.program-hero {
  background: linear-gradient(rgba(30, 58, 95, 0.92), rgba(15, 31, 51, 0.96));
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.program-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.program-hero h1 {
  color: white;
  position: relative;
  z-index: 1;
}

.program-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* Program Cards */
.program-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
  border: 2px solid rgba(30, 58, 95, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: visible;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.15);
  border-color: var(--navy-primary);
}

.program-card-popular {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.15);
  transform: scale(1.03);
}

.program-card-popular:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.2);
}

.program-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
  z-index: 10;
  white-space: nowrap;
}

.program-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.program-card:hover .program-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
}

.program-card h4 {
  color: var(--navy-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.program-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #495057;
  display: flex;
  align-items: center;
}

.btn-program {
  display: inline-block;
  background: var(--navy-primary);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--navy-primary);
}

.btn-program:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.btn-program-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-program-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

/* Benefits Modern Cards */
.benefit-card-modern {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(30, 58, 95, 0.06);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.05);
  height: 100%;
}

.benefit-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(30, 58, 95, 0.12);
  border-color: var(--gold);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.benefit-card-modern h4 {
  color: var(--navy-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process-steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--navy-primary), var(--gold));
  border-radius: 2px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  margin-right: 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.process-step-content {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.06);
  flex: 1;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-content {
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.1);
  border-color: rgba(30, 58, 95, 0.12);
}

.process-step-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 58, 95, 0.06);
  border-radius: 12px;
  color: var(--navy-primary);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
  background: var(--navy-primary);
  color: white;
}

.process-step-content h4 {
  color: var(--navy-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-step-content p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* Requirements */
.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.04);
  border: 1px solid rgba(30, 58, 95, 0.06);
  transition: all 0.3s ease;
}

.requirement-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.08);
  border-color: var(--navy-primary);
}

.requirement-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-accent) 100%);
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.requirement-item:hover .requirement-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
}

.requirement-item strong {
  color: var(--navy-primary);
  font-size: 1rem;
  display: block;
}

/* CTA Card */
.cta-card {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 2.5rem;
  border: 2px solid rgba(201, 162, 39, 0.3);
  position: relative;
  z-index: 1;
}

.cta-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cta-card .btn-gold {
  position: relative;
  z-index: 1;
}

.cta-card .btn-outline-navy {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.cta-card .btn-outline-navy:hover {
  background: white;
  color: var(--navy-primary);
  border-color: white;
}

/* Timeline (legacy - kept for backward compatibility) */
.timeline-navy {
  position: relative;
  padding: 0;
  display: none;
}

/* ========================================
   BERITA/NEWS
   ======================================== */
.news-hero {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  color: white;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.news-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.news-hero h1 {
  color: white;
  position: relative;
  z-index: 1;
}

.news-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.news-hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
  position: relative;
  z-index: 1;
}

.news-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem;
  position: relative;
  z-index: 1;
}

.news-hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.news-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.4rem;
}

/* News Filter Tabs */
.news-filter-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  background: white;
  padding: 8px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.news-filter-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.news-filter-tab:hover {
  background: rgba(30, 58, 95, 0.06);
  color: var(--navy-primary);
}

.news-filter-tab.active {
  background: var(--navy-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

/* News Cards Modern */
.news-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.06);
  border: 1px solid rgba(30, 58, 95, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.12);
  border-color: var(--navy-primary);
}

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

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

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

.news-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 4rem;
}

.news-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: var(--navy-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.news-category-badge.lms {
  background: var(--navy-primary);
}

.news-category-badge.lpk {
  background: var(--gold);
  color: var(--navy-dark);
}

.news-category-badge.tips {
  background: #28a745;
}

.news-category-badge.announcement {
  background: #dc3545;
}

/* News Card Body */
.news-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #6c757d;
}

.news-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card-title a {
  color: var(--navy-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-card-title a:hover {
  color: var(--gold-dark);
}

.news-card-excerpt {
  color: #6c757d;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--navy-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-read-more:hover {
  color: var(--gold-dark);
}

.news-read-more i {
  transition: transform 0.3s ease;
}

.news-read-more:hover i {
  transform: translateX(4px);
}

/* News Pagination */
.news-pagination .pagination {
  justify-content: center;
  gap: 4px;
}

.news-pagination .page-link {
  color: var(--navy-primary);
  border-radius: 10px;
  padding: 8px 14px;
  font-weight: 500;
  border: 1px solid rgba(30, 58, 95, 0.1);
  transition: all 0.3s ease;
}

.news-pagination .page-link:hover {
  background: rgba(30, 58, 95, 0.06);
  border-color: var(--navy-primary);
}

.news-pagination .page-item.active .page-link {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
  color: white;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.25);
}

/* News Empty State */
.news-empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.news-empty-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.06) 0%, rgba(30, 58, 95, 0.02) 100%);
  border-radius: 50%;
  color: var(--navy-primary);
  font-size: 3rem;
}

.news-empty-state h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.news-empty-state p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Legacy styles (keep for backward compatibility) */
.news-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 58, 95, 0.12);
}

.news-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.news-card .badge-category {
  background: var(--navy-primary);
  color: white;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
}

.news-card .badge-category.lms {
  background: var(--navy-primary);
}

.news-card .badge-category.lpk {
  background: var(--gold);
  color: var(--navy-dark);
}

.news-card .card-title {
  color: var(--navy-primary);
  font-weight: 600;
}

.news-card .read-more {
  color: var(--navy-primary);
  font-weight: 600;
  text-decoration: none;
}

.news-card .read-more:hover {
  color: var(--gold);
}

/* Legacy Filter Tabs */
.nav-pills-navy .nav-link {
  color: var(--navy-primary);
  border-radius: 50px;
  padding: 10px 25px;
  margin: 0 5px;
  border: 1px solid var(--navy-primary);
  background: transparent;
}

.nav-pills-navy .nav-link.active,
.nav-pills-navy .nav-link:hover {
  background: var(--navy-primary);
  color: white;
}

/* ========================================
   UTILITIES
   ======================================== */
.bg-navy {
  background-color: var(--navy-primary) !important;
}

.bg-navy-dark {
  background-color: var(--navy-dark) !important;
}

.bg-navy-light {
  background-color: var(--navy-light) !important;
}

.bg-gold {
  background-color: var(--gold) !important;
}

.text-navy {
  color: var(--navy-primary) !important;
}

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

.border-navy {
  border-color: var(--navy-primary) !important;
}

.border-gold {
  border-color: var(--gold) !important;
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero-navy h1 {
    font-size: 2rem;
  }

  .timeline-navy::before {
    left: 20px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .navbar-navy .navbar-collapse {
    background: var(--navy-dark);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }

  /* Program Jepang Mobile */
  .program-hero {
    padding: 140px 0 80px;
  }

  .program-hero .display-4 {
    font-size: 1.8rem;
  }

  .hero-stat-number {
    font-size: 1.5rem;
  }

  .program-card {
    padding: 2rem 1.5rem;
  }

  .program-card-popular {
    transform: scale(1);
  }

  .program-card-popular:hover {
    transform: translateY(-10px);
  }

  .process-steps::before {
    left: 20px;
  }

  .process-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
    margin-right: 1rem;
  }

  .process-step-content {
    padding: 1rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-card h3 {
    font-size: 1.3rem;
  }

  .cta-card-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  /* News Page Mobile */
  .news-hero {
    padding: 140px 0 80px;
  }

  .news-hero .display-4 {
    font-size: 1.8rem;
  }

  .news-hero-stat-number {
    font-size: 1.4rem;
  }

  .news-filter-tabs {
    border-radius: 20px;
    padding: 6px;
  }

  .news-filter-tab {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .news-card-image {
    height: 180px;
  }

  .news-card-body {
    padding: 1.2rem;
  }

  .news-card-title {
    font-size: 1rem;
  }

  .news-empty-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .news-empty-state {
    padding: 3rem 1rem;
  }

  /* Footer Mobile */
  .footer-navy {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-navy .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .footer-navy .footer-newsletter {
    padding: 35px 15px;
  }

  .newsletter-content {
    padding: 0 10px;
  }

  .footer-navy .footer-newsletter h4 {
    font-size: 1.3rem;
  }

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

  .newsletter-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem !important;
  }

  .footer-navy .footer-newsletter .gap-3 {
    gap: 10px !important;
  }

  .footer-navy .footer-newsletter .btn-gold,
  .footer-navy .footer-newsletter .btn-outline-gold {
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    width: 100%;
    justify-content: center;
  }

  .footer-navy .footer-newsletter .btn-gold i,
  .footer-navy .footer-newsletter .btn-outline-gold i {
    margin-right: 6px !important;
  }

  .footer-navy .footer-top {
    padding: 35px 0 25px;
  }

  .footer-navy .footer-top .col-lg-4,
  .footer-navy .footer-top .col-lg-2,
  .footer-navy .footer-top .col-md-6,
  .footer-navy .footer-top .col-md-3,
  .footer-navy .footer-top .col-md-12 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-navy .footer-top .gy-4 {
    --bs-gutter-y: 1.5rem !important;
  }

  .footer-logo img {
    height: 55px !important;
    max-height: 55px !important;
  }

  .footer-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-top: 0.8rem !important;
  }

  .footer-contact {
    margin-top: 1.2rem !important;
    gap: 10px;
  }

  .contact-item {
    font-size: 0.75rem;
    gap: 8px;
  }

  .contact-item i {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    border-radius: 6px;
  }

  .footer-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding-bottom: 8px;
  }

  .footer-title::after {
    width: 25px;
    height: 2px;
  }

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

  .footer-navy .footer-links a {
    font-size: 0.85rem;
  }

  .footer-navy .footer-links a i {
    font-size: 0.6rem;
  }

  .footer-social-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .social-links {
    gap: 8px;
    margin-top: 1rem !important;
  }

  .social-link {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  .footer-whatsapp {
    margin-top: 1.2rem !important;
  }

  .footer-wa-btn {
    padding: 10px 18px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }

  .footer-wa-btn i {
    font-size: 1rem;
    margin-right: 6px !important;
  }

  .footer-navy .copyright {
    padding: 15px 10px;
    margin-top: 15px;
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .footer-navy .copyright .row {
    text-align: center;
  }

  .footer-navy .copyright p {
    margin-bottom: 4px;
  }

  .footer-navy .copyright .text-gold {
    font-size: 0.72rem;
  }

  .footer-navy .credits {
    font-size: 0.7rem;
  }

  /* Small Mobile */
  @media (max-width: 400px) {
    .footer-navy .footer-newsletter {
      padding: 25px 0;
    }

    .footer-navy .footer-newsletter h4 {
      font-size: 1.1rem;
    }

    .newsletter-icon {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }

    .footer-logo img {
      height: 48px !important;
      max-height: 48px !important;
    }

    .footer-desc {
      font-size: 0.78rem;
    }

    .contact-item {
      font-size: 0.7rem;
    }

    .footer-title {
      font-size: 0.9rem;
    }

    .footer-navy .footer-links a {
      font-size: 0.8rem;
    }

    .social-link {
      width: 34px;
      height: 34px;
      font-size: 0.9rem;
    }

    .footer-wa-btn {
      padding: 8px 16px;
      font-size: 0.78rem;
    }

    .footer-navy .copyright {
      font-size: 0.68rem;
    }
  }

  /* Portfolio Mobile */
  .portfolio-filter-tabs {
    border-radius: 20px;
    padding: 6px;
  }

  .portfolio-filter-tab {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .screenshot-image {
    height: 180px;
  }

  .screenshot-info {
    padding: 1rem 1.2rem;
  }

  .screenshot-info h5 {
    font-size: 0.95rem;
  }

  .screenshot-info p {
    font-size: 0.8rem;
  }

  /* About Mobile */
  .about {
    padding: 60px 0;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-feature-item {
    padding: 12px;
  }

  .about-floating-card {
    padding: 1rem 1.2rem;
    bottom: -10px;
    right: -10px;
  }

  .about-floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .about-floating-number {
    font-size: 1.2rem;
  }

  .about-floating-label {
    font-size: 0.7rem;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-actions .btn-navy,
  .about-actions .btn-outline-navy {
    width: 100%;
    justify-content: center;
  }

  /* Features Mobile */
  .features {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card-modern {
    padding: 16px;
  }

  .feature-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.1rem;
  }

  .feature-card-content h3 {
    font-size: 0.9rem;
  }

  .feature-card-content p {
    font-size: 0.8rem;
  }

  .features-float-card {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .features-float-card i {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .features-float-1 {
    top: 10px;
    right: -5px;
  }

  .features-float-2 {
    bottom: 20px;
    left: -5px;
  }

  /* Alt Features Mobile */
  .alt-features {
    padding: 60px 0;
  }

  .alt-features-title {
    font-size: 1.5rem;
  }

  .alt-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .alt-feature-card {
    padding: 16px;
  }

  .alt-feature-card:nth-child(5) {
    max-width: 100%;
  }

  .alt-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1.1rem;
  }

  .alt-feature-content h4 {
    font-size: 0.9rem;
  }

  .alt-feature-content p {
    font-size: 0.8rem;
  }

  .alt-features-float-card {
    padding: 1rem 1.2rem;
    bottom: 10px;
    right: -5px;
  }

  .alt-features-float-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .alt-features-float-number {
    font-size: 1.2rem;
  }

  .alt-features-float-label {
    font-size: 0.7rem;
  }
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  background: var(--navy-primary) !important;
  border: none;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.3);
}

.scroll-top:hover {
  background: var(--navy-dark) !important;
}

/* ========================================
   HEADER DROPDOWN IMPROVEMENTS
   ======================================== */
.navmenu .dropdown ul {
  padding: 8px 0;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.15) !important;
  border: 1px solid rgba(30, 58, 95, 0.08);
  min-width: 220px;
  overflow: hidden;
}

.navmenu .dropdown ul li {
  min-width: 220px;
}

.navmenu .dropdown ul a {
  padding: 12px 24px !important;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left !important;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.navmenu .dropdown ul a:hover {
  background: linear-gradient(90deg, rgba(30, 58, 95, 0.06) 0%, rgba(30, 58, 95, 0.02) 100%);
  border-left: 3px solid var(--gold);
  padding-left: 28px !important;
}

.navmenu .dropdown ul a i {
  font-size: 16px;
  min-width: 24px;
  text-align: center;
}

.navmenu .dropdown ul li:hover > a {
  color: var(--navy-primary) !important;
}

/* Dropdown trigger animation */
.navmenu .dropdown:hover .toggle-dropdown {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.toggle-dropdown {
  transition: transform 0.3s ease;
  font-size: 12px;
  opacity: 0.6;
}

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--gold);
  color: var(--navy-dark);
}

/* ========================================
   ARTICLE/SHOW PAGE STYLES
   ======================================== */

/* Article Hero */
.article-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.article-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 31, 51, 0.92) 0%, rgba(30, 58, 95, 0.85) 100%);
  z-index: 1;
}

.article-hero-gradient {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, var(--navy-accent) 100%);
}

/* Article Hero Content - Must be above overlay */
.article-hero-content {
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.article-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.article-breadcrumb .breadcrumb-item a:hover {
  color: var(--gold);
}

.article-breadcrumb .breadcrumb-item.active {
  color: white;
}

.article-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Article Hero Title */
.article-hero-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Article Hero Excerpt */
.article-hero-excerpt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 700px;
}

/* Article Badge */
.article-badge {
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}

.article-badge-sm {
  font-size: 0.65rem;
  padding: 3px 8px;
}

/* Article Meta Text */
.article-meta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

/* Article Content Wrapper */
.article-content-wrapper {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

/* Article Body */
.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #333;
  text-align: justify;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  color: var(--navy-primary);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.article-body h3 {
  color: var(--navy-primary);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.article-body h4 {
  color: var(--navy-light);
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: #f8f9fa;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.article-body a {
  color: var(--navy-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.article-body a:hover {
  color: var(--gold);
}

.article-body code {
  background: #f1f3f5;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
  color: #d63384;
}

.article-body pre {
  background: var(--navy-dark);
  color: #f8f9fa;
  padding: 1.25rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.article-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

/* Article Tags */
.article-tags {
  padding-top: 1.5rem;
}

/* Article Image Gallery */
.article-image-gallery {
  margin-top: 2rem;
}

.article-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.article-gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(30, 58, 95, 0.1);
}

.article-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(30, 58, 95, 0.2);
}

.article-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.article-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.7) 0%, rgba(15, 31, 51, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.article-gallery-item:hover .article-gallery-overlay {
  opacity: 1;
}

.article-gallery-overlay i {
  font-size: 2rem;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.article-gallery-item:hover .article-gallery-overlay i {
  transform: scale(1);
}

/* Article Tags */
.article-tags {
  padding-top: 1.5rem;
}

.article-tag {
  display: inline-block;
  padding: 6px 14px;
  background: #f1f3f5;
  color: var(--navy-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.article-tag:hover {
  background: var(--navy-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

/* Article Share */
.article-share {
  padding-top: 1.5rem;
}

.btn-share {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-share:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-share-facebook {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.btn-share-facebook:hover {
  background: #166fe5;
  color: white;
}

.btn-share-twitter {
  background: #000000;
  color: white;
  border-color: #000000;
}

.btn-share-twitter:hover {
  background: #333333;
  color: white;
}

.btn-share-whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.btn-share-whatsapp:hover {
  background: #20bd5a;
  color: white;
}

.btn-share-linkedin {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

.btn-share-linkedin:hover {
  background: #0958ae;
  color: white;
}

.btn-share-print {
  background: var(--navy-primary);
  color: white;
  border-color: var(--navy-primary);
}

.btn-share-print:hover {
  background: var(--navy-dark);
  color: white;
}

/* Article Sidebar */
.article-sidebar-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
  transition: all 0.3s ease;
}

.article-sidebar-card:hover {
  box-shadow: 0 8px 30px rgba(30, 58, 95, 0.12);
}

.article-sidebar-header {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  padding: 1.25rem 1.5rem;
  color: white !important;
}

.article-sidebar-header h5 {
  font-size: 1rem;
  color: white !important;
}

.article-sidebar-header i {
  color: var(--gold) !important;
}

.article-sidebar-body {
  padding: 0;
}

/* Article Recent Items */
.article-recent-item {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.3s ease;
}

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

.article-recent-item:hover {
  background: #f8f9fa;
  padding-left: 2rem;
  color: var(--navy-primary);
}

.article-recent-item.active {
  background: #f1f3f5;
  border-left: 3px solid var(--gold);
}

.article-recent-item .article-recent-title {
  color: var(--navy-primary);
}

.article-recent-item:hover .article-recent-title {
  color: var(--gold);
}

.article-recent-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-recent-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

.article-recent-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Article Recent Item Small Text */
.article-recent-item small {
  color: #6c757d !important;
  font-size: 0.8rem;
}

.article-recent-item:hover small {
  color: var(--navy-primary) !important;
}

/* Article Category Items */
.article-category-item {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #555 !important;
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.3s ease;
  font-weight: 500;
}

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

.article-category-item:hover {
  background: #f8f9fa;
  color: var(--navy-primary) !important;
  padding-left: 2rem;
}

.article-category-item.active {
  background: #f1f3f5;
  color: var(--navy-primary) !important;
  font-weight: 700;
  border-left: 3px solid var(--gold);
}

.article-category-item i {
  transition: transform 0.3s ease;
  color: var(--navy-primary);
}

.article-category-item:hover i {
  transform: scale(1.2);
  color: var(--gold);
}

.article-category-item.active i {
  color: var(--gold);
}

/* Article CTA Card */
.article-cta-card {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.article-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
}

.article-cta-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--navy-dark);
  position: relative;
  z-index: 1;
}

.article-cta-card h5 {
  color: white !important;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.article-cta-card p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Mobile Image */
.article-mobile-image img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ========================================
   ARTICLE PAGE RESPONSIVE
   ======================================== */
@media (max-width: 991.98px) {
  .article-hero {
    min-height: 350px;
    padding: 60px 0;
  }

  .article-hero-title {
    font-size: 2rem;
  }

  .article-content-wrapper {
    padding: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .article-hero {
    min-height: 300px;
    padding: 50px 0;
  }

  .article-hero-title {
    font-size: 1.5rem;
  }

  .article-hero-excerpt {
    font-size: 1rem;
  }

  .article-content-wrapper {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .article-body {
    font-size: 1rem;
    text-align: left;
  }

  .article-body h2 {
    font-size: 1.35rem;
  }

  .article-body h3 {
    font-size: 1.15rem;
  }

  .article-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
  }

  .article-gallery-overlay i {
    font-size: 1.5rem;
  }

  .btn-share {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .article-sidebar-card {
    border-radius: 12px;
  }

  .article-cta-card {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .article-hero {
    min-height: 250px;
    padding: 40px 0;
  }

  .article-hero-title {
    font-size: 1.25rem;
  }

  .article-meta-text {
    font-size: 0.8rem;
  }

  .article-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* Print Styles */
@media print {
  .article-hero {
    min-height: auto;
    padding: 20px 0;
    background: white !important;
  }

  .article-hero-overlay,
  .article-hero-bg {
    display: none;
  }

  .article-hero-title,
  .article-hero-excerpt,
  .article-meta-text {
    color: #333 !important;
  }

  .article-share,
  .article-sidebar-card,
  .article-cta-card,
  .article-breadcrumb {
    display: none !important;
  }

  .article-content-wrapper {
    box-shadow: none;
    padding: 0;
  }
}
