@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');


body {
  font-family: 'Open Sans', sans-serif;
}

.navbar {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1040 !important;
    width: 150vw !important;
    height: 150vh !important;
    background-color: #000 !important;
}

.logo-nav {
  height: 50px;
  width: auto;
}

.navbar-brand span {
  font-size: 1rem;
  letter-spacing: 2px;
}

@media (max-width: 992px) {
  .navbar-brand {
    display: none !important;
  }

  .navbar-toggler {
    z-index: 1050;
  }
}

.navbar a {
  text-decoration: none;
}

.navbar i {
  font-size: 1.6rem; 
  color: #333;
  line-height: 1;
  transition: color 0.3s ease;
  vertical-align: middle;   
}

.navbar i:hover {
  color: #eab308;
}

.navbar .me-3 {
  margin-right: 16px !important;
}

.navbar-icons {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.navbar-icons a {
  color: #000;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-icons a:hover {
  color: #eab308; 
}

.small-nav .nav-link {
  color: #000;
  transition: color 0.3s ease;
}

.small-nav .nav-link:hover {
  color: #eab308; 
}

.small-nav .fa-angle-down {
  font-size: 0.7rem;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.small-nav .nav-link:hover .fa-angle-down {
  transform: rotate(180deg);
}

.navbar-toggler {
  border: none;
}

.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s ease-out, transform 0.15s ease-out;
  margin-top: -2px; 
  pointer-events: none;
}

.nav-item.dropdown.show > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.05s; 
}

.dropdown-item {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: transparent;
  color: #eab308;
  transition: color 0.3s ease;
}

.dropdown-toggle::after {
  display: none;
}

.mega-dropdown {
  position: static;
}

.mega-dropdown .mega-menu {
  left: 0;
  right: 0;
  width: 100%;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  pointer-events: none;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  z-index: 1000;
}


.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  height: 100%;
}

.mega-card img {
  height: 350px; 
  width: 100%;
  object-fit: cover; 
  border-bottom: 2px solid #f8f9fa;
  transition: transform 0.4s ease;
}

.mega-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

.mega-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.5),
              0 0 45px rgba(234, 179, 8, 0.3);
}

.mega-card h6 {
  color: #000;
}

.mega-card:hover h6 {
  color: #eab308;
  transition: color 0.3s ease;
}

.mega-card p {
  font-size: 0.85rem;
  color: #555;
}

.mega-menu .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; 
}

.mega-menu .col-lg-3 {
  display: flex;
}

.mega-dropdown .dropdown-toggle::after {
  display: none;
}

#mainNavbar {
  transition: top 0.4s ease, box-shadow 0.3s ease;
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
}

#mainNavbar.hide {
  top: -100px; 
}

#mainNavbar.show {
  top: 0; 
}

#mainNavbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile */
.offcanvas-body .navbar-nav {
  padding-left: 0;
  margin: 0;
}

.logo-nav-small {
  height: 40px;
  width: auto;
  margin-top: 10px;
}

.offcanvas-body .nav-item {
  list-style: none;
}

.offcanvas-body .nav-link,
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2.0;
  color: #000;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
}

.offcanvas-body .nav-link:hover,
.mobile-dropdown-toggle:hover {
  color: #eab308;
}

.mobile-dropdown-toggle i {
  font-size: 0.9rem;
  color: #000;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.mobile-dropdown-toggle {
  cursor: pointer;
  user-select: none;
}
.mobile-dropdown-toggle a {
  pointer-events: none; 
}

.mobile-dropdown-toggle:hover a {
  color: #eab308; 
}

  .nav-link.active {
    color: #eab308 !important;
    font-weight: 600;
    border-bottom: 2px solid #eab308;
    transition: 0.3s;
  }

  .nav-link:hover {
    color: #eab308;
  }

  /* Supaya dropdown tetap rapi */
  .dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #eab308;
  }

#mobileServices .nav-link,
#mobileProjects .nav-link {
  padding: 8px 0 8px 15px; 
  border: none;
  font-weight: 500;
  font-size: 0.93rem;
  color: #000;
}

#mobileServices .nav-link:hover,
#mobileProjects .nav-link:hover {
  color: #eab308;
}

#mobileServices,
#mobileProjects {
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

#mobileServices.show,
#mobileProjects.show {
  max-height: 500px; 
  transition: all 0.5s ease; 
}


#mobileServices li,
#mobileProjects li {
  list-style: none;
}

.offcanvas-body .navbar-nav > li + li {
  margin-top: 2px;
}

.navbar .btn:focus,
.navbar .btn:active,
.navbar .btn:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.btn-close:focus {
  outline: none !important;
  box-shadow: none !important;
}

