/* ==========================================================
   HOME PAGE LAYOUT FIX
   Load this file AFTER plugins/css/style.css
   Keeps the original red / blue / dark color palette.
   ========================================================== */

:root {
  --brand-red: #e9454b;
  --brand-blue: #1a47ac;
  --brand-blue-dark: #062b7d;
  --brand-dark: #111111;
  --text-dark: #212121;
  --text-muted: #667085;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --border: #e6e9ef;
  --shadow-sm: 0 6px 20px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 14px 40px rgba(16, 24, 40, 0.12);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 !important;
  padding-top: 74px !important;
  background: #fff;
  color: #555;
  font-family: "Open Sans", sans-serif !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

img {
  max-width: 100%;
}

.body-inner {
  overflow: visible;
}

.container {
  width: 100%;
  max-width: 1180px;
}

section,
.section-padding {
  padding: 76px 0;
}

/* ---------------- Header ---------------- */
.header-two.navbar-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 74px;
  z-index: 9999;
  padding: 0 !important;
  background: #fff;
  border-bottom: 2px solid var(--brand-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.header-two .site-navigation,
.header-two .navbar {
  min-height: 72px;
}

.header-two .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 !important;
}

.header-two .navbar>div:first-child {
  flex: 0 0 auto;
}

.logo-nav {
  display: block;
  width: auto !important;
  height: 42px !important;
  max-width: 220px;
  object-fit: contain;
  margin: 0 !important;
}

#navbar-collapse {
  flex-grow: 1;
}

ul.navbar-nav {
  align-items: center;
}

ul.navbar-nav>li {
  padding: 0 12px !important;
}

ul.navbar-nav>li>a,
.navbar-light ul.navbar-nav>li>a {
  position: relative;
  display: block;
  padding: 25px 0 22px !important;
  color: #20242b !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

ul.navbar-nav>li>a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

ul.navbar-nav>li:hover>a::before,
ul.navbar-nav>li.active>a::before {
  width: 100%;
}

ul.navbar-nav>li:hover>a,
ul.navbar-nav>li.active>a {
  color: var(--brand-red) !important;
}

.dropdown-menu {
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand-red);
  /* border-radius: 0 0 10px 10px; */
  padding: 8px 18px;
  box-shadow: var(--shadow-md);
}

.dropdown-menu li a {
  padding: 11px 0;
  font-size: 11px;
}

/* ---------------- Hero ---------------- */
.banner-carousel,
.banner-carousel .slick-list,
.banner-carousel .slick-track {
  width: 100%;
}

.banner-carousel .banner-carousel-item {
  position: relative;
  height: clamp(420px, 52vw, 650px) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.banner-carousel .banner-carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 22, 46, 0.34), rgba(6, 22, 46, 0.08));
  z-index: 0;
}

.banner-carousel .slider-content {
  position: relative;
  z-index: 1;
}

.slide-title {
  margin-bottom: 12px;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.slide-sub-title {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.05;
}

.banner-carousel .carousel-control i {
  width: 44px;
  height: 44px;
  line-height: 44px;
  /* border-radius: 50%; */
  background: rgba(0, 0, 0, 0.42);
}

/* ---------------- CTA ---------------- */
.call-to-action-box {
  position: relative;
  z-index: 20;
  margin-top: -38px;
}

.call-to-action-box .container {
  padding-left: 24px;
  padding-right: 24px;
}

.call-to-action-box .action-style-box {
  padding: 22px 28px;
  /* border-radius: var(--radius); */
  background: linear-gradient(135deg, #f04b50 0%, var(--brand-red) 100%);
  box-shadow: 0 16px 35px rgba(233, 69, 75, 0.3);
}

.action-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  text-transform: uppercase;
}

.call-to-action-box .btn-dark {
  min-width: 130px;
  padding: 12px 22px 10px;
  /* border-radius: 999px; */
  background: #121212;
}

/* ---------------- Section headings ---------------- */
.section-title {
  margin-bottom: 4px;
  color: #7b8490;
  font-size: 19px;
  line-height: 1.9;
  letter-spacing: 0.15em;
}

.section-sub-title {
  position: relative;
  margin: 0 0 46px !important;
  color: var(--brand-red) !important;
  font-size: clamp(28px, 3vw, 40px) !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  letter-spacing: -0.03em;
}

.section-sub-title::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 14px auto 0;
  /* border-radius: 99px; */
  background: var(--brand-red);
}

