/**
* Rumah Jasa Media - Modern CSS
* Updated: 2026
*/

:root {
  --primary-color: #0066cc;
  --primary-dark: #0052a3;
  --primary-light: #3399ff;
  --secondary-color: #1a1a2e;
  --accent-color: #00b894;
  --text-dark: #1a1a2e;
  --text-light: #6c757d;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #00b894 100%);
  --shadow-soft: 0 4px 20px rgba(0, 102, 204, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 102, 204, 0.15);
  --shadow-hover: 0 12px 40px rgba(0, 102, 204, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# General Modern Styles
--------------------------------------------------------------*/
body {
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: 'Poppins', 'Montserrat', sans-serif;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.section-modern {
  padding: 100px 0;
  position: relative;
}

.section-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.section-subtitle-modern {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/*--------------------------------------------------------------
# Modern Header
--------------------------------------------------------------*/
.header-modern {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 15px 0;
  border-bottom: 3px solid transparent;
  border-image: var(--gradient-primary) 1;
}

.header-modern .container {
  position: relative;
}

.header-modern.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-modern .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-modern .logo-text .logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}

.header-modern .logo-text span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Modern Navigation
--------------------------------------------------------------*/
.nav-modern {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-modern .nav-item {
  position: relative;
  z-index: auto;
}

.nav-modern .nav-item:hover {
  z-index: 10002;
}

.nav-modern .nav-link {
  padding: 10px 20px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-modern .nav-link:hover {
  color: var(--primary-color);
  background: rgba(0, 102, 204, 0.05);
}

.nav-modern .nav-link i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-modern .nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* Modern Dropdown */
.dropdown-modern {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 600px;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  z-index: 10000;
  pointer-events: none;
}

.nav-item:hover .dropdown-modern {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-modern .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--text-dark);
  transition: var(--transition);
  text-decoration: none;
}

.dropdown-modern .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.dropdown-modern .dropdown-item i {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.dropdown-modern .dropdown-item:hover i {
  background: var(--primary-color);
  color: white;
}

.dropdown-modern .dropdown-item span {
  font-weight: 500;
}

.dropdown-modern .dropdown-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: #e8e8e8;
  margin: 10px 0;
}

/* CTA Button */
.btn-cta {
  background: var(--primary-color);
  color: white !important;
  padding: 12px 28px !important;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  color: white !important;
}

/*--------------------------------------------------------------
# Hero Section Modern
--------------------------------------------------------------*/
.hero-modern {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-modern .row.align-items-center {
  align-items: flex-start;
}

.hero-modern .hero-illustration {
  align-self: flex-start;
  margin-top: 0;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='1' fill='%230066cc' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 102, 204, 0.1);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
  position: relative;
  min-height: 29px;
}

.hero-badge::after {
  content: '|';
  animation: blink 0.7s infinite;
  margin-left: 2px;
}

.hero-badge.typing-complete::after {
  display: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--primary-color);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
  color: white;
}

.btn-hero-secondary {
  background: transparent;
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(0, 102, 204, 0.2);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: rgba(0, 102, 204, 0.05);
}

/* Tech Hand Illustration */
.hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-hand-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 340px;
  margin: 0 auto;
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  border-radius: 20px;
  border: 3px solid #1976d2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatHouse 6s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(25, 118, 210, 0.2);
  overflow: visible;
}

.tech-house-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
  border-radius: 20px;
  border: 3px solid #1976d2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatHouse 6s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(25, 118, 210, 0.2);
}

@keyframes floatHouse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.tech-hand-svg {
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 550px;
  display: block;
  margin: 0 auto;
}

.tech-house-svg {
  width: 90%;
  height: 90%;
  display: block;
  background: white;
  border-radius: 15px;
  padding: 20px;
}

/* Floating Icons around hand */
.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.floating-1 { top: 8%; left: -5%; animation-delay: 0s; }
.floating-2 { top: 20%; right: -5%; animation-delay: 0.5s; }
.floating-3 { top: 45%; left: -8%; animation-delay: 1s; }
.floating-4 { bottom: 25%; right: -5%; animation-delay: 1.5s; }
.floating-5 { bottom: 10%; left: -5%; animation-delay: 2s; }
.floating-6 { top: 60%; right: -8%; animation-delay: 2.5s; }

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  z-index: 1;
}

.hero-main-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 102, 204, 0.15));
  animation: floatHouse 6s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

/*--------------------------------------------------------------
# Services Section Modern
--------------------------------------------------------------*/
.services-modern {
  background: var(--bg-white);
  padding: 100px 0;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 35px 30px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.service-card:hover .service-icon {
  background: var(--primary-color);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Training Cards */
.service-card.training-card {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
}

.service-card.training-card:hover {
  border-color: transparent;
}

.training-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-color);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.training-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 5px 0;
}