.offcanvas.custom-offcanvas {
  width: 70%;             
  max-width: 360px;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.4s ease;
}

.offcanvas.custom-offcanvas.show {
  transform: translateX(0);
  opacity: 1;
}


/* Footer */
.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 25px 20px;
  padding-left: 50px;
  margin-top: 30px;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer hr {
  opacity: 0.2;
}

.footer i:hover {
  color: #eab308;
  transition: color 0.3s ease;
}

.footer .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  margin-top: 20px; 
}

.footer .col-lg-5,
.footer .col-lg-4,
.footer .col-lg-3 {
  padding-left: 25px;
  padding-right: 25px;
}


.solution-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.solution-section h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 70px;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  column-gap: 100px;
  justify-items: center;
  align-items: start;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  max-width: 420px;
  text-align: left;
}

.feature-item img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  flex-shrink: 0;
}

.feature-item p {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.5;
  font-weight: 300;
}


@media (max-width: 768px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 icon per baris */
    gap: 24px;
    justify-items: center;
    align-items: center;
  }
  .feature-item {
    flex-direction: column; /* gambar di atas teks */
    text-align: center;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  .feature-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .feature-item img {
    width: 180px;
    height: 180px;
  }

  .feature-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Yang text di dalam gambar */
.cta-section {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

.text-mask {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: bolder;
  background-image: url('../img/mask.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  filter: brightness(0.5) saturate(0.5); /* <== ini bikin efek "pudar" 
  opacity: 0.60; /* bisa diatur juga */
}


.cta-section p {
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}

.cta-section a {
  color: #000;
  font-weight: 200;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cta-section a:hover {
  color: #555;
}

/* Index */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-bottom: 80px; 
}

.hero-section .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 1;
}

.hero-content {
  font-family: 'Open Sans', sans-serif;
  z-index: 2;
  top: 40%;
  position: absolute;
  left: 30%;
  max-width: 700px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}


.hero-content p {
  font-size: 1.1rem;
  color: #f5f5f5;
}


.btn-hero {
  background-color: #fff;
  color: #000;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-hero:hover {
  background-color: transparent; 
  color: #fff;                   
  border: 2px solid #000;        
  transform: none;               
}


@media (max-width: 768px) {
  .hero-section {
    height: 65vh;
    position: relative;
    overflow: hidden;
  }

  .hero-section .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center top; 
  }

  .hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); 
    z-index: 1;
  }

  .hero-section .hero-content {
    position: absolute;
    top: 55%;
    left: 50%; 
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
  }

  .hero-section .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .hero-section .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
  }

  .hero-section .btn-hero {
    padding: 10px 26px;
    font-size: 0.95rem;
  }
}

.services-section {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
}

.services-section h3 {
  color: #000;
  font-size: 1.8rem;
  text-align: center;
}

.services-section p {
  text-align: center;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.btn-service {
  background-color: #000;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 8px 30px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto ;
  display: inline-block;
}

.btn-service:hover {
  background-color: transparent;
  color: #000;                   
  border: 2px solid #000;           
  transform: translateY(-2px);         
}


.services-section .row {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .services-section h3 {
    font-size: 1.4rem;
  }

  .services-section p {
    font-size: 0.95rem;
  }

  .btn-service {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .services-section img {
    width: 100%;
  }

  .services-section h3 {
    margin-top: 30px;
  }

  .services-section p {
    margin-bottom: 25px;
  }
}

.services-section img {
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 90%; 
  display: block;
  margin: 0 auto;
}

.services-section .col-md-6 {
  text-align: center;
}

.real-solutions-section {
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
}


.real-solutions-img {
  height: 420px;
  object-fit: cover;
  border-radius: 1rem;
  filter: brightness(0.8);
}


.real-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.real-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}


.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
  z-index: 3;
  transition: background 0.3s ease;
}

.btn-play:hover {
  background-color: rgba(255, 255, 255, 1);
}

.real-card {
  background-color: #fff;
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.real-card:hover {
  transform: translateY(-8px); 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
}

.real-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
}