/* ---------------- About ---------------- */
#ts-features {
  margin-top: 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: none !important;
}

#ts-features .row:not(.text-center) {
  align-items: center;
}

#ts-features .col-lg-6 {
  padding: 15px;
}

/* ---------------- Business cards ---------------- */
#ts-service-area {
  margin: 0 !important;
  padding: 76px 0 84px !important;
  background: #fff;
}

#ts-service-area .business-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  position: static !important;
  height: auto !important;
  min-height: 0 !important;
  margin: -10px !important;
}

#ts-service-area .business-card-col {
  position: static !important;
  display: block !important;
  transform: none !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  float: none !important;
  padding: 10px !important;
  margin: 0 !important;
}

#ts-service-area .project-img-container {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0 !important;
  overflow: hidden;
  border-radius: var(--brand-radius, 14px);
  background: #ddd;
  box-shadow: var(--shadow-sm, 0 6px 20px rgba(16, 24, 40, .08));
}

#ts-service-area .project-img-container>a {
  display: block;
  width: 100%;
  height: 100%;
}

#ts-service-area .project-img-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
  transition: transform .35s ease;
}

#ts-service-area .project-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1 !important;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 18, 31, .03) 35%, rgba(9, 18, 31, .86) 100%) !important;
}

#ts-service-area .project-img-container:hover img {
  transform: scale(1.04) !important;
}

#ts-service-area .project-item-info {
  position: absolute !important;
  top: auto !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 3;
  display: block !important;
  width: 100%;
  padding: 24px;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

#ts-service-area .project-item-info-content {
  width: 100%;
}

#ts-service-area .project-item-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  text-transform: none;
}

#ts-service-area .project-item-title a {
  color: #fff !important;
}

/* ==========================================================
   EASY MAINTENANCE - COMPACT FIX
   ========================================================== */

.easy-maintenance-section {
  position: relative;
  min-height: 430px;
  padding: 38px 0 0;
  overflow: hidden;

  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* Overlay dibuat jauh lebih ringan */
.easy-maintenance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(90deg,
      rgba(247, 249, 252, 0.78) 0%,
      rgba(247, 249, 252, 0.62) 37%,
      rgba(247, 249, 252, 0.18) 61%,
      rgba(247, 249, 252, 0) 78%) !important;
}

/* Hapus gradient putih bawah yang membuat section pucat */
.easy-maintenance-section::after {
  display: none !important;
}

.easy-maintenance-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.easy-maintenance-row {
  min-height: 392px;
  align-items: stretch !important;
}

/* Kolom kiri */
.easy-maintenance-row>.col-lg-6:first-child,
.easy-maintenance-row>.col-md-6:first-child {
  display: flex;
  align-items: center;
}

/* Card teks lebih compact */
.easy-maintenance-copy {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 32px 36px;

  border: 1px solid rgba(218, 223, 232, 0.92);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 14px 35px rgba(16, 24, 40, 0.12);

  color: var(--text-dark);
}

