/* ================ BASE STYLES ================ */
* {
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
}

html {
  min-height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable; /* Chrome, Edge, Firefox baru */
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif !important;
  background-color: var(--white);
}

/* Hentikan Bootstrap menambah padding-right ke body */
.modal-open {
  padding-right: 0 !important;
}

#about-sinergi,
#semen,
#mortindo,
#drymix,
#ziegel,
#servvo {
  margin: 1rem;
}

#perkenalan,
#visi-misi,
#core-values,
#direksi,
#Awards {
  scroll-margin-top: 110px; /* misalnya navbar tinggi 100px */
}

/* ================ VARIABLES ================ */
:root {
  --accent: #d23439;
  --secondary: #0f172b;
  --primary: #f7941e;
  --gradient-primary: linear-gradient(135deg, var(--secondary), var(--primary));
  --hover-primary: #d17f1a;
  --white: #ffffff;
  --soft-grey: #ced4da;
  --grey: #6c757d;
  --bg-color: #007bff;
  --soft-white: rgba(255, 255, 255, 0.7);
  --color-text: #231942;
  --navbar-color-text: #000000;
  --color-primary-text: #202124;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.text-primary {
  color: var(--primary) !important;
}
.text-accent {
  color: #d23439;
}

.text-foriegn {
  color: #2f55a4;
  font-weight: 600;
}

.bg-color-primary {
  background-color: var(--primary);
}
.bg-color-gradient {
  background-color: linear-gradient(135deg, var(--secondary), var(--primary));
}

.text-x {
  font-size: 0.81rem;
  font-weight: 450;
  line-height: 1.5;
  font-family: "Inter", sans-serif !important;
}

.text-font {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Inter", sans-serif !important;
}
.text-fonts {
  font-size: 1.2rem;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  line-height: 1.6;
}
.text-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: "Inter", sans-serif !important;
}

@media (max-width: 768px) {
  .text-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: "Inter", sans-serif !important;
  }
  .text-font {
    font-size: 0.89rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: "Inter", sans-serif !important;
  }
  .text-fonts {
    font-size: 0.95rem;
    font-family: "Inter", sans-serif !important;
    font-weight: 400;
    line-height: 1.6;
  }
}

/* ================ COMPONENTS LOADING ================ */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-header {
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.loading-content {
  text-align: center;
  width: 100%;
  max-width: 400px;
  padding: 30px;
}

.loading-logo {
  width: 130px;
  height: auto;
  margin-bottom: 10px;
  animation: gentlePulse 2s infinite ease-in-out;
}

.progress-container {
  margin: 20px auto;
  width: 80%;
  max-width: 300px;
}

.progress-bar {
  height: 6px;
  background-color: var(--secondary);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.loading-message {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: var(--grey);
  margin-top: 20px;
  opacity: 0.8;
}

@keyframes gentlePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  /* Loading */
  .loading-content {
    justify-content: center;
    max-width: 280px;
  }

  .loading-logo {
    width: 160px;
    margin-bottom: 20px;
  }

  .progress-container {
    width: 90%;
    margin: 20px auto;
  }

  .loading-message {
    font-size: 14px;
  }
}

/*================== Navbar Component ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: transparent !important;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary); /* Sesuaikan dengan warna yang diinginkan */
}