.real-card h6 {
  margin-top: 12px;
  color: #000;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 992px) {
  .real-solutions-img {
    height: 300px;
  }

  .real-title {
    font-size: 1.8rem;
  }

  .btn-play {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Servis 1 */
.hero-servis1 {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}

.hero-servis1 .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-servis1 .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 1;
}

.hero-servis1 .hero-content {
  z-index: 2;
  top: 45%;
  position: absolute;
  left: 25%;
  max-width: 900px;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-servis1 {
    height: 65vh;
    position: relative;
    overflow: hidden;
  }

  .hero-servis1 .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-servis1 .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .hero-servis1 .hero-content {
    position: absolute;
    top: 52%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
  }

  .hero-servis1 .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
}

.description {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}

.ideal-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 400px;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (max-width: 768px) {
  .what-we-offer .row.align-items-center.mt-5 {
    margin-top: 3rem !important; 
  }

  .what-we-offer .row.align-items-center.mt-5 ul {
    margin-bottom: 2rem; 
  }

  .what-we-offer .ideal-img {
    margin-top: 0.5rem; 
  }
}

.what-we-offer {
  font-family: 'Open Sans', sans-serif;
}

.what-we-offer h2 {
  color: #000;
}

.what-we-offer .card {
  border-radius: 1.5rem;
}

.what-we-offer .card img {
  border-radius: 1.5rem 1.5rem 0 0;
  height: 250px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .what-we-offer-swiper {
    width: 100%;
    perspective: 1000px;
    padding-bottom: 40px;
  }

  .what-we-offer-swiper .swiper-slide {
    width: 85%;
  }

  .swiper-pagination-bullet {
    background: #aaa;
    opacity: 0.4;
  }

  .swiper-pagination-bullet-active {
    background: #eab308;
    opacity: 1;
  }
}


.what-we-offer-swiper .swiper-slide {
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.9) translateY(20px);
  opacity: 0.7;
}

.what-we-offer-swiper .swiper-slide-active,
.what-we-offer-swiper .swiper-slide.active-slide {
  transform: scale(1) translateY(-10px);
  opacity: 1;
  z-index: 5;
}

.what-we-offer-swiper .swiper-slide-active .card {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Servis 2 */
.hero-servis2 {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
}

.hero-servis2 .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-serviss {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}

.hero-serviss h1 {
  font-size: 3rem;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-servis2 {
    height: 70vh; 
  }

  .hero-serviss {
    top: 95% !important; 
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center !important;
    color: #000; 
  }

  .hero-serviss h1 {
    font-size: 3rem;
    text-align: center;
  }
}

/* Swiper (Mobile) */
.smart-swiper {
  width: 100%;
  padding-bottom: 60px;
  position: relative;
}

.smart-swiper .swiper-slide {
  width: 80%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.smart-swiper .swiper-slide-active {
  transform: scale(1.05);
}

.smart-swiper .smart-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.smart-swiper .swiper-pagination-bullet {
  background: #aaa;
  opacity: 0.4;
}

.smart-swiper .swiper-pagination-bullet-active {
  background: #eab308;
  opacity: 1;
}

.custom-nav {
  color: #000;
  background-color: rgba(255, 255, 255, 0.85);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.custom-nav:hover {
  background-color: #eab308;
  color: #fff;
  transform: scale(1.1);
}

.smart-control-section {
  background-color: #fff;
  font-family: 'Open Sans' sans-serif;
}

.smart-title {
  color: #111;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.smart-card {
  overflow: hidden;
  border-radius: 1rem;
  cursor: default; 
  transform: none;
}

.smart-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 1rem;
  user-select: none; 
  pointer-events: none; 
}

.smart-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.35); 
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  text-align: center;
}

.hero-serviss {
  font-family: 'Open Sans' sans-serif;
  z-index: 2;
  max-width: 700px;
  color: #000;
  top: 50%;
  left: 20%;
}

.hero-serviss h1 {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .hero-serviss {
    height: 70vh;
  }

  .hero-serviss h1 {
    font-size: 2rem;
  }

  .hero-serviss p {
    font-size: 0.95rem;
  }
}

.connect-home-section {
  background-color: #fff;
  font-family: 'Open Sans' sans-serif;
  text-align: center; 
}

.connect-title {
  font-size: 2.2rem;
  color: #000;
  text-align: center; 
}

.connect-home-section p {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin: 0 auto;
}

.connect-link {
  text-decoration: underline;
  transition: color 0.3s ease;
}

.connect-img {
  max-width: 60%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

@media (max-width: 992px) {
  .connect-title {
    font-size: 1.8rem;
  }

  .connect-home-section {
    text-align: center;
  }

  .connect-img {
    max-width: 90%;
    margin-top: 20px;
  }
}


/* Service 3 */
@media (max-width: 768px) {
  .maintenance-section h2,
  .maintenance-section ul,
  .maintenance-section li {
    text-align: left !important;
    margin-left: 0 !important;
    padding-left: 15px; 
    list-style-position: inside;
  }
}

.maintenance-section {
  background-color: #fff;
}

.maintenance-title {
  font-size: 2.2rem;
  color: #000;
  text-align: center;     
  margin-left: auto;      
  margin-right: auto;
  display: block;
}


.maintenance-list {
  font-size: 1rem;
  color: #000;
  line-height: 1.8;
  padding-left: 0;
  text-align: left;
  margin-left: 15%;
  display: inline-block; 
}

.maintenance-img {
  max-width: 65%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .maintenance-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .maintenance-list {
    text-align: center;
    margin: 0 auto;
  }

  .maintenance-img {
    max-width: 90%;
    margin-top: 25px;
  }
}

.maintenance-section .row {
  --bs-gutter-x: 1.5rem;
}

.after-sales-section {
  background-color: #fff;
}

.after-title {
  color: #000;
  font-size: 2rem;
}

.after-card {
  background-color: #fff;
  border: none;
  box-shadow: none;
}

.after-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1rem;
}