.easy-maintenance-label {
  display: inline-block;
  margin-bottom: 9px;

  color: var(--brand-red);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.easy-maintenance-title {
  margin: 0 0 13px;

  color: var(--brand-blue) !important;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: none;
}

.easy-maintenance-title::after {
  content: "";
  display: block;

  width: 46px;
  height: 3px;
  margin-top: 12px;

  background: var(--brand-red);
}

.easy-maintenance-description {
  margin: 0 0 22px;

  color: #4f5968 !important;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}

.easy-maintenance-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 145px;
  padding: 12px 22px 10px;

  color: #fff !important;
  background: var(--brand-blue);
  border: 0;
  box-shadow: 0 8px 18px rgba(26, 71, 172, 0.22);

  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.easy-maintenance-button:hover,
.easy-maintenance-button:focus {
  color: #fff !important;
  background: var(--brand-blue-dark);
}

/* Kolom kanan harus menempel ke dasar */
.easy-maintenance-row>.col-lg-6:last-child,
.easy-maintenance-row>.col-md-6:last-child {
  display: flex;
  align-items: flex-end;
}

/* Visual HP */
.easy-maintenance-visual {
  min-height: 285px;
  margin-top: 20px;
}

.easy-maintenance-image {
  max-height: 300px;
  margin-bottom: 0;
}

/* Hilangkan glow berlebih */
.easy-maintenance-visual::before {
  display: none !important;
}

/* HP benar-benar mentok bawah */
.easy-maintenance-image {
  position: relative;
  z-index: 2;

  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;

  margin: 0 auto -1px;

  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 24px rgba(7, 24, 58, 0.2));
}

@media (max-width: 991px) {
  .easy-maintenance-section {
    min-height: 390px;
    padding: 34px 0 0;
  }

  .easy-maintenance-row {
    min-height: 356px;
  }

  .easy-maintenance-copy {
    padding: 28px 30px;
  }

  .easy-maintenance-visual {
    min-height: 356px;
  }

  .easy-maintenance-image {
    max-height: 370px;
    margin-bottom: 0;
  }
}

/* ==========================================================
   EASY MAINTENANCE MOBILE — PHONE STICK TO BOTTOM
   ========================================================== */

@media (max-width: 767px) {
  .easy-maintenance-section {
    position: relative;
    min-height: 0 !important;
    padding: 36px 0 0 !important;
    overflow: hidden !important;
  }

  .easy-maintenance-section::after {
    display: none !important;
  }

  .easy-maintenance-row {
    min-height: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Hilangkan padding bawah Bootstrap pada kolom gambar */
  .easy-maintenance-row>.col-lg-6:last-child,
  .easy-maintenance-row>.col-md-6:last-child {
    position: relative;
    display: block !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Area khusus gambar HP */
  .easy-maintenance-visual {
    position: relative !important;
    display: block !important;

    width: 100%;
    height: 330px !important;
    min-height: 330px !important;

    margin: 18px 0 0 !important;
    padding: 0 !important;

    overflow: hidden;
  }

  /* Paksa HP menempel batas bawah */
  .easy-maintenance-image {
    position: absolute !important;
    left: 50% !important;
    bottom: -2px !important;
    top: auto !important;

    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 82% !important;
    max-height: 330px !important;

    margin: 0 !important;

    object-fit: contain;
    object-position: center bottom;

    transform: translateX(-50%) !important;
  }
}

@media (max-width: 575px) {
  .easy-maintenance-visual {
    height: 300px !important;
    min-height: 300px !important;
  }

  .easy-maintenance-image {
    max-width: 86% !important;
    max-height: 300px !important;
    bottom: -2px !important;
  }
}

/* ---------------- Clients and Group ---------------- */
section.content {
  background: var(--surface-soft) !important;
}

section.content>.container>.row>.col-lg-12>center {
  display: block;
}

.team-slide {
  margin: 0 -8px;
}

.team-slide .slick-track {
  display: flex;
  align-items: stretch;
}

.team-slide .slick-slide {
  height: auto;
  padding: 8px;
}

.team-slide .item,
.team-slide .ts-team-wrapper,
.team-slide .team-img-wrapper {
  height: 100%;
}

.team-slide .ts-team-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.team-slide .team-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.team-slide .team-img-wrapper img {
  width: auto !important;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.team-slide .team-img-wrapper p {
  margin: 16px 0 0;
  color: #333;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.team-slide .ts-team-wrapper:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
  box-shadow: var(--shadow-sm);
}

.team-slide .slick-dots {
  bottom: -40px;
}

.team-slide .slick-dots li button::before {
  color: #aeb4bd;
}

.team-slide .slick-dots li.slick-active button::before {
  color: var(--brand-red);
}

/* ---------------- Articles ---------------- */
#news {
  background: #fff;
}

#news .row:not(.text-center) {
  display: flex;
  flex-wrap: wrap;
}

#news .col-lg-4 {
  display: flex;
}

.latest-post {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.latest-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.latest-post-media,
.latest-post-img {
  display: block;
  overflow: hidden;
}

.latest-post-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.latest-post:hover .latest-post-media img {
  transform: scale(1.05);
}

.latest-post .post-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.latest-post .post-title {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.45;
  text-transform: none;
}

.latest-post-meta {
  margin-top: auto;
  color: #8b93a1;
  font-size: 12px;
}

.general-btn {
  margin-top: 34px;
}

.general-btn .btn-primary {
  /* border-radius: 999px; */
  padding-left: 26px;
  padding-right: 26px;
}

hr {
  display: none;
}

/* FOOTER */
footer {
  background: #23282d;
  color: #b7bcc2;
  padding: 80px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
}

.foot-title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--brand-red);
}

.foot-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
}

.foot-line .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-red);
  margin-top: 7px;
  flex: none;
}

.foot-links a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13.5px;
  transition: 0.2s;
}

.foot-links a:hover {
  color: var(--brand-red);
  padding-left: 4px;
}

.foot-form input,
.foot-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 13px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 13.5px;
}