.navbar.scrolled {
  background-color: rgba(15, 23, 43, 0.98) !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .navbar-nav .nav-link,
.navbar-nav .nav-link.show {
  color: var(--white);
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.navbar-toggler {
  width: 25px;
  height: 20px;
  position: relative;
  transition: 0.5s ease-in-out;
  margin-right: 15px;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}

.navbar-toggler span {
  margin: 0px;
  padding: 0px;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.middle-bar {
  margin-top: 0px;
}

.navbar-toggler .top-bar {
  margin-top: 0px;
  transform: rotate(135deg);
}
.navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  margin: 0px;
  transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar {
  margin-top: -20px;
  transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  margin-top: 20px;
  transform: rotate(0deg);
}

/*=================== DROPDOWN Component ====================*/
.dropdown-menu {
  background-color: var(--secondary) !important;
  border-radius: 5px;
}
.dropdown-menu .dropdown-item {
  color: var(--white) !important;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.dropdown-menu li a {
  font-family: "Inter", sans-serif;
  font-size: 14px !important;
  padding: 8px;
  margin-bottom: 5px;
}

.dropdown-item.active,
.dropdown-item:hover {
  background-color: var(--primary);
  color: var(--white);
  transition: width 0.5s ease, background-color 0.5s ease;
}
.dropdown-menu .show {
  background-color: var(--secondary);
}
.dropdown-toggle::after {
  display: none !important; /* Sembunyikan icon default */
}

.dropdown-toggle::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078"; /* Chevron down */
  float: right;
  margin-left: 0.5em;
  transition: all ease-in-out 0.3s;
}

.show > .dropdown-toggle::before {
  content: "\f077"; /* Chevron up */
}

/*=========== MOBILE NAVBAR ADJUSTMENT =========== */
@media (max-width: 991.98px) {
  .navbar {
    background-color: rgba(15, 23, 43, 0.98) !important;
    padding: 10px 15px;
    position: fixed; /* Tambahkan ini untuk navbar tetap di atas */
    width: 100%;
    top: 0;
    z-index: 1030;
  }

  /* Navbar brand/logo */
  .navbar-brand img {
    width: 65px;
    height: auto;
  }

  /* Navbar Brand-Text */

  .brand-text {
    font-size: 14px;
  }

  /* Navbar toggler icon */
  .navbar-toggler {
    border: none;
    position: absolute; /* Posisikan toggler di kanan */
    right: 5px;
    margin: 7px 20px 0 0;
  }

  /* Navbar collapse */
  .navbar-collapse {
    position: fixed;
    top: 80px; /* Sesuaikan dengan tinggi navbar */
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 43, 0.98);
    z-index: 1020;
    padding: 20px;
    overflow-y: auto; /* Untuk scroll jika konten panjang */
    display: none; /* Awalnya disembunyikan */
  }

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

  /* Navbar links */
  .navbar-nav {
    padding: 20px;
    margin-top: 10px;
    width: 100%;
    height: calc(100% - 40px);
  }

  .navbar-nav .nav-link {
    color: var(--white) !important;
    padding: 15px 0;
    font-size: 1.2rem;
  }

  /* Dropdown menu */
  .dropdown-menu {
    background-color: transparent !important;
    margin: 5px 0;
    position: static;
    float: none;
    width: 100%;
    border: none;
  }

  .dropdown-item {
    color: var(--white) !important;
    padding: 12px 25px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-toggle::after {
    display: none;
  }

  /* Tambahkan ini untuk mencegah scrolling body saat menu terbuka */
  body.navbar-expanded {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/* =================== CAROUSEL-Component =================== */
.carousel-jumbotron {
  position: relative;
  height: 95vh;
  min-height: 630px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-jumbotron .container {
  position: relative;
  z-index: 2;
}

/* Background untuk masing-masing slide */
.slide-1 {
  background-image: url("/img/Background-Banner/Banner-Carousel-01.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-2 {
  background-image: url("/img/Background-Banner/Banner-Carousel-02.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-3 {
  background-image: url("/img/Background-Banner/Banner-Carousel-03.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slide-4 {
  background-image: url("/img/Background-Banner/Banner-Carousel-04.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.slide-5 {
  background-image: url("/img/Background-Banner/Banner-Carousel-05.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 23, 43, 0.85),
    rgba(247, 148, 30, 0.25)
  );
  z-index: 1;
}

.carousel-jumbotron h1 {
  font-size: 3rem;
  color: var(--white);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.carousel-jumbotron p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .carousel-jumbotron {
    height: auto;
    padding: 80px 0;
    text-align: center;
  }

  .carousel {
    margin-top: 0;
  }

  .carousel-jumbotron::before {
    width: 100%;
    opacity: 0.05;
  }

  .carousel-jumbotron .d-flex {
    justify-content: center;
  }

  .carousel-jumbotron h1 {
    font-size: 2.5rem;
  }

  .carousel-jumbotron .lead {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .carousel-jumbotron {
    padding: 60px 0;
  }

  .carousel-jumbotron h1 {
    font-size: 2rem;
  }
}

.carousel-indicators {
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.carousel-indicators button {
  position: relative;
  width: 100px;
  height: 4px;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  overflow: hidden;
}

.carousel-indicators button.active .indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  animation: progressAnim var(--progress-duration, 4000ms) linear;
  border-radius: 2px;
}

@keyframes progressAnim {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Carousel-Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--white);
  font-size: 1.5rem;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

/* ===================== Whataspp Shotcut ====================== */

.floating {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.floating:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

/* ======================= BUTTON-Component =====================*/

.btn-Primary {
  background-color: var(--primary) !important;
  color: var(--white);
  border: 1px solid var(--primary) !important;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-Primary:hover {
  background-color: var(--hover-primary) !important ;
  color: var(--white) !important ;
  border: 1px solid var(--hover-primary) !important;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-Primary {
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(247, 148, 30, 0.05) 100%
  );
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-Primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-outline-Primary:hover::before {
  left: 0;
}

.btn-outline-Primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 148, 30, 0.3);
}

/* Style 5: Animated Pulse Button */
.btn-pulse {
  background: var(--primary);
  border: none;
  color: white;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 148, 30, 0.3);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(247, 148, 30, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 148, 30, 0.3);
  }
}

.btn-pulse:hover {
  background: var(--hover-primary);
  transform: scale(1.05);
  color: white;
  text-decoration: none;
  animation: none;
}

/* =========================== Side-bar ============================ */
#about-sinergi,
#semen {
  min-height: 100vh; /* Tambahkan ini */
}

.sidebar {
  position: sticky;
  top: 80px;
  overflow-y: auto;
  padding: 18px;
}

.sidebar-link {
  color: var(--grey) !important;
  font-weight: 400;
  font-size: 0.9rem;
  position: relative;
  padding: 12px 15px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--soft-grey);
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: rgba(247, 148, 30, 0.25);
  color: var(--primary);
  border-radius: 10px;
}

.collapse-link {
  color: var(--grey) !important;
  font-weight: 400 !important;
  transition: all 0.3s ease;
  font-size: 14px;
}

.collapse-link:hover,
.collapse-link.active {
  color: var(--primary) !important;
  font-weight: 500;
}

.sidebar .nav-link i {
  transition: transform 0.3s ease;
  margin-right: 8px;
  font-size: 11px;
  color: var(--primary);
}

/* Adjust chevron position */
.sidebar .nav-link {
  display: flex;
  justify-content: space-between;
}

.sidebar .nav-link > span {
  flex-grow: 1;
}

/*============================= HERO HEADER ================================*/
.hero-header {
  background: linear-gradient(
      to right,
      rgba(7, 10, 14, 0.9),
      rgba(7, 97, 241, 0.3)
    ),
    url(../img/Talent/testing-01.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.hero-header img {
  animation: imgRotate 50s linear infinite;
}

@keyframes imgRotate {
  100% {
    transform: rotate(360deg);
  }
}
.hero-color {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

/* ========================== Jumbotron-Components =============================*/
.modern-jumbotron {
  padding: 60px;
  position: relative;
  overflow: hidden;
}

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

.jumbotron-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.jumbotron-image img {
  transition: transform 0.5s ease;
  position: relative;
  z-index: 2;
  background-color: var(--primary);
}

.jumbotron-image:hover img {
  transform: scale(1.03);
}

.jumbotron-content h1 {
  color: var(--color-primary-text);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .modern-jumbotron {
    padding: 40px;
  }

  .jumbotron-content {
    margin-bottom: 30px;
  }

  .d-flex {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .modern-jumbotron {
    padding: 30px 20px;
  }

  .modern-jumbotron h1 {
    font-size: 2.2rem;
  }

  .modern-jumbotron .lead {
    font-size: 1.1rem;
  }
}

/*=============================== Foam-website ===================================*/
.form-floating-modern {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control-modern {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  background-clip: padding-box;
  border: 0;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-bottom: 1px solid var(--soft-grey);
}

.form-control-modern:focus {
  outline: 0;
  box-shadow: none;
  border-color: transparent;
}

.form-floating-modern label {
  position: absolute;
  top: 0.75rem;
  left: 0;
  color: var(--grey);
  font-size: 1rem;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.2s ease-out;
}

.form-floating-modern .form-control-modern:focus ~ label,
.form-floating-modern .form-control-modern:not(:placeholder-shown) ~ label {
  top: -1rem;
  left: 0;
  font-size: 0.8rem;
  color: var(--primary);
  background-color: var(--white);
  padding: 0 0.25rem;
  font-weight: 600;
}

.form-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.form-control-modern:focus ~ .form-underline {
  width: 100%;
}

/* Button Loading State */
.btn .submit-text {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.btn .spinner-grow {
  vertical-align: middle;
}

.btn.is-loading .submit-text {
  opacity: 0;
}

.btn.is-loading .spinner-grow {
  display: inline-block;
}

/*=========================== Produk - Component ========================= */
.produk-section {
  padding: 50px;
}
.produk-card {
  background: var(--white);
  border: 1px solid var(--soft-grey);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.produk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.produk-img {
  height: 220px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.produk-img img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.produk-card:hover img {
  transform: scale(1.05);
}

.produk-info {
  padding: 20px;
  text-align: center;
}

.produk-info h5 {
  font-weight: 600;
  color: #333;
}

.produk-info p {
  font-size: 0.95rem;
  color: #777;
}

/*============================== Pelayanan =====================================*/
.features-header {
  background-color: var(--secondary);
}
.features-bg {
  background-image: url(../img/Background-Banner/world-bg.webp);
  background-repeat: no-repeat;
  background-position: top right;
}

.features-section .icon-box {
  color: var(--white);
  min-width: 50px;
}

.features-header h2 {
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--white);
}

.features-header h5 {
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--white);
}

.features-header p {
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.icon-box {
  background: var(--primary);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

/* =========================== Sektor-Reddmas ============================= */
#Sektor-reddmas {
  background-color: #f8f9fa;
  position: relative;
}

/* Achievement Icons */
.achievement-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.achievement-icon:hover {
  transform: translateY(-5px);
}

.icon-container {
  width: 70px;
  height: 70px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.icon-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.icon-container:hover::before {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

.icon-container i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.icon-container:hover {
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
  transform: scale(1.05);
}

.icon-container:hover i {
  transform: scale(1.1);
}

.icon-content {
  text-align: center;
}

.icon-content span {
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.achievement-icon:hover .icon-content span {
  color: var(--primary) !important;
}

.nav-tabs .nav-link.active {
  color: var(--primary);
}

.nav-link {
  color: var(--grey);
}
.nav-link:hover {
  color: var(--hover-primary);
}
.tab-content li {
  font-size: 13px;
  color: var(--grey);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .achievement-icon {
    margin: 0 15px 20px;
  }

  .icon-container {
    width: 60px;
    height: 60px;
  }

  .icon-container i {
    font-size: 1.2rem;
  }
}

/* ====================== PROJECT SWIPER ======================= */
.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 400px;
  height: 400px;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--soft-grey);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

/*========================= Contact-info ==========================*/
.contact-info {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  background-repeat: no-repeat;
  background-position: top right;
  color: var(--white);
  padding: 50px 0;
  border-radius: 0px;
  margin-top: 50px;
}

/* =============== Principle-Component ================ */

#mitra-reddmas {
  padding: 60px 0;
  background-color: #f8f9fa;
}

#mitra-reddmas .section-header {
  text-align: center;
  margin-bottom: 50px;
}

#mitra-reddmas .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}

#mitra-reddmas .section-header p {
  color: var(--grey);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
}

.mitra-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 30px;
}

/* ===================== Mitra-Component ======================== */
.mitra-card {
  flex: 1 1 calc(16.66% - 20px); /* 6 kolom di desktop */
  background: #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Animasi Hover */
.mitra-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0.05;
  transform: rotate(25deg);
  transition: all 0.4s ease;
  z-index: 1;
}

.mitra-card:hover::before {
  top: 0;
  left: 0;
  opacity: 0.15;
}

.mitra-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(247, 148, 30, 0.2);
  border-color: var(--primary);
}

/* Logo Mitra */
.mitra-logo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all 0.3s ease;
  z-index: 2;
}

.mitra-card:hover .mitra-logo {
  filter: grayscale(0);
  transform: scale(1.1);
}

/* ====== Responsiveness ====== */

/* Desktop kecil - 3 kolom */
@media (max-width: 1200px) {
  .mitra-card {
    flex: 1 1 calc(33.33% - 20px);
  }
}

/* Tablet - 2 kolom */
@media (max-width: 992px) {
  .mitra-card {
    flex: 1 1 calc(50% - 15px);
    min-height: 100px;
  }
}

/* Mobile - 2 kolom */
@media (max-width: 768px) {
  .mitra-card {
    flex: 1 1 calc(50% - 10px);
    min-height: 90px;
    padding: 10px;
  }
  .mitra-logo {
    max-height: 55px;
  }
}

/*========================= Banner-Breadcumb ============================*/
.banner-content {
  position: relative;
  width: 100%;
  height: 600px; /* Atur tinggi sesuai kebutuhan */
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(15, 23, 43, 0.85),
    /* Warna secondary dengan opacity 85% */ rgba(247, 148, 30, 0.25)
  );
  z-index: 1;
}
.banner-content .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--white);
  text-align: start;
  width: 100%;
}

.banner-content h1 {
  color: var(--white);
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Bayangan teks untuk kontras */
}

.banner-content .breadcrumb {
  justify-content: start;
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

.banner-content .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
}

.banner-content .breadcrumb-item.active {
  color: var(--primary);
}

.banner-content .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white); /* Warna separator breadcrumb */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-content {
    margin-top: 90px;
    height: 350px;
  }

  .banner-content h1 {
    font-size: 2rem;
    top: 40%;
  }

  .banner-content .breadcrumb {
    bottom: 80px;
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

/*======================== Visi-misi ========================*/
.vision-mission-card {
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#visi-misi {
  background: linear-gradient(
    to bottom,
    rgba(247, 249, 252, 0.8),
    rgba(255, 255, 255, 1)
  );
}
.mission-list {
  list-style: none;
  counter-reset: mission-counter;
  padding-left: 0;
  margin-bottom: 0;
}

.mission-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  counter-increment: mission-counter;
}

.mission-item:last-child {
  margin-bottom: 0;
}

.mission-item::before {
  content: counter(mission-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--primary);
}

.mission-title {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.mission-desc {
  color: var(--grey);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

/* ========================= Core Values ====================== */

.core-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.core-circle span {
  line-height: 1;
}

.core-circle:hover {
  background-color: var(--primary);
  transform: scale(1.05);
}

.core-circle:hover span {
  color: white !important;
}

#core-values p {
  margin-left: 5rem;
}

.watermark-core {
  position: relative;
  overflow: visible; /* Tambahkan ini untuk memastikan watermark tidak keluar dari container */
}

.watermark-core:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background-image: url("/img/Icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  clip-path: inset(0 0 0 0);
}

/* Pastikan konten di atas watermark */
.watermark-core .container-fluid,
.watermark-core h2,
.watermark-core .row {
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  /* Perbaikan untuk mobile */
  .watermark-core:before {
    width: 400px; /* Ukuran lebih kecil untuk mobile */
    height: 400px;
    opacity: 0.05; /* Lebih transparan di mobile */
  }
}

/* Media Query untuk Core Values Section - Mobile */
@media (max-width: 768px) {
  #core-values {
    padding-top: 2rem;
    margin: 0;
  }

  .watermark-core:before {
    display: none; /* Sembunyikan watermark di mobile */
  }

  .watermark-core h2 {
    font-size: 1.5rem !important;
    text-align: center;
    margin-bottom: 2rem !important;
    letter-spacing: normal !important;
  }

  .watermark-core .row {
    margin-left: 0 !important;
    justify-content: center;
  }

  /* Penyesuaian layout untuk setiap nilai */
  .watermark-core .row.g-0 {
    margin-bottom: 1.5rem;
  }

  .watermark-core .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .core-circle {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .core-circle span {
    font-size: 2rem !important;
  }

  .text-foriegn {
    margin-top: 0 !important;
    font-size: 1.2rem;
    text-align: center;
  }

  #core-values p {
    margin-left: 0 !important;
    text-align: center;
    font-size: 0.9rem;
    padding: 0 1rem;
  }
}

/* Untuk perangkat sangat kecil */
@media (max-width: 480px) {
  #core-values {
    padding-top: 1.5rem;
  }

  .watermark-core h2 {
    font-size: 1.3rem !important;
    margin-bottom: 1.5rem !important;
  }

  .core-circle {
    width: 60px;
    height: 60px;
  }

  .core-circle span {
    font-size: 1.8rem !important;
  }

  .text-foriegn {
    font-size: 1.1rem;
  }

  #core-values p {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 768px) {
  /* Loading */
  #core-value span {
    margin-top: 30px;
  }

  /* Watermark lebih kecil dan lebih transparan */
  .watermark-core:before {
    width: 300px;
    height: 300px;
    opacity: 0.03;
  }
}

@media (max-width: 480px) {
  /* Watermark hampir tidak terlihat di device sangat kecil */
  .watermark-core:before {
    width: 200px;
    height: 200px;
    opacity: 0.02;
  }
}
/* ==================== Sidebar Produk =========================== */
.product-card {
  background: var(--white);
  border: 1px solid var(--soft-grey);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--hover-primary);
}

/* Card Image Container - Ukuran Konsisten */
.card-img-container {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: #0d0d0d0d;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  overflow: hidden;
}

.card-img-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .card-img-container img {
  transform: scale(1.08);
}

/* Card Body - Height Konsisten */
.product-card .card-body {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

/* Card Title */
.product-card .card-title {
  font-size: 0.97rem;
  color: var(--primary);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-card p {
  font-size: 0.75rem;
  text-align: center;
}

.product-modal-image {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 1rem;
  text-align: center;
  background: #f8f9fa;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
   TABS STYLING
   =================================== */

.nav-tabs {
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 30px;
}

.nav-tabs .nav-link {
  color: #6c757d;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 0;
}

.nav-tabs .nav-link:hover {
  color: var(--hover-primary);
  border-bottom-color: var(--primary);
  background: rgba(0, 102, 204, 0.05);
}

.nav-tabs .nav-link.active {
  color: var(--hover-primary);
  border-bottom-color: var(--primary);
  background: rgba(0, 102, 204, 0.08);
}

/* ===================================
   MODAL STYLING
   =================================== */

.modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  border-radius: 16px 16px 0 0;
  padding: 20px 24px;
  border-bottom: none;
}

.modal-header .modal-title {
  font-weight: 700;
  font-size: 1.3rem;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

.modal-body {
  padding: 24px;
}

.modal-description {
  color: #495057;
  line-height: 1.6;
  margin: 16px 0;
}

.modal-specifications .table {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.modal-specifications .table thead {
  background: #0066cc;
  color: white;
}

.modal-specifications .table thead th {
  font-weight: 600;
  border: none;
  padding: 12px 8px;
}

.modal-specifications .table tbody td {
  padding: 10px 8px;
  vertical-align: middle;
}

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

/* Tablet */
@media (max-width: 991px) {
  .card-img-container {
    height: 200px;
  }

  .product-header h2 {
    font-size: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .card-img-container {
    height: 180px;
    padding: 15px;
  }

  .product-card .card-body {
    padding: 16px;
    min-height: 120px;
  }

  .product-card .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .product-header {
    padding: 20px;
  }

  .product-header h2 {
    font-size: 1.5rem;
  }

  .nav-tabs .nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .modal-specifications .table {
    font-size: 0.8rem;
  }

  .modal-specifications .table thead th,
  .modal-specifications .table tbody td {
    padding: 8px 6px;
  }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
  .card-img-container {
    height: 160px;
  }

  .nav-tabs .nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .nav-tabs .nav-link i {
    display: none;
  }
}

/* Alert Styling */
.alert {
  border-radius: 8px;
  border: none;
  padding: 16px;
  font-size: 0.95rem;
}

.alert-info {
  background: #e3f2fd;
  color: #0277bd;
}

.alert-warning {
  background: #fff3e0;
  color: #e65100;
}

/* Grid Spacing */
.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

/* Card Hover Effect Enhancement */
@keyframes cardPulse {
  0% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
  }
  100% {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

.product-card:active {
  animation: cardPulse 0.3s ease;
}

/* =========================  Pagination Styles ===================== */
.pagination {
  margin-top: 2rem;
  gap: 0.5rem;
}

.pagination .page-item {
  margin: 0;
}

.pagination .page-link {
  border: 1px solid #dee2e6;
  color: #495057;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.pagination .page-link:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
  color: var(--hover-primary);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #f8f9fa;
  border-color: #dee2e6;
  opacity: 0.6;
}

.pagination .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

/* Items per page selector */
#itemsPerPage {
  min-width: 60px;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#itemsPerPage:hover {
  border-color: var(--primary);
}

#itemsPerPage:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pagination {
    font-size: 0.875rem;
  }

  .pagination .page-link {
    padding: 0.375rem 0.625rem;
  }

  #itemsPerPage {
    width: 100% !important;
  }
}

/* Loading state for pagination */
.pagination-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ====================== Sertifikasi ========================= */

.Awards-card {
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.Awards-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.Awards-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}

.Awards-img img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.Awards-card:hover img {
  transform: scale(1.05);
}

.Awards-info {
  padding: 20px;
  text-align: center;
}

.Awards-info h5 {
  font-weight: 600;
  color: #333;
}

.Awards-info p {
  font-size: 0.95rem;
  color: #777;
}

/*=============================== Karir - Components ================ */
#karir h2 {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

/* =================== News - Components ==================== */

.berita-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.berita-card-link:hover {
  transform: translateY(-5px);
}

.berita-card {
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.berita-card:hover {
  transform: translateY(-5px);
}

.img-kegiatan {
  width: 100%;
  height: 250px; /* Sesuaikan tinggi yang diinginkan */
  object-fit: cover; /* Memastikan gambar mengisi area tanpa distorsi */
  border-radius: 5px; /* Opsional: untuk sudut yang sedikit melengkung */
  margin-bottom: 15px;
}

.image-berita {
  position: relative;
  overflow: hidden; /* Penting untuk mencegah gambar keluar dari container */
  height: 220px;
}

.image-berita img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease; /* Transisi untuk efek zoom */
}

/* Efek zoom pada gambar saat card di-hover */
.berita-card:hover .image-berita img {
  transform: scale(1.1); /* Zoom gambar 10% */
}

.berita-content {
  padding: 24px;
}

.berita-date {
  display: flex;
  align-items: center;
  color: var(--grey);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.berita-date i {
  margin-right: 8px;
  color: var(--grey) !important;
}

.berita-judul {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.berita-isi {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ====================== Contact-icon Components ======================== */

#contact-icon-smp {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  z-index: 1;
  background: var(--white);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.contact-icon-circle {
  background: var(--white);
}
.contact-card:hover .contact-icon-circle {
  background: var(--hover-primary);
  transform: scale(1.05);
}

.contact-card {
  background-color: var(--primary);
}

.contact-card:hover .contact-icon-circle i {
  color: white !important;
}

.bg-primary-light {
  background: rgba(39, 47, 58, 0.1);
}

.shadow-hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-card {
    margin-bottom: 20px;
  }

  #contact-icon-smp::before,
  #contact-icon-smp::after {
    display: none;
  }
}

/* =================== Footer - Components  =================== */
.sinergi-footer {
  background-color: var(--secondary);
  padding-top: 3rem;
  padding-bottom: 2rem;
  position: relative;
}
.sinergi-footer h5 {
  color: var(--primary);
}

.sinergi-footer li {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--primary) !important; /* Warna merah Reddmas */
  text-decoration: none;
}

.sinergi-footer .footer-content img {
  width: 140px;
}

/* Efek khusus untuk social media */
.sinergi-footer .social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 60px;
  text-align: center;
  margin-left: 7px;
  transition: all 0.3s;
  margin-top: 50px;
  color: rgba(255, 255, 255, 0.7);
}

.sinergi-footer .social-icons a:hover {
  color: rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-3px);
}

.sinergi-footer .social-icons i {
  font-size: 32px; /* atau ganti dengan ukuran yang kamu inginkan */
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
}

#current-year {
  color: rgba(255, 255, 255, 0.7);
}

/* === FOOTER RESPONSIVE UNTUK LAYAR ≤ 768px === */
@media (max-width: 768px) {
  .sinergi-footer {
    text-align: center;
    padding: 30px 15px;
  }

  .sinergi-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Logo perusahaan di tengah */
  .sinergi-footer img {
    max-width: 200px;
    height: auto;
    margin-top: 15px;
  }

  /* Sosial media di tengah */
  .sinergi-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .sinergi-footer .social-icons a i {
    font-size: 32px;
    color: var(--white);
    transition: all 0.3s ease;
  }

  .sinergi-footer .social-icons a i:hover {
    color: var(--hover-primary); /* efek hover */
    transform: scale(1.1);
  }

  /* Office info jadi satu kolom */
  .sinergi-footer .col-md-3 {
    text-align: center;
    margin-top: 25px;
  }

  .sinergi-footer .col-md-3 ul {
    padding: 0;
  }

  .sinergi-footer .col-md-3 li {
    list-style: none;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sinergi-footer .col-md-3 i {
    display: none;
  }

  /* Copyright center */
  .sinergi-footer .copyright-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
  }

  /* Logo Reddmas di bawah */
  .sinergi-footer .reddmas-logo {
    display: block;
    margin: 10px auto 0 auto;
    max-width: 120px;
  }
}
