/* ============================================
   ROOT COLOR VARIABLES & GLOBAL STYLES
   ============================================ */
:root {
  --primary-blue: #1e40af;
  --secondary-blue: #3b82f6;
  --light-blue: #dbeafe;
  --accent-blue: #60a5fa;
  --dark-text: #1e293b;
  --gray-text: #64748b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gold: #d4af37;
  --light-gold: #f1e1a6;
}

/* ============================================
   CRITICAL NAVBAR FIXES - MOVED FROM HEADER.PHP
   Dipindahkan dari inline styles ke style.css
   ============================================ */

/* Reset Global untuk Navbar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Base Styles */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Bar Enhanced */
.top-bar {
  background: #f8fafc;
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 1031;
}

.top-bar a {
  color: #64748b;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: #1e40af;
}

.top-bar i {
  margin-right: 6px;
  color: #3b82f6;
}

/* NAVBAR - Critical Fixes with !important */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  padding: 1rem 0 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  width: 100% !important;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Logo Container Fixed */
.logo-container {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
  flex-shrink: 0;
}

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

/* Navbar Brand Fixed */
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-weight: 700 !important;
  color: #1e40af !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  margin-right: auto !important;
}

.navbar-brand:hover {
  color: #1e40af !important;
}

/* Navbar Toggler for Mobile */
.navbar-toggler {
  border: 2px solid #1e40af !important;
  padding: 0.5rem !important;
  display: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(30, 64, 175, 0.25) !important;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(30, 64, 175, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar Collapse Fixed */
.navbar-collapse {
  flex-grow: 1;
  align-items: center;
  justify-content: flex-end;
}

/* Navbar Nav Fixed */
.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0.5rem !important;
}

/* Nav Item Fixed */
.nav-item {
  list-style: none !important;
  margin: 0 !important;
}

/* Nav Link Enhanced */
.nav-link {
  color: #1e293b !important;
  font-weight: 500 !important;
  padding: 0.5rem 1.2rem !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  border-radius: 8px !important;
}

.nav-link:hover {
  color: #3b82f6 !important;
  background-color: #f0f9ff !important;
}

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

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

.dropdown-toggle::after {
  margin-left: 0.5rem;
}

.dropdown-menu {
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  z-index: 1000 !important;
  display: none;
  min-width: 220px;
  padding: 0.5rem 0;
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: #1e293b;
  background-color: #ffffff;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.dropdown-menu.show {
  display: block !important;
}

.dropdown-item {
  display: flex !important;
  align-items: center !important;
  width: 100%;
  padding: 0.75rem 1.5rem !important;
  clear: both;
  font-weight: 500 !important;
  color: #1e293b !important;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  transition: all 0.3s ease !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #1e40af !important;
  background-color: #dbeafe !important;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
}

/* User Icon Circle */
.user-icon-circle {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-right: 0.5rem;
}

/* Button Primary Custom Enhanced */
.btn-primary-custom {
  background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
  color: white !important;
  border: none !important;
  padding: 0.7rem 1.8rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3) !important;
  text-decoration: none !important;
}

.btn-primary-custom:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4) !important;
  color: white !important;
}

/* Custom button style for job detail button */
.btn-job-detail {
  background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
  color: white !important;
  border: none !important;
  padding: 10px 16px !important; /* Match original button padding */
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: all 0.3s ease !important;
  display: block !important; /* Match original display property */
  text-align: center !important;
  text-decoration: none !important;
  width: 100% !important; /* Full width for consistency */
}

.btn-job-detail:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4) !important;
  color: white !important;
}

/* Disabled button style for consistency */
.btn-detail-loker-grid.disabled {
  background: #e2e8f0 !important;
  color: #94a3b8 !important;
  border-color: #cbd5e1 !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
}

/* Mobile Responsive - CRITICAL */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
  }

  .navbar-collapse {
    display: none !important;
    width: 100%;
    background: white;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .navbar-collapse.show {
    display: block !important;
  }

  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem !important;
  }

  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none !important;
    border: 1px solid #e5e7eb !important;
  }

  .btn-primary-custom {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-hidden {
  display: none !important;
}

.spinner {
  display: flex;
  gap: 8px;
}

.spinner div {
  width: 12px;
  height: 12px;
  background: #1e40af;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner .bounce2 {
  animation-delay: -0.32s;
}

.spinner .bounce3 {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.loading-progress {
  margin-top: 20px;
  width: 200px;
  height: 4px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #1e40af);
  border-radius: 2px;
  animation: loadingProgress 3.5s ease-out forwards;
}

@keyframes loadingProgress {
  0% { width: 0%; }
  20% { width: 30%; }
  40% { width: 60%; }
  70% { width: 85%; }
  100% { width: 100%; }
}

.loading-text {
  margin-top: 15px;
  color: #3b82f6;
  font-size: 0.9rem;
  font-weight: 500;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
}
/* ============================================
   PRELOADER STYLES
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-hidden {
  display: none !important;
}

.spinner {
  display: flex;
  gap: 8px;
}

.spinner div {
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.spinner .bounce2 {
  animation-delay: -0.32s;
}
.spinner .bounce3 {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.loading-progress {
  margin-top: 20px;
  width: 200px;
  height: 4px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary-blue), var(--primary-blue));
  border-radius: 2px;
  animation: loadingProgress 3.5s ease-out forwards;
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  20% {
    width: 30%;
  }
  40% {
    width: 60%;
  }
  70% {
    width: 85%;
  }
  100% {
    width: 100%;
  }
}

.loading-text {
  margin-top: 15px;
  color: var(--secondary-blue);
  font-size: 0.9rem;
  font-weight: 500;
  animation: pulseText 2s infinite;
}

@keyframes pulseText {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
/* ============================================
   TOP BAR STYLES
   ============================================ */
.top-bar {
  background: var(--off-white);
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #e2e8f0;
}

.top-bar a {
  color: var(--gray-text);
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--primary-blue);
}

.top-bar i {
  margin-right: 6px;
  color: var(--secondary-blue);
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 1.1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.logo-container {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

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

.nav-link {
  color: var(--dark-text);
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s;
  position: relative;
  font-size: 0.95rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-blue);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

/* ============================================
   NAVBAR DROPDOWN HOVER STYLES
   ============================================ */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 0.5rem 0;
  background-color: white;
  min-width: 200px;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  color: var(--dark-text);
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--light-blue);
  color: var(--primary-blue);
  padding-left: 1.75rem;
}

.dropdown-item:focus,
.dropdown-item:active {
  background-color: var(--light-blue);
  color: var(--primary-blue);
}
/* ============================================
   PAGE HEADER STYLES
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  color: white;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  z-index: 2;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: white;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-blue);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  line-height: 1.2;
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 12px;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-outline-custom {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  background: transparent;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.hero-logo-container {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 580px;
  height: auto;
  background: white;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 70px rgba(30, 64, 175, 0.18);
  margin: 0 auto;
  animation: float 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.hero-logo::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.hero-logo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

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

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
/* ============================================
   CARD STYLES (Generic, About, Service, etc.)
   ============================================ */
.about-content {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
}

.about-content h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-blue);
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  position: relative;
  padding-left: 2rem;
}

.about-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: var(--secondary-blue);
  border-radius: 50%;
}

.about-content p {
  color: var(--gray-text);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-content p::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--secondary-blue);
  font-weight: bold;
}

.stat-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: 2.5rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-blue);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--secondary-blue);
  margin-bottom: 1rem;
}

.stat-number {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 2.5rem;
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.stat-label {
  color: var(--gray-text);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.service-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.service-img-wrapper {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #dbeafe, #cffafe);
  border-radius: 12px 12px 0 0;
}

.service-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.service-body {
  flex: 1;
  padding: 1.5rem;
}

.service-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.service-card p {
  color: var(--gray-text);
  line-height: 1.7;
}

.value-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary-blue);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--light-blue), #cffafe);
  color: var(--secondary-blue);
}

.value-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  position: relative;
  padding-left: 1.5rem;
}

.value-card h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--secondary-blue);
  border-radius: 50%;
}

.value-card p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 0;
}

.why-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  transition: height 0.4s ease;
}

.why-card:hover::before {
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.why-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(30, 64, 175, 0.05);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.why-card h4 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
}

.why-card p {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 0;
}
/* ============================================
   JOB FILTER STYLES
   ============================================ */
.job-filters {
  position: relative;
}

.filter-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.08);
  border-bottom: 4px solid #2563eb;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.25);
}

.form-floating label i {
  color: #2563eb;
}

.filter-btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 12px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
}

.filter-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a);
  transform: translateY(-1px);
}