.training-list li i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats-modern {
  background: var(--gradient-primary);
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# About Section Modern
--------------------------------------------------------------*/
.about-modern {
  padding: 100px 0;
  background: var(--bg-light);
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-color);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.about-badge h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}

.about-badge span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Testimonials Modern
--------------------------------------------------------------*/
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(0, 102, 204, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
}

.testimonial-quote i {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.15;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  padding: 2px;
}

.author-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 3px 0;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
}

.testimonial-rating {
  margin-top: 15px;
  display: flex;
  gap: 3px;
}

.testimonial-rating i {
  font-size: 0.9rem;
  color: #ffc107;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners-wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.partners-wrapper::before,
.partners-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.partners-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-partners 25s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 80px;
  padding: 15px 25px;
  background: #f8fafc;
  border-radius: 12px;
  transition: var(--transition);
}

.partner-item:hover {
  background: #eef2f7;
  transform: scale(1.05);
}

.partner-item img {
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-text {
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .partners-track {
    gap: 30px;
  }
  
  .partner-item {
    min-width: 150px;
    padding: 12px 20px;
  }
  
  .partner-text {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Floating Buttons Container
--------------------------------------------------------------*/
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
  align-items: flex-end;
}

.whatsapp-float {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
  order: 1;
}

.whatsapp-float i {
  font-size: 1.4rem;
  color: white;
}

.whatsapp-float span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.scroll-top-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
  transition: var(--transition);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  order: 2;
}

.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn i {
  font-size: 1.2rem;
  color: white;
}

.scroll-top-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }
  
  .whatsapp-float {
    padding: 10px 16px;
  }
  
  .whatsapp-float i {
    font-size: 1.3rem;
  }
  
  .whatsapp-float span {
    font-size: 0.85rem;
  }
  
  .scroll-top-btn {
    width: 40px;
    height: 40px;
  }
  
  .scroll-top-btn i {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Footer Modern
--------------------------------------------------------------*/
.footer-modern {
  background: var(--secondary-color);
  color: white;
  padding: 80px 0 30px;
  width: 100%;
  margin: 0;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Career Page Styles
--------------------------------------------------------------*/
.career-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 150px 0 80px;
  color: white;
  text-align: center;
}

.career-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.career-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.job-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.job-meta i {
  color: var(--primary-color);
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.job-tag {
  background: var(--bg-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--primary-color);
}

.btn-apply {
  background: var(--primary-color);
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn-apply:hover {
  background: var(--primary-dark);
  color: white;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-title {
    font-size: 1.9rem;
  }
  
  .hero-illustration {
    margin-top: 50px;
  }
  
  .dropdown-modern {
    position: static;
    display: none;
    box-shadow: none;
    padding: 10px 0;
    grid-template-columns: 1fr;
    min-width: auto;
  }
  
  .nav-item:hover .dropdown-modern {
    display: grid;
  }
  
  .floating-icon {
    width: 45px;
    height: 45px;
  }
  
  .floating-icon i {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .hero-modern {
    padding-top: 0;
    padding-bottom: 15px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .section-title-modern {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle-modern {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

@media (max-width: 991px) {
  .mobile-nav-toggle-modern {
    display: block;
    z-index: 10002;
    position: relative;
  }
  
  .nav-modern {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
    flex-direction: column;
    align-items: stretch;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 10001;
  }
  
  .nav-modern.active {
    display: flex;
  }

  .nav-modern .nav-item {
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-modern .nav-link {
    padding: 14px 20px;
    font-size: 1rem;
    justify-content: space-between;
  }

  /* Dropdown mobile: tersembunyi default, muncul saat .open */
  .nav-modern .dropdown-modern {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0 15px;
    min-width: unset;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    background: #f8fafc;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: none;
  }

  .nav-modern .nav-item.open .dropdown-modern {
    display: grid;
    visibility: visible;
    max-height: 1000px;
    pointer-events: auto;
  }

  .nav-modern .dropdown-modern .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #ececec;
  }

  .nav-modern .dropdown-modern .dropdown-item:last-child {
    border-bottom: none;
  }

  /* Rotasi chevron saat dropdown terbuka */
  .nav-modern .nav-item.open .nav-link i {
    transform: rotate(180deg);
  }

  .btn-cta.d-none.d-lg-block {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-track {
    display: flex;
    animation: scrollClients 25s linear infinite;
    width: max-content;
}

.clients-wrapper:hover .clients-track {
    animation-play-state: paused;
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-item {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.15);
}

.client-logo-item {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.15);
}

.client-logo-item img {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-text {
    display: block;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 575px) {
    .client-item {
        min-width: 160px;
        padding: 20px;
        height: 80px;
    }
    
    .client-logo-item {
        height: 80px;
        padding: 15px 10px;
    }
    
    .client-text {
        font-size: 0.8rem;
    }
}

/*--------------------------------------------------------------
# BKPM Footer Section
--------------------------------------------------------------*/
.bkpm-section {
    text-align: center;
}
