/* MENU BERANDA ATAU HOME */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-color);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Colors */
:root {
  --main-color: #f1c851;
  --secondary-color: #f6d977;
  --accent-color: #f8e2a0;
  --dark-accent: #d2a93a;
  --text-color: #5e4b1f;
  --light-color: #fff9e6;
  --white: #ffffff;
}

section {
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px; /* Increased padding from 20px to 40px */
}

/* Header and Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 40px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
}

nav ul li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--main-color);
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

nav ul li a:hover {
  color: var(--dark-accent);
}

nav ul li a:hover:after {
  width: 100%;
}

/* Adding active nav link style */
nav ul li a.active {
  color: var(--dark-accent);
}

/* nav ul li a.active:after {
  width: 100%;
} */

/* Language Selector Styles */
.language-selector.fixed {
  position: fixed;
  right: 20px;
  bottom: 85px;
  z-index: 100;
}

.language-toggle-icon {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--main-color, #f1c851);
  color: var(--white, #ffffff);
  border: none;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.language-toggle-icon:hover {
  transform: scale(1.1);
  background-color: var(--dark-accent, #d2a93a);
}

.language-dropdown {
  position: absolute;
  bottom: 100%;
  right: 0;
  background-color: var(--white, #ffffff);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 140px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-bottom: 10px;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: var(--text-color, #333333);
  font-size: 14px;
  transition: all 0.2s ease;
}

.language-option:hover {
  background-color: var(--light-color, #f5f5f5);
}

.language-option.active {
  background-color: var(--main-color, #f1c851);
  font-weight: 500;
}

/* Responsive styles for language selector */
@media (max-width: 768px) {
  .language-selector {
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  .language-selector {
    margin-right: 15px;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px;
  transition: all 0.3s ease;
}

.phone-icon,
.instagram-icon,
.whatsapp-icon {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: var(--main-color);
  color: var(--white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-icon {
  bottom: 20px;
}
.phone-icon {
  bottom: 85px;
}
.instagram-icon {
  bottom: 150px;
  font-size: 20px;
  font-weight: bold;
}
.linkedin-icon {
  bottom: 280px;
  font-size: 20px;
  font-weight: bold;
}
.phone-icon:hover,
.whatsapp-icon:hover {
  transform: scale(1.1);
  background-color: var(--dark-accent);
}

/* Main Content Sections */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%; /* Increased padding from 5% to 8% */
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background-color: var(--light-color);
  margin-bottom: 0;
  padding-bottom: 120px;
  background-image: url("../../assets/img/background2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.curve-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.curve-divider .shape-fill {
  fill: var(--white);
}

.hero-content {
  flex: 1;
  max-width: 550px;
  /* padding-right: 50px; */
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 25px;
  position: relative;
  color: var(--text-color);
  font-weight: 700;
}

.hero-content h1::after {
  content: "✦";
  position: absolute;
  color: var(--main-color);
  font-size: 24px;
  top: -15px;
  right: 120px;
}

.hero-content h1::before {
  content: "✦";
  position: absolute;
  color: var(--dark-accent);
  font-size: 18px;
  top: 0;
  right: 90px;
}

.hero-content p {
  color: #777;
  margin-bottom: 35px;
  line-height: 1.8;
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 30px; /* Ubah dari 15px menjadi 30px */
  transition: all 0.3s;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-bottom: 15px; /* Tambahkan jarak ke bawah */
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(241, 200, 81, 0.3);
  background-color: var(--main-color);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.blob-bg {
  width: 480px;
  height: 480px;
  background-color: var(--accent-color);
  border-radius: 60% 40% 50% 50% / 60% 50% 50% 40%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(210, 169, 58, 0.15);
}

.hero-image .person-img {
  position: absolute;
  height: auto;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center 30%;
}

/* Carousel styles */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: 200px;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: none;
}

.carousel-slide.active {
  opacity: 1;
  display: block;
}

.carousel-navigation {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.prev-btn,
.next-btn {
  background-color: var(--main-color);
  color: white;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: all 0.3s;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--dark-accent);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin: 0 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--main-color);
  transform: scale(1.2);
}

/* Welcome Section */
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8% 120px; /* Increased padding from 5% to 8% */
  position: relative;
  background-color: white;
  margin-bottom: 0;
}

.welcome-section .person-img {
  position: absolute;
  width: auto;
  height: 90%; /* Reduce from 100% to show more of the image */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain; /* Change from 'cover' to 'contain' to prevent cropping */
}

.curve-divider-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-divider-2 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.curve-divider-2 .shape-fill {
  fill: var(--light-color);
}

.welcome-image {
  flex: 1;
  position: relative;
  margin-right: 80px;
}

.welcome-content {
  flex: 1;
  max-width: 550px;
}

.welcome-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.welcome-content h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
}

.welcome-content p {
  color: #777;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 16px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
}

.stat-box {
  text-align: center;
  padding: 24px 15px;
  background-color: #fff;
  border-radius: 12px;
  width: 30%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
  font-size: 42px;
  color: var(--text-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-box:nth-child(1) h3 {
  color: var(--main-color);
}

.stat-box:nth-child(2) h3 {
  color: var(--dark-accent);
}

.stat-box:nth-child(3) h3 {
  color: var(--secondary-color);
}

.stat-box p {
  color: #777;
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}

/* Partners Section Styles */
.partners-section {
  padding: 70px 8% 120px; /* Increased padding from 5% to 8% */
  position: relative;
  background-color: var(--light-color);
  margin-bottom: 0;
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.partners-slider-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.partners-slider {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 140px;
  height: 100px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.curve-divider-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-divider-3 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.curve-divider-3 .shape-fill {
  fill: var(--light-color);
}

/* Animation for the auto-scrolling effect */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2)); /* Half of the total width */
  }
}

/* Testimonials Section */
/* Testimonials Section with Left-Aligned Horizontal Videos */
.testimonials-section {
  padding: 100px 8%;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.decoration-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--main-color) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 1;
}

.decoration-dots-1 {
  top: 50px;
  right: 10%;
  transform: rotate(10deg);
}

.decoration-dots-2 {
  bottom: 70px;
  left: 5%;
  transform: rotate(-15deg);
}

.testimonial-item {
  background: linear-gradient(145deg, #ffffff, #fff9e6);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(241, 200, 81, 0.15);
}

.testimonial-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px;
}

/* Video on the left - horizontal rectangle */
.testimonial-video {
  flex: 1;
  margin-right: 30px;
  width: 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%; /* Explicitly making it horizontal rectangle (less than 16:9) */
  background-color: #000;
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button overlay */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 5;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

/* Hide play button when video is playing */
video:playing ~ .play-button {
  display: none;
}

/* Text on the right */
.testimonial-text {
  flex: 1;
  position: relative;
  width: 55%;
}

.testimonial-quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.7;
}

.testimonial-content {
  margin-bottom: 25px;
  position: relative;
}

.testimonial-content p {
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.author-info p {
  color: var(--dark-accent);
  font-size: 14px;
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f8e2a0, #f1c851);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(241, 200, 81, 0.3);
}

.icon-arrow-left:before {
  content: "←";
}

.icon-arrow-right:before {
  content: "→";
}

/* Animation for the testimonial items */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Section Styles */
.footer-section {
  background-color: var(--text-color);
  color: var(--white);
  padding: 80px 8% 40px;
  position: relative;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
  margin-right: 40px;
  margin-bottom: 30px;
}

.footer-logo-image {
  height: 40px;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 15px;
  margin-top: 15px;
  color: var(--accent-color);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 1;
  min-width: 180px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--main-color);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.footer-column ul li a:hover {
  color: var(--main-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.contact-info .icon {
  margin-right: 10px;
  color: var(--main-color);
  font-size: 16px;
}

.social-media {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: var(--main-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
/* Mobile Responsive Navbar and Hero Section Styles */
@media (max-width: 768px) {
  /* Navbar Styles - UPDATED for slide-down menu */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    z-index: 1000;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    z-index: 1100;
  }

  nav {
    position: fixed;
    top: -100%; /* Changed from left: -100% to top: -100% */
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.5s ease; /* Changed from left to top transition */
    z-index: 1000;
    padding-top: 80px;
  }

  nav.nav-active {
    top: 0; /* Changed from left: 0 to top: 0 */
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }

  nav ul li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    font-size: 18px;
    display: block;
    padding: 10px;
    color: var(--text-color);
    text-decoration: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1100;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
  }

  .hamburger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.toggle .line2 {
    opacity: 0;
  }

  .hamburger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Hero Section Responsive Adjustments */
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 100px 5% 50px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    margin-top: 30px;
    padding-right: 0;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .hero-image {
    width: 100%;
    margin-bottom: 30px;
  }

  .blob-bg {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .carousel-container {
    margin-left: 0;
  }

  .btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Curve Divider Adjustment */
  .curve-divider svg,
  .curve-divider-2 svg {
    height: 40px;
  }

  /* Welcome Section Responsive */
  .welcome-section {
    flex-direction: column;
    padding: 70px 5% 100px;
  }

  .welcome-image {
    margin-right: 0;
    margin-bottom: 40px;
    width: 100%;
  }

  .welcome-content {
    max-width: 100%;
    text-align: center;
  }

  .welcome-content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 100%;
    max-width: 280px;
    margin-bottom: 20px;
  }

  /* Partners section responsive */
  .partners-section {
    padding: 50px 5% 100px;
  }

  /* Testimonials Section Responsive */
  .testimonials-section {
    padding: 50px 5%;
  }
  
  .testimonial-inner {
    flex-direction: column;
    gap: 30px;
  }
  
  .testimonial-video {
    width: 100%;
    margin-right: 0;
    aspect-ratio: 16/9;
  }
  
  .testimonial-text {
    width: 100%;
    padding: 0;
  }


  /* Footer Centered on Mobile */
  .footer-section {
    text-align: center;
  }

  .footer-content {
    justify-content: center;
  }

  .footer-logo {
    text-align: center;
    margin-right: 0;
  }

  .footer-logo-image {
    margin: 0 auto;
    display: block;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h3 {
    display: inline-block;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column ul {
    text-align: center;
  }

  .footer-column ul li a {
    display: inline-block;
  }

  .footer-column ul li a:hover {
    padding-left: 0;
  }

  .contact-info li {
    justify-content: center;
    align-items: center;
  }
}

/* Additional Mobile Responsiveness for Small Screens */
@media (max-width: 480px) {
  .hero-section {
    padding: 80px 5% 30px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .blob-bg {
    width: 250px;
    height: 250px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 13px;
    display: block;
    margin: 10px auto;
    text-align: center;
    background-color: #e9c856; /* Warna kuning seperti di gambar */
    border: none;
    border-radius: 25px; /* Membuat tombol melengkung */
    color: #000;
    font-weight: 500;
    width: 80%; /* Lebar tombol sekitar 80% dari container */
    max-width: 300px; /* Lebar maksimum tombol */
  }

  /* Footer more responsive on small screens */
  .footer-section {
    padding: 50px 5% 30px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-column {
    min-width: 100%;
    padding-right: 0;
  }
}

/* Responsif */
@media screen and (max-width: 480px) {
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .testimonial-quote {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .author-avatar {
    width: 45px;
    height: 45px;
  }
  
  .author-name {
    font-size: 1rem;
  }
  
  .author-title {
    font-size: 0.8rem;
  }
  
  .testimonial-author-row {
    flex-wrap: wrap;
  }
  
  .author-avatar {
    order: 1;
    margin-right: auto;
  }
  
  .author-name {
    order: 2;
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
  
  .author-title {
    order: 3;
    width: 100%;
    text-align: left;
  }
}

/* Responsive styles for partners section */
@media (max-width: 992px) {
  .partners-section {
    padding: 70px 6% 120px; /* Slightly reduced padding for smaller screens */
  }

  .partners-container {
    gap: 30px;
  }

  .partner-logo {
    width: 120px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 50px 6% 100px; /* Slightly reduced padding for smaller screens */
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .partners-container {
    gap: 25px;
  }

  .partner-logo {
    width: 110px;
    height: 80px;
    padding: 15px;
  }

  .partner-logo img {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 50px 5% 100px; /* Maintain some padding even on smallest screens */
  }

  .partners-slider {
    gap: 20px;
  }

  .partner-logo {
    width: 90px;
    height: 70px;
    padding: 12px;
  }

  .partner-logo img {
    max-height: 50px;
  }
}

/* Responsive styles for footer */
@media (max-width: 992px) {
  .footer-section {
    padding: 70px 6% 40px;
  }

  .footer-logo {
    margin-right: 0;
    min-width: 100%;
    margin-bottom: 50px;
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 60px 6% 30px;
  }

  .footer-column {
    min-width: 45%;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 50px 5% 30px;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    margin: 0 6px;
    font-size: 12px;
  }
}

/* MENU ABOUT ATAU TENTANG */

/* Page Title Section */
.page-title-section {
  padding: 140px 8% 100px;
  position: relative;
  text-align: center;
  background-color: var(--light-color);
  background-image: url("../../assets/img/background2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.page-title-content h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}
/* 
.page-title-content p {
  color: #777;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 30px;
} */

.curve-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.curve-divider .shape-fill {
  fill: var(--white);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center; /* Membuat breadcrumb berada di tengah */
  margin-top: 15px; /* Menambah jarak dari judul */
  font-size: 18px; /* Memperbesar ukuran font */
  font-weight: 500; /* Membuat teks sedikit lebih tebal */
}

.breadcrumb a {
  color: #8a6d21; /* Warna yang lebih kontras, masih senada dengan tema coklat/gold */
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #5e4a14; /* Warna lebih gelap saat hover */
  text-decoration: underline;
}

.breadcrumb .separator {
  margin: 0 12px; /* Menambah jarak antara teks dan separator */
  color: #8a6d21;
  font-size: 20px; /* Ukuran separator yang lebih besar */
}

.breadcrumb .current {
  color: #5e4a14; /* Warna lebih gelap untuk halaman saat ini */
  font-weight: 600; /* Lebih tebal untuk menunjukkan halaman saat ini */
}

@media (max-width: 480px) {
  /* Reset struktur halaman dengan mempertahankan background */
  .page-title-section {
    display: flex !important;
    flex-direction: column !important;
    padding: 90px 5% 30px !important;
    height: auto !important;
    min-height: 200px !important; /* Memberi ruang untuk gelombang */
    position: relative !important;
    overflow: visible !important; /* Penting agar lengkungan terlihat */
  }
  
  /* Mengatur konten judul */
  .page-title-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    position: relative !important;
    z-index: 2 !important; /* Pastikan di atas background */
  }
  
  /* PERBAIKAN: Jangan sembunyikan semua elemen, hanya yang tidak perlu */
  /* Hapus baris ini:
  .page-title-section > *:not(.page-title-content):not(.breadcrumb) {
    display: none !important;
  }
  */
  
  /* Breadcrumb fix dengan latar transparan */
  .breadcrumb {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 20px !important;
    padding: 0 !important;
    background: transparent !important;
    z-index: 3 !important; /* Pastikan di atas background */
  }
  
  /* Hapus semua height fixed kecuali untuk elemen background */
  .page-title-section *:not(h1):not(a):not(span):not([class*="background"]):not([class*="wave"]):not([class*="curve"]) {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}

/* About Profile Section */
.about-profile-section {
  padding: 100px 8%;
  background-color: var(--white);
  position: relative;
}

.profile-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-image {
  flex: 1;
  min-width: 350px;
  padding-right: 60px;
}

.profile-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.profile-content {
  flex: 1;
  min-width: 350px;
}

.profile-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
}

.profile-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
}

.profile-content p {
  color: #777;
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 16px;
}

.profile-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.profile-content ul li {
  color: #777;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 8px;
}

.signature {
  font-family: "Brush Script MT", cursive;
  font-size: 32px;
  color: var(--dark-accent);
  margin-top: 40px;
}

/* Education & Certifications Section */
.education-section {
  padding: 100px 8%;
  background-color: var(--light-color);
  position: relative;
}

.education-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.section-header p {
  color: #777;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--main-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 3px solid var(--main-color);
  top: 20px;
  border-radius: 50%;
  z-index: 1;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 25px;
  background-color: var(--white);
  position: relative;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.timeline-content h4 {
  font-size: 16px;
  color: var(--dark-accent);
  margin-bottom: 10px;
  font-weight: 500;
}

.timeline-content p {
  color: #777;
  font-size: 14px;
}

.timeline-date {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--accent-color);
  color: var(--text-color);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.certification-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.certification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certification-image {
  height: 180px;
  overflow: hidden;
}

.certification-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certification-info {
  padding: 25px;
}

.certification-info h3 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.certification-info p {
  color: #777;
  font-size: 14px;
  margin-bottom: 15px;
}

.certification-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--dark-accent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-title-section,
  .about-profile-section,
  .education-section,
  .business-section {
    padding: 140px 6%;
  }

  .profile-image {
    padding-right: 40px;
  }

  .business-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .footer-section {
    padding: 70px 6% 40px;
  }
}

@media (max-width: 992px) {
  .profile-container {
    flex-direction: column;
  }

  .profile-image {
    min-width: 100%;
    padding-right: 0;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
  }

  .profile-content {
    min-width: 100%;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 21px;
  }

  .right {
    left: 0;
  }

  .footer-logo {
    margin-right: 0;
    text-align: center;
    min-width: 100%;
    margin-bottom: 50px;
  }

  .footer-links {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-title-section,
  .about-profile-section,
  .education-section,
  .business-section {
    padding: 60px 5%;
  }

  .page-title-content h1 {
    font-size: 36px;
  }

  .profile-content h2,
  .section-header h2 {
    font-size: 28px;
  }

  .certifications-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-title-section,
  .about-profile-section,
  .education-section,
  .business-section {
    padding: 100px 5%;
  }

  .page-title-content h1 {
    font-size: 30px;
  }

  .profile-content h2,
  .section-header h2 {
    font-size: 24px;
  }

  .timeline-content {
    padding: 15px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }

  .footer-section {
    padding: 50px 5% 30px;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    margin: 0 6px;
    font-size: 12px;
  }
}
/* Updated Certification Section Styles */
.certification-section {
  padding: 100px 8%;
  background-color: var(--white);
}

.certification-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.certification-section .section-header h2 {
  font-size: 36px;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.certification-section .section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.certification-section .section-header p {
  color: #777;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* New horizontal layout styles */
.certification-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 15px;
  overflow-x: auto; /* Allow horizontal scrolling on small screens */
}

.certification-card {
  background-color: var(--light-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 1 1 25%;
  min-width: 225px;
  margin-bottom: 0;
}

.certification-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-left {
  width: 100%;
  background-color: rgba(241, 200, 81, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.logo-container {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.logo-container img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  object-position: center;
}

.card-right {
  width: 100%;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cert-title {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.cert-desc {
  color: #777;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: center;
  flex-grow: 1;
}

.cert-button {
  align-self: center;
  display: inline-block;
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cert-button:hover {
  background-color: var(--dark-accent);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .certification-container {
    padding-bottom: 15px; /* Add space for scrollbar */
  }

  .certification-card {
    min-width: 200px;
  }

  .cert-button {
    padding: 8px 15px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  /* Keep horizontal layout but allow scrolling */
  .certification-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    padding-bottom: 10px;
  }

  .certification-container::-webkit-scrollbar {
    height: 6px;
  }

  .certification-container::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 10px;
  }

  .certification-card {
    min-width: 180px;
    margin-right: 5px;
  }

  .card-left {
    padding: 15px;
  }

  .logo-container {
    width: 60px;
    height: 60px;
  }
}
/* Business Section */

.business-section {
  background: var(--light-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.business-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-title {
  text-align: center;
  color: var(--text-light);
  font-size: 36px;
  margin-bottom: 50px;
  font-family: "Playfair Display", serif;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 25px;
  margin-top: 50px;
}

.business-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid rgba(232, 164, 75, 0.1);
  transition: all 0.3s ease;
  background: white;
}

.business-item:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 164, 75, 0.3);
  box-shadow: 0 10px 20px rgba(232, 164, 75, 0.1);
}

.business-item.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.business-item.tall {
  grid-column: span 1;
  grid-row: span 2;
}

.business-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.business-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(
    to top,
    rgba(94, 75, 31, 0.85),
    rgba(210, 169, 58, 0.75)
  );
  color: var(--text-light);
  transition: all 0.3s ease;
}

.business-item:hover .business-overlay {
  bottom: 0;
}

.business-item:hover img {
  transform: scale(1.1);
}

/* Kelas untuk mobile touch devices */
.business-item.active .business-overlay {
  bottom: 0;
}

.business-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}

.business-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--accent-color);
}

.business-overlay p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--white);
}

@media (max-width: 992px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 768px) {
  .business-section {
    padding: 60px 0;
  }

  .business-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 20px;
  }

  .business-item.wide,
  .business-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  /* Menghapus bottom: 0 dan opacity: 1 agar deskripsi tidak tampil secara default */
  /* .business-overlay {
    bottom: 0;
    opacity: 1;
  } */

  .business-overlay h3 {
    font-size: 20px;
  }
  
  /* Menambahkan informasi visual bahwa item dapat di-tap */
  .business-item::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    /* background-color: rgba(232, 164, 75, 0.8); */
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  .business-item.active::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E");
  }
}

/* MENU DETAIL SERTIFIKASI ATAU DETAIL CERTIFICATION */

/* Certification Detail Section */
.certification-detail-section {
  padding: 80px 8%;
  background-color: var(--white);
}

.certification-detail-container {
  max-width: 1100px;
  margin: 0 auto;
}

.certification-detail-header {
  text-align: center;
  margin-bottom: 60px;
}

.certification-detail-badge {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 5px solid var(--main-color);
}

.certification-detail-badge img {
  width: 90px;
  height: auto;
}

.certification-detail-title {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.certification-detail-subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.certification-detail-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.meta-item {
  display: flex;
  align-items: center;
  background-color: var(--light-color);
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}

.meta-icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-color);
}

.meta-text h4 {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.meta-text p {
  font-size: 14px;
  color: #777;
}

.certification-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.certification-detail-description,
.certification-detail-benefits {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-title {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.content-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
}

.certification-detail-description p {
  margin-bottom: 20px;
  color: var(--text-color);
}

.certification-detail-benefits ul {
  list-style: none;
}

.certification-detail-benefits ul li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.certification-detail-benefits ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--main-color);
  font-weight: bold;
}

.certification-detail-process {
  margin-bottom: 80px;
}

.process-title {
  text-align: center;
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.process-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--main-color);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 auto 20px;
  border: 5px solid var(--white);
}

.step-title {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.step-description {
  font-size: 14px;
  color: #777;
}

.certification-detail-cta {
  background-color: var(--main-color);
  padding: 60px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.certification-detail-cta:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.certification-detail-cta:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.cta-title {
  font-size: 32px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-text {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background-color: var(--text-color);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--dark-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .certification-detail-section {
    padding: 70px 6%;
  }

  .certification-detail-cta {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .certification-detail-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-steps:before {
    display: none;
  }

  .process-step {
    margin-bottom: 40px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-title-section {
    padding: 90px 5%;
  }

  .page-title-content h1 {
    font-size: 36px;
  }

  .certification-detail-section {
    padding: 50px 5%;
  }

  .certification-detail-title {
    font-size: 30px;
  }

  .certification-detail-meta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .meta-item {
    width: 100%;
  }

  .certification-detail-cta {
    padding: 30px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-text {
    font-size: 16px;
  }

  .footer-section {
    padding: 60px 6% 30px;
  }

  .footer-column {
    min-width: 45%;
  }
}

@media (max-width: 480px) {
  .certification-detail-badge {
    width: 120px;
    height: 120px;
  }

  .certification-detail-badge img {
    width: 70px;
  }

  .certification-detail-description,
  .certification-detail-benefits {
    padding: 25px;
  }

  .content-title {
    font-size: 20px;
  }

  .certification-detail-cta {
    padding: 25px;
  }

  .cta-title {
    font-size: 22px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 14px;
  }

  .footer-section {
    padding: 50px 5% 30px;
  }

  .footer-column {
    min-width: 100%;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .whatsapp-icon {
    bottom: 15px;
    margin-right: 19px;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}

/* MENU COURSE ATAU PELATIHAN */

/* Training Categories Section */
.training-categories-section {
  padding: 60px 8%;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(24px, 5vw, 36px);
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.section-header p {
  color: #777;
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(14px, 4vw, 16px);
  line-height: 1.8;
  padding: 0 15px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 350px), 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background-color: var(--light-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.category-card h3 {
  color: var(--text-color);
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 600;
  margin-bottom: 15px;
}

.category-card p {
  color: #777;
  font-size: clamp(13px, 3vw, 15px);
  margin-bottom: 25px;
  line-height: 1.6;
}

.category-link {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 600;
  transition: all 0.3s ease;
  width: auto;
  max-width: 90%;
}

.category-link:hover {
  background-color: var(--dark-accent);
  transform: translateY(-3px);
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .training-categories-section {
    padding: 50px 6%;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .categories-grid {
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  .training-categories-section {
    padding: 40px 5%;
  }
  
  .section-header h2::after {
    width: 40px;
    bottom: -8px;
  }
  
  .categories-grid {
    margin-top: 30px;
    gap: 20px;
  }
  
  .category-card {
    padding: 25px 15px;
  }
  
  .category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .training-categories-section {
    padding: 30px 4%;
  }
  
  .section-header {
    margin-bottom: 25px;
  }
  
  .section-header h2::after {
    width: 30px;
    height: 2px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    margin-top: 25px;
    gap: 20px;
  }
  
  .category-card {
    padding: 20px 15px;
  }
  
  .category-icon {
    width: 70px;
    height: 70px;
  }
  
  .category-link {
    padding: 8px 16px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
}

/* MENU DETAIL PELATIHAN ATAU DETAIL COURSE */

/* Course Detail Styles - Responsif */
.course-detail-section {
  background-color: var(--white);
  padding: 60px 5%;
}

.course-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.course-main-content {
  flex: 2;
  min-width: 300px;
  width: 100%;
}

.course-sidebar {
  flex: 1;
  min-width: 280px;
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: fit-content;
  width: 100%;
}

.course-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.course-title {
  font-size: clamp(24px, 5vw, 32px);
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.3;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  align-items: center;
  color: #777;
  font-size: 14px;
}

.meta-item i {
  margin-right: 5px;
  color: var(--main-color);
}

.course-tabs {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-links {
  display: flex;
  list-style: none;
  min-width: max-content;
}

.tab-link {
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
}

.tab-link.active {
  color: var(--dark-accent);
}

.tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.course-description {
  margin-bottom: 30px;
}

.course-description h3 {
  font-size: clamp(20px, 4vw, 24px);
  margin-bottom: 15px;
  color: var(--text-color);
}

.course-description p {
  margin-bottom: 15px;
  color: #666;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
}

.curriculum-item {
  background-color: var(--light-color);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
}

.curriculum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.curriculum-title {
  font-weight: 500;
  color: var(--text-color);
  font-size: clamp(14px, 3.5vw, 16px);
}

.lesson-list {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: none;
}

.lesson-list.active {
  display: block;
}

.lesson-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  color: #666;
  font-size: 14px;
}

.price-box {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.course-price {
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.price-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.enroll-btn {
  background-color: var(--main-color);
  color: var(--text-color);
  border: none;
  border-radius: 5px;
  padding: 12px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  font-size: clamp(14px, 3vw, 16px);
}

.enroll-btn:hover {
  background-color: var(--dark-accent);
  color: var(--white);
}

.course-info-list {
  list-style: none;
}

.course-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  flex-wrap: wrap;
}

.course-info-label {
  color: #777;
}

.course-info-value {
  font-weight: 500;
  color: var(--text-color);
}

.instructor-box {
  margin-top: 25px;
}

.instructor-title {
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.instructor-info {
  display: flex;
  align-items: center;
}

.instructor-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.instructor-name {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 5px;
}

.instructor-role {
  font-size: 13px;
  color: #777;
}

/* Course Layout with Sidebar */
.course-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.course-content {
  flex: 1 1 65%;
  min-width: 300px;
  width: 100%;
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
  font-size: clamp(16px, 4vw, 20px);
  margin-bottom: 15px;
  color: var(--text-color);
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 10px;
}

/* Course List in Sidebar */
.sidebar-course-list,
.sidebar-cert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-course-list li,
.sidebar-cert-list li {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
}

.sidebar-course-list li:last-child,
.sidebar-cert-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-course-list a,
.sidebar-cert-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s;
}

.sidebar-course-list a:hover,
.sidebar-cert-list a:hover {
  transform: translateX(5px);
}

.sidebar-course-list img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 10px;
}

.sidebar-course-info h4,
.cert-info h4 {
  font-size: clamp(14px, 3.5vw, 16px);
  margin: 0 0 5px;
  font-weight: 600;
}

.sidebar-course-info p,
.cert-info p {
  font-size: 14px;
  margin: 0;
  color: var(--main-color);
}

/* Certification List Styling */
.cert-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--main-color);
  flex-shrink: 0;
}

/* CTA Widget */
.sidebar-cta {
  background: linear-gradient(135deg, var(--main-color), #16181c);
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-cta h3 {
  font-size: clamp(16px, 4vw, 20px);
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-cta p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: clamp(13px, 3vw, 14px);
}

.sidebar-cta-button {
  display: block;
  background-color: white;
  color: var(--main-color);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: clamp(13px, 3vw, 14px);
}

.sidebar-cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Course Detail Styles */
.course-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.course-description h2 {
  font-size: clamp(20px, 5vw, 28px);
  margin-bottom: 20px;
  color: var(--text-color);
}

.course-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.course-feature {
  background-color: var(--light-color);
  padding: 12px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: clamp(13px, 3vw, 14px);
}

.feature-icon {
  margin-right: 10px;
  color: var(--main-color);
}

.register-button {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--text-color);
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: clamp(13px, 3vw, 14px);
}

.register-button:hover {
  background-color: var(--main-color-dark);
  transform: translateY(-3px);
}

/* Media Queries */
@media screen and (max-width: 992px) {
  .course-detail-section {
    padding: 50px 5%;
  }
  
  .course-detail-container {
    gap: 30px;
  }
  
  .course-image {
    height: auto;
    max-height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .course-detail-section {
    padding: 40px 4%;
  }
  
  .course-detail-container {
    flex-direction: column;
    gap: 25px;
  }
  
  .course-main-content,
  .course-sidebar {
    min-width: 100%;
  }
  
  .course-layout {
    flex-direction: column;
  }
  
  .course-content,
  .course-sidebar {
    flex: 1 1 100%;
  }
  
  .course-meta {
    gap: 10px;
  }
  
  .tab-link {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .curriculum-item {
    padding: 12px;
  }
  
  .instructor-image {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 480px) {
  .course-detail-section {
    padding: 30px 4%;
  }
  
  .course-sidebar {
    padding: 20px 15px;
  }
  
  .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .meta-item {
    width: 100%;
  }
  
  .curriculum-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .course-info-item {
    flex-direction: column;
    gap: 5px;
  }
  
  .course-info-value {
    width: 100%;
  }
  
  .sidebar-course-list img {
    width: 50px;
    height: 50px;
  }
  
  .course-feature {
    width: 100%;
  }
  
  .register-button {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* MENU SERTIFIKASI BNSP ATAU COURSE BNSP */

/* Course Content Styles */
.course-content-section {
  padding: 80px 8%;
  background-color: var(--white);
}

.course-container {
  max-width: 1200px;
  margin: 0 auto;
}

.course-intro {
  text-align: center;
  margin-bottom: 60px;
}

.course-intro h2 {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.course-intro h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.course-intro p {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}

.bnsp-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 70px;
}

.benefit-card {
  flex: 0 0 calc(33.333% - 30px);
  min-width: 300px;
  background-color: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.benefit-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.course-types {
  margin-bottom: 80px;
}

.course-types h2 {
  text-align: center;
  font-size: 32px;
  color: var(--text-color);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.course-types h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.course-card {
  flex: 0 0 calc(50% - 30px);
  min-width: 300px;
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.course-image {
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-details {
  padding: 25px;
}

.course-details h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.course-details p {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.course-details .course-meta {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 14px;
  margin-bottom: 20px;
}

.course-cta {
  text-align: center;
}

.course-btn {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 10px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.course-btn:hover {
  background-color: var(--dark-accent);
  color: var(--white);
}

.registration-section {
  background-color: var(--accent-color);
  padding: 60px 8%;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 80px;
  margin-top: 50px;
}

.registration-section h2 {
  font-size: 32px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.registration-section p {
  color: var(--text-color);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.register-btn {
  display: inline-block;
  background-color: var(--text-color);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background-color: var(--dark-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .course-content-section {
    padding: 70px 6%;
  }
}

@media (max-width: 992px) {
  .benefit-card {
    flex: 0 0 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .course-content-section {
    padding: 60px 5%;
  }

  .course-intro h2 {
    font-size: 30px;
  }

  .benefit-card {
    flex: 0 0 100%;
  }

  .course-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .course-content-section {
    padding: 50px 5%;
  }

  .course-intro h2 {
    font-size: 26px;
  }
}

/* MENU DETAIL SERTIFIKASI BNSP ATAU DETAIL COURSE BNSP */

/* BNSP Certification Detail Specific Styles */
.section-title {
  font-size: clamp(24px, 5vw, 32px);
  color: #6b5b2e;
  margin: 30px 0 20px;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 10px;
}

.benefit-icon {
  color: var(--main-color);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 18px;
  margin-top: 2px;
}

.benefit-text {
  line-height: 1.5;
  font-size: clamp(14px, 3vw, 16px);
}

/* Certification Process Steps */
.certification-process {
  margin: 25px 0 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.process-step {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #f9d16b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 28px;
  margin: 0 auto 15px;
  box-shadow: 0 3px 8px rgba(249, 209, 107, 0.3);
}

.step-content {
  padding: 0 10px;
}

.step-content h4 {
  margin: 0 0 12px;
  font-size: clamp(18px, 4vw, 22px);
  color: #6b5b2e;
  font-weight: 600;
}

.step-content p {
  margin: 0;
  line-height: 1.6;
  color: #777;
  font-size: clamp(14px, 3vw, 16px);
}

/* Active certification in sidebar */
.active-cert {
  background-color: rgba(var(--main-color-rgb), 0.1);
  border-radius: 5px;
  padding: 5px;
  transform: translateX(5px);
}

/* Media Queries */
@media (max-width: 992px) {
  .certification-process {
    gap: 15px;
  }
  
  .process-step {
    padding: 15px 12px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .section-title {
    margin: 25px 0 15px;
  }
  
  .certification-process {
    flex-direction: column;
    gap: 15px;
  }
  
  .process-step {
    flex: 1 1 100%;
    min-width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    padding: 15px;
  }
  
  .step-number {
    margin: 0 15px 0 0;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-content h4 {
    margin-bottom: 8px;
  }
  
  .cert-levels {
    flex-direction: column;
  }

  .cert-level {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
    margin: 20px 0 15px;
  }
  
  .benefits-list li {
    margin-bottom: 12px;
  }
  
  .benefit-icon {
    font-size: 16px;
  }
  
  .process-step {
    padding: 12px 10px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 10px;
  }
  
  .step-content h4 {
    font-size: 16px;
  }
  
  .step-content p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .active-cert {
    padding: 3px;
  }
}

/* MENU CLIENT ATAU KLIEN */
/* Clients Section */
.clients-section {
  padding: 80px 8%;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(241, 200, 81, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(241, 200, 81, 0.03) 0%,
      transparent 40%
    );
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 36px;
  color: var(--text-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.section-title p {
  color: #777;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.clients-showcase {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  gap: 30px;
}

.client-item {
  width: 300px;
  height: 300px;
  position: relative;
  perspective: 1000px;
  transition: all 0.5s ease;
}

.client-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}

.client-item:hover .client-inner {
  transform: rotateY(180deg);
}

.client-front,
.client-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
}

.client-front {
  background: linear-gradient(145deg, var(--light-color), var(--white));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(241, 200, 81, 0.1);
}

.client-back {
  background: linear-gradient(145deg, var(--main-color), var(--dark-accent));
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.1);
}

.client-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 25px;
  padding: 15px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.client-logo img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 20%;
}

.client-logo::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: transparent;
  border: 2px dashed var(--main-color);
  border-radius: 50%;
  animation: spin 30s linear infinite;
  z-index: -1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.client-name {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.client-category {
  display: inline-block;
  font-size: 13px;
  color: var(--white);
  background-color: var(--main-color);
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 8px rgba(241, 200, 81, 0.3);
}

.client-description {
  font-size: 14px;
  color: white;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Touch device support */
@media (hover: none) {
  .client-item.touch-active .client-inner {
    transform: rotateY(180deg);
  }
}

/* Add scrollbar styling for longer descriptions */
.client-description::-webkit-scrollbar {
  width: 4px;
}

.client-description::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

/* Responsive Styles - Modified for 2 columns */
@media (max-width: 1024px) {
  .clients-section {
    padding: 70px 6%;
  }
  
  .clients-showcase {
    gap: 20px;
  }
  
  .client-description {
    max-height: 150px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 5px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 5%;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 30px;
  }
  
  .section-title p {
    padding: 0 15px;
    font-size: 15px;
  }

  .clients-showcase {
    gap: 15px;
    margin-top: 35px;
    justify-content: space-around;
  }

  .client-item {
    width: calc(50% - 15px); /* 2 columns with gap between */
    height: 280px;
    max-width: 280px;
    margin-bottom: 15px;
  }
  
  .client-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    padding: 12px;
  }
  
  .client-logo img {
    width: 70px;
    height: 70px;
  }
  
  .client-logo::after {
    width: 105px;
    height: 105px;
  }
  
  .client-name {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .client-item {
    height: 260px;
  }
  
  .client-front, 
  .client-back {
    padding: 20px 15px;
  }
  
  .client-logo {
    width: 80px;
    height: 80px;
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .client-logo img {
    width: 60px;
    height: 60px;
  }
  
  .client-logo::after {
    width: 95px;
    height: 95px;
    border-width: 1px;
  }
  
  .client-name {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .client-category {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  
  .client-description {
    font-size: 13px;
    line-height: 1.5;
    max-height: 120px;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 50px 4%;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .section-title h2::after {
    width: 40px;
    bottom: -10px;
  }

  .clients-showcase {
    gap: 10px;
    margin-top: 25px;
  }

  .client-item {
    width: calc(50% - 10px); /* 2 columns with smaller gap */
    height: 240px;
    max-width: 230px;
    margin-bottom: 10px;
  }
  
  .client-front, 
  .client-back {
    padding: 15px 10px;
  }
  
  .client-logo {
    width: 70px;
    height: 70px;
    padding: 8px;
    margin-bottom: 12px;
  }
  
  .client-logo img {
    width: 55px;
    height: 55px;
  }
  
  .client-logo::after {
    width: 85px;
    height: 85px;
    border-width: 1px;
  }
  
  .client-name {
    font-size: 15px;
    margin-bottom: 6px;
  }
  
  .client-category {
    font-size: 10px;
    padding: 3px 10px;
    margin-bottom: 10px;
  }
  
  .client-description {
    font-size: 12px;
    line-height: 1.5;
    max-height: 100px;
  }
}

@media (max-width: 375px) {
  .clients-section {
    padding: 40px 3%;
  }
  
  .client-item {
    height: 220px;
    max-width: 170px;
  }
  
  .client-logo {
    width: 60px;
    height: 60px;
    padding: 7px;
  }
  
  .client-logo img {
    width: 46px;
    height: 46px;
  }
  
  .client-logo::after {
    width: 72px;
    height: 72px;
  }
  
  .section-title p {
    font-size: 14px;
  }
}

/* MENU TESTIMONI */

/* Grid Testimonial Section Styles */
.grid-testimonial-section {
  padding: 80px 8%;
  background-color: var(--white);
}

/* Grid Testimonial Container Styles */
.grid-testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0 60px;
}

.grid-testimonial-card {
  background-color: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.grid-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.grid-testimonial-card .grid-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: #000;
}

.grid-testimonial-card .grid-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.grid-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.grid-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.grid-play-icon:hover {
  background-color: var(--dark-accent);
  transform: translate(-50%, -50%) scale(1.1);
}

.grid-play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
  margin-left: 4px;
}

.grid-testimonial-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--main-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.grid-testimonial-text {
  padding: 5px 20px 20px;
  position: relative;
}

.grid-testimonial-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  font-style: italic;
  position: relative;
  padding: 0 0 15px 0;
}

.grid-testimonial-text p::before {
  content: '"';
  position: absolute;
  left: -10px;
  top: -15px;
  font-size: 60px;
  line-height: 1;
  color: var(--main-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.grid-testimonial-person {
  display: flex;
  align-items: center;
  margin: 15px 20px;
  position: relative;
  z-index: 2;
}

.grid-person-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--main-color);
}

.grid-person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-person-details {
  display: flex;
  flex-direction: column;
}

.grid-person-details h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
}

.grid-person-details span {
  color: #777;
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .grid-testimonial-container {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .grid-testimonial-section {
    padding: 70px 6%;
  }
  
  .grid-testimonial-text p {
    font-size: 13px;
  }
  
  .grid-person-details h4 {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .grid-testimonial-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .grid-play-icon {
    width: 50px;
    height: 50px;
  }
  
  .grid-play-icon::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--white);
  }
}

@media (max-width: 768px) {
  .grid-testimonial-section {
    padding: 60px 5%;
  }

  .grid-testimonial-container {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0 50px;
  }

  .grid-testimonial-badge {
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    font-size: 12px;
  }
  
  .grid-play-icon {
    width: 55px;
    height: 55px;
  }
  
  .grid-testimonial-text {
    padding: 5px 15px 15px;
  }
  
  .grid-testimonial-text p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .grid-testimonial-text p::before {
    font-size: 50px;
    top: -12px;
    left: -8px;
  }
}

@media (max-width: 576px) {
  .grid-testimonial-section {
    padding: 50px 4%;
  }
  
  .grid-testimonial-container {
    gap: 25px;
    margin: 25px 0 40px;
  }
  
  .grid-person-image {
    width: 50px;
    height: 50px;
  }
  
  .grid-person-details h4 {
    font-size: 15px;
  }
  
  .grid-person-details span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .grid-testimonial-section {
    padding: 40px 4%;
  }
  
  .grid-testimonial-container {
    gap: 20px;
  }
  
  .grid-play-icon {
    width: 45px;
    height: 45px;
  }
  
  .grid-play-icon::after {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--white);
  }
  
  .grid-testimonial-person {
    margin: 10px 15px;
  }
  
  .grid-testimonial-text p::before {
    font-size: 40px;
    top: -10px;
    left: -5px;
  }
}

@media (max-width: 375px) {
  .grid-testimonial-section {
    padding: 30px 3%;
  }
  
  .grid-testimonial-text {
    padding: 5px 12px 12px;
  }
  
  .grid-testimonial-text p {
    font-size: 13px;
  }
  
  .grid-person-image {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  
  .grid-person-details h4 {
    font-size: 14px;
  }
  
  .grid-person-details span {
    font-size: 12px;
  }
}

/* MENU KONTAK ATAU CONTACT */

/* Contact Card Design */
.contact-card {
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 60px auto 80px;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.map-and-info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.company-info {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-logo {
  margin-bottom: 20px;
}

.company-logo img {
  max-width: 150px;
  height: auto;
}

.contact-heading {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  font-size: 20px;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.contact-value {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .contact-card {
    max-width: 90%;
  }
  
  .map-container {
    height: 430px;
  }
}

@media (max-width: 1024px) {
  .map-and-info {
    flex-direction: column;
  }

  .map-container {
    margin-bottom: 30px;
    height: 400px;
  }
  
  .company-info {
    padding: 10px 20px;
  }
  
  .contact-heading {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .contact-card {
    padding: 25px;
    margin: 50px auto 70px;
  }
  
  .map-container {
    height: 380px;
  }
  
  .contact-heading {
    font-size: 26px;
  }
  
  .contact-items {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .contact-card {
    padding: 20px;
    margin: 40px auto 60px;
  }
  
  .map-container {
    height: 350px;
  }
  
  .company-logo img {
    max-width: 130px;
  }
  
  .contact-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 18px;
  }
  
  .contact-label {
    font-size: 17px;
  }
  
  .contact-value {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .contact-card {
    margin: 30px auto 50px;
    padding: 20px 15px;
  }
  
  .map-container {
    height: 320px;
    min-width: 250px;
  }
  
  .company-info {
    padding: 10px 15px;
  }
  
  .company-logo img {
    max-width: 120px;
  }
  
  .contact-heading {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .contact-items {
    gap: 20px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }
  
  .contact-item {
    gap: 12px;
  }
  
  .contact-label {
    font-size: 16px;
  }
  
  .contact-value {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .page-title-section {
    padding: 50px 5%;
  }

  .page-title-content h1 {
    font-size: 30px;
  }

  .contact-card {
    padding: 15px;
    margin: 25px auto 40px;
  }

  .map-container {
    height: 300px;
    margin-bottom: 20px;
  }

  .contact-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .company-logo {
    margin-bottom: 15px;
  }
  
  .company-logo img {
    max-width: 110px;
  }
  
  .contact-items {
    gap: 18px;
  }
}

@media (max-width: 375px) {
  .contact-card {
    padding: 12px;
    margin: 20px auto 30px;
  }
  
  .map-container {
    height: 250px;
    min-width: 200px;
  }
  
  .company-info {
    padding: 10px;
  }
  
  .company-logo img {
    max-width: 100px;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 14px;
  }
  
  .contact-label {
    font-size: 15px;
  }
  
  .contact-value {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .contact-items {
    gap: 15px;
  }
  
  .contact-item {
    gap: 10px;
  }
}

/* MENU ARTICLE ATAU ARTIKEL ATAU BLOG */

/* Articles Section */
.articles-section {
  padding: 100px 8%;
  background-color: var(--light-color);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
  transform: translateX(-50%);
}

.section-header p {
  color: #777;
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-category {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.article-content {
  padding: 25px;
}

.article-title {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.article-excerpt {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.article-date {
  color: #999;
  font-size: 13px;
}

.read-more {
  color: var(--dark-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--main-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 10px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pagination-btn.active,
.pagination-btn:hover {
  background-color: var(--main-color);
  color: var(--white);
}

.pagination-btn.prev,
.pagination-btn.next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

/* Enhanced Featured Section Styles */
.featured-section {
  padding: 100px 8%;
  background-color: var(--white);
  position: relative;
}

.featured-content-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

/* Main Content Area */
.featured-main-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Main Featured Article */
.featured-article-main {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-article-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.featured-image-wrapper {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article-main:hover .featured-image {
  transform: scale(1.05);
}

.featured-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.featured-tag {
  background-color: var(--white);
  color: var(--text-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured-tag.hot {
  background-color: #ff5757;
  color: white;
}

.article-stats {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-color);
}

.stats-icon {
  margin-right: 5px;
  font-size: 14px;
}

.featured-content {
  padding: 30px;
}

.featured-category {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-title {
  font-size: 28px;
  line-height: 1.3;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.featured-excerpt {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-image {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

.article-date {
  font-size: 14px;
  color: #888;
}

.read-more-btn {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: var(--dark-accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Secondary Featured Articles */
.featured-secondary-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.featured-article-secondary {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.featured-article-secondary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.secondary-image-container {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.secondary-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article-secondary:hover .secondary-image-container img {
  transform: scale(1.1);
}

.overlay-category {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.secondary-content {
  padding: 20px;
}

.secondary-title {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.secondary-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}

.read-time {
  display: flex;
  align-items: center;
}

.read-time:before {
  content: "⏱️";
  margin-right: 5px;
}

/* Sidebar Styles */
.featured-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-color);
  position: relative;
  font-weight: 600;
}

/* Popular Articles Widget */
.popular-articles {
  list-style: none;
}

.popular-article-item {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 15px;
  transition: all 0.3s ease;
}

.popular-article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-article-item:hover {
  transform: translateX(5px);
}

.popular-article-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1;
  min-width: 30px;
}

.popular-article-info {
  display: flex;
  flex-direction: column;
}

.popular-article-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--text-color);
}

.popular-article-meta {
  font-size: 12px;
  color: #888;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .articles-section,
  .featured-section {
    padding: 90px 7%;
  }
  
  .article-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  
  .featured-image-wrapper {
    height: 380px;
  }
  
  .featured-title {
    font-size: 26px;
  }
}

@media (max-width: 1024px) {
  .featured-content-wrapper {
    flex-direction: column;
  }

  .featured-secondary-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .articles-section,
  .featured-section {
    padding: 80px 6%;
  }

  .article-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .featured-image-wrapper {
    height: 360px;
  }
  
  .pagination {
    margin-top: 50px;
  }
  
  .sidebar-widget {
    padding: 20px;
  }
  
  .widget-title {
    font-size: 17px;
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .featured-secondary-wrapper {
    grid-template-columns: 1fr;
  }
  
  .articles-section,
  .featured-section {
    padding: 70px 6%;
  }
  
  .section-header h2 {
    font-size: 30px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .article-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .featured-image-wrapper {
    height: 340px;
  }
  
  .featured-content {
    padding: 25px;
  }
  
  .featured-title {
    font-size: 24px;
  }
  
  .featured-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .pagination {
    margin-top: 45px;
  }
}

@media (max-width: 820px) {
  .article-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .article-image {
    height: 200px;
  }
  
  .article-content {
    padding: 20px;
  }
  
  .article-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .pagination-btn {
    width: 35px;
    height: 35px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .featured-image-wrapper {
    height: 300px;
  }

  .featured-title {
    font-size: 24px;
  }

  .featured-secondary-wrapper {
    grid-template-columns: 1fr;
  }

  .secondary-image-container {
    height: 200px;
  }
  
  .articles-section,
  .featured-section {
    padding: 60px 5%;
  }

  .article-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .article-image {
    height: 220px;
  }
  
  .pagination {
    margin-top: 40px;
    gap: 8px;
  }
  
  .featured-tags {
    top: 15px;
    left: 15px;
    gap: 8px;
  }
  
  .featured-tag {
    padding: 5px 12px;
    font-size: 11px;
  }
  
  .article-stats {
    bottom: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .read-more-btn {
    padding: 8px 20px;
  }
  
  .featured-meta {
    margin-bottom: 20px;
  }
  
  .sidebar-widget {
    padding: 20px 15px;
  }
  
  /* Responsive styles for language selector */
  .language-selector {
    margin-right: 20px;
  }
}

@media (max-width: 576px) {
  .articles-section,
  .featured-section {
    padding: 50px 5%;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .section-header p {
    font-size: 14px;
  }
  
  .featured-image-wrapper {
    height: 280px;
  }
  
  .featured-title {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .featured-excerpt {
    margin-bottom: 18px;
  }
  
  .secondary-image-container {
    height: 180px;
  }
  
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .article-image {
    height: 200px;
  }
  
  .article-content {
    padding: 18px;
  }
  
  .article-title {
    font-size: 17px;
  }
  
  .popular-article-number {
    font-size: 20px;
    min-width: 25px;
  }
  
  .featured-meta,
  .secondary-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .featured-image-wrapper {
    height: 250px;
  }

  .featured-title {
    font-size: 20px;
  }

  .featured-content {
    padding: 20px;
  }

  .article-stats {
    display: none;
  }

  .articles-section,
  .featured-section {
    padding: 40px 4%;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .section-header h2::after {
    width: 40px;
    height: 2px;
  }
  
  .secondary-image-container {
    height: 160px;
  }
  
  .secondary-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .secondary-content {
    padding: 15px;
  }
  
  .pagination-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .pagination-btn.prev,
  .pagination-btn.next {
    padding: 0 12px;
  }
  
  .sidebar-widget {
    padding: 15px;
  }
  
  .widget-title {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  
  .popular-article-item {
    padding: 12px 0;
    gap: 10px;
  }
  
  .author-image {
    width: 30px;
    height: 30px;
  }
  
  .read-more-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
  
  .featured-category {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  
  .article-card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 375px) {
  .featured-image-wrapper {
    height: 220px;
  }
  
  .articles-section,
  .featured-section {
    padding: 30px 4%;
  }
  
  .section-header h2 {
    font-size: 22px;
  }
  
  .article-image {
    height: 180px;
  }
  
  .article-content {
    padding: 15px;
  }
  
  .article-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .article-excerpt {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .featured-title {
    font-size: 18px;
  }
  
  .featured-excerpt {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .secondary-image-container {
    height: 140px;
  }
  
  .secondary-title {
    font-size: 15px;
  }
  
  .featured-content-wrapper {
    gap: 20px;
  }
  
  .featured-main-content {
    gap: 20px;
  }
  
  .featured-secondary-wrapper {
    gap: 20px;
  }
  
  .pagination {
    margin-top: 30px;
    gap: 6px;
  }
  
  .pagination-btn {
    width: 30px;
    height: 30px;
  }
  
  .popular-article-title {
    font-size: 13px;
  }
  
  .popular-article-meta {
    font-size: 11px;
  }
}
/* MENU DETAIL ARTICLE ATAU DETAIL ARTIKEL ATAU DETAIL BLOG */

/* Article Detail Page Styles */

/* Hero Section */
.article-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-top: 0; /* Updated */
}

.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 100px 8% 50px;
}

.article-hero-category {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-hero-title {
  color: var(--white);
  font-size: 42px;
  line-height: 1.3;
  max-width: 800px;
  margin-bottom: 20px;
  font-weight: 700;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--main-color);
}

.article-date,
.article-read-time {
  display: flex;
  align-items: center;
  font-size: 14px;
  opacity: 0.9;
}

.article-date:before {
  content: "📅";
  margin-right: 5px;
}

.article-read-time:before {
  content: "⏱️";
  margin-right: 5px;
}

/* Article Content */
.article-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 8%;
}

.article-content-wrapper {
  display: flex;
  gap: 40px;
}

.article-main {
  flex: 2;
}

.article-sidebar {
  flex: 1;
}

.article-body {
  background-color: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 40px;
}

.article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.article-content p {
  margin-bottom: 25px;
}

.article-content h2 {
  font-size: 28px;
  color: var(--text-color);
  margin: 40px 0 20px;
  font-weight: 700;
}

.article-content h3 {
  font-size: 22px;
  color: var(--text-color);
  margin: 30px 0 20px;
  font-weight: 600;
}

.article-content ul,
.article-content ol {
  margin-bottom: 25px;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 30px 0;
}

.article-content blockquote {
  background-color: var(--light-color);
  border-left: 4px solid var(--main-color);
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--text-color);
}

.article-content blockquote p {
  margin-bottom: 0;
}

/* Article Tags */
.article-tags {
  margin: 40px 0;
}

.article-tags-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list a {
  background-color: var(--light-color);
  color: var(--text-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tag-list a:hover {
  background-color: var(--main-color);
  transform: translateY(-2px);
}

/* Article Share */
.article-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin: 40px 0;
}

.share-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.share-links {
  display: flex;
  gap: 15px;
}

.share-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.share-link:hover {
  background-color: var(--main-color);
  transform: translateY(-3px);
}

/* Author Box */
.author-box {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.author-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--main-color);
}

.author-info h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.author-bio {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 12px;
}

.author-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.author-social a:hover {
  background-color: var(--main-color);
  transform: translateY(-2px);
}

/* Comments Section */
.comments-section {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.comments-title {
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.comments-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--main-color);
}

.comment {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comment:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-author {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comment-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.comment-date {
  font-size: 14px;
  color: #888;
}

.comment-text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 10px;
}

.comment-reply {
  color: var(--dark-accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.comment-reply:hover {
  color: var(--main-color);
}

.comment-reply-form {
  margin-top: 20px;
  display: none;
}

.comment-form {
  margin-top: 40px;
}

.comment-form-title {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(241, 200, 81, 0.2);
}

textarea.form-control {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--main-color);
  color: var(--text-color);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--dark-accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
  padding: 60px 0;
}

.related-title {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.related-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--main-color);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.related-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-image {
  height: 180px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.1);
}

.related-content {
  padding: 20px;
}

.related-category {
  display: inline-block;
  background-color: var(--light-color);
  color: var(--text-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.related-card-title {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.related-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
}

/* Sidebar Widgets */
.widget {
  background-color: var(--light-color);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-color);
  position: relative;
  font-weight: 600;
}

/* Newsletter Widget */
.newsletter-widget {
  background-color: var(--accent-color);
  text-align: center;
  padding: 30px;
}

.newsletter-content p {
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
}

.newsletter-input {
  height: 45px;
  padding: 0 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  margin-bottom: 15px;
}

.newsletter-btn {
  height: 45px;
  background-color: var(--dark-accent);
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--text-color);
}

/* Popular Posts Widget Styles */
.popular-posts {
  list-style: none;
  padding: 0;
}

.popular-posts li {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.popular-posts li:first-child {
  border-bottom: 1px solid rgba(171, 54, 54, 0.05);
}

.popular-posts img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.popular-posts h4 {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 500;
  line-height: 1.4;
}

.popular-posts span {
  font-size: 12px;
  color: #888;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .article-container {
    padding: 55px 7%;
  }
  
  .article-hero-title {
    font-size: 38px;
    max-width: 750px;
  }
  
  .article-content-wrapper {
    gap: 35px;
  }
  
  .related-grid {
    gap: 20px;
  }
  
  .related-image {
    height: 170px;
  }
  
  .widget {
    padding: 22px;
  }
}

@media (max-width: 1024px) {
  .article-hero {
    height: 400px;
  }

  .article-hero-title {
    font-size: 36px;
  }

  .article-container {
    padding: 50px 6%;
  }

  .page-title-section {
    padding: 80px 6%;
  }

  .footer-section {
    padding: 70px 6% 40px;
  }
  
  .article-body {
    padding: 35px;
  }
  
  .article-content h2 {
    font-size: 26px;
    margin: 35px 0 18px;
  }
  
  .article-content h3 {
    font-size: 20px;
    margin: 25px 0 15px;
  }
  
  .related-articles {
    padding: 50px 0;
  }
  
  .related-title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  
  .comments-section {
    padding: 35px;
  }
  
  .comments-title {
    font-size: 22px;
  }
  
  .author-avatar {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 992px) {
  .article-content-wrapper {
    flex-direction: column;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-logo {
    margin-right: 0;
    text-align: center;
    min-width: 100%;
    margin-bottom: 50px;
  }

  .footer-links {
    width: 100%;
  }
  
  .article-hero-title {
    font-size: 32px;
    max-width: 650px;
  }
  
  .article-hero-overlay {
    padding: 80px 7% 40px;
  }
  
  .article-sidebar {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .widget {
    margin-bottom: 0;
  }
  
  .article-content {
    font-size: 15px;
  }
  
  .article-share {
    padding: 20px 0;
    margin: 35px 0;
  }
  
  .author-box {
    padding: 25px;
  }
  
  .author-bio {
    font-size: 13px;
  }
  
  .comment {
    padding: 20px 0;
  }
  
  .comment-avatar {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 820px) {
  .article-hero {
    height: 370px;
  }
  
  .article-hero-title {
    font-size: 30px;
  }
  
  .article-body {
    padding: 30px;
  }
  
  .article-content h2 {
    font-size: 24px;
  }
  
  .article-content h3 {
    font-size: 19px;
  }
  
  .related-grid {
    gap: 18px;
  }
  
  .related-image {
    height: 160px;
  }
  
  .comments-section {
    padding: 30px;
  }
  
  .submit-btn {
    padding: 10px 22px;
  }
}

@media (max-width: 768px) {
  .article-hero {
    height: 350px;
  }

  .article-hero-title {
    font-size: 28px;
  }

  .article-hero-meta {
    flex-wrap: wrap;
    gap: 15px;
  }

  .article-body {
    padding: 25px;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-social {
    justify-content: center;
  }

  /* CSS Navigasi Mobile yang Dioptimalkan */
  nav ul {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    background-color: var(--light-color);
    height: 100%;
    width: 70%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: min(40px, 10vh);
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 20px);
  }

  nav ul.nav-active {
    right: 0;
    transform: translateX(0);
  }

  nav ul li {
    margin: 16px 0;
    width: 90%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .footer-section {
    padding: 60px 6% 30px;
  }

  .footer-column {
    min-width: 45%;
  }
  
  .article-container {
    padding: 40px 5%;
  }
  
  .article-content-wrapper {
    gap: 30px;
  }
  
  .article-content {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .article-content p {
    margin-bottom: 20px;
  }
  
  .article-content ul, 
  .article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
  }
  
  .article-content li {
    margin-bottom: 10px;
  }
  
  .article-content img {
    margin: 25px 0;
  }
  
  .article-content blockquote {
    padding: 15px;
    margin: 25px 0;
  }
  
  .article-tags {
    margin: 30px 0;
  }
  
  .article-tags-title {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .tag-list a {
    padding: 5px 12px;
    font-size: 13px;
  }
  
  .article-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .related-articles {
    padding: 40px 0;
  }
  
  .related-title {
    font-size: 24px;
  }
  
  .author-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .comment-author {
    flex-direction: column;
    gap: 5px;
  }
  
  .comment-form-title {
    font-size: 18px;
  }
  
  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .article-hero {
    height: 320px;
  }
  
  .article-hero-title {
    font-size: 26px;
  }
  
  .article-hero-overlay {
    padding: 70px 6% 30px;
  }
  
  .article-hero-category {
    font-size: 13px;
    padding: 4px 12px;
  }
  
  .article-content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
  }
  
  .article-content h3 {
    font-size: 18px;
    margin: 20px 0 12px;
  }
  
  .article-author-img {
    width: 35px;
    height: 35px;
  }
  
  .article-date,
  .article-read-time {
    font-size: 13px;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .related-image {
    height: 200px;
  }
  
  .comments-section {
    padding: 25px 20px;
  }
  
  .comments-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
  
  .comment {
    gap: 15px;
  }
  
  .comment-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-info h3 {
    font-size: 18px;
  }
  
  .form-control {
    padding: 10px 12px;
  }
  
  .newsletter-widget {
    padding: 25px 20px;
  }
  
  .popular-posts img {
    width: 60px;
    height: 60px;
  }
  
  .related-card-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .article-hero {
    height: 300px;
  }

  .article-hero-title {
    font-size: 24px;
  }

  .article-body {
    padding: 20px;
  }

  .article-content h2 {
    font-size: 20px;
  }

  .article-content h3 {
    font-size: 17px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .article-container {
    padding: 30px 4%;
  }
  
  .widget {
    padding: 20px 15px;
  }
  
  .widget-title {
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  nav ul {
    width: 75%;
  }
  
  nav ul li {
    margin: 12px 0;
  }
  
  .author-box {
    padding: 20px;
  }
  
  .author-avatar {
    width: 70px;
    height: 70px;
  }
  
  .share-link {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .submit-btn {
    width: 100%;
  }
  
  .related-title {
    font-size: 22px;
  }
  
  .comment-text {
    font-size: 13px;
  }
  
  .comment-reply {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .article-hero {
    height: 280px;
  }
  
  .article-hero-title {
    font-size: 22px;
  }
  
  .article-body {
    padding: 15px;
  }
  
  .article-content {
    font-size: 14px;
  }
  
  .article-content h2 {
    font-size: 19px;
  }
  
  .article-content h3 {
    font-size: 16px;
  }
  
  .article-content blockquote {
    padding: 12px;
  }
  
  .share-links {
    gap: 10px;
  }
  
  .article-tags-title {
    font-size: 16px;
  }
  
  .tag-list {
    gap: 8px;
  }
  
  .tag-list a {
    font-size: 12px;
    padding: 4px 10px;
  }
  
  .author-avatar {
    width: 65px;
    height: 65px;
  }
  
  .popular-posts img {
    width: 55px;
    height: 55px;
  }
  
  .popular-posts h4 {
    font-size: 13px;
  }
  
  .comment-avatar {
    width: 45px;
    height: 45px;
  }
  
  .related-image {
    height: 180px;
  }
  
  .newsletter-input,
  .newsletter-btn {
    height: 40px;
  }
  
  .form-control {
    font-size: 13px;
  }
  
  .form-label {
    font-size: 13px;
  }
}