.after-card h5 {
  color: #000;
  font-size: 1.05rem;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .after-img {
    height: 200px;
  }
}

/* Swiper After-Sales (Mobile) */
.after-swiper {
  width: 100%;
  padding-bottom: 60px;
  position: relative;
}

.after-swiper .swiper-slide {
  width: 80%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.after-swiper .swiper-slide-active {
  transform: scale(1.05);
}

.after-swiper .after-card {
  height: 500px; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 1rem;
  overflow: hidden;
}

.after-swiper .after-card img {
  height: 350px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.after-swiper .after-card h5 {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.after-swiper .swiper-pagination-bullet {
  background: #aaa;
  opacity: 0.4;
}

.after-swiper .swiper-pagination-bullet-active {
  background: #eab308;
  opacity: 1;
}

.after-swiper .custom-nav {
  color: #000;
  background-color: rgba(255, 255, 255, 0.85);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.after-swiper .custom-nav:hover {
  background-color: #eab308;
  color: #fff;
  transform: scale(1.1);
}

.after-swiper .swiper-button-prev:hover {
  transform: translate(-4px, -50%) scale(1.1);
}

.after-swiper .swiper-button-next:hover {
  transform: translate(4px, -50%) scale(1.1); 
}

/* About Us */
.activities-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
}

.activities-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
}


.activities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}

.activity-card {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.activity-card img {
  width: 100%;
  height: 450px; 
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .activities-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .activity-card {
    max-width: 300px;
  }
  .activity-card img {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .activities-cards {
    grid-template-columns: 1fr;
  }
  .activity-card {
    max-width: 90%;
  }
  .activity-card img {
    height: 220px;
  }
}

.solution-hub-section {
  background-color: #fff;
}

.solution-img,
.solution-img-left {
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.solution-img-left {
  height: 550px;
}


.solution-img {
  height: 265px; 
}

@media (max-width: 992px) {
  .solution-img-left,
  .solution-img {
    height: auto;
  }
}

.process-section {
  background-color: #fff;
}

.process-title {
  font-size: 2rem;
  color: #000;
}

.process-list {
  font-size: 1rem;
  color: black;
  line-height: 1.8;
  padding-left: 0;
  display: inline-block;
  text-align: left;
}

.process-img {
  width: 90%;
  max-width: 500px;
  max-height: 550px; 
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .process-img {
    width: 100%;
    max-height: 280px; 
    margin-top: 25px;
  }
}

@media (max-width: 992px) {
  .process-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .process-list {
    text-align: center;
  }

  .process-img {
    width: 100%;
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .process-section {
    padding: 40px 24px; 
  }

  .process-title {
    text-align: left !important;
    margin-bottom: 12px;
  }

  .process-section p {
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0;
  }

  .process-list {
    text-align: left !important;
    margin-left: 0;
    padding-left: 20px; 
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

/* ===== Single Image Section (Between Process & Two-Images) ===== */
.about-single-image {
  background-color: #fff;
  padding: 60px 0;
}

.about-single-image .container {
  max-width: 1150px; /* sama kayak section bawah */
  padding: 0 15px;   /* jarak kiri-kanan biar sejajar */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-extra-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: none !important;
  transform: none !important;
}

/* Responsif */
@media (max-width: 992px) {
  .about-single-image .container {
    max-width: 90%;
    padding: 0;
  }

  .about-extra-img {
    aspect-ratio: auto;
    height: auto;
  }
}


.two-images-section {
  background-color: #fff;
  padding: 60px 0;
}

.two-images-section .row {
  justify-content: center;
  gap: 20px; 
}

.two-images-section .col-md-6 {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc(50% - 10px); 
  max-width: calc(50% - 10px);
  border-radius: 1rem;
}

.two-images-section .col-md-6::before {
  content: "";
  display: block;
  padding-top: 100%; 
}

.two-images-section .two-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .two-images-section .col-md-6 {
    flex: 0 0 90%;
    max-width: 90%;
    margin-bottom: 20px;
  }

  .two-images-section .col-md-6::before {
    padding-top: 100%;
  }
}


.two-img {
  width: 100%;
  height: 300px; 
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: none; 
}

@media (max-width: 768px) {
  .two-img {
    height: 220px; 
  }
}

@media (max-width: 768px) {
  .activities-section {
    padding: 60px 20px 100px; 
  }

  .activities-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .activities-cards {
    grid-template-columns: 1fr;
    gap: 60px; 
  }

  .activity-card {
    max-width: 95%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }

  .activity-card img {
    height: auto;
    max-height: 260px;
    object-fit: cover;
  }

  .activity-card h5, 
  .activity-card p {
    text-align: left;
    padding: 0 12px 10px;
  }
}

@media (max-width: 576px) {
  .activities-section {
    padding-bottom: 120px;
  }

  .activity-card img {
    max-height: 500px;
  }
}

/* Project 1 */
.residential-section {
  background-color: #fff;
  margin-top: 50px;
}

.residential-title {
  font-size: 2.2rem;
  color: #000;
  margin-top: 20px;
}

.residential-img {
  width: 100%;
  max-width: 1200px; 
  height: auto;
  max-height: 680px; 
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  margin: 0 auto;
}

.residential-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 992px) {
  .residential-title {
    font-size: 1.8rem;
  }

  .residential-img {
    max-height: 320px;
  }

  .residential-section p {
    font-size: 0.95rem;
  }
}

.highlight-section {
  background-color: #fff;
}

.highlight-title {
  text-align: left;
  font-size: 2rem;
  color: #000;
  margin-left: 1rem; 
}

.highlight-img {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: none;
}

.highlight-section h6 {
  margin-top: 10px;
  font-weight: 600;
  color: #111;
}

@media (max-width: 992px) {
  .highlight-title {
    font-size: 1.6rem;
    margin-left: 0.5rem;
  }

  .highlight-img {
    aspect-ratio: 1 / 1.1; 
  }
}

.highlight-card {
  display: block;
  color: inherit;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  text-decoration: none;
}

.highlight-wrapper {
  transition: all 0.3s ease;
  border-radius: 1rem;
}

.highlight-wrapper:hover {
  transform: translateY(-6px);
}

.highlight-wrapper:hover h6 {
  color: #eab308;
  transition: color 0.3s ease;
  text-shadow: 0 0 6px rgba(234, 179, 8, 0.5);
}

.testimonial-section {
  background-color: #f7f7f7;
}

.testimonial-card {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
  text-align: left;
}

.testimonial-card .stars {
  color: #000;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card h6 {
  color: #000;
}

.testimonial-text {
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card hr {
  margin-top: auto;
  border-top: 1px solid #aaa;
  opacity: 0.4;
}

.testimonial-section {
    background-color: #f9f9f9;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .testimonial-swiper {
    padding-bottom: 50px;
  }

  .swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    background: #eab308;
    opacity: 1;
  }
@media (max-width: 768px) {
  .testimonial-section .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 0 20px 10px;
  }

  .testimonial-section .col-md-4,
  .testimonial-section .col-lg-3 {
    flex: 0 0 80%; 
    scroll-snap-align: start;
  }

  .testimonial-card {
    min-width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .testimonial-section .row::-webkit-scrollbar {
    display: none;
  }
}


@media (max-width: 768px) {
  .highlight-section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 card per baris */
    gap: 16px; /* jarak antar card */
    justify-items: center;
  }

  .highlight-section .col-md-4,
  .highlight-section .col-lg-3 {
    width: 100%;
    max-width: 100%;
  }

  .highlight-icon .highlight-feature {
  font-size: 80%;
  margin: 0 20px 20px; 
  }

  .highlight-card {
    width: 100%;
  }
}

.highlight-icon .highlight-feature {
  text-align: center;  
  margin-bottom: 70px;
}

/* Detail Project */
.project-highlight-section .container {
  max-width: 100%;
  padding-left: 100px;  
  padding-right: 100px;
}

.project-highlight-section .row {
  --bs-gutter-x: 0.75rem; 
  --bs-gutter-y: 1rem; 
}

.project-highlight-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: none;
  display: block;
}

@media (max-width: 992px) {
  .project-highlight-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.project-highlight-section h2 {
  font-size: 2rem;
  color: #000;
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
  left: 10px; 
}

@media (max-width: 992px) {
  .project-highlight-section h2 {
    left: 40px;
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .project-highlight-section h2 {
    left: 20px;
    font-size: 1.6rem;
  }
}

.project-highlight-section {
    background: #fff;
  }

  .project-highlight-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    pointer-events: none;
  }

  @media (min-width: 769px) {
    .project-highlight-swiper {
      display: none;
    }
    .highlight-grid {
      display: flex;
    }
  }

  @media (max-width: 768px) {
    .highlight-grid {
      display: none;
    }
    .project-highlight-swiper {
      display: block;
      padding-bottom: 50px;
    }

    .custom-nav {
      color: #000;
      background-color: rgba(255, 255, 255, 0.85);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }

    .custom-nav:hover {
      background-color: #eab308;
      color: #fff;
      transform: scale(1.1);
    }

    .swiper-pagination-bullet {
      background: #000;
      opacity: 0.4;
    }

    .swiper-pagination-bullet-active {
      background: #eab308;
      opacity: 1;
    }

    .project-highlight-img {
      height: 240px;
    }
  }

.swiper-button-prev,
.swiper-button-next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #eab308; 
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0.9rem;
  font-weight: bold;
}

.swiper-button-prev {
  left: 8px;
}

.swiper-button-next {
  right: 8px;
}

@media (max-width: 480px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 0.8rem;
  }
}


.samsung-duct-section {
  background-color: #fff;
}

.samsung-duct-img {
  width: 95%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.samsung-duct-section .row {
  align-items: flex-start; 
}

.samsung-duct-section h3 {
  margin-top: 0; 
  padding-top: 0;
}

.samsung-duct-section p {
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .samsung-duct-section {
    text-align: center;
  }

  .samsung-duct-img {
    max-height: 350px;
    object-fit: cover;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .samsung-duct-section p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
    padding: 0 10px; 
  }
}

/* Contact Us */
.hero-contact-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-contact-section .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-contact-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-contact-section {
    height: 65vh;
    position: relative;
    overflow: hidden;
  }

  .hero-contact-section .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .hero-contact-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
  }

  .hero-contact-section .hero-content {
    position: absolute;
    top: 50%; /* center vertikal */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
  }

  .hero-contact-section .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }
}
  