.btn-outline-primary.filter-btn {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline-primary.filter-btn:hover {
  background: #2563eb;
  color: #ffffff;
}

/* Reset Button Style */
.btn-reset {
  background: linear-gradient(135deg, #2563eb, #1e40af) !important;
  color: white !important;
  border: none !important;
  padding: 12px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
}

.btn-reset:hover {
  background: linear-gradient(135deg, #1e40af, #1e3a8a) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4) !important;
  color: white !important;
}

/* ============================================
   JOB CARD GRID STYLE - 3 COLUMNS LAYOUT
   ============================================ */

/* .job-card-loker-style {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card-loker-style:hover {
  border-color: var(--secondary-blue);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.job-card-loker-style .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
} */

/* Company Logo Box - Grid Version */
.company-logo-box-grid {
  width: 52px;
  height: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  padding: 6px;
  flex-shrink: 0;
}

.company-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Company Name */
.company-name {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Job Title - Grid Version */
.job-title-loker-grid {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.3;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.job-title-loker-grid a {
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.job-title-loker-grid a:hover {
  color: var(--secondary-blue);
}

/* Meta Tags - Grid Version */
.job-meta-tags-grid {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.badge-tag-grid {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.4;
}

/* Category Badge - Grid Version */
.badge-category-grid {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
}

/* Job Info Items - Grid Version */
.job-info-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item-grid {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #4b5563;
}

.info-item-grid i {
  color: var(--secondary-blue);
  font-size: 0.875rem;
  width: 16px;
  flex-shrink: 0;
}

.info-item-grid span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

/* Time Posted - Grid Version */
.time-posted-grid {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #9ca3af;
  padding-top: 8px;
  border-top: 1px solid #f3f4f6;
}

.time-posted-grid i {
  font-size: 0.75rem;
}

/* Detail Button - Grid Version */
.btn-detail-loker-grid {
  background: white;
  color: var(--secondary-blue);
  border: 1.5px solid var(--secondary-blue);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-detail-loker-grid:hover {
  background: var(--secondary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Grid Layout */
.job-listings-grid {
  margin-top: 1.5rem;
}

/* ============================================
   RESPONSIVE - GRID STYLE
   ============================================ */

/* Tablet - 2 Columns */
@media (max-width: 991px) {
  .job-listings-grid .job-card {
    /* Bootstrap akan otomatis handle col-md-6 */
  }
}

/* Mobile - 1 Column */
@media (max-width: 767px) {
  .job-card-loker-style .card-body {
    padding: 1rem !important;
  }

  .company-logo-box-grid {
    width: 48px;
    height: 48px;
  }

  .job-title-loker-grid {
    font-size: 0.9375rem;
  }

  .company-name {
    font-size: 0.75rem;
  }

  .badge-tag-grid {
    font-size: 0.65rem;
    padding: 3px 8px;
  }

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

  .info-item-grid {
    font-size: 0.75rem;
  }

  .time-posted-grid {
    font-size: 0.7rem;
  }

  .btn-detail-loker-grid {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 576px) {
  .job-listings-grid {
    margin-top: 1rem;
  }

  .job-listings-grid .row {
    gap: 0.75rem;
  }

  .company-logo-box-grid {
    width: 44px;
    height: 44px;
  }

  .job-title-loker-grid {
    font-size: 0.875rem;
  }

  .job-meta-tags-grid {
    gap: 4px;
  }
}

/* Ensure equal height cards */
.job-listings-grid .job-card {
  display: flex;
  flex-direction: column;
}

.job-listings-grid .job-card > .card {
  flex: 1;
}

/* ============================================
   JOB DETAIL MODAL STYLES
   ============================================ */
.job-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.15);
}

.job-info-card {
  border-left: 4px solid var(--secondary-blue);
}

.job-info-card h6 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.job-info-card p {
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 0;
}

.job-description h5,
.job-requirements h5 {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.job-requirements ul {
  list-style: none;
  padding-left: 0;
}

.job-requirements li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.job-requirements li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   MODAL BACKDROP STYLES
   ============================================ */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7) !important;
  z-index: 1040 !important;
}

.modal.show .modal-backdrop {
  opacity: 1;
}

.modal-backdrop.show {
  opacity: 0.7;
}

.modal {
  z-index: 1050;
}

.modal-content {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}
/* ============================================
   SIDEBAR & WIDGET STYLES
   ============================================ */
.sidebar {
  position: sticky;
  top: 100px;
}

.widget {
  background: white;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.widget-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-blue);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--light-blue);
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.search-form input:focus {
  border-color: var(--secondary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-form button {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

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

.category-list li {
  margin-bottom: 1rem;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: var(--off-white);
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark-text);
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-list a:hover {
  background: linear-gradient(135deg, var(--light-blue), white);
  transform: translateX(5px);
}

.category-count {
  background: var(--secondary-blue);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-item {
  padding: 0.5rem 1rem;
  background: var(--off-white);
  border-radius: 50px;
  text-decoration: none;
  color: var(--dark-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: var(--secondary-blue);
  color: white;
  transform: translateY(-2px);
}
/* ============================================
   BLOG/NEWS CARD STYLES
   ============================================ */
.blog-card,
.news-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover,
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
}

.blog-image,
.news-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

.blog-card:hover .blog-image img,
.news-card:hover .news-image img {
  transform: scale(1.1);
}

.blog-category,
.news-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.blog-content,
.news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta,
.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 1rem;
  color: var(--gray-text);
  font-size: 0.9rem;
}

.blog-meta span,
.news-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i,
.news-meta i {
  color: var(--secondary-blue);
}

.blog-title,
.news-title {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

.blog-title a:hover,
.news-title a:hover {
  color: var(--secondary-blue);
}

.blog-excerpt,
.news-excerpt {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-read-more,
.news-read-more {
  color: var(--secondary-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-read-more:hover,
.news-read-more:hover {
  gap: 12px;
  color: var(--primary-blue);
}
/* ============================================
   ACCORDION STYLES
   ============================================ */
.accordion-article {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.accordion-article-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

.accordion-article-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.accordion-article-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.accordion-article-body {
  padding: 2rem;
}

.accordion-item {
  border: 1px solid var(--light-blue);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.accordion-header {
  background: var(--off-white);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: var(--light-blue);
}

.accordion-header.active {
  background: linear-gradient(135deg, var(--light-blue), white);
  color: var(--primary-blue);
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.accordion-header.active .accordion-title {
  color: var(--primary-blue);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--primary-blue);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.active {
  max-height: 2000px;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.accordion-body h4 {
  color: var(--dark-text);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.accordion-body ul,
.accordion-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-body li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.accordion-body p {
  margin-bottom: 1rem;
}

.accordion-body strong {
  color: var(--dark-text);
  font-weight: 700;
}

/* ============================================
   TAB NAVIGATION STYLES
   ============================================ */
.nav-tabs {
  border-bottom: 2px solid var(--light-blue);
  margin-bottom: 2rem;
}

.nav-tabs .nav-link {
  color: var(--gray-text);
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  color: var(--primary-blue);
  border-bottom-color: var(--secondary-blue);
  background-color: transparent;
}

.nav-tabs .nav-link.active {
  color: var(--primary-blue);
  border-bottom-color: var(--secondary-blue);
  background-color: transparent;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* ============================================
   CTA SECTION STYLES
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-cta-white {
  background: white;
  color: var(--primary-blue);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--primary-blue);
}

/* FOOTER STYLES - HORIZONTAL LAYOUT WITH LOGO */

/* Footer Container dengan Gradient Biru */
footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%) !important;
  color: #ffffff !important;
  padding: 4rem 0 2rem !important;
  position: relative;
  overflow: hidden;
}

/* Decorative Elements untuk Footer */
footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

footer::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Footer Content Container */
footer .container {
  position: relative;
  z-index: 2;
}

/* ===== FOOTER GRID LAYOUT - 4 KOLOM ===== */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* ===== FOOTER COLUMNS ===== */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Company Column - Lebih Lebar */
.footer-company {
  padding-right: 2rem;
}

/* ===== FOOTER LOGO ===== */
.footer-logo-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.footer-logo-wrapper:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== FOOTER HEADINGS ===== */
footer h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

footer h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, transparent);
  border-radius: 2px;
}

/* ===== FOOTER PARAGRAPHS ===== */
footer p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ===== FOOTER LISTS ===== */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

footer ul li:hover {
  transform: translateX(5px);
}

/* ===== FOOTER LINKS ===== */
footer ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

footer ul li a:hover {
  color: #60a5fa !important;
}

footer ul li a i.fa-chevron-right {
  font-size: 0.7rem;
  color: #60a5fa;
  transition: all 0.3s ease;
}

footer ul li:hover a i.fa-chevron-right {
  transform: translateX(3px);
}

/* ===== FOOTER CONTACT LIST ===== */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact li i {
  color: #60a5fa;
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.85) !important;
  display: inline;
}

.footer-contact li a:hover {
  color: #ffffff !important;
}

.footer-contact li span {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* ===== FOOTER SOCIAL MEDIA ===== */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50%;
  color: #ffffff !important;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social a:hover {
  background: #3b82f6 !important;
  color: #ffffff !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  border-color: #3b82f6;
}

.footer-social a i {
  font-size: 1rem;
  margin: 0;
}

/* ===== FOOTER DIVIDER ===== */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 2rem 0;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #60a5fa !important;
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 3 Columns */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-company {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1rem;
  }
}

/* Mobile - 1 Column */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem !important;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-company {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-logo-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer ul li {
    text-align: center;
  }

  footer ul li a {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

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

  .footer-copyright,
  .footer-links {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  footer h4 {
    font-size: 1.1rem;
  }

  footer h5 {
    font-size: 1rem;
  }

  footer p,
  footer ul li a,
  .footer-contact li span {
    font-size: 0.875rem;
  }

  .footer-logo-wrapper {
    width: 70px;
    height: 70px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }
}

/* ===== OVERRIDE TAILWIND IF EXISTS ===== */
footer.bg-gradient-to-br,
footer.from-blue-900,
footer.via-blue-800,
footer.to-blue-900 {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%) !important;
}

footer.text-white {
  color: #ffffff !important;
}

/* ============================================
   BACK TO TOP BUTTON STYLES
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

/* ============================================
   FOOTER STYLES - UPDATED WITH BLUE GRADIENT
   Letakkan SETELAH .back-to-top section
   ============================================ */

/* Footer Container dengan Gradient Biru */
footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%) !important;
  color: #ffffff !important;
  padding: 4rem 0 2rem !important;
  position: relative;
  overflow: hidden;
}

/* Decorative Elements untuk Footer */
footer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

footer::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Footer Content Container */
footer .container {
  position: relative;
  z-index: 2;
}

/* Footer Grid */
footer .grid {
  position: relative;
  z-index: 2;
}

/* Footer Headings */
footer h3,
footer h4,
footer h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

footer h4 {
  font-size: 1.25rem;
}

footer h5 {
  font-size: 1.125rem;
}

/* Footer Paragraphs */
footer p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Footer Links */
footer a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: #60a5fa !important;
  transform: translateX(3px);
}

/* Footer Lists */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer ul li a {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
}

/* Footer Social Media Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50%;
  color: #ffffff !important;
  transition: all 0.3s ease;
  text-decoration: none;
  transform: translateX(0) !important;
}

.footer-social a:hover {
  background: #3b82f6 !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Footer Icons */
footer i {
  color: #60a5fa;
  margin-right: 0.5rem;
}

footer .flex.items-start i {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Footer Contact Info */
footer .space-y-3 p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

footer .space-y-3 a {
  color: rgba(255, 255, 255, 0.85) !important;
  transform: translateX(0) !important;
}

footer .space-y-3 a:hover {
  color: #ffffff !important;
  transform: translateX(0) !important;
}

/* Footer HR */
footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 2rem 0;
}

/* Footer Bottom Section */
footer .grid.grid-cols-1.md\\:grid-cols-2 {
  margin-top: 2rem;
}

footer .text-blue-200 {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Footer Space-y utilities */
footer .space-y-4 > * + * {
  margin-top: 1rem;
}

footer .space-y-3 > * + * {
  margin-top: 0.75rem;
}

footer .space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem !important;
  }

  footer h4,
  footer h5 {
    font-size: 1.1rem;
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  footer .grid {
    gap: 2rem;
  }
}

/* Override Tailwind classes if exist */
footer.bg-gradient-to-br {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%) !important;
}

footer.from-blue-900,
footer.via-blue-800,
footer.to-blue-900 {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%) !important;
}

footer.text-white {
  color: #ffffff !important;
}

/* ================= INTRO SLIDE (COMPANY PROFILE) ================= */
.intro-slide {
  background: #f8fafc;
}

.intro-slide .container {
  position: relative;
  min-height: 520px;
}

/* PANEL KIRI */
.intro-left {
  width: 75%;
  background: var(--primary-blue);
  padding: 80px 70px;
  color: white;
  position: relative;
  z-index: 1;
}

.intro-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.85;
}

.intro-title {
  font-size: 52px;
  font-weight: 800;
  margin: 12px 0 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.intro-desc {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.95;
}

/* STAT */
.intro-stats {
  display: flex;
  gap: 22px;
  margin-top: 40px;
}

.intro-card {
  width: 230px;
  height: 80px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.intro-card strong {
  display: block;
  font-size: 34px;
}

.intro-card span {
  font-size: 12px;
  letter-spacing: 1px;
}

.intro-card.dark {
  background: #1c1c1c;
}

.intro-card.light {
  background: #e6e6e6;
  color: #123;
}

/* FOTO KANAN */
.intro-right {
  position: absolute;
  top: 60px;
  right: 0;
  width: 45%;
  background: white;
  padding: 40px;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.intro-right img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

/* DOTS */
.intro-dots {
  position: absolute;
  top: 24px;
  right: 32px;
  display: flex;
  gap: 8px;
}

.intro-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-blue);
}

.intro-dots span:first-child {
  background: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.hero-poster {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('../gambar/10.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* OVERLAY GELAP */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 65%;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(45, 47, 51, 0) 0%,
    rgba(45, 47, 51, 0.75) 12%,
    rgba(45, 47, 51, 0.75) 88%,
    rgba(45, 47, 51, 0) 100%
  );
}

/* KONTEN TENGAH */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
}

/* JUDUL BESAR */
.content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* SUBTITLE */
.content p {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 1rem;
}

/* LINK */
.content span {
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* DOTS */
.dots {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(#fff 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.35;
  z-index: 2;
}

/* CIRCLE */
.circle-bl {
  position: absolute;
  bottom: 15%;
  left: -60px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  z-index: 2;
}

.circle-tr {
  position: absolute;
  top: 10%;
  right: -70px;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  z-index: 2;
}
/* ============================================
   ALERT STYLES
   ============================================ */
.alert {
  border-radius: 12px;
  padding: 1.25rem;
}

.alert-info {
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--secondary-blue);
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 4px solid var(--secondary-blue);
}

/* ============================================
   PAGINATION STYLES
   ============================================ */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination {
  display: flex;
  gap: 10px;
}

.pagination a,
.pagination span {
  min-width: 45px;
  height: 45px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-decoration: none;
  color: var(--dark-text);
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-weight: 600;
}

.pagination a:hover,
.pagination span.active {
  background: linear-gradient(135deg, var(--secondary-blue), var(--primary-blue));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* ============================================
   VENDOR AND PENGADAAN SPECIFIC STYLES
   ============================================ */
/* Custom ordered list styling for blue numbers */
.custom-ordered-list {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.custom-ordered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
}

.custom-ordered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary-blue);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

.service-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-blue);
  font-weight: bold;
}

.service-body ol li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-body ol {
  counter-reset: item;
}

.service-body ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  left: 0;
  color: var(--secondary-blue);
  font-weight: 600;
}

/* ============================================
   TAILWIND CSS ADDITIONS FOR DETAIL PAGE
   Tambahkan di bagian akhir file style.css
   ============================================ */

/* Container & Spacing Utilities */
/* .container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
} */

@media (min-width: 640px) {
  .container { max-width: 640px; }
}
@media (min-width: 768px) {
  .container { max-width: 768px; }
}
@media (min-width: 1024px) {
  .container { max-width: 1024px; }
}
@media (min-width: 1280px) {
  .container { max-width: 1280px; }
}

/* Flexbox & Grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-wrap { flex-wrap: wrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Spacing - Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Spacing - Padding */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.pt-6 { padding-top: 1.5rem; }
.pb-6 { padding-bottom: 1.5rem; }

/* Spacing - Margin */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Width & Height */
.w-5 { width: 1.25rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.w-96 { width: 24rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }

.h-5 { height: 1.25rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-24 { height: 6rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }

.min-w-0 { min-width: 0; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-24 { top: 6rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.-inset-1 { top: -0.25rem; right: -0.25rem; bottom: -0.25rem; left: -0.25rem; }
.z-10 { z-index: 10; }

/* Colors - Background */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-500 { background-color: #6b7280; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }
.bg-emerald-700 { background-color: #047857; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-pink-100 { background-color: #fce7f3; }
.bg-teal-100 { background-color: #ccfbf1; }
.bg-red-100 { background-color: #fee2e2; }

/* Colors - Text */
.text-white { color: #ffffff; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-emerald-600 { color: #059669; }
.text-emerald-700 { color: #047857; }
.text-indigo-600 { color: #4f46e5; }
.text-purple-600 { color: #9333ea; }
.text-orange-600 { color: #ea580c; }
.text-pink-600 { color: #db2777; }
.text-teal-600 { color: #0d9488; }
.text-teal-700 { color: #0f766e; }
.text-red-700 { color: #b91c1c; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-blue-200 { border-color: #bfdbfe; }
.border-blue-600 { border-color: #2563eb; }
.border-emerald-200 { border-color: #a7f3d0; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }

.divide-y > * + * { border-top-width: 1px; }
.divide-gray-100 > * + * { border-color: #f3f4f6; }

/* Border Radius */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-emerald-500\/30 { box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3); }
.shadow-emerald-500\/40 { box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4); }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }

@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.truncate { 
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-pre-line { white-space: pre-line; }

.tracking-wider { letter-spacing: 0.05em; }

/* Effects */
.opacity-10 { opacity: 0.1; }
.opacity-25 { opacity: 0.25; }
.opacity-40 { opacity: 0.4; }

.blur { filter: blur(8px); }
.blur-3xl { filter: blur(64px); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Transform */
.translate-x-0\.5 { transform: translateX(0.125rem); }
.-translate-x-0\.5 { transform: translateX(-0.125rem); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object Fit */
.object-contain { object-fit: contain; }

/* Cursor */
.cursor-not-allowed { cursor: not-allowed; }

/* Space Between */
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

.from-blue-950 { --tw-gradient-from: #172554; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(23, 37, 84, 0)); }
.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); }
.from-blue-400 { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); }
.from-emerald-500 { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); }
.from-emerald-600 { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); }

.via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); }

.to-blue-800 { --tw-gradient-to: #1e40af; }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.to-indigo-400 { --tw-gradient-to: #818cf8; }
.to-emerald-600 { --tw-gradient-to: #059669; }
.to-emerald-700 { --tw-gradient-to: #047857; }

/* Hover States */
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:from-emerald-600:hover { --tw-gradient-from: #059669; }
.hover\:to-emerald-700:hover { --tw-gradient-to: #047857; }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-blue-600:hover { color: #2563eb; }

.hover\:border-blue-600:hover { border-color: #2563eb; }

.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
.hover\:shadow-emerald-500\/40:hover { box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4); }

.hover\:opacity-40:hover { opacity: 0.4; }

.group:hover .group-hover\:bg-blue-600 { background-color: #2563eb; }
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:translate-x-0\.5 { transform: translateX(0.125rem); }
.group:hover .group-hover\:-translate-x-0\.5 { transform: translateX(-0.125rem); }

/* Responsive - Columns */
@media (min-width: 1024px) {
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

/* White with Opacity */
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }

/* Custom Utilities untuk Detail Page */
.text-\[10px\] { font-size: 10px; }

/* Group Utility */
.group { position: relative; }

/* ============================================
   HAPUS/COMMENT SEMUA CSS LAMA JOB DETAIL
   Dari baris ini di style.css:
   ============================================ */
/*
.job-detail-header { ... }
.company-logo { ... }
.company-tag { ... }
.job-title-main { ... }
.location-badge { ... }
.level-badge { ... }
.category-badge { ... }
.job-detail-card { ... }
.card-header-custom { ... }
.card-body-custom { ... }
... dst sampai akhir section job detail
*/

/* ============================================
   ATAU bisa menggunakan Tailwind CDN
   Tambahkan di includes/header.php sebelum </head>:
   ============================================ */
/*
<script src="https://cdn.tailwindcss.com"></script>
<script>
  tailwind.config = {
    theme: {
      extend: {
        colors: {
          'primary-blue': '#1e40af',
          'secondary-blue': '#3b82f6',
        }
      }
    }
  }
</script>
*/

/* ============================================
   PROFILE PAGE STYLES - COMPLETE
   Tambahkan di AKHIR file style.css
   ============================================ */

/* Profile Header Wrapper */
.profile-header-wrapper {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.profile-header-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.profile-header-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Profile Avatar Section */
.profile-avatar-section {
  text-align: center;
  flex-shrink: 0;
}

.profile-avatar-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-avatar-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.5);
}

.btn-change-photo {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-change-photo:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

/* Profile Info Section */
.profile-info-section {
  flex: 1;
}

.profile-name {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.profile-email {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.profile-email i {
  margin-right: 0.5rem;
  opacity: 0.7;
}

/* Profile Completion Card */
.profile-completion-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.completion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.completion-label {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.completion-percentage {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.completion-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.completion-progress {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 50px;
  transition: width 0.5s ease;
}

.completion-hint {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}

.completion-hint i {
  margin-right: 0.5rem;
}

/* Profile Actions */
.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-edit-profile,
.btn-education {
  padding: 0.75rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-edit-profile {
  background: white;
  color: #1e40af;
}

.btn-edit-profile:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #1e40af;
}

.btn-education {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Profile Container */
.profile-container {
  padding: 3rem 0;
}

/* Profile Card */
.profile-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-card-header {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
  padding: 1.5rem;
  border-bottom: 2px solid #dbeafe;
}

.profile-card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e40af;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.profile-card-header h3 i {
  font-size: 1.5rem;
}

.profile-card-body {
  padding: 1.5rem;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-item.full-width {
  grid-column: 1 / -1;
}

.info-item label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: #f8fafc;
  border-radius: 6px;
  border-left: 3px solid #3b82f6;
}

.info-item p i {
  margin-right: 0.5rem;
}

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

.empty-state i {
  font-size: 4rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.empty-state h4 {
  color: #64748b;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.empty-state-small {
  text-align: center;
  padding: 2rem 1rem;
}

.empty-state-small i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.empty-state-small p {
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* Document Item */
.document-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.document-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.document-info {
  flex: 1;
}

.document-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.document-info p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.btn-view-doc,
.btn-upload-doc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.btn-view-doc:hover,
.btn-upload-doc:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  color: white;
}

/* Quick Actions */
.quick-actions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-action-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.quick-action-item:hover {
  background: #f0f9ff;
  transform: translateX(5px);
  border-color: #3b82f6;
}

.quick-action-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1e40af;
  flex-shrink: 0;
}

.quick-action-text {
  flex: 1;
}

.quick-action-text h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.25rem 0;
}

.quick-action-text p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.quick-action-item > i.fa-chevron-right {
  color: #cbd5e1;
  font-size: 1rem;
}

/* Tips Card */
.tips-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
}

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

.tips-list li {
  padding: 0.75rem 0;
  color: #1e40af;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tips-list li i {
  color: #10b981;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* ============================================
   PROFILE EDIT PAGE STYLES
   ============================================ */

.profile-edit-container {
  padding: 3rem 0;
}

.form-label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control,
.form-select {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Profile Preview */
.profile-preview-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e2e8f0;
  display: inline-block;
}

.profile-preview-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 4px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #cbd5e1;
  margin: 0 auto;
}

.current-cv {
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.current-cv i {
  font-size: 1.5rem;
}

.current-cv a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.current-cv a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

/* Save & Cancel Buttons */
.btn-save-profile {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-save-profile:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-cancel-profile {
  background: white;
  color: #64748b;
  border: 2px solid #e2e8f0;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-cancel-profile:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #475569;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.modal-header {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: scale(1.1);
  color: #fbbf24;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
}

.photo-preview-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-profile-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e2e8f0;
  display: inline-block;
}

.modal-profile-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 4px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #cbd5e1;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-group input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
}

.text-muted {
  display: block;
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.btn-cancel,
.btn-save {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-cancel {
  background: #f1f5f9;
  color: #64748b;
}

.btn-cancel:hover {
  background: #e2e8f0;
}

.btn-save {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.btn-save:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ============================================
   USER AVATAR IN NAVBAR
   ============================================ */

.user-avatar-navbar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

/* ============================================
   PROFILE FORM STYLES
   ============================================ */

.biodata-header-wrapper,
.education-header-wrapper,
.training-header-wrapper,
.certification-header-wrapper,
.experience-header-wrapper,
.skills-header-wrapper,
.achievements-header-wrapper {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.biodata-header-content,
.education-header-content,
.training-header-content,
.certification-header-content,
.experience-header-content,
.skills-header-content,
.achievements-header-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.biodata-avatar-section,
.education-avatar-section,
.training-avatar-section,
.certification-avatar-section,
.experience-avatar-section,
.skills-avatar-section,
.achievements-avatar-section {
  text-align: center;
  flex-shrink: 0;
}

/* Avatar styles for all profile-related pages */
.profile-avatar-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.3);
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.profile-avatar-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.5);
}

/* For smaller screens */
@media (max-width: 768px) {
  .profile-avatar-img {
    width: 120px;
    height: 120px;
  }

  .profile-avatar-placeholder {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .profile-avatar-img {
    width: 100px;
    height: 100px;
  }

  .profile-avatar-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
}

/* ============================================
   AVATAR SECTION STYLES
   ============================================ */

.biodata-avatar-section,
.education-avatar-section,
.training-avatar-section,
.certification-avatar-section,
.experience-avatar-section,
.skills-avatar-section,
.achievements-avatar-section {
  text-align: center;
  flex-shrink: 0;
}

.biodata-info-section,
.education-info-section,
.training-info-section,
.certification-info-section,
.experience-info-section,
.skills-info-section,
.achievements-info-section {
  flex: 1;
  color: white;
}

.biodata-name,
.education-name,
.training-name,
.certification-name,
.experience-name,
.skills-name,
.achievements-name {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.biodata-email,
.education-email,
.training-email,
.certification-email,
.experience-email,
.skills-email,
.achievements-email {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.biodata-email i,
.education-email i,
.training-email i,
.certification-email i,
.experience-email i,
.skills-email i,
.achievements-email i {
  margin-right: 0.5rem;
  opacity: 0.7;
}

.biodata-container,
.education-container,
.training-container,
.certification-container,
.experience-container,
.skills-container,
.achievements-container {
  padding: 2rem 0 3rem;
}

/* ============================================
   EDUCATION STYLES
   ============================================ */

.education-list,
.training-list,
.certification-list,
.experience-list,
.skills-list,
.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.education-item,
.training-item,
.certification-item,
.experience-item,
.skill-item,
.achievement-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.education-item:hover,
.training-item:hover,
.certification-item:hover,
.experience-item:hover,
.skill-item:hover,
.achievement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.education-header,
.training-header,
.certification-header,
.experience-header,
.skill-header,
.achievement-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.education-header h5,
.training-header h5,
.certification-header h5,
.experience-header h5,
.skill-header h5,
.achievement-header h5 {
  margin: 0;
  font-size: 1.2rem;
  color: #1e40af;
  font-weight: 700;
}

.education-actions,
.training-actions,
.certification-actions,
.experience-actions,
.skill-actions,
.achievement-actions {
  display: flex;
  gap: 0.5rem;
}

.education-details,
.training-details,
.certification-details,
.experience-details,
.skill-details,
.achievement-details {
  color: #64748b;
}

.institution,
.organization,
.company {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.date-range {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.grade,
.duration,
.credential-id,
.description,
.achievements {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.credential-url a {
  color: #3b82f6;
  text-decoration: none;
}

.credential-url a:hover {
  text-decoration: underline;
}

/* ============================================
   SKILLS STYLES
   ============================================ */

.skill-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.skill-level {
  margin-bottom: 0.75rem;
}

.skill-category {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.skill-description {
  font-size: 0.9rem;
  color: #475569;
}

/* ============================================
   EMPTY STATE STYLES
   ============================================ */

.empty-state {
  text-align: center;
  padding: 3rem 2rem;
}

.empty-state i {
  font-size: 4rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.empty-state h4 {
  color: #64748b;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

/* ============================================
   TAB NAVIGATION STYLES
   ============================================ */

.nav-tabs {
  border-bottom: 2px solid #e2e8f0;
}

.nav-link {
  color: #64748b;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-link:hover,
.nav-link:focus {
  color: #1e40af;
  border-bottom-color: #3b82f6;
  background-color: transparent;
}

.nav-link.active {
  color: #1e40af;
  border-bottom-color: #3b82f6;
  background-color: transparent;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
  .profile-header-content,
  .biodata-header-content,
  .education-header-content,
  .training-header-content,
  .certification-header-content,
  .experience-header-content,
  .skills-header-content,
  .achievements-header-content {
    flex-direction: column;
    text-align: center;
  }

  .profile-info-section,
  .biodata-info-section,
  .education-info-section,
  .training-info-section,
  .certification-info-section,
  .experience-info-section,
  .skills-info-section,
  .achievements-info-section {
    width: 100%;
  }

  .profile-actions {
    width: 100%;
    flex-direction: row;
  }

  .btn-edit-profile,
  .btn-education {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .profile-header-wrapper,
  .biodata-header-wrapper,
  .education-header-wrapper,
  .training-header-wrapper,
  .certification-header-wrapper,
  .experience-header-wrapper,
  .skills-header-wrapper,
  .achievements-header-wrapper {
    padding: 2rem 0 1.5rem;
  }

  .profile-name,
  .biodata-name,
  .education-name,
  .training-name,
  .certification-name,
  .experience-name,
  .skills-name,
  .achievements-name {
    font-size: 2rem;
  }

  .profile-email,
  .biodata-email,
  .education-email,
  .training-email,
  .certification-email,
  .experience-email,
  .skills-email,
  .achievements-email {
    font-size: 1rem;
  }

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

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

  .btn-edit-profile,
  .btn-education {
    width: 100%;
  }

  .modal-content {
    width: 95%;
    margin: 1rem;
  }
}

@media (max-width: 576px) {
  .profile-avatar-img,
  .profile-avatar-placeholder,
  .biodata-avatar-img,
  .biodata-avatar-placeholder,
  .education-avatar-img,
  .education-avatar-placeholder,
  .training-avatar-img,
  .training-avatar-placeholder,
  .certification-avatar-img,
  .certification-avatar-placeholder,
  .experience-avatar-img,
  .experience-avatar-placeholder,
  .skills-avatar-img,
  .skills-avatar-placeholder,
  .achievements-avatar-img,
  .achievements-avatar-placeholder {
    width: 120px;
    height: 120px;
  }

  .profile-name,
  .biodata-name,
  .education-name,
  .training-name,
  .certification-name,
  .experience-name,
  .skills-name,
  .achievements-name {
    font-size: 1.75rem;
  }

  .profile-card-body {
    padding: 1.5rem;
  }

  .completion-percentage {
    font-size: 1.25rem;
  }

  .modal-header {
    padding: 1rem 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-header h3 {
    font-size: 1.1rem;
  }

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

  .btn-cancel,
  .btn-save {
    width: 100%;
  }
}

/* ============================================
   PROFILE PAGE - CLEAN & ELEGANT DESIGN
   HAPUS SEMUA CSS PROFIL LAMA DAN GANTI DENGAN INI
   Tambahkan di AKHIR file style.css
   ============================================ */

/* ===== PAGE WRAPPER ===== */
.profile-page-wrapper {
  background: #f8fafc;
  min-height: calc(100vh - 70px);
  padding: 2rem 0 4rem;
}

.profile-grid-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.profile-sidebar-new {
  position: sticky;
  top: 90px;
}

/* Profile Card in Sidebar - NO BLUE BACKGROUND */
.profile-card-sidebar {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1rem;
}

.profile-avatar-container {
  margin-bottom: 1.5rem;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-pic-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border: 3px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #94a3b8;
}

.profile-username {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.profile-useremail {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.profile-useremail i {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Progress Box */
.profile-completion-box {
  background: #f8fafc;
  padding: 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
}

.completion-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.completion-text {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.completion-percent {
  font-size: 1.25rem;
  font-weight: 800;
  color: #10b981;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.completion-bar-container {
  height: 8px;
  background: #e2e8f0;
  border-radius: 50px;
  overflow: hidden;
}

.completion-bar-progress {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #34d399);
  border-radius: 50px;
  transition: width 0.5s ease;
}

/* Edit Button */
.btn-edit-profile-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-edit-profile-new:hover {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
  color: white;
}

/* Navigation Menu */
.profile-menu-nav {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.menu-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  border-bottom: 1px solid #f1f5f9;
}

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

.menu-nav-item:hover {
  background: #f8fafc;
  color: #1e40af;
  border-left-color: #cbd5e1;
}

.menu-nav-item.active {
  background: linear-gradient(90deg, #eff6ff, white);
  color: #1e40af;
  font-weight: 600;
  border-left-color: #3b82f6;
}

.menu-nav-item i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* ===== MAIN CONTENT ===== */
.profile-content-main {
  min-height: 600px;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.content-section {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeInContent 0.3s ease;
}

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

/* ===== WHITE CARD ===== */
.white-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.card-header-new {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafbfc;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-left i {
  font-size: 1.25rem;
  color: #3b82f6;
}

.header-left h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.edit-link-new {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.edit-link-new:hover {
  color: #1e40af;
  gap: 0.625rem;
}

.card-body-new {
  padding: 1.5rem;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.info-box-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 3px solid #3b82f6;
}

.info-box-item label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.info-box-item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
}

/* ===== CONTACT INFO ===== */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  background: #f8fafc;
  border-radius: 10px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.contact-info-item span {
  color: #1e293b;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ===== TIMELINE ===== */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.timeline-box:hover {
  background: #f0f9ff;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.timeline-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.375rem;
}

.timeline-text-box {
  flex: 1;
  min-width: 0;
}

.timeline-text-box h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.timeline-subtitle {
  margin: 0 0 0.375rem 0;
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 500;
}

.timeline-time {
  margin: 0 0 0.5rem 0;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.timeline-description {
  margin: 0.5rem 0 0 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* ===== CERTIFICATION GRID ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.cert-box {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cert-box:hover {
  background: white;
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cert-icon-new {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.875rem;
}

.cert-icon-info {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
}

.cert-box h6 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cert-box p {
  margin: 0 0 0.5rem 0;
  font-size: 0.875rem;
  color: #64748b;
}

.cert-box small {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ===== SKILLS ===== */
.skill-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag-new {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.125rem;
  background: #f1f5f9;
  border-radius: 50px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.skill-tag-new:hover {
  border-color: #3b82f6;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.skill-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1e293b;
}

.skill-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3125rem 0.6875rem;
  border-radius: 50px;
}

.skill-badge.level-ahli {
  background: #10b981;
  color: white;
}

.skill-badge.level-mahir {
  background: #3b82f6;
  color: white;
}

.skill-badge.level-menengah {
  background: #f59e0b;
  color: white;
}

.skill-badge.level-pemula {
  background: #64748b;
  color: white;
}

/* ===== EMPTY STATE ===== */
.empty-box {
  text-align: center;
  padding: 3rem 2rem;
}

.empty-box i {
  font-size: 3rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.empty-box h4 {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.empty-box p {
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.no-data-text {
  color: #94a3b8;
  font-size: 0.9375rem;
  text-align: center;
  padding: 2rem;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .profile-grid-layout {
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 991px) {
  .profile-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .profile-sidebar-new {
    position: relative;
    top: 0;
  }
  
  .profile-menu-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .menu-nav-item {
    border-left: none;
    border-bottom: 3px solid transparent;
    justify-content: center;
    padding: 0.875rem 0.75rem;
  }
  
  .menu-nav-item.active {
    border-left: none;
    border-bottom-color: #3b82f6;
    background: white;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .profile-page-wrapper {
    padding: 1.5rem 0 3rem;
  }
  
  .profile-card-sidebar {
    padding: 1.5rem 1rem;
  }
  
  .profile-pic,
  .profile-pic-placeholder {
    width: 80px;
    height: 80px;
  }
  
  .profile-username {
    font-size: 1.125rem;
  }
  
  .card-header-new {
    padding: 1rem;
  }
  
  .card-body-new {
    padding: 1rem;
  }
  
  .timeline-box {
    padding: 1rem;
    gap: 1rem;
  }
  
  .timeline-icon-box {
    width: 44px;
    height: 44px;
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .profile-menu-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-nav-item span {
    font-size: 0.875rem;
  }
  
  .header-left h3 {
    font-size: 1rem;
  }
  
  .skill-tags-wrapper {
    gap: 0.5rem;
  }
  
  .skill-tag-new {
    padding: 0.5rem 0.875rem;
  }
}
/* ================================
   PROFILE OVERVIEW GRID
================================ */

.profile-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.overview-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.overview-card i {
  font-size: 1.8rem;
  color: var(--secondary-blue);
  margin-bottom: 0.5rem;
}

.overview-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.overview-card p {
  font-size: 0.85rem;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .profile-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .profile-overview-grid {
    grid-template-columns: 1fr;
  }
}

.alamat-wrapper {
    line-height: 1.7;
    font-size: 0.95rem;
}

.alamat-wrapper.collapsed {
    max-height: 5em;
    overflow: hidden;
}

.alamat-wrapper.expanded {
    max-height: 1000px;
}

.timeline-text-box p {
    margin-bottom: 4px;
}

.timeline-text-box small {
    margin-bottom: 4px;
    display: block;
}

.exp-desc {
    margin-top: 4px !important;
    margin-bottom: 0;
    line-height: 1.4;
}

.timeline-text-box small {
    margin-bottom: 0 !important;
    line-height: 1.3;
}

/* ============================================
   APPLICATION SUCCESS PAGE STYLES
   Tambahkan di AKHIR file style.css
   ============================================ */

.application-success-wrapper {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    min-height: calc(100vh - 70px);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.application-success-wrapper::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.application-success-wrapper::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.success-content-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Success Icon Animation */
.success-icon-wrapper {
    position: relative;
    margin: 0 auto 2.5rem;
    width: 120px;
    height: 120px;
}

.success-icon-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    animation: successPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.success-icon-circle i {
    font-size: 3.5rem;
    color: white;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(16, 185, 129, 0.4);
    }
}

/* Checkmark SVG Animation */
.success-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
}

.checkmark-svg {
    width: 120px;
    height: 120px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #10b981;
    fill: none;
    animation: checkmarkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #10b981;
    animation: checkmarkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes checkmarkStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Success Title */
.success-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #065f46;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Success Message */
.success-message {
    font-size: 1.125rem;
    color: #047857;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.job-position-highlight {
    color: #059669;
    font-weight: 700;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    padding: 0.125rem 0.5rem;
    border-radius: 6px;
}

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

/* Next Steps Card */
.next-steps-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    animation: fadeInUp 0.6s ease 0.7s both;
}

.next-steps-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.next-steps-header i {
    font-size: 1.75rem;
    color: #10b981;
}

.next-steps-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #065f46;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Steps Timeline */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    padding: 1.25rem;
    background: #f0fdf4;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #dcfce7;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #065f46;
    margin: 0 0 0.5rem 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-content p {
    font-size: 0.9375rem;
    color: #047857;
    margin: 0;
    line-height: 1.6;
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-left: 4px solid #3b82f6;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    animation: fadeInUp 0.6s ease 0.9s both;
}

.important-notice i {
    font-size: 1.5rem;
    color: #1e40af;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.important-notice p {
    color: #1e3a8a;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Action Buttons */
.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 1.1s both;
}

.btn-primary-action,
.btn-secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary-action {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-primary-action:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    color: white;
}

.btn-secondary-action {
    background: white;
    color: #047857;
    border: 2px solid #10b981;
}

.btn-secondary-action:hover {
    background: #f0fdf4;
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
    color: #047857;
}

/* Quick Links */
.quick-links-box {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 1.3s both;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #047857;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.quick-link:hover {
    background: #f0fdf4;
    border-color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    color: #065f46;
}

.quick-link i {
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .application-success-wrapper {
        padding: 3rem 0;
    }

    .success-icon-wrapper,
    .success-icon-circle,
    .success-checkmark,
    .checkmark-svg {
        width: 100px;
        height: 100px;
    }

    .success-icon-circle i {
        font-size: 3rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .next-steps-card {
        padding: 1.5rem;
    }

    .next-steps-header h3 {
        font-size: 1.25rem;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }

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

    .btn-primary-action,
    .btn-secondary-action {
        width: 100%;
        justify-content: center;
    }

    .quick-links-box {
        flex-direction: column;
    }

    .quick-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .success-icon-wrapper,
    .success-icon-circle,
    .success-checkmark,
    .checkmark-svg {
        width: 80px;
        height: 80px;
    }

    .success-icon-circle i {
        font-size: 2.5rem;
    }

    .success-title {
        font-size: 1.75rem;
    }

    .next-steps-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .important-notice {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   RIWAYAT LAMARAN PAGE STYLES
   ============================================ */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

.page-header-riwayat {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.page-header-content-riwayat {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.logo-header-riwayat {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-img-riwayat {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.page-header-riwayat h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-header-riwayat p {
    font-size: 1rem;
    opacity: 0.95;
}

.application-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

.application-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(to right, var(--gray-50), white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.job-meta i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    gap: 0.5rem;
}

.status-pending {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.status-reviewed {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.status-interview {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    color: #6b21a8;
}

.status-accepted {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.status-rejected {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

.card-body {
    padding: 2rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.progress-percent {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #1815f8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-bar-container {
    height: 8px;
    background: var(--gray-200);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #1815f8);
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-icon.completed {
    background: linear-gradient(135deg, var(--primary), #1815f8);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-icon.completed::after {
    content: '✓';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid white;
}

.step-icon.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.step-icon.waiting {
    background: var(--gray-100);
    color: var(--gray-600);
}

.step-icon.rejected {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

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

.step-name {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-name.completed {
    color: var(--primary);
}

.step-name.active {
    color: var(--warning);
}

.step-name.waiting {
    color: var(--gray-600);
}

.step-name.rejected {
    color: var(--danger);
}

.step-status {
    font-size: 0.75rem;
    color: var(--gray-600);
}

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

.footer-note {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.footer-note i {
    color: var(--primary);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    color: white;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #667eea);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .page-header-riwayat h1 {
        font-size: 1.5rem;
    }
    
    .page-header-riwayat p {
        font-size: 0.875rem;
    }
    
    .logo-img-riwayat {
        width: 100px;
        height: 90px;
    }
    
    .timeline::before {
        display: none;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.alamat-wrapper {
    line-height: 1.7;
    font-size: 0.95rem;
}

.alamat-wrapper.collapsed {
    max-height: 5em;
    overflow: hidden;
}

.alamat-wrapper.expanded {
    max-height: 1000px;
}

.timeline-text-box p {
    margin-bottom: 4px;
}

.timeline-text-box small {
    margin-bottom: 4px;
    display: block;
}

.exp-desc {
    margin-top: 4px !important;
    margin-bottom: 0;
    line-height: 1.4;
}

.timeline-text-box small {
    margin-bottom: 0 !important;
    line-height: 1.3;
}

.edit-link-new,
.btn-select {
    font-family: inherit;          /* ikut font parent */
    font-size: 14px;               /* sesuaikan jika beda */
    font-weight: 500;              /* samakan ketebalan */
    color: #3b82f6;                /* warna biru link */
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    line-height: 1;
}

.btn-select:hover,
.edit-link-new:hover {
    text-decoration: underline;
}

.normal-actions {
    display: flex;
    align-items: center;   /* kunci biar sejajar vertikal */
    gap: 16px;             /* jarak antar item */
}

.select-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.action-icon {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
}

.action-icon i {
    font-size: 15px;
}

/* warna */
.text-primary { color: #3b82f6; }
.text-danger { color: #ef4444; }

/* disabled state */
.action-icon.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* ======================================
   CERT CARD - HOVER & SELECTED STATE
   ====================================== */

/* Hover */
.cert-box:hover {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Selected → SAMA seperti hover */
.cert-box.selected {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border: 2px solid #3b82f6; /* opsional: biar lebih jelas */
}

/* Hover tetap aktif walau selected */
.cert-box.selected:hover {
    background: #ffffff;
}

/* Saat selection mode, cursor berubah */
.profile-content-main.selection-mode .cert-box {
    cursor: pointer;
}

.cert-clickable {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cert-clickable:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* efek saat diklik */
.cert-clickable:active {
    transform: scale(0.98);
}


.skill-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag-new {
  background: #f1f5ff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-tag-new.soft {
  background: #fff3e9;
}

.skill-remove {
  text-decoration: none;
  font-weight: bold;
  color: #999;
}

.skill-remove:hover {
  color: red;
}

.skill-form-modern {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.skill-input-group,
.skill-select-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6f8fc;
    border-radius: 10px;
    padding: 10px 14px;
    flex: 1;
    min-width: 220px;
}

.skill-icon {
    color: #3b82f6;
    font-size: 16px;
}

.skill-input-group input,
.skill-select-group select {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

.btn-skill-add {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-skill-add:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37,99,235,0.35);
}

.skill-remove {
    background: transparent;
    border: none;
    outline: none;
    color: #ef4444;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 6px;
    padding: 0;
    line-height: 1;
    transition: 0.15s ease;
}

.skill-remove:hover {
    color: #dc2626;
    transform: scale(1.15);
}

/* ===== BULLET TOOLBAR ===== */
.bullet-toolbar {
    margin-bottom: 6px;
}

.bullet-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bullet-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

/* ICON BULLET */
.bullet-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bullet-icon span {
    width: 12px;
    height: 2px;
    background: #6b7280;
    position: relative;
    margin-left: 6px;
}

.bullet-icon span::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #6b7280;
    border-radius: 50%;
}

/* ===== DETAIL ROW ===== */
.row-detail td {
    padding: 0;
    background: transparent;
}

.detail-wrapper {
    padding: 16px 20px;
}

/* ===== DETAIL TABLE ===== */
.detail-table {
    width: 100%;
    border-collapse: collapse;
    background: #f9fafb;
    border-radius: 10px;
    overflow: hidden;
}

.detail-table th {
    background: #f1f5f9;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.detail-table td {
    padding: 12px 16px;
    font-size: 13px;
    color: #1f2937;
}

.detail-table tr + tr td {
    border-top: 1px solid #e5e7eb;
}

.right-logo {
    margin-left: auto;
}

.company-logo-box-grid {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.company-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* SUPER COMPACT JOB CARD */
.job-card .job-card-loker-style {
    height: auto !important;
    border-radius: 12px;
}

/* Padding card lebih kecil */
.job-card .card-body {
    padding: 10px !important;
}

/* Kurangi semua margin bawah */
.job-card .mb-3 {
    margin-bottom: 6px !important;
}

/* Logo lebih kecil */
.company-logo-box-grid img {
    width: 100px !important;
    height: 100px !important;
}

/* Nama perusahaan lebih kecil */
.company-name {
    font-size: 15px;
    margin-bottom: 2px !important;
}

/* Judul pekerjaan lebih kecil */
.job-title-loker-grid {
    font-size: 20px !important;
    line-height: 1.25;
}

/* Badge lebih kecil & rapat */
.badge-tag-grid,
.badge-category-grid {
    font-size: 15px !important;
    padding: 3px 8px !important;
}

/* Lokasi & gaji lebih kecil */
.job-info-grid span {
    font-size: 17px !important;
}

/* Time & deadline kecil */
.time-posted-grid,
.deadline-info {
    font-size: 15px !important;
}

/* Tombol lebih kecil */
.job-card .btn {
    padding: 5px 8px !important;
    font-size: 17px !important;
}

/* Jarak tombol ke atas diperkecil */
.job-card .mt-auto {
    margin-top: 4px !important;
}

/* Header lebih rapat */
.job-card .d-flex.align-items-start {
    gap: 8px !important;
}

/* Container logo */
.company-logo-box-grid {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo image */
.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Logo kanan (perusahaan) lebih kecil */
.company-logo-box-grid.right-logo {
    width: 60px;
    height: 60px;
}

/* Header lebih rapat */
.d-flex.align-items-start.justify-content-between {
    gap: 10px !important;
    margin-bottom: 8px !important;
}

/* ===== TABLE UTAMA ===== */
.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.modern-table thead th {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: #1e3a8a;
    padding: 12px 16px;
}

.modern-table tbody tr {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    border-radius: 10px;
}

.modern-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    vertical-align: middle;
}

.modern-table tbody tr:hover {
    background: #f8fafc;
}

/* ===== BUTTON EYE ===== */
.btn-eye {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.btn-eye:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

/* ===== BADGE STATUS ===== */
.badge-status {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.badge-status.pending {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-status.reviewed {
    background: #e3f2fd;
    color: #1565c0;
}

.badge-status.interview_scheduled {
    background: #fff3e0;
    color: #ef6c00;
}

.badge-status.accepted {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-status.rejected {
    background: #fdecea;
    color: #c62828;
}

/* Riwayat Lamaran Page Specific Styles */
.riwayat-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    padding-bottom: 4rem;
}

/* Page Header */
.page-header-riwayat {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-header-riwayat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content-riwayat {
    position: relative;
    z-index: 1;
    text-align: center;
}

.logo-header-riwayat {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatLogo 3s ease-in-out infinite;
}

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

.logo-header-riwayat img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-header-riwayat h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header-riwayat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 500;
}

/* Statistics Cards */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: -3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

/* Modern Table */
.table-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.table-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.table-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-header h2 i {
    color: #3b82f6;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
}

.modern-table thead {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 2px solid #e2e8f0;
}

.modern-table thead th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #475569;
}

.modern-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.modern-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(239, 246, 255, 0.5), transparent);
    transform: translateX(2px);
}

.modern-table tbody tr:hover::before {
    transform: scaleY(1);
}

.modern-table tbody td {
    padding: 1.25rem 1.5rem;
    color: #1e293b;
    font-size: 0.9375rem;
}

.job-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.job-location {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-location i {
    color: #94a3b8;
    font-size: 0.75rem;
}

.date-display {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-main {
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-main i {
    color: #3b82f6;
    font-size: 0.875rem;
}

.date-time {
    font-size: 0.8125rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-time i {
    font-size: 0.75rem;
}

/* Status Badges - Matching announcement-list.css */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 2px solid;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.status-badge i {
    font-size: 0.875rem;
}

.status-pending {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: #f59e0b;
    color: #78350f;
}

.status-reviewed {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #3b82f6;
    color: #1e3a8a;
}

.status-psikotes {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    border-color: #9333ea;
    color: #581c87;
}

.status-interview {
    background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
    border-color: #6366f1;
    color: #3730a3;
}

.status-onboarding {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-color: #10b981;
    color: #065f46;
}

.status-rejected {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-color: #ef4444;
    color: #991b1b;
}

/* Action Buttons */
.btn-icon {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    border: none;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

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

/* Detail Modal */
.detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

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

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

.detail-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.detail-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.detail-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.detail-job-info {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.detail-job-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.detail-job-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.detail-job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-body {
    padding: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-section-title i {
    color: #3b82f6;
}

.status-timeline {
    position: relative;
    padding-left: 2rem;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1.375rem;
    top: 0.25rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 3px solid #3b82f6;
    z-index: 1;
}

.timeline-item.active .timeline-dot {
    background: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.timeline-content {
    background: #f8fafc;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 3px solid #e2e8f0;
}

.timeline-item.active .timeline-content {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left-color: #3b82f6;
}

.timeline-date {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    border-left: 3px solid #e2e8f0;
}

.info-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 0.9375rem;
    color: #1e293b;
    font-weight: 600;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
    flex-wrap: wrap;
}

.btn-detail {
    flex: 1;
    min-width: 150px;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateY(-2px);
    color: #1e293b;
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    color: white;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsive for Riwayat Lamaran Table - Status and Action Alignment */
@media (max-width: 768px) {
    .modern-table {
        font-size: 0.875rem;
    }

    .modern-table thead {
        display: none;
    }

    .modern-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 1rem;
        position: relative;
    }

    .modern-table tbody td {
        display: block;
        padding: 0.5rem 0;
        text-align: left;
        border: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .modern-table tbody td:last-child {
        border-bottom: none;
    }

    .modern-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #64748b;
        font-size: 0.75rem;
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.25rem;
    }

    /* Default mobile layout for status and action */
    .modern-table tbody tr {
        display: flex;
        flex-direction: column;
    }
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #3b82f6;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.empty-state p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header-riwayat h1 {
        font-size: 2rem;
    }

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

    .modern-table {
        font-size: 0.875rem;
    }

    .modern-table thead {
        display: none;
    }

    .modern-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 1rem;
    }

    .modern-table tbody td {
        display: block;
        padding: 0.5rem 0;
        text-align: left;
        border: none;
    }

    .modern-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #64748b;
        font-size: 0.75rem;
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.25rem;
    }

    .detail-modal-content {
        max-height: 95vh;
        margin: 0.5rem;
    }

    .detail-job-info {
        flex-direction: column;
    }

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

    .btn-detail {
        width: 100%;
    }
}

/* Fix for logo sizing in detail.php similar to how it's done in riwayat_lamaran */
.logo-container-detail {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: floatLogo 3s ease-in-out infinite;
    object-fit: contain;
}

.logo-container-detail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-modal {
    position: fixed;
    inset: 0;
    z-index: 99999; /* lebih tinggi dari navbar */
}

.detail-modal-content {
    z-index: 100000;
}


.detail-header {
    padding: 16px 18px;
}

.detail-job-title {
    font-size: 18px;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* bukan 3-4 */
    gap: 12px;
}

.info-item {
    padding: 10px 12px;
    font-size: 13px;
}

.timeline-content {
    padding: 10px 12px;
}

.timeline-title {
    font-size: 14px;
}

.timeline-desc {
    font-size: 13px;
    line-height: 1.4;
}

.detail-actions {
    padding-top: 12px;
}

.btn-detail {
    padding: 8px 14px;
    font-size: 13px;
}

/* EMAIL */
.contact-info-item {
    display: flex;              /* tetap flex */
    align-items: center;        /* icon center vertikal */
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    width: 100%;                /* ukuran badge tetap */
}

.contact-info-item span {
    font-size: 14px;
    color: #1f2937;
    white-space: normal;        /* 🔑 boleh turun baris */
    word-break: break-word;     /* email panjang aman */
    line-height: 1.4;
}
/* ============================================
   RIWAYAT LAMARAN - STATUS CARDS DESIGN
   Added: Feb 11, 2026
   ============================================ */

/* Status Lamaran Saat Ini Card */
.status-current-card {
    background: #f0f7ff;
    border: 1px solid #d0e4ff;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}

.status-current-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: #e3f2fd;
    border-bottom: 1px solid #d0e4ff;
}

.status-label-text,
.status-update-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #6b7280;
    text-transform: uppercase;
}

.status-current-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
    background: white;
}

.status-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.status-badge-large.status-interview {
    background: #6366f1;
    color: white;
}

.status-badge-large.status-pending {
    background: #f59e0b;
    color: white;
}

.status-badge-large.status-reviewed {
    background: #06b6d4;
    color: white;
}

.status-badge-large.status-psikotes {
    background: #9333ea;
    color: white;
}

.status-badge-large.status-onboarding {
    background: #10b981;
    color: white;
}

.status-badge-large.status-rejected {
    background: #ef4444;
    color: white;
}

.status-update-time {
    font-size: 13px;
    color: #4b5563;
    font-weight: 500;
    white-space: nowrap;
}

.status-current-description {
    padding: 16px 20px;
    background: white;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    border-top: 1px solid #e5e7eb;
}

/* Riwayat Proses Seleksi Timeline */
.status-history-timeline {
    position: relative;
    padding: 4px 0;
}

.history-item {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    position: relative;
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 8px;
    flex-shrink: 0;
    width: 24px;
    margin-right: 12px;
}

.history-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
    border: 2px solid #f3f4f6;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.history-dot.active {
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border: 2px solid #3b82f6;
}

.history-line {
    width: 1px;
    flex: 1;
    background: #e5e7eb;
    margin-top: 2px;
    min-height: 30px;
}

.history-card {
    flex: 1;
    background: white;
    border: none;
    border-radius: 0;
    padding: 0 0 12px 0;
    position: relative;
}

.history-item.current .history-card {
    background: white;
}

.history-card:hover {
    transform: none;
    box-shadow: none;
}

.history-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 6px;
    font-weight: 400;
}

.history-date i {
    color: #9ca3af;
    font-size: 11px;
}

.history-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #1f2937;
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.history-item.current .history-status-badge {
    background: #1f2937;
}

.history-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .status-current-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .status-badge-large {
        width: auto;
    }
    
    .status-update-time {
        width: 100%;
        text-align: left;
    }
    
    .history-item {
        gap: 0;
    }
    
    .history-indicator {
        margin-right: 10px;
    }
    
    .history-card {
        padding: 0 0 10px 0;
    }
    
    .status-current-header {
        padding: 10px 16px;
    }
    
    .status-current-body {
        padding: 14px 16px;
    }
    
    .status-current-description {
        padding: 14px 16px;
    }
}

/* ============================================
   CUSTOM STYLING FOR STATUS LAMARAN SAAT INI
   Styling khusus untuk membedakan Status Lamaran Saat Ini
   dari Riwayat Proses Seleksi
   ============================================ */

/* Status Timeline Current - Background lebih terang dengan gradient biru */
.status-timeline-current .timeline-item-current .timeline-content {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 50%, #7dd3fc 100%) !important;
    border-left: 4px solid #38bdf8 !important;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.2) !important;
}

/* Dot untuk current status - lebih besar dan berwarna */
.status-timeline-current .timeline-item-current .timeline-dot {
    background: #38bdf8 !important;
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.3) !important;
    width: 16px !important;
    height: 16px !important;
    border: 3px solid #0ea5e9 !important;
}

/* Timeline date untuk current status */
.status-timeline-current .timeline-item-current .timeline-date {
    color: #0369a1 !important;
    font-weight: 700 !important;
}

/* Timeline title untuk current status */
.status-timeline-current .timeline-item-current .timeline-title {
    color: #0c4a6e !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
}

/* Timeline description untuk current status */
.status-timeline-current .timeline-item-current .timeline-desc {
    color: #334155 !important;
    font-weight: 500 !important;
}

/* Animasi pulse untuk current status */
@keyframes pulse-current {
    0%, 100% {
        box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.3);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(56, 189, 248, 0.2);
    }
}

.status-timeline-current .timeline-item-current .timeline-dot {
    animation: pulse-current 2s ease-in-out infinite;
}

/* Hover effect untuk current status card */
.status-timeline-current .timeline-item-current .timeline-content:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(56, 189, 248, 0.3) !important;
    transition: all 0.3s ease;
}

/* Responsive adjustments for status current */
@media (max-width: 768px) {
    .status-timeline-current .timeline-item-current .timeline-content {
        padding: 1rem !important;
    }
    
    .status-timeline-current .timeline-item-current .timeline-title {
        font-size: 0.9375rem !important;
    }
}

/* ============================================
   MOBILE UI IMPROVEMENTS - RIWAYAT LAMARAN
   Optimasi tampilan mobile agar lebih compact
   ============================================ */

@media (max-width: 768px) {
    /* Stats Container - 2 kolom compact untuk mobile */
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: -2rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
    }
    
    /* Stat Card - Lebih kecil dan minimalis */
    .stat-card {
        padding: 0.875rem !important;
        border-radius: 12px !important;
        min-height: auto !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    }
    
    .stat-card:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Icon lebih kecil */
    .stat-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.125rem !important;
        margin-bottom: 0.625rem !important;
        border-radius: 10px !important;
    }
    
    /* Label lebih kecil */
    .stat-label {
        font-size: 0.6875rem !important;
        margin-bottom: 0.375rem !important;
        letter-spacing: 0.3px !important;
        line-height: 1.2 !important;
    }
    
    /* Value lebih proporsional */
    .stat-value {
        font-size: 1.75rem !important;
        font-weight: 700 !important;
        line-height: 1 !important;
    }
    
    /* Before element untuk dekorasi */
    .stat-card::before {
        width: 3px !important;
    }
    
    /* Table Container Improvements */
    .table-container {
        border-radius: 16px !important;
    }
    
    .table-header {
        padding: 1rem !important;
    }
    
    .table-header h2 {
        font-size: 1.125rem !important;
    }
    
    /* Modern Table Mobile - Lebih Compact */
    .modern-table tbody tr {
        display: grid !important;
        grid-template-columns: 1fr !important;
        margin-bottom: 0.875rem !important;
        padding: 0.875rem !important;
        border-radius: 10px !important;
    }
    
    .modern-table tbody td {
        padding: 0.375rem 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    
    .modern-table tbody td:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    
    .modern-table tbody td::before {
        font-size: 0.7rem !important;
        margin-bottom: 0.125rem !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Job Title & Location - Lebih compact */
    .job-title {
        font-size: 0.9375rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.25rem !important;
    }
    
    .job-location {
        font-size: 0.8125rem !important;
    }
    
    /* Date Display - Horizontal layout */
    .date-display {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .date-main {
        font-size: 0.8125rem !important;
    }
    
    .date-time {
        font-size: 0.75rem !important;
    }
    
    /* Status Badge - Lebih kecil */
    .status-badge {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
    }
    
    /* Button Icon - Lebih compact */
    .btn-icon {
        padding: 0.5rem 1rem !important;
        font-size: 0.8125rem !important;
    }
    
    /* Page Header Mobile */
    .page-header-riwayat {
        padding: 2rem 0 1.5rem !important;
    }
    
    .page-header-riwayat h1 {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .page-header-riwayat p {
        font-size: 0.875rem !important;
    }
    
    .logo-header-riwayat {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 1rem !important;
    }
    
    /* Empty State Mobile */
    .empty-state {
        padding: 2rem 1rem !important;
    }
    
    .empty-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .empty-state h3 {
        font-size: 1.25rem !important;
    }
    
    .empty-state p {
        font-size: 0.875rem !important;
    }
    
    /* Detail Modal Mobile Improvements */
    .detail-modal-content {
        width: 95% !important;
        max-width: 95% !important;
        margin: 1rem auto !important;
        max-height: 90vh !important;
    }
    
    .detail-header {
        padding: 1rem !important;
    }
    
    .detail-job-title {
        font-size: 1.125rem !important;
    }
    
    .detail-job-meta {
        font-size: 0.75rem !important;
        gap: 0.5rem !important;
    }
    
    .detail-section {
        padding: 1rem !important;
    }
    
    .detail-section-title {
        font-size: 0.9375rem !important;
        padding: 0.75rem !important;
    }
    
    /* Info Grid Mobile - 1 kolom */
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .info-item {
        padding: 0.75rem !important;
    }
    
    .info-label {
        font-size: 0.7rem !important;
    }
    
    .info-value {
        font-size: 0.875rem !important;
    }
    
    /* Timeline Mobile - Lebih compact */
    .status-timeline {
        padding-left: 1.5rem !important;
    }
    
    .timeline-item {
        padding-bottom: 1.25rem !important;
    }
    
    .timeline-content {
        padding: 0.875rem 1rem !important;
    }
    
    .timeline-date {
        font-size: 0.75rem !important;
        margin-bottom: 0.375rem !important;
    }
    
    .timeline-title {
        font-size: 0.875rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .timeline-desc {
        font-size: 0.8125rem !important;
    }
    
    /* Detail Actions Mobile */
    .detail-actions {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding-top: 1rem !important;
    }
    
    .btn-detail {
        width: 100% !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.875rem !important;
    }
}

/* Small Mobile Devices (< 480px) */
@media (max-width: 480px) {
    /* Stats tetap 2 kolom tapi lebih kecil */
    .stats-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.625rem !important;
    }
    
    .stat-card {
        padding: 0.75rem !important;
    }
    
    .stat-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .stat-value {
        font-size: 1.5rem !important;
    }
    
    .page-header-riwayat h1 {
        font-size: 1.5rem !important;
    }
    
    .detail-modal-content {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        max-height: 100vh !important;
    }
}

/* Very Small Mobile - Stats lebih kecil lagi */
@media (max-width: 375px) {
    .stat-card {
        padding: 0.625rem !important;
    }

    .stat-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.875rem !important;
        margin-bottom: 0.375rem !important;
    }

    .stat-label {
        font-size: 0.625rem !important;
    }

    .stat-value {
        font-size: 1.375rem !important;
    }
}

/* ============================================
   SPECIAL STATS CONTAINER FOR 4 CARDS
   Khusus untuk riwayat lamaran - 4 kartu
   ============================================ */

.stats-container-four {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-top: -3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.stat-card-four {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stat-card-four::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.stat-card-four:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.stat-card-four:hover::before {
    transform: scaleY(1);
}

.stat-icon-four {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.stat-label-four {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-value-four {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

/* Responsive for 4 stats cards - IMPROVED MOBILE */
@media (max-width: 768px) {
    .stats-container-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
        margin-top: -2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card-four {
        padding: 0.875rem 0.75rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        min-height: auto;
    }
    
    .stat-icon-four {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin: 0 auto 0.5rem;
        border-radius: 8px;
    }
    
    .stat-label-four {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .stat-value-four {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .stats-container-four {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: -2rem;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .stat-card-four {
        padding: 0.75rem 0.5rem;
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    }
    
    .stat-icon-four {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
        margin: 0 auto 0.375rem;
        border-radius: 7px;
    }
    
    .stat-label-four {
        font-size: 0.65rem;
        margin-bottom: 0.25rem;
        letter-spacing: 0.2px;
        line-height: 1.1;
    }
    
    .stat-value-four {
        font-size: 1.375rem;
        font-weight: 700;
        line-height: 1;
    }
    
    .stat-card-four::before {
        width: 2px;
    }
    
    .stat-card-four:hover {
        transform: translateY(-2px);
    }
}

/* Extra small devices untuk card yang lebih compact */
@media (max-width: 375px) {
    .stats-container-four {
        gap: 0.375rem;
        padding: 0 0.25rem;
    }
    
    .stat-card-four {
        padding: 0.625rem 0.5rem;
    }
    
    .stat-icon-four {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        margin: 0 auto 0.3rem;
    }
    
    .stat-label-four {
        font-size: 0.6rem;
    }
    
    .stat-value-four {
        font-size: 1.25rem;
    }
}

/* ---- Footer Contact: tampilkan fax jika ada ---- */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact li i {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* Tidak ada perubahan visual — footer tetap terlihat sama.
   Data company_name, company_email, company_phone, company_address,
   dan company_description kini dibaca dinamis dari database
   sehingga setiap perubahan di admin Settings > Informasi Perusahaan
   langsung tercermin di footer halaman pelamar. */