/**/
/* Fonts - preload in HTML instead of @import */
/* @import url(//fonts.googleapis.com/css?family=Signika:400,300,600,700); */

/* Reset inline - single line version */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
blockquote,
big,
body,
center,
canvas,
caption,
cite,
code,
command,
datalist,
dd,
del,
details,
dfn,
dl,
div,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
keygen,
label,
legend,
li,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
s,
samp,
section,
small,
span,
source,
strike,
strong,
sub,
sup,
table,
tbody,
tfoot,
thead,
th,
tr,
td,
video,
tt,
u,
ul,
var {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  outline: 0;
  vertical-align: top;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
table,
table td {
  padding: 0;
  border: none;
  border-collapse: collapse;
}
img {
  vertical-align: top;
}
embed {
  vertical-align: top;
}
input[type="text"],
textarea {
  outline: none;
  border-radius: 0;
}

input {
  outline: none !important;
}

html {
  width: 100%;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

* {
  -webkit-text-size-adjust: none;
}

/* OPTIMASI CRITICAL: Background gradient dipindah ke fixed pseudo-element */
body {
  font:
    14px/22px Arial,
    Helvetica,
    sans-serif;
  color: #2d3748 !important;
  position: relative;
  background: #f5f9ff !important; /* Fallback solid color */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fixed background layer - tidak memicu repaint saat scroll */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7faff 25%,
    #eef5ff 50%,
    #e3f0ff 75%,
    #d6e9ff 100%
  );
  z-index: -1;
  pointer-events: none;
  will-change: auto;
}

.ic {
  border: 0;
  float: right;
  background: #fff;
  color: #f00;
  width: 50%;
  line-height: 10px;
  font-size: 10px;
  margin: -220% 0 0 0;
  overflow: hidden;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-family: "Signika", sans-serif;
  color: #1a365d;
}

h2 {
  font-size: 60px;
  padding-top: 101px;
  line-height: 60px;
  text-align: center;
  color: #1c4d8d;
  font-weight: 700;
  letter-spacing: -1px;
}

h3 {
  font-size: 48px;
  line-height: 54px;
  color: #1c4d8d;
  font-weight: 700;
  letter-spacing: -0.5px;
}

p {
  margin-bottom: 19px;
}

img {
  max-width: 100%;
}

address {
  font-style: normal;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*links - OPTIMASI: ganti transition: all dengan spesifik */
a {
  text-decoration: none;
  color: inherit;
  outline: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

a:hover {
  color: #1c4d8d;
}

/*preclass*/
.mb0 {
  margin-bottom: 0px !important;
}
.m0 {
  margin: 0 !important;
}
.pad0 {
  padding: 0 !important;
}
.pt0 {
  padding-top: 0;
}

.img_inner {
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.fleft {
  float: left;
  margin-right: 20px;
  margin-top: 3px;
  margin-bottom: 22px;
}

.fright {
  float: right !important;
}
.upp {
  text-transform: uppercase;
}
.alright {
  text-align: right;
}
.center {
  text-align: center;
}

.wrapper,
.extra_wrapper {
  overflow: hidden;
}

.clear {
  float: none !important;
  clear: both;
}

/*header - OPTIMASI: simplified transition */
header {
  display: block;
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  padding-bottom: 0px;
  top: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: none;
}

h1 {
  padding-top: 28px;
  float: left;
  z-index: 999;
}

header h1 a {
  display: block;
  overflow: hidden;
  height: 43px;
  text-indent: -999px;
  transition: opacity 0.3s ease;
}

header h1 a img {
  display: block;
}

/* Details */
details summary {
  list-style: none;
  padding: 20px;
  cursor: pointer;
  border-radius: 15px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

details summary:hover {
  background: rgba(200, 200, 200, 0.1);
}

details summary::-webkit-details-marker {
  display: none;
}

.partner-detail-wrapper {
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
}

.partner-detail-wrapper:hover {
  transform: translateY(-3px);
}

.chevron {
  bottom: 20px;
  left: calc(50% - 15px);
  transform-origin: 50%;
  transform: rotate(180deg);
  transition: transform 0.8s ease;
}

.partner-detail-wrapper[open] + .chevron {
  transform: rotate(0deg);
}

.partner-detail-wrapper[open] {
  cursor: default;
}

/*Content*/
.content {
  padding-top: 125px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tm_link {
  color: #fd2614;
}

.tm_link:hover {
  color: #fff;
}

#page1 {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

#page1::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(200, 200, 200, 0.06) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* OPTIMASI CAROUSEL: Simplified shadow */
#page1 .carousel-item img {
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* OPTIMASI: Fade animation untuk carousel */
.carousel-fade .carousel-item {
  transition: opacity 0.6s ease;
  opacity: 0;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(200, 200, 200, 0.3);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  opacity: 0.7;
}

.carousel-indicators .active {
  background-color: #1c4d8d;
  border-color: #1c4d8d;
  width: 45px;
  height: 4px;
  opacity: 1;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(28, 77, 141, 0.5);
}

/* Optimized page backgrounds - simpler gradients */
#page2 {
  background: #fafcff;
  position: relative;
  padding-bottom: 190px;
  overflow: hidden;
}

header.page2 {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

header.page2 .hover {
  background-color: rgba(200, 200, 200, 0.1);
  transition: background 0.4s ease;
}

#page3 {
  background: #f7faff;
  position: relative;
  overflow: hidden;
  padding-bottom: 190px;
}

header.page3 {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header.page3 .hover {
  background-color: rgba(200, 200, 200, 0.1);
  transition: background 0.4s ease;
}

#page4 {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
  padding-bottom: 186px;
}

header.page4 {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header.page4 .hover {
  background-color: rgba(200, 200, 200, 0.1);
  transition: background 0.4s ease;
}

#page5 {
  background: #f5f9ff;
  position: relative;
  overflow: hidden;
  padding-bottom: 190px;
}

header.page5 {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

header.page5 .hover {
  background-color: rgba(200, 200, 200, 0.1);
  transition: background 0.4s ease;
}

#page6 {
  background: #f0f7ff;
  position: relative;
  overflow: hidden;
  padding-bottom: 190px;
}

/* OPTIMASI: Simplified h3 */
.slogan h3 {
  margin-bottom: 40px;
  font-weight: 700;
  color: #1c4d8d;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 42px;
  position: relative;
  padding-bottom: 25px;
  transition: transform 0.5s ease;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slogan h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #1c4d8d;
  border-radius: 2px;
}

.socials {
  padding-top: 45px;
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  color: #1c4d8d;
}

.socials a svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.socials a:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(28, 77, 141, 0.2);
  border-color: #1c4d8d;
  color: #1c4d8d;
}

.socials a:hover svg {
  transform: scale(1.1);
  color: #1c4d8d;
}

.socials a + a {
  margin-left: 20px;
}

.text1 {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #4a5568;
  transition: color 0.4s ease;
}

/* OPTIMASI BOX: Simplified transitions and shadows */
.box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 45px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.box_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.box img {
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  margin-bottom: 28px;
  padding: 12px;
  background: #f8fbff;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 110px !important;
  height: 110px !important;
  object-fit: contain;
}

.box:hover img {
  transform: scale(1.05);
  border-color: #1c4d8d;
  box-shadow: 0 4px 12px rgba(28, 77, 141, 0.15);
}

.box .text1 {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #1c4d8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.box:hover .text1 {
  color: #134072;
  transform: translateY(-2px);
}

.box .text2 {
  color: #4a5568;
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  flex: 1;
  transition: color 0.4s ease;
}

.box:hover .text2 {
  color: #2d3748;
}

#page2 .row {
  display: flex;
  flex-wrap: wrap;
}

#page2 .col-lg-3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.slogan {
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

.slogan .text1 p {
  font-size: 19px;
  line-height: 34px;
  color: #4a5568;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 35px 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(200, 200, 200, 0.1);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  box-shadow: 0 8px 30px rgba(200, 200, 200, 0.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slogan .text1 p:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(200, 200, 200, 0.25);
  box-shadow: 0 12px 40px rgba(200, 200, 200, 0.12);
  transform: translateY(-5px);
}

.socials1 {
  margin-top: 19px;
  padding-top: 24px;
  border-top: 2px solid rgba(200, 200, 200, 0.5);
  text-align: center;
  font-size: 0;
  line-height: 0;
}

.socials1 a {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: 2px solid rgba(200, 200, 200, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.1);
  color: #1c4d8d;
}

.socials1 a:hover {
  background: #1c4d8d;
  transform: translateY(-5px) scale(1.15);
  box-shadow: 0 10px 25px rgba(200, 200, 200, 0.3);
  border-color: rgba(200, 200, 200, 0.4);
  color: #ffffff;
}

.socials1 a + a {
  width: 40px;
  margin-left: 12px;
}

#page3 .row {
  display: flex;
  flex-wrap: wrap;
}

#page3 .col-lg-3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#page3 .box {
  color: #2d3748;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(200, 200, 200, 0.15);
  border-radius: 24px;
  padding: 45px 30px;
  box-shadow: 0 8px 32px rgba(200, 200, 200, 0.08);
  transition:
    transform 0.6s ease,
    box-shadow 0.6s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#page3 .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(200, 200, 200, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

#page3 .box img {
  margin-bottom: 25px;
  border: 3px solid rgba(200, 200, 200, 0.3);
  border-radius: 50%;
  padding: 15px;
  background: #edf6ff;
  transition:
    transform 0.5s ease,
    border-color 0.5s ease;
  box-shadow: 0 5px 20px rgba(200, 200, 200, 0.15);
  width: 100px !important;
  height: 100px !important;
  object-fit: contain;
}

#page3 .box:hover img {
  transform: scale(1.15) rotate(8deg);
  border-color: #1c4d8d;
  box-shadow: 0 10px 30px rgba(200, 200, 200, 0.3);
}