.contact-store-img {
  width: 100%;
  max-width: 350px; 
  border-radius: 12px;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 992px) {
  .contact-store-img {
    margin: 0 auto;
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .floating-form .d-flex {
    flex-direction: column;
    gap: 10px;
  }
}

.contact-section {
  background-color: #fff;
  color: #000; 
}

.contact-section h2,
.contact-section p,
.contact-section label {
  color: #000;
}


@media (max-width: 768px) {
  .contact-section p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
    padding: 0 10px;
  }
}

.contact-section .form-control {
  border: 1.5px solid #ccc;
  border-radius: 40px; 
  padding: 12px 18px;
  font-size: 1rem;
  color: #000;
  background-color: #fff;
  transition: all 0.3s ease;
}

.contact-section .form-control::placeholder {
  color: #555;
  opacity: 1;
}

.contact-section .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  outline: none;
}

.contact-section .btn-dark {
  background-color: #000;
  border: none;
  border-radius: 10px;
  padding: 12px 35px;
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-section .btn-dark:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.contact-section .store-map-placeholder {
  width: 60px;
  height: 60px;
  background-color: #d9d9d9;
  border-radius: 50%;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  .contact-section {
    text-align: center;
  }

  .contact-section .store-map-placeholder {
    margin: 20px auto;
  }
}

.floating-form {
  width: 100%;
}

.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-group .form-control {
  width: 100%;
  border: 1.5px solid #ccc;
  border-radius: 25px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #000;
  background: #fff;
  transition: all 0.3s ease;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #666;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
  background-color: #fff;
  padding: 0 6px;
}

.form-group.active label {
  top: -10px;
  left: 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #000;
}

.form-group .form-control:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(70, 70, 70, 0);
  outline: none;
}