.foot-form button {
  width: 100%;
  background: var(--brand-red);
  color: #fff;
  border: 0;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 13px;
  cursor: pointer;
}

.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7d8288;
}

@media (max-width: 980px) {

  .hero-inner,
  .about-grid,
  .em {
    grid-template-columns: 1fr;
  }

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

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

  .clients-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .navlinks {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991px) {
  body {
    padding-top: 66px !important;
  }

  .header-two.navbar-fixed,
  .header-two .site-navigation,
  .header-two .navbar {
    min-height: 66px;
  }

  .header-two .navbar {
    flex-wrap: wrap;
  }

  .logo-nav {
    height: 36px !important;
  }

  .navbar-toggler {
    margin-left: auto;
    border-radius: 8px;
  }

  #navbar-collapse {
    flex-basis: 100%;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    border-top: 1px solid var(--border);
    background: #fff;
  }

  ul.navbar-nav {
    align-items: stretch;
    padding: 10px 0 18px;
  }

  ul.navbar-nav>li {
    width: 100%;
    padding: 0 !important;
  }

  ul.navbar-nav>li>a,
  .navbar-light ul.navbar-nav>li>a {
    padding: 12px 4px !important;
  }

  ul.navbar-nav>li>a::before {
    display: none;
  }

  .dropdown-menu {
    margin-bottom: 8px;
    box-shadow: none;
  }

  .banner-carousel .banner-carousel-item {
    height: 500px !important;
  }

  .call-to-action-box {
    margin-top: -28px;
  }

  #banner-area.em-home-bg::before {
    background: rgba(255, 255, 255, 0.88) !important;
  }

  #banner-area .col-md-6:last-child img {
    margin-top: 30px;
  }

  .footer-widget+.footer-widget {
    margin-top: 22px !important;
  }
}

@media (max-width: 767px) {

  section,
  .section-padding {
    padding: 58px 0;
  }

  .banner-carousel .banner-carousel-item {
    height: 390px !important;
  }

  .slide-sub-title {
    font-size: 34px;
  }

  .call-to-action-box .action-style-box {
    padding: 20px;
    text-align: center;
  }

  .action-title {
    font-size: 15px;
  }

  .call-to-action-box .btn-dark {
    width: 100%;
    margin-top: 12px;
  }

  .section-sub-title {
    margin-bottom: 34px !important;
    font-size: 30px !important;
  }

  #ts-service-area .project-img-container {
    height: 250px;
  }

  #banner-area.em-home-bg {
    min-height: auto;
    padding: 60px 0;
  }

  .latest-post-media img {
    height: 210px;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .banner-carousel .banner-carousel-item {
    height: 330px !important;
  }

  .call-to-action-box .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .slide-title,
  .slide-sub-title {
    padding-left: 12px;
    padding-right: 12px;
  }


  #ts-service-area .project-img-container {
    height: 220px;
  }

  .team-slide .ts-team-wrapper {
    min-height: 150px;
  }
}

/* Hard reset for old Shuffle.js layout styles */
#ts-service-area .business-grid[style] {
  height: auto !important;
}

#ts-service-area .business-card-col[style] {
  position: static !important;
  transform: none !important;
}

@media (max-width: 767px) {
  #ts-service-area .business-grid {
    margin: -7px !important;
  }

  #ts-service-area .business-card-col {
    padding: 7px !important;
  }

  #ts-service-area .project-img-container {
    height: 245px;
  }
}

@media (max-width: 575px) {
  #ts-service-area .project-img-container {
    height: 220px;
  }
}

/* ==========================================================
   FIX OUR CLIENTS
   1. Perbesar logo client
   2. Pindahkan tombol slider ke bawah
   ========================================================== */

.clients-section {
  padding-bottom: 90px !important;
}

#clients-slide {
  position: relative;
  padding-bottom: 58px;
}

/* Tinggi card client */
#clients-slide .ts-team-wrapper {
  min-height: 220px;
  padding: 24px 20px;
}

/* Pastikan wrapper logo memenuhi card */
#clients-slide .team-img-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  height: 100%;
  min-height: 170px;
}

/* Perbesar logo client */
#clients-slide .team-img-wrapper img {
  display: block;
  width: auto !important;
  height: auto !important;

  max-width: 82% !important;
  max-height: 125px !important;

  margin: 0 auto;
  object-fit: contain;
}