#page3 .box .text1 {
  margin-bottom: 16px;
  font-size: 19px;
  font-weight: 600;
  color: #1c4d8d;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

#page3 .box:hover .text1 {
  color: #164175;
  transform: translateY(-2px);
}

#page3 .box .text2 {
  color: #4a5568;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  flex: 1;
}

#page3 .box_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
}

#page4 h3 {
  margin-bottom: 70px;
  color: #1c4d8d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
}

/* Client Card Container */
.client-card-wrapper {
  padding: 15px;
  margin-bottom: 30px;
}

.client-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(200, 200, 200, 0.422);
  padding: 25px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 8px 25px rgba(200, 200, 200, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1c4d8d;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-card:hover::before {
  opacity: 1;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(28, 77, 141, 0.25);
  border-color: rgba(28, 77, 141, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

/* Card Image Container */
.client-card-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  overflow: hidden;
}

.client-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.client-card:hover .client-card-image img {
  transform: scale(1.05);
}

/* Card Content */
.client-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.client-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1c4d8d;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 50px;
}

.client-card-address {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.client-card-link {
  display: inline-block;
  color: #1c4d8d;
  padding: 12px 28px;
  background: #ffffff;
  border-radius: 25px;
  border: 3px solid #1c4d8d;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(28, 77, 141, 0.4);
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.client-card-link:hover {
  color: #fff;
  background: #1c4d8d;
  border-color: #1c4d8d;
  box-shadow: 0 10px 35px rgba(28, 77, 141, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Legacy Support - Keep old classes for backward compatibility */
.companies img {
  margin-bottom: 20px;
  border-radius: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 200, 200, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 5px 15px rgba(200, 200, 200, 0.1);
}

.companies img:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 35px rgba(200, 200, 200, 0.25);
  border-color: rgba(200, 200, 200, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

.companies .text1 {
  margin-bottom: 9px;
  color: #2d3748;
  font-weight: 600;
}

.companies a {
  display: inline-block;
  color: #1c4d8d;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 25px;
  border: 1px solid rgba(200, 200, 200, 0.2);
  margin-top: 14px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.08);
}

.companies a:hover {
  color: #fff;
  background: #1c4d8d;
  border-color: #1c4d8d;
  box-shadow: 0 8px 25px rgba(200, 200, 200, 0.3);
  transform: translateY(-3px) scale(1.05);
}

.companies .clear {
  height: 114px;
}

#page5 .slogan {
  margin-bottom: 0px;
}

#page5 h3 {
  color: #1c4d8d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 50px;
}

#page6 h3 {
  color: #1c4d8d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Partners Grid Layout */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Partner Card */
.partner-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 200, 200, 0.2);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(200, 200, 200, 0.1);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 45px rgba(200, 200, 200, 0.2);
  border-color: rgba(200, 200, 200, 0.4);
  background: rgba(255, 255, 255, 0.95);
}

/* Partner Logo */
.partner-logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(200, 200, 200, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.08);
}