.form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.toast {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); /* lebih smooth */
}

.toast.showing, .toast.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-icon {
  display: inline-block;
  animation: popIn 0.5s ease forwards;
}

@keyframes popIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.toast-success {
  background: linear-gradient(135deg, #28a745, #42d77d);
  color: #fff;
}

.toast-error {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  color: #fff;
}

.toast-success #toastIcon,
.toast-error #toastIcon {
  color: #fff;
}

.toast {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.form-alert {
  position: relative;
  background: #fff5f5;
  color: #b71c1c;
  border-left: 5px solid #dc3545;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.form-alert.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.form-alert i {
  margin-right: 8px;
  font-size: 1.2rem;
  vertical-align: middle;
}

.form-alert.warning {
  background: #fff8e1;
  color: #8a6d3b;
  border-left-color: #ffc107;
}

.form-alert.info {
  background: #e3f2fd;
  color: #0d47a1;
  border-left-color: #2196f3;
}


/* Product */
#no-products-message, #no-data-db {
  font-size: 1.1rem;
  color: #777;
  transition: opacity 0.3s ease;
}

.list-group-item {
  background: transparent;
  border: none;
  font-size: 0.95rem;
}

.form-check-input:checked {
  background-color: #eab308;
  border-color: #eab308;
}

.card.project-card {
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.product-page {
  margin-top: 140px;
  padding-top: 80px;
}

.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: #000;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(0.4);
}