/* Tombol previous dan next */
#clients-slide .slick-prev,
#clients-slide .slick-next {
  position: absolute !important;

  top: auto !important;
  bottom: 0 !important;

  width: 40px !important;
  height: 40px !important;

  margin: 0 !important;
  padding: 0 !important;

  transform: none !important;
  z-index: 20;

  border: 1px solid #dfe3e8 !important;
  background: #ffffff !important;
  box-shadow: 0 5px 14px rgba(16, 24, 40, 0.1);
}

/* Previous di kiri tengah */
#clients-slide .slick-prev {
  left: calc(50% - 46px) !important;
  right: auto !important;
}

/* Next di kanan tengah */
#clients-slide .slick-next {
  left: calc(50% + 6px) !important;
  right: auto !important;
}

/* Warna icon arrow */
#clients-slide .slick-prev::before,
#clients-slide .slick-next::before {
  color: #212121 !important;
  font-size: 18px !important;
  line-height: 40px !important;
  opacity: 1 !important;
}

/* Hover tombol */
#clients-slide .slick-prev:hover,
#clients-slide .slick-next:hover {
  border-color: var(--brand-red) !important;
  background: var(--brand-red) !important;
}

#clients-slide .slick-prev:hover::before,
#clients-slide .slick-next:hover::before {
  color: #ffffff !important;
}

/* Dot jangan bertabrakan dengan arrow */
#clients-slide .slick-dots {
  bottom: -38px !important;
}

@media (max-width: 991px) {
  #clients-slide .ts-team-wrapper {
    min-height: 190px;
  }

  #clients-slide .team-img-wrapper {
    min-height: 140px;
  }

  #clients-slide .team-img-wrapper img {
    max-width: 84% !important;
    max-height: 105px !important;
  }
}

@media (max-width: 575px) {
  .clients-section {
    padding-bottom: 80px !important;
  }

  #clients-slide {
    padding-bottom: 54px;
  }

  #clients-slide .ts-team-wrapper {
    min-height: 170px;
    padding: 20px;
  }

  #clients-slide .team-img-wrapper {
    min-height: 120px;
  }

  #clients-slide .team-img-wrapper img {
    max-width: 78% !important;
    max-height: 90px !important;
  }

  #clients-slide .slick-prev,
  #clients-slide .slick-next {
    width: 36px !important;
    height: 36px !important;
  }

  #clients-slide .slick-prev {
    left: calc(50% - 42px) !important;
  }

  #clients-slide .slick-next {
    left: calc(50% + 6px) !important;
  }

  #clients-slide .slick-prev::before,
  #clients-slide .slick-next::before {
    line-height: 36px !important;
    font-size: 16px !important;
  }
}

/* ==========================================================
   FIX GROUP SLIDER - MOBILE
   Tombol prev/next tidak menimpa card
   ========================================================== */

#group-slide {
  position: relative;
}

@media (max-width: 575px) {

  /* Sediakan ruang khusus untuk tombol slider */
  #group-slide {
    padding-bottom: 58px;
  }

  /* Rapikan tinggi card */
  #group-slide .ts-team-wrapper {
    min-height: 180px;
    padding: 22px 18px;
  }

  #group-slide .team-img-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    min-height: 130px;
  }

  #group-slide .team-img-wrapper center {
    display: block;
    width: 100%;
  }

  #group-slide .team-img-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #group-slide .team-img-wrapper img {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 76% !important;
    max-height: 82px !important;
    margin: 0 auto;
    object-fit: contain;
  }

  #group-slide .team-img-wrapper p {
    margin: 18px 0 0;
    padding: 0 8px;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
  }

  /* Pindahkan arrow ke area bawah card */
  #group-slide .slick-prev,
  #group-slide .slick-next {
    position: absolute !important;
    top: auto !important;
    bottom: 0 !important;

    width: 38px !important;
    height: 38px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;
    z-index: 20;

    border: 1px solid #dfe3e8 !important;
    background: #ffffff !important;
    box-shadow: 0 5px 14px rgba(16, 24, 40, 0.1);
  }

  #group-slide .slick-prev {
    left: calc(50% - 43px) !important;
    right: auto !important;
  }

  #group-slide .slick-next {
    left: calc(50% + 5px) !important;
    right: auto !important;
  }

  #group-slide .slick-prev::before,
  #group-slide .slick-next::before {
    color: #212121 !important;
    font-size: 17px !important;
    line-height: 38px !important;
    opacity: 1 !important;
  }

  #group-slide .slick-prev:hover,
  #group-slide .slick-next:hover {
    border-color: var(--brand-red) !important;
    background: var(--brand-red) !important;
  }

  #group-slide .slick-prev:hover::before,
  #group-slide .slick-next:hover::before {
    color: #ffffff !important;
  }

  /* Dot ditaruh lebih bawah dari tombol */
  #group-slide .slick-dots {
    bottom: -36px !important;
  }

  /* Section diberi ruang agar dot tidak terpotong */
  #group-slide.closest-content,
  #group-slide {
    margin-bottom: 36px;
  }
}