.partner-card:hover .partner-logo {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(200, 200, 200, 0.3);
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(200, 200, 200, 0.15);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: filter 0.4s ease;
  filter: grayscale(0%) brightness(1);
}

.partner-card:hover .partner-logo img {
  filter: brightness(1.1);
}

/* Partner Content */
.partner-content {
  width: 100%;
  position: relative;
  z-index: 1;
}

.partner-name {
  color: #1c4d8d;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.partner-name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #1c4d8d;
  transition: width 0.4s ease;
}

.partner-card:hover .partner-name::after {
  width: 100%;
}

.partner-description {
  color: #4a5568;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 25px;
  text-align: center;
}

/* Partner Link */
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: #1c4d8d;
  border: 1px solid rgba(200, 200, 200, 0.4);
  border-radius: 30px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.2);
}

.partner-link:hover {
  background: #164175;
  border-color: #164175;
  box-shadow: 0 8px 30px rgba(200, 200, 200, 0.4);
  transform: translateY(-3px) scale(1.05);
  color: #ffffff;
}

.partner-link svg {
  transition: transform 0.3s ease;
}

.partner-link:hover svg {
  transform: translateX(6px);
}

/* Old card styles - keeping for backward compatibility */
#page6 .card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 200, 200, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(200, 200, 200, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