.form-check-label {
  font-size: 0.9rem;
  color: #444;
}


aside h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.2rem;
}

.form-check {
  margin-bottom: 4px;
}

.form-check-input {
  cursor: pointer;
}

.form-check-label {
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}

.form-check-label.fw-semibold {
  font-size: 0.95rem;
  color: #000;
  font-weight: 600;
}

.sort-bar .btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #444;
  transition: all 0.25s ease-in-out;
  box-shadow: none;
}

.sort-bar .btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
  border-color: #ccc;
}

.sort-bar .btn.active {
  background-color: rgba(0, 0, 0, 0.08); 
  color: #000;
  border-color: #ccc;
}

.sort-bar .btn.active:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.sort-bar .btn i {
  font-size: 1.1rem;
  line-height: 1;
}

.sort-bar select {
  font-size: 0.9rem;
  color: #000;
  cursor: pointer;
}

.sort-bar select:focus {
  box-shadow: none;
  border-color: #eab308;
}

.sort-bar span {
  font-weight: 500;
}

.custom-select {
  position: relative;
  width: 180px;
  font-family: 'Open Sans', sans-serif;
}

.custom-select .selected {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 6px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
}

.custom-select .options {       
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.25s ease;
  display: block;
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  z-index: 20;
}

.custom-select .options li {
  padding: 8px 14px;
  color: #000;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.custom-select .options li:hover {
  background: transparent;
  color: #eab308;
}

.custom-select.active .options {
  display: block;
}

.sort-bar {
  font-family: 'Open Sans', sans-serif;
}

.custom-select.active .options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Tombol filter mobile */
.filter-toggle {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.filter-toggle:hover {
  background: #eab308;
  color: #000;
}

@media (max-width: 768px) {
  .filter-toggle {
    width: calc(100% - 20px); 
    margin: 0 auto 15px auto; 
    display: block;
  }
}


/* Sidebar */
@media (max-width: 768px) {
  .filter-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    top: 10.1vh;
    max-width: 320px;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    z-index: 9999;
    padding: 25px 20px;
    transition: all 0.4s ease;
  }

  .filter-sidebar.active {
    right: 0; 
  }

  .filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .filter-overlay.show {
    opacity: 1;
    pointer-events: all;
  }
}
  
  .filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .filter-overlay.show {
    opacity: 1;
    pointer-events: all;
  }


.project-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f2f2f2; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.project-card img {
  width: 100%;
  height: 250px; 
  object-fit: contain;
  background-color: #f2f2f2; 
  padding: 20px; 
  border-bottom: none; 
}

.project-card .card-body {
  background-color: #f2f2f2; 
  text-align: left;
  padding: 18px 22px 22px;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block; 
}

.project-card .card-body p {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 4px;
  text-align: left;
}

.project-card .card-body h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 768px) {
  #product-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px; 
    padding: 0 12px; 
  }

  #product-list .col-md-4 {
    width: 100%;
    max-width: 100%;
  }

  .project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 260px; /* tinggi seragam antar card */
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }

  .project-card img {
    height: 150px;
    width: 100%;
    object-fit: contain;
    margin-top: 10px;
  }

  .project-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 8px 6px;
  }

  .project-card .card-body h6 {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-top: 4px;
  }

  .project-card .card-body p {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 2px;
  }
}

.product-link:hover .project-card {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.product-link:hover .card-body h6 {
  color: #eab308; 
}

/* Product Detail */
.product-detail {
  margin-top: 50px;
}

.product-detail .main-image {
  width: 100%;
  max-width: 500px;      
  height: 400px;        
  object-fit: contain;   
  background-color: #f8f8f8;  
  border-radius: 8px;  
  display: block;
  margin: 0 auto;
}


.product-detail .thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-detail .thumb:hover {
  transform: scale(1.05);
  border-color: #eab308;
}

.product-detail .thumb-container{
  padding-left: 15px;
}

.active-thumb {
  border: 2px solid #eab308 !important;
}

.product-detail .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 992px) {
  .product-detail {
    text-align: left;
  }

  .product-detail .main-image {
    width: 90%;
  }

  .product-detail .col-lg-6 {
    justify-content: flex-start;
  }
}

/* Spec Desc */
.product-tabs .nav-tabs {
  border-bottom: none;
  position: relative;
}

.product-tabs .nav-tabs .nav-link {
  color: #999; 
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.product-tabs .nav-tabs .nav-link:hover {
  color: #555;
}

.product-tabs .nav-tabs .nav-link.active {
  color: #000;
  border-bottom: 3px solid #eab308;
  transition: border-color 0.4s ease, color 0.3s ease;
}

.product-tabs .nav-tabs::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #eab308;
  width: 0;
  transition: all 0.3s ease;
}