/* ==========================================================
   ABOUT SECTION
   ========================================================== */

.about-home-section {
  position: relative;
  padding: 78px 0 88px;
  overflow: hidden;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f7f9fc 100%);
}

/* Heading */
.about-home-heading {
  margin-bottom: 46px;
}

.about-home-eyebrow {
  display: inline-block;
  margin-bottom: 8px;

  color: var(--brand-blue);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-home-section-title {
  margin: 0;

  color: var(--brand-red);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.about-home-section-title::after {
  content: "";
  display: block;

  width: 50px;
  height: 3px;
  margin: 16px auto 0;

  background: var(--brand-red);
}

/* Row */
.about-home-row {
  margin-left: -10px;
  margin-right: -10px;
}

.about-home-row>[class*="col-"] {
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
}

/* Card umum */
.about-home-image-card,
.about-home-content-card {
  width: 100%;
  min-height: 360px;

  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.about-home-content-card {
  border-left: 4px solid var(--brand-red);
}

.about-home-image-card:hover,
.about-home-content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Card gambar */
.about-home-image-card {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 34px;

  background:
    linear-gradient(135deg,
      #fff7f7 0%,
      #ffffff 100%);
}

.about-home-image {
  display: block;

  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: 285px;

  margin: 0 auto;

  object-fit: contain;
}

/* Card teks */
.about-home-content-card {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 42px 44px;
}

.about-home-company-label {
  display: inline-block;
  width: max-content;
  margin-bottom: 13px;
  padding: 6px 10px;

  color: var(--brand-red);
  background: rgba(233, 69, 75, 0.09);

  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-home-company-title {
  max-width: 520px;
  margin: 0 0 20px;

  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
}

.about-home-company-title::after {
  content: "";
  display: block;

  width: 46px;
  height: 3px;
  margin-top: 15px;

  background: var(--brand-red);
}

.about-home-description {
  margin: 0 0 13px;

  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

.about-home-description:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-home-section {
    padding: 68px 0 74px;
  }

  .about-home-heading {
    margin-bottom: 38px;
  }

  .about-home-image-card,
  .about-home-content-card {
    min-height: 330px;
  }

  .about-home-image-card {
    padding: 28px;
  }

  .about-home-content-card {
    padding: 34px;
  }

  .about-home-company-title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .about-home-section {
    padding: 58px 0 64px;
  }

  .about-home-heading {
    margin-bottom: 30px;
  }

  .about-home-eyebrow {
    font-size: 10px;
  }

  .about-home-section-title {
    font-size: 31px;
  }

  .about-home-section-title::after {
    width: 42px;
    margin-top: 12px;
  }

  .about-home-row {
    margin-left: 0;
    margin-right: 0;
  }

  .about-home-row>[class*="col-"] {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .about-home-image-card,
  .about-home-content-card {
    min-height: 0;
  }

  .about-home-image-card {
    padding: 24px 18px;
  }

  .about-home-image {
    max-width: 100%;
    max-height: 240px;
  }

  .about-home-content-card {
    padding: 28px 24px;
  }

  .about-home-company-title {
    margin-bottom: 18px;
    font-size: 27px;
    line-height: 1.18;
  }

  .about-home-description {
    font-size: 14px;
    line-height: 1.75;
    text-align: left !important;
  }
}

@media (max-width: 575px) {
  .about-home-section {
    padding: 48px 0 54px;
  }

  .about-home-heading {
    margin-bottom: 26px;
  }

  .about-home-section-title {
    font-size: 28px;
  }

  .about-home-image-card {
    padding: 20px 14px;
  }

  .about-home-image {
    max-height: 210px;
  }

  .about-home-content-card {
    padding: 24px 20px;
  }

  .about-home-company-label {
    margin-bottom: 11px;
  }

  .about-home-company-title {
    font-size: 24px;
  }

  .about-home-description {
    font-size: 13.5px;
    line-height: 1.72;
  }
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #7d8288;
}