#page6 .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(200, 200, 200, 0.2);
  border-color: rgba(200, 200, 200, 0.3);
}

header.page6 {
  background: rgba(255, 255, 255, 0.85);
}

header.page6 .hover {
  background-color: rgba(200, 200, 200, 0.1);
  transition: background 0.4s ease;
}

/****Map***/
.map {
  text-align: left;
  overflow: hidden;
  padding-top: 5px;
}

.map .text1 {
  margin-bottom: 39px;
  color: #1c4d8d;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map .text2 {
  color: #4a5568;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.map figure {
  position: relative;
  top: 7px;
  border: 1px solid rgba(200, 200, 200, 0.2);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  display: block;
  box-shadow: 0 8px 32px rgba(200, 200, 200, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.map figure:hover {
  box-shadow: 0 15px 40px rgba(200, 200, 200, 0.25);
  border-color: rgba(200, 200, 200, 0.4);
  transform: translateY(-5px);
}

.map figure iframe {
  width: 100%;
  height: 218px;
  max-width: 100%;
  border-radius: 20px;
}

.map a {
  color: #1c4d8d;
  transition: color 0.3s ease;
  font-weight: 600;
}

.map a:hover {
  color: #164175;
}

.map address {
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  border: 1px solid rgba(200, 200, 200, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.08);
}

.map address:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(200, 200, 200, 0.3);
  box-shadow: 0 8px 25px rgba(200, 200, 200, 0.15);
  transform: translateY(-2px);
}

address dt {
  margin-bottom: 63px;
  color: #1c4d8d;
  font-weight: 600;
}

address dd span {
  min-width: 85px;
  display: inline-block;
  text-align: left;
  color: #1a202c;
}

.map address .text1 {
  color: #1a202c;
  font-weight: 700;
}

.map address .text2 {
  color: #1a202c;
  font-weight: 500;
}

/************Footer***********/
footer {
  display: block;
  background: linear-gradient(
    180deg,
    rgb(9, 71, 153) 0%,
    rgba(23, 88, 172, 0.98) 100%
  );
  border-top: 1px solid rgba(200, 200, 200, 0.15);
  position: relative;
  box-shadow: 0 -4px 30px rgba(200, 200, 200, 0.05);
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1c4d8d, transparent);
}

footer a {
  color: #ffffff;
}

footer a:hover {
  color: #ffffff;
  transition: color 0.3s ease;
}

footer img {
  transition: none;
  filter: brightness(1);
}

footer img:hover {
  transform: none;
  filter: brightness(1);
}

.copy {
  color: #ffffff;
  padding-top: 29px;
  padding-bottom: 30px;
  font-size: 12px;
  line-height: 24px;
  font-weight: 600;
}

/**to top**/
#toTop,
#toTopHover {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/*custome apri*/
#pagging {
  padding-top: 5%;
}

.btn {
  border: 1px;
  padding: 8px 13px;
  cursor: pointer;
}

.bg-success {
  background: #2aae96;
}

.btn:hover,
.btn:focus {
  background: silver;
  outline: none;
}

.btn:disabled,
#pagging .active {
  background: silver;
  outline: none;
  color: black;
  cursor: unset;
}

.pd5 {
  padding: 2px;
}

#carIndicators {
  width: 100%;
  max-height: 100%;
}

.img-fluid {
  max-height: 100% !important;
}