.product-tabs .nav-tabs .nav-link.active::after {
  width: 100%;
}

.product-tabs .tab-section img {
  width: 100%;
  height: auto;
  border-radius: 20px; 
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tab-pane {
  transition: opacity 0.5s ease-in-out;
}

.tab-pane:not(.active) {
  opacity: 0;
}

.spec-group {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.spec-group h5 {
  font-size: 0.95rem;
  color: #111;
  letter-spacing: 0.5px;
}

.spec-item {
  padding: 4px 0;
  font-size: 0.95rem;
}

.spec-item .text-secondary {
  color: #6c757d !important;
}

.spec-item .fw-semibold {
  color: #000;
}

@media (max-width: 768px) {
  .spec-item {
    font-size: 0.9rem;
  }
}

/* ================================
   LIST MODE (BOX SAMA RATA)
=================================== */
.list-mode .product-item {
    display: flex !important;
    width: 100% !important;

    /* Buat rata & konsisten */
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    margin: 0 !important;
}

/* Layout card menjadi horizontal */
.list-mode .product-item .project-card {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 800px;
    height: 150px;

    border: none !important;
    box-shadow: none !important;
}

/* Gambar konsisten & sama ukurannya */
.list-mode .product-item img {
    width: 180px !important;
    height: 150px !important;
    object-fit: cover;
    border-radius: 10px;
}

/* Area teks rapi & vertikal center */
.list-mode .product-item .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left !important;
    padding: 0 0 0 20px !important;

    /* biar teks tidak mepet */
    flex: 1;
}

/* Hilangkan semua padding + grid bootstrap */
.list-mode .product-item[class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;

    flex: 0 0 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .list-mode #product-list {
        padding: 0 !important;
        margin: 0 !important;
    }

    .list-mode .product-item {
        margin-bottom: 12px !important;
        border-radius: 16px;
    }

    .list-mode .product-item .project-card {
        width: 100% !important;
    }
}
/* ================================
   MATIKAN g-4 dan row untuk LIST MODE MOBILE
================================= */
@media (max-width: 768px) {

    .list-mode#product-list,
    .list-mode #product-list {
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
        padding: 0 !important;
    }

    /* Hilangkan padding bootstrap pada col-md-4 */
    .list-mode .product-item {
        padding-left: 0 !important;
        padding-right: 0 !important;

        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}


/* MATIKAN pengaruh CSS list-mode #product-list sebelumnya */
.list-mode #product-list {
    display: block !important;
    flex-direction: unset !important;
    gap: 0 !important;
    margin-left: unset !important;
    margin-right: unset !important;
    padding: 0 !important;
}

/* ================================
   FIX LIST MODE (MOBILE ONLY)
   1 kolom benar, tidak ada g-4, tidak swipe
================================= */
@media (max-width: 768px) {

    /* Matikan grid gutter bootstrap saat list mode */
    .list-mode#product-list,
    .list-mode #product-list {
        --bs-gutter-x: 0 !important;
        --bs-gutter-y: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    /* Setiap product-item harus full width */
    .list-mode .product-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 16px 0 !important;
    }

    /* Card full-width */
    .list-mode .product-item .project-card {
        width: 105%;
        margin: 5px;
        height: 100px;
    }

    /* Gambar lebih kecil biar cocok mobile */
    .list-mode .product-item img {
        width: 120px !important;
        height: 100px !important;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Teks rapat rapi */
    .list-mode .product-item .card-body {
        padding-left: 12px !important;
        text-align: left !important;
    }

    /* Pastikan col-md-4 tidak bocor */
    .list-mode .product-item[class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}


/* -------------------------------
   CUSTOM PAGINATION (BULAT & ELEGAN)
-----------------------------------*/
.pagination-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.pagination-btn:hover {
    border-color: #eab308;
    color: #eab308;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: #eab308;
    color: #000;
    border-color: #eab308;
}

.pagination-prev,
.pagination-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
}

.pagination-prev:hover,
.pagination-next:hover {
    background: #eab308;
    color: #000;
}

/* =============================
   PAGINATION - MOBILE RESPONSIVE
============================= */
@media (max-width: 576px) {

    .pagination-btn {
        width: 32px;
        height: 32px;
        margin: 0 4px;
        font-size: 13px;
    }

    .pagination-prev,
    .pagination-next {
        width: 36px;
        height: 36px;
        font-size: 13px;
        margin: 0 3px;
    }

    #pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
}

/* Very small phones */
@media (max-width: 400px) {

    .pagination-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .pagination-prev,
    .pagination-next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}