.navbar .navbar-nav .nav-item {
  margin: 0 8px;
}

.navbar .navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
}

.navbar .navbar-nav .nav-link:hover {
  color: #ffffff !important;
  background: #1c4d8d;
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.3);
}

.navbar .navbar-nav .active > .nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show {
  color: #ffffff !important;
  background: #1c4d8d;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(200, 200, 200, 0.2);
}

/* partners */
.partners img {
  max-width: 75%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: inline-block;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  border: 2px solid #e0e7ef;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.partners img:hover {
  transform: translateY(-4px) scale(1.03);
  background: #f8f9fa;
  border-color: #1c4d8d;
  box-shadow: 0 6px 20px rgba(28, 77, 141, 0.3);
}

.partners {
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  margin: 30px 0;
}

/* Carousel modern styling - OPTIMASI */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: 2px solid rgba(200, 200, 200, 0.2);
  opacity: 0.9;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;
  box-shadow: 0 5px 20px rgba(200, 200, 200, 0.1);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: #1c4d8d;
  box-shadow: 0 8px 30px rgba(200, 200, 200, 0.3);
  transform: translateY(-50%) scale(1.15);
  border-color: rgba(200, 200, 200, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) invert(0.3);
  transition: filter 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optimize rendering - akan diapply ke elemen yang sering bergerak */
.box,
.card,
header,
.socials a,
.companies a,
.carousel-control-prev,
.carousel-control-next {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Focus states with modern outline */
a:focus,
button:focus,
.navbar-toggler:focus {
  outline: 2px solid rgba(28, 77, 141, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}

button:focus {
  box-shadow: 0 0 0 3px rgba(28, 77, 141, 0.2);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(242, 248, 255, 0.8);
}

::-webkit-scrollbar-thumb {
  background: rgba(200, 200, 200, 0.5);
  border-radius: 6px;
  border: 2px solid rgba(242, 248, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 200, 200, 0.8);
}

/* Selection styling */
::selection {
  background: rgba(200, 200, 200, 0.8);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(200, 200, 200, 0.8);
  color: #ffffff;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .partner-card {
    padding: 30px;
  }

  .partner-logo {
    height: 100px;
  }

  .partner-name {
    font-size: 20px;
  }

  .box {
    padding: 28px 20px;
    min-height: 280px;
  }

  .slogan h3 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .slogan .text1 p {
    font-size: 16px;
    line-height: 28px;
    padding: 24px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .client-card-wrapper {
    padding: 10px;
    margin-bottom: 20px;
  }

  .client-card {
    padding: 20px;
  }

  .client-card-image {
    height: 150px;
  }
}

@media screen and (max-width: 767px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-card {
    padding: 25px;
  }

  .partner-logo {
    height: 80px;
  }

  .partner-logo img {
    max-height: 60px;
  }

  .partner-name {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .partner-description {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 20px;
  }

  .partner-link {
    padding: 10px 25px;
    font-size: 13px;
  }

  .box {
    margin-bottom: 20px;
    padding: 24px 18px;
    min-height: 260px;
  }

  .slogan h3 {
    font-size: 30px;
    letter-spacing: 1.5px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 32px;
  }

  .box img {
    width: 80px !important;
    height: 80px !important;
    padding: 12px;
  }

  .box .text1 {
    font-size: 17px;
  }

  .box .text2 {
    font-size: 12px;
    line-height: 20px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .socials a {
    width: 60px;
    height: 60px;
  }

  .client-card-wrapper {
    padding: 8px;
  }

  .client-card-title {
    font-size: 16px;
    min-height: auto;
  }
}

@media screen and (max-width: 600px) {
  #carIndicators {
    width: 100%;
    height: 40vh;
  }

  .img-fluid {
    height: 40vh !important;
  }

  .carousel-control-next,
  .carousel-control-prev {
    top: 50%;
    width: 40px;
    height: 40px;
  }

  .navbar-brand {
    width: 70%;
  }

  .navbar-collapse {
    padding-top: 15px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 12px;
    margin-top: 10px;
    padding: 20px;
    border: 1px solid rgba(28, 77, 141, 0.3);
  }

  .navbar .navbar-nav .active > .nav-link,
  .navbar .navbar-nav .nav-link.active,
  .navbar .navbar-nav .nav-link.show,
  .navbar .navbar-nav .show > .nav-link {
    padding-left: 10px;
  }
}
