:root {
  --primary: #1b2f52;
  --secondary: #0099cc;
  --accent: #30b0c5;
  --light: #e6f7ff;
  --dark: #363f4d;
  --dark-dark: #2f3e46;
  --gray: #5a7184;
  --white: #f9fbfd;

  --primary-blue: #1e88e5;
  --light-blue: #56abd5;
  --medium-blue: #64b5f6;
  --dark-blue: #0d47a1;
  --accent-blue: #2196f3;
  --text-dark: #363f4d;
  --text-light: #666666;
  --white: #f9fbfd;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;

  /* Breakpoints */
  --breakpoint-xs: 320px;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;

  /* Font sizes responsif */
  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */

  /* Spacing responsif */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  aspect-ratio: 16 / 9;
  font-family: "Nunito Light", sans-serif;
  /* color: var(--dark); */
  line-height: 1.9;
  /* background-color: var(--white); */
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  padding-right: 0;
  width: 100%;
  height: 100%;
  /* width: 100%;
            height: 100%; */
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 8px;
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 3rem;
}

.main-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-select {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--dark);
  cursor: pointer;
}

.contact-btn {
  background: var(--light-blue);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: url("/bg/bg5.4.png") center / cover no-repeat;
  padding-top: 80px;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  max-width: 1100px;
  margin: auto;
  /* padding: 80px 20px; */
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 100px 20px 80px;
}

.hero-image img {
  width: 600px;
  max-width: 100%;
}

.hero-text {
  max-width: 550px;
}

.hero-text h1 {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.hero-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

/* ===== BUTTON ===== */
.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 10px 26px;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid #30b0c5;
}

.btn.primary2 {
  color: #0c3c60;
  font-weight: 550;
}

.btn.secondary2 {
  color: #0c3c60;
  font-weight: 550;
}

.btn:hover {
  background: #30b0c5;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-nav-menu {
    display: none;
  }
}

/* ================================================= */
/*                 INTRO SECTION                     */
/* ================================================= */

.intro {
  min-height: calc(100vh - 80px); /* tinggi layar - navbar */
  display: flex;
  align-items: flex-start; /* tidak ketarik ke tengah */
  padding: 2rem 0 3rem;
  background: url("/bg/bg5.61.png") center / cover no-repeat;
  /* background: linear-gradient(
        rgba(240, 248, 255, 0.9),
        rgba(220, 240, 255, 0.7)
    );
    scroll-margin-top: 80px; */
  /* background: url('/bg/bg6.png') center/cover no-repeat; */
}

.intro .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================= */
/*               INTRO CONTENT                       */
/* ================================================= */

.intro-content {
  max-width: 1200px;
  margin-bottom: 3rem;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.intro-content h2 span {
  color: var(--accent);
}

.intro-content h2 a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.intro-content p {
  font-size: 1.2rem;
  color: #4a5568;
  line-height: 1.6;
}

.intro-content p span {
  color: #30b0c5;
  font-weight: 600;
}

/* ================================================= */
/*               SERVICE CARDS                       */
/* ================================================= */

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  margin: 2rem 0;
}

/* .service-content-image {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-top: 50px;
  margin-bottom: 100px;
  margin-right: 25px;
  position: relative;
} */

/* service contents */

.service-images {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 16px 0;
  flex-wrap: nowrap;
}

.service-content-image {
  flex: 1 1 50%;
  max-width: 48%;
}

.service-content-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: block;
  object-fit: cover;
}

@media (max-width: 600px) {
  .service-content-image {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* CARD */
.service-card {
  background: linear-gradient(145deg, #30b0c5, #2a9db0);
  color: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: all 0.35s ease;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.12);
}

/* BODY */
.card-body {
  padding: 1rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-top: 20px;
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 550;
  margin-bottom: 1.2rem;
  position: relative;
  color: var(--light);
}

.card-body h3:hover {
  font-size: 1.15rem;
  font-weight: 550;
  margin-bottom: 1.2rem;
  position: relative;
  color: var(--white);
}

.card-body h3::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  transition: 0.3s;

  color: var(--light);
}

.service-card:hover .card-body h3::after {
  width: 70px;
}

.card-body p {
  font-size: 14px;
  line-height: 1.4rem;
  opacity: 0.9;
  flex-grow: 1;
  color: var(--light);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.4rem * 3);
}

.card-body p:hover {
  font-size: 14px;
  line-height: 1.4rem;
  opacity: 0.9;
  flex-grow: 1;
  color: var(--light);
}

/* ================================================= */
/*                  BUTTON                           */
/* ================================================= */

.btn-intro-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.btn-intro {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #30b0c5;
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-intro:hover {
  background: #2a9db0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(48, 176, 197, 0.3);
  color: var(--white);
}

/* ================================================= */
/*               GLOBAL SUPPORT                      */
/* ================================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ================= REPORTS SECTION ================= */
.reports {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.reports-content {
  margin-bottom: 50px;
  color: var(--white);
}

.reports-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.reports-content h2 span,
.reports-content p span {
  color: var(--accent);
}

.reports-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
}

/* ================= SLIDER ================= */
.reports-slider-container {
  overflow: hidden;
  position: relative;
}

.reports-track {
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
}

/* CARD WRAPPER */
.report-card-wrapper {
  flex: 0 0 calc((100% - 75px) / 4);
}

@media (max-width: 1199px) {
  .report-card-wrapper {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 991px) {
  .report-card-wrapper {
    flex: 0 0 50%;
  }
}
@media (max-width: 575px) {
  .report-card-wrapper {
    flex: 0 0 100%;
  }
}

/* ================= CARD ================= */
.report-card {
  display: block;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.report-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.card-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.report-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* OVERLAY */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

/* TEXT OVERLAY */
.card-overlay-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
}

.card-overlay-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-subtitle {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.9;
}

/* ================= NAV BUTTON ================= */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  z-index: 5;
}

.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}

.slider-nav-btn:hover {
  background: var(--accent);
}

.slider-nav-btn:hover svg {
  stroke: #fff;
}

/* ================= SERTIFICATION SECTION ================= */
.sertification {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
  background: url("/bg/bg5.41.png") center / cover no-repeat;
}

.sertification-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1b2f52;
}

.sertification-header p {
  font-size: 1rem;
  color: #5a7184;
  margin-bottom: 3rem;
}

.sertification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.sertification-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sertification-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.sertification-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.cert-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cert-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  object-fit: contain;
}

/* GRID */
.sertification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* selalu 3 kolom */
  gap: 14px;
  margin-top: 50px;
}

/* CARD */
.sertification-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  /* background: rgba(255, 255, 255, 0); */
  border-radius: 14px;
  padding: 8px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.sertification-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* IMAGE */
.sertification-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* HOVER */
.sertification-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0);
}
/* end of sertification css */

/* ================= FOOTER ================= */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4.5rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* MAP */
.footer-map {
  width: 100%;
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

.footer-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FOOTER SECTION */
.footer-section h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section h2 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.footer-section p,
.footer-section a p {
  margin: 0.2rem 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

.footer-section a {
  text-decoration: none;
}

.footer-section a:hover p {
  color: var(--white);
}

/* ICON */
.footer-section i {
  margin-right: 0.5rem;
  color: var(--accent);
  font-size: 0.95rem;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* ================= RESPONSIVE ================= */

/* DESKTOP KECIL */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1.2fr 1.3fr 1fr 1fr;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-map {
    grid-column: span 2;
    min-height: 260px;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-map {
    min-height: 220px;
  }

  .footer-section {
    text-align: left;
  }

  .footer-bottom {
    margin-top: 1.5rem;
  }
}

/* ===== ABOUT PAGE STYLES ===== */
/* about banner */
.aboutban-hero {
  position: relative;
  width: 100%;
  min-height: 55vh;
  background: url("/img-content/bgwtp2.jpg") center right / cover no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.aboutban-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 32, 51, 0.95) 0%,
    rgba(7, 32, 51, 0.75) 45%,
    rgba(7, 32, 51, 0.25) 70%,
    rgba(7, 32, 51, 0) 100%
  );
}

.aboutban-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.aboutban-content {
  max-width: 620px;
  color: white;
}

.aboutban-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 90px;
}

.aboutban-content p {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #cceeff;
  line-height: 1.6;
}

/* ========================= */
/* TABLET (≤ 991px)          */
/* ========================= */
@media (max-width: 991px) {
  .aboutban-hero {
    min-height: 45vh;
    background-position: center;
  }

  .aboutban-content {
    max-width: 520px;
  }

  .aboutban-content h1 {
    font-size: 28px;
  }

  .aboutban-content p {
    font-size: 15px;
  }
}

/* ========================= */
/* MOBILE (≤ 767px)          */
/* ========================= */
@media (max-width: 767px) {
  .aboutban-hero {
    min-height: 70vh; /* lebih tinggi agar teks lega */
    background-position: center; /* fokus tengah */
    align-items: flex-end; /* teks ke bawah */
  }

  .aboutban-overlay {
    background: linear-gradient(
      to bottom,
      rgba(7, 32, 51, 0.9),
      rgba(7, 32, 51, 0.75),
      rgba(7, 32, 51, 0.45),
      rgba(7, 32, 51, 0.15)
    );
  }

  .aboutban-container {
    padding: 0 20px 40px;
  }

  .aboutban-content {
    max-width: 100%;
    text-align: center;
  }

  .aboutban-content h1 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .aboutban-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ========================= */
/* MOBILE KECIL (≤ 480px)    */
/* ========================= */
@media (max-width: 480px) {
  .aboutban-hero {
    min-height: 50vh;
  }

  .aboutban-content h1 {
    font-size: 22px;
  }

  .aboutban-content p {
    font-size: 13.5px;
  }
}

/* end of about banner */

/* .about-wrapper {
  display: flex;
  gap: 40px;
} */

/* .about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
  padding: 65px 0;
}

.about-hero .about-head {
  margin-top: 80px;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 550;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
}


about-hero p,
.about-hero .lead {
  font-weight: 400 !important; 
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  max-width: 1000px;
  margin: 0 auto;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.about-slideshow {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  height: 400px;
  margin-bottom: 30px;
}

.about-carousel {
  height: 100%;
}

.about-carousel .carousel-inner {
  height: 100%;
  border-radius: 15px;
}

.about-carousel .carousel-item {
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.about-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.carousel-caption {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  text-align: center;
}

.carousel-caption h5 {
  font-size: 1.2rem;
  font-weight: 550;
  margin-bottom: 8px;
  color: white;
}

.carousel-caption p {
  font-size: 0.9rem;
  color: #f8f9fa;
  margin-bottom: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-indicators {
  bottom: 15px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
}

.carousel-indicators button.active {
  background-color: var(--secondary);
  border-color: white;
} */

/* ===== VISI & MISI CARD ===== */
/* CONTAINER UTAMA */
.vm-container {
  padding: 60px 0;
  background-color: #f8f9fa;
  background: url("/bg/bg5.4.png") center / cover no-repeat;
}

/* HEADER */
.vm-header {
  margin-bottom: 40px;
  text-align: left;
}

.vm-header h2 {
  font-weight: 550;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.vm-header h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  /* background: linear-gradient(90deg, #2b6cb0, #4299e1); */
  background: var(--accent);
  border-radius: 2px;
}

/* CARD VISI & MISI */
.vm-box {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vm-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* BAGIAN KIRI (Icon & Title) */
.vm-left {
  width: 120px;
  /* background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%); */
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  gap: 8px;
}

.vm-icon {
  font-size: 28px;
  color: #ffffff;
  line-height: 1;
}

.vm-title {
  font-size: 20px;
  font-weight: 550;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}

/* BAGIAN KANAN (Konten) */
.vm-right {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  background: #ffffff;
}

.vm-right p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 400;
  color: var(--dark);
}
/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px) {
  .vm-left {
    width: 100px;
    padding: 18px 10px;
  }

  .vm-icon {
    font-size: 24px;
  }

  .vm-title {
    font-size: 16px;
    letter-spacing: 0.8px;
  }

  .vm-right {
    padding: 20px 22px;
  }

  .vm-right p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 576px) {
  .vm-box {
    flex-direction: row;
    border-radius: 14px;
  }

  .vm-left {
    width: 82px;
    padding: 16px 8px;
    gap: 6px;
  }

  .vm-icon {
    font-size: 20px;
  }

  .vm-title {
    font-size: 13px;
    letter-spacing: 0.6px;
  }

  .vm-right {
    padding: 16px 18px;
  }

  .vm-right p {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* ============================= */
/* SMALL MOBILE */
/* ============================= */
@media (max-width: 420px) {
  .vm-left {
    width: 70px;
  }

  .vm-title {
    font-size: 12px;
  }

  .vm-icon {
    font-size: 18px;
  }

  .vm-right {
    padding: 14px 16px;
  }

  .vm-right p {
    font-size: 13px;
  }
}

/* About Image Container */
.about-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
  padding: 0;
  order: -1;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: white;
  text-align: center;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.exp-years {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.exp-label {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.2;
}

/* IMAGE CONTAINER */
.about-image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  /* Pindahkan KOLOM gambar ke atas */
  .col-lg-6:has(.about-image-container) {
    order: -1;
  }

  .about-image-container {
    margin-bottom: 24px;
    overflow: hidden;
  }

  .experience-badge {
    bottom: 12px;
    right: 12px;
    padding: 10px 14px;
  }

  .exp-years {
    font-size: 1.4rem;
  }

  .exp-label {
    font-size: 0.75rem;
  }
}

/* ================= COMPANY VALUES SECTION ================= */
.row .judul {
  text-align: left !important;
}

.row .judul h2 {
  text-align: left;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
}

.row .judul h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.row .judul p {
  text-align: left;
  max-width: 600px;
  margin-bottom: 0;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 50px;
}

.values-section-kompak {
  background: url("/bg/bg5.41.png") center / cover no-repeat;
}

.value-card-kompak {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  height: auto;
  min-height: 130px; /* Lebih kecil */
  position: relative;
}

.value-card-kompak:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(66, 153, 225, 0.15);
}

.value-card-kompak::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card-kompak:hover::before {
  opacity: 1;
}

/* BAGIAN KIRI (Icon) - LEBIH KECIL TAPI PROPORSIONAL */
.value-left-kompak {
  width: 110px; /* Lebih kecil tapi proporsional */
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px; /* Padding lebih kecil */
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.value-card-kompak:hover .value-left-kompak {
  /* background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%); */
  background: var(--accent);
}

/* Efek dekoratif minimalis */
.value-left-kompak::after {
  content: "";
  position: absolute;
  top: -100%;
  right: -100%;
  width: 100%;
  height: 300%;
  /* background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%); */
  background: var(--accent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.value-card-kompak:hover .value-left-kompak::after {
  transform: rotate(45deg) translate(15px, 15px);
}

/* ICON - UKURAN OPTIMAL */
.value-icon-kompak {
  font-size: 40px; /* Ukuran lebih proporsional untuk card kecil */
  color: #ffffff;
  line-height: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.value-card-kompak:hover .value-icon-kompak {
  transform: scale(1.05);
}

/* BAGIAN KANAN (Judul & Deskripsi) - KOMPAK */
.value-right-kompak {
  flex: 1;
  padding: 22px 24px; /* Padding lebih kompak */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* JUDUL - UKURAN PROPORSIONAL */
.value-title-kompak {
  font-size: 1.25rem;
  font-weight: 550;
  color: var(--primary);
  margin: 0 0 8px 0; /* Margin lebih kecil */
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.value-title-kompak::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 30px;
  height: 2px;
  /* background: linear-gradient(90deg, #2b6cb0, #4299e1); */
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.value-card-kompak:hover .value-title-kompak::after {
  width: 45px;
}

/* DESKRIPSI - RAPI DAN KOMPAK */
.value-desc-kompak {
  margin: 0;
  color: #4a5568;
  line-height: 1.6; /* Line height optimal untuk teks kecil */
  font-size: 0.95rem; /* Sedikit lebih kecil */
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Batas baris untuk konsistensi tinggi */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* GRID LAYOUT - 2 KOLOM DENGAN SPASI YANG PAS */
.values-grid-kompak {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px; /* Gap lebih kecil */
}

/* Efek hover yang lebih halus */
.value-card-kompak {
  animation: cardEntrance 0.5s ease-out;
  animation-fill-mode: both;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* end value card */
/* end Of Aboute CSS */

/* Timeline */
/* SECTION */
.timeline-section {
  background: #ffffff;
  padding-bottom: 150px;
  padding-top: 150px;
  background: url("/bg/bg5.4.png") center / cover no-repeat;
}

.timeline-content strong {
  color: #30b0c5;
  font-weight: 550; /* elegan, tidak terlalu tebal */
}

/* WRAPPER */
.timeline-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  padding: 80px 0 220px;
}

/* GARIS */
.timeline-line {
  position: absolute;
  top: 27%;
  left: 0;
  right: 10px;
  height: 15px;
  background: var(--primary);
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 1;
}

/* PANAH */
.timeline-arrow {
  position: absolute;
  top: 27%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid var(--primary);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  z-index: 1;
}

/* ITEM */
.timeline-item {
  position: relative;
  flex: 1;
  z-index: 2;
}

/* DOT (TEPAT DI GARIS) */
.timeline-dot {
  position: absolute;
  top: 50%;
  left: 75px;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: #ffffff;
  border: 6px solid var(--primary);
  border-radius: 50%;
  z-index: 3;
}

/* CONTENT */
.timeline-content {
  position: absolute;
  /* top: calc(50% + 40px);  */
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  text-align: left;
  z-index: 2;
  top: calc(50% + 32px);
}

/* TEXT */
.timeline-content h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 18px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
/* end Of Timline Css */

/* Team Section */
.team-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.team-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.3;
}

/* JABATAN */
.team-card .tim-titel {
  font-size: 0.9rem;
  font-weight: 500;
  color: #30b0c5; /* warna aksen elegan */
  letter-spacing: 0.3px;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  position: relative;
}

.team-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.team-experience {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.team-expertise .badge {
  margin-right: 5px;
  margin-bottom: 5px;
}
/* end of tim css */

/* ================= BANNER 2 ================= */
/* .banner2 {
  display: flex;
  align-items: center;
  background: url("/bg/bann3.png") center / cover no-repeat;
  overflow: hidden;
} */
/* ================= BANNER 2 ================= */

.banner2 {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center; /* center vertikal */
  overflow: hidden;
  color: #fff;
}

/* Background Image */
.banner2 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* FULL kiri-kanan */
  object-position: center top;
  z-index: 0;
}

/* Overlay (optional tapi recommended) */
.banner2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Content wrapper */
.banner2 .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ================= CONTENT ================= */

.banner2-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ================= TEXT ================= */

.banner2 h3 {
  font-size: 1.5rem;
  font-weight: 450;
  line-height: 1.35;
  margin-bottom: 18px;
}

/* .banner2 h3 span {
  font-weight: 600;
} */

/* ================= BUTTON ================= */

.banner2 .btn-banner2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 8px 22px;
  font-size: 0.95rem;
  border-radius: 20px;

  background: #ffffff;
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.banner2 .btn-banner2:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.banner2 .btn-banner2:active {
  transform: translateY(-1px) scale(0.98);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .banner2 {
    min-height: 40vh;
  }

  .banner2 h3 {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .banner2 {
    min-height: 45vh;
  }

  .banner2 h3 {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .banner2 .btn-banner2 {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}

/* ================= END BANNER 2 ================= */

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 991px) {
  .banner2 h3 {
    font-size: 1.5rem;
  }

  .banner2 p {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .banner2 {
    padding: 40px 0;
  }

  .banner2 h3 {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .banner2 p {
    font-size: 0.9rem;
  }

  .banner2 .btn-banner2 {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
}
/* end of css banner2 */

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
  padding: 120px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  justify-content: center;

  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.contact-hero .title {
  font-size: 3rem;
  font-weight: 550;
  margin-top: 20px;
  /* margin-bottom: 1rem; */
  opacity: 0.9;
  color: var(--white);
}

.contact-hero .lead {
  font-size: 1.25rem;
  font-weight: 400;
  /* margin-bottom: 2rem; */
  opacity: 0.9;
  color: var(--white);
}

.contact-hero h1 {
  margin-top: 70px;
  margin-bottom: 2px;
}

.section-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--primary);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ================= BUTTON KIRIM PESAN ================= */
.btn-pesan1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 11px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--white);

  border-radius: 10px;
  border: 1px #30b0c5 !important;
  background-color: #30b0c5 !important;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* HOVER */
.btn-pesan:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ACTIVE */
.btn-pesan:active {
  transform: translateY(0);
}

/* FOCUS (ACCESSIBILITY) */
.btn-pesan:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(48, 176, 197, 0.35);
}

/* ICON */
.btn-pesan i {
  font-size: 0.95rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-light);
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid var(--primary-blue);
  text-align: center;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--medium-blue) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.contact-info-card h4 {
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-info-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  box-shadow: var(--shadow-light);
  border-top: 4px solid var(--accent);
}

.btn-primary {
  background: linear-gradient(var(--secondary) 0%, var(--medium-blue) 100%);
  border: none;
  /* border-radius: 40px; */
  padding: 12px 30px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(30, 222, 229, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30, 136, 229, 0.3);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
}

.btn-outline-primary1 {
  border-color: var(--accent);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline-primary1 :hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  height: 350px;
  transition: var(--transition);
  height: 415px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* FULL container, proporsional */
  display: block;
  transition: transform 0.4s ease;
}

.map-container:hover {
  box-shadow: var(--shadow-medium);
}

.map-placeholder {
  background: var(--light-blue);
  height: 1200%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--primary-blue);
  transition: var(--transition);
}

.map-placeholder:hover {
  background: #d4e7fa;
}

/* ================= CONTACT BUTTON ================= */
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2px;

  border-radius: 10px;
  border-width: 1px;
  border-style: solid;

  background: transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-outline-primary1.btn-contact {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-primary1.btn-contact:hover {
  background: rgba(31, 195, 220, 0.08);
  color: #1fc0dc;
}

.btn-outline-secondary.btn-contact {
  color: #30b0c5;
  border-color: #30b0c5;
}

.btn-outline-secondary.btn-contact:hover {
  background: rgba(48, 176, 197, 0.08);
  color: #30b0c5;
}

.btn-contact i {
  font-size: 0.9rem;
}

.btn-contact:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(48, 176, 197, 0.25);
}

.contact-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-color),
    transparent
  );
  margin: 30px 0;
}

.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.floating-options {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 15px;
  box-shadow: var(--shadow-medium);
  width: 180px;
  display: none;
  animation: fadeIn 0.3s ease;
}

.floating-options.show {
  display: block;
}

.floating-option {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.floating-option:hover {
  background: var(--white);
  transform: translateX(-5px);
}

.floating-option i {
  margin-right: 10px;
  color: var(--primary-blue);
  width: 20px;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 4px solid #4caf50;
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.15);
}

/* Accordion Styles */
.accordion-button {
  font-weight: 500;
  color: var(--dark-blue);
  background-color: var(--light-blue);
  border-radius: 8px !important;
  transition: var(--transition);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
}

.accordion-body {
  color: var(--text-light);
  line-height: 1.6;
}

/* ==================== AOS CUSTOM STYLES ==================== */

/* Smooth scroll behavior untuk seluruh halaman */
html {
  scroll-behavior: smooth;
}

/* Optimasi performa untuk animasi */
.aos-init,
.aos-animate {
  will-change: transform, opacity;
}

/* Hero Section - Custom easing */
[data-aos="fade-right"] {
  transform: translateX(-50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-left"] {
  transform: translateX(50px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="zoom-in"] {
  transform: scale(0.95);
  opacity: 0;
  transition-property: transform, opacity;
}

/* Card hover effects dengan animasi */
.service-card {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button animations */
.btn {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Staggered animations untuk cards */
.services-cards > *:nth-child(1) {
  animation-delay: 0.1s;
}

.services-cards > *:nth-child(2) {
  animation-delay: 0.2s;
}

.services-cards > *:nth-child(3) {
  animation-delay: 0.3s;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .aos-init,
  .aos-animate {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .service-card:hover {
    transform: none;
  }

  .btn {
    transition: none;
  }
}

/* Section Map Css */
.coverage-section {
  padding: 90px 0 60px;
  background: #f6f7f8;
  overflow: visible;
  background: url("/bg/bg5.71.png") center / cover no-repeat;
}

.coverage-header {
  text-align: center;
  margin-bottom: 10px;
}

.coverage-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1f2933;
}

.coverage-header p {
  margin-top: 10px;
  color: #6b7280;
  font-size: 16px;
}

/* MAP */
.coverage-map {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* KUNCI RASIO MAP */
.coverage-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;

  transform-origin: center center;
  transition: transform 0.25s ease;
}

.coverage-pin {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  /* transform: none !important; */
  cursor: pointer;
  animation: pulse 2s infinite;
  z-index: 20; /* DI ATAS IMAGE */
}

/* Tooltip */
.coverage-pin .tooltip {
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.coverage-pin .tooltip img {
  max-width: 180px;
  max-height: 90px;
  width: auto;
  height: auto;
  display: block;
}

.coverage-pin:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

.coverage-pin::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* POSISI PIN */

.pin-pku {
  top: 27%;
  left: 8%;
}

.pin-gcb {
  top: 51%;
  left: 46%;
}

/* .pin-adaro {
  top: 50%;
  left: 45.5%;
} */

.pin-m2 {
  top: 65%;
  left: 25.5%;
}

.pin-aerium {
  top: 65%;
  left: 26.3%;
}

.pin-bsd {
  top: 64%;
  left: 25%;
}

.pin-sampora {
  top: 64.2%;
  left: 24%;
}

.pin-sgu {
  top: 65%;
  left: 24.5%;
}

.pin-intermoda {
  top: 65.2%;
  left: 23.8%;
}

.pin-pakuwon {
  top: 63.3%;
  left: 26.1%;
}

/* ANIMASI PIN */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(15, 118, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 118, 110, 0);
  }
}

@media (max-width: 768px) {
  .coverage-map {
    overflow: hidden;
    touch-action: pan-x pan-y;
  }

  .coverage-map-inner {
    overflow: visible;
  }
}

/* Bungkus map + pin dalam satu layer */
.coverage-map-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-x pan-y;
}

.coverage-map-inner {
  position: relative;
  width: 100%;
  transform-origin: center center;
  transition: transform 0.25s ease;
}

@media (max-width: 768px) {
  .coverage-pin {
    width: 6px;
    height: 6px;
  }

  .coverage-pin::after {
    width: 10px;
    height: 10px;
  }

  .coverage-pin .tooltip {
    padding: 6px 8px;
    max-width: 140px;
  }

  .coverage-pin .tooltip img {
    max-width: 110px;
    max-height: 70px;
  }
}

/* End Of Section Maps CSS */

/* STATISTIK */
/* .coverage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 3rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--dark);
} */
/* ================= STATISTIK / COVERAGE STATS ================= */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  /* justify-content: center !important; */
}

/* CARD */
.stat-item {
  background: #ffffff00;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* ANGKA */
.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

/* TEKS */
.stat-item p {
  font-size: 0.95rem;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

/* Tablet & Mobile → 2 KIRI 2 KANAN */
@media (max-width: 991px) {
  .coverage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 28px 16px;
  }

  .stat-item h3 {
    font-size: 2.1rem;
  }
}

/* Mobile kecil → tetap 2 kolom (BUKAN 1) */
@media (max-width: 480px) {
  .coverage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    padding: 24px 14px;
  }

  .stat-item h3 {
    font-size: 1.9rem;
  }

  .stat-item p {
    font-size: 0.85rem;
  }
}

/* End Of statistik Section CSS */

/* SECTION */
.client-section {
  padding: 90px 0;
  text-align: center;
}

.client-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #1f2937;
}

/* BARIS LOGO */
.client-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* BARIS KEDUA LEBIH RAPAT */
.client-row.center {
  gap: 90px;
}

/* LOGO */
.client-row img {
  max-height: 75px;
  width: auto;
  opacity: 0.85;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.client-row img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ================= MOBILE RESPONSIVE – CLIENT LOGO ================= */

/* Tablet & HP */
@media (max-width: 991px) {
  .client-row {
    gap: 40px;
    margin-bottom: 40px;
  }

  .client-row.center {
    gap: 50px;
  }

  .client-row img {
    max-height: 60px;
  }
}

/* HP */
@media (max-width: 767px) {
  .client-row {
    gap: 28px;
    margin-bottom: 30px;
  }

  .client-row.center {
    gap: 35px;
  }

  .client-row img {
    max-height: 48px;
  }
}

/* HP kecil */
@media (max-width: 480px) {
  .client-row {
    gap: 20px;
  }

  .client-row.center {
    gap: 24px;
  }

  .client-row img {
    max-height: 40px;
    opacity: 0.9;
  }
}

/* end css client */

/* CSS nilai perusahaan2 */
.vv-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.vv-mt {
  margin-top: 40px;
}

.vv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.values-section {
  padding-top: 0;
  background: #fff;
}

/* Judul Visi & Misi */
.vv-vision h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1b2f52;
}

.vv-line {
  width: 4px;
  height: 28px;
  background: #30b0c5;
  border-radius: 2px;
  display: inline-block;
}

.vv-text {
  font-size: 16px;
  line-height: 1.6;
  color: #1b2f52;
  margin-bottom: 32px;
  padding-left: 0;
  margin-left: 16px;
}

/* Judul Our Values */
.values-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  margin-left: 0;
}

.values-line {
  width: 4px;
  height: 28px;
  background: #30b0c5;
  border-radius: 2px;
}

.values-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.value-item {
  display: flex;
  flex-direction: column;
}

.value-icon-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.value-item i {
  font-size: 24px;
  color: #1b2f52;
  min-width: 24px;
  margin-top: 0;
}

.value-item h3 {
  font-size: 16px;
  font-weight: 550;
  margin: 0;
  line-height: 1.4;
  padding-top: 2px;
  color: #1b2f52;
}

.value-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #363f4d;
  margin: 0;
  padding-left: 1px;
  text-align: left;
}

.vv-vision {
  padding-top: 0;
}
/* end of nilai perusahaan2 css */

/* Css Email */
.contact-success {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: #e6fffa;
  border-left: 4px solid #0d6efd;
  color: #0f5132;
  border-radius: 6px;
}

/* end of css email */

/* section project Summary CSS */
/* section project CSS */
.sectionprojsum-project {
  background: url("/bg/bg5.4.png") center / cover no-repeat;
}

.container-projectsum {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.header-projectsum {
  margin-bottom: 60px;
  margin-top: 100px;
}

.header-projectsum h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 550;
  color: var(--primary);
  font-size: 1.9rem;
  letter-spacing: normal;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.2;
  padding-bottom: 15px;
}

.header-projectsum p {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--dark);
  max-width: 1200px;
}

.projectsum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  height: 350px; /* Fixed height untuk proporsional */
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.projectsum-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .projectsum-image {
  transform: scale(1.05);
}

/* Overlay dengan gradien untuk readability */
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.project-card:hover::before {
  opacity: 0.9;
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
  color: white;
}

.project-sum-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.project-suma-location,
.project-sum-year {
  font-family: "Nunito", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.project-sum-year {
  font-weight: 600;
  color: var(--accent-color, #ffffff);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container-projectsum {
    padding: 40px 15px;
  }

  .header-projectsum {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .header-projectsum h3 {
    font-size: 1.6rem;
  }

  .project-card {
    height: 300px;
  }

  .projectsum-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .project-sum-title {
    font-size: 1.3rem;
  }

  .project-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .project-card {
    height: 280px;
  }

  .projectsum-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .header-projectsum h3 {
    font-size: 1.4rem;
  }

  .project-sum-title {
    font-size: 1.2rem;
  }
}
/* end of Project Summary CSS */

/* ================= SERVICES: EOM ================= */
.container-eom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* ================= LISENSI / SERTIFIKASI SECTION About ================= */
.about-lisensi {
  padding: 100px 0;
  background: #ffffff;
  background: url("/bg/bg5.41.png") center / cover no-repeat;
}

.about-lisensi h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1b2f52;
}

.about-lisensi p.lead {
  font-size: 1.05rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

/* GRID CARDS */
.about-lisensi .row.g-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-lisensi-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* IMAGE - RASIO A4 */
.about-lisensi-card .portfolio-grid {
  width: 100%;
  padding-top: 141%; /* rasio A4 (tinggi 1.41x lebar) */
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.about-lisensi-card .portfolio-grid img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* memastikan gambar full card */
  display: block;
  transition: transform 0.3s ease;
}

.about-lisensi-card:hover .portfolio-grid img {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {
  .about-lisensi {
    padding: 70px 0;
  }

  .about-lisensi .row.g-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px;
  }
}

/* HP besar */
@media (max-width: 767px) {
  .about-lisensi {
    padding: 60px 0;
  }

  .about-lisensi h2 {
    font-size: 1.6rem;
  }

  .about-lisensi p.lead {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .about-lisensi .row.g-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }

  /* Kurangi tinggi gambar agar tidak terlalu panjang */
  .about-lisensi-card .portfolio-grid {
    padding-top: 130%;
  }
}

/* HP kecil */
@media (max-width: 575px) {
  .about-lisensi .row.g-5 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .about-lisensi-card {
    max-width: 90%;
    margin: 0 auto;
  }

  .about-lisensi-card .portfolio-grid {
    padding-top: 150%; /* gambar lebih pendek */
  }
}

/* =========================================
   RESPONSIVE — TABLET (<= 1024px)
========================================= */
@media (max-width: 1024px) {
  /* VALUE GRID jadi 1 kolom */
  .values-grid-kompak {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .value-left-kompak {
    width: 90px;
    padding: 18px 12px;
  }

  .value-icon-kompak {
    font-size: 32px;
  }

  .value-right-kompak {
    padding: 18px 20px;
  }

  .value-title-kompak {
    font-size: 1.1rem;
  }

  .value-desc-kompak {
    font-size: 0.9rem;
    -webkit-line-clamp: 4;
  }

  /* TIMELINE geser ke tengah */
  .timeline-wrapper {
    padding: 60px 20px 160px;
  }

  .timeline-line {
    height: 10px;
  }

  .timeline-dot {
    width: 22px;
    height: 22px;
    border-width: 5px;
    margin-left: -8px;
  }

  .timeline-content {
    width: 220px;
  }
}

/* =========================================
   RESPONSIVE — MOBILE (<= 768px)
========================================= */
@media (max-width: 768px) {
  /* ===== VALUES ===== */
  .value-card-kompak {
    flex-direction: column;
    min-height: auto;
  }

  .value-left-kompak {
    width: 100%;
    padding: 16px;
    justify-content: flex-start;
  }

  .value-icon-kompak {
    font-size: 28px;
  }

  .value-right-kompak {
    padding: 16px 18px;
  }

  .value-title-kompak {
    font-size: 1.05rem;
  }

  .value-desc-kompak {
    font-size: 0.9rem;
    -webkit-line-clamp: 5;
  }

  /* ===== TIMELINE jadi vertikal ===== */
  .timeline-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0;
  }

  .timeline-line {
    top: 0;
    left: 12px;
    right: auto;
    width: 6px;
    height: 100%;
    transform: none;
  }

  .timeline-arrow {
    display: none;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    margin-bottom: 40px;
  }

  .timeline-dot {
    left: 12px;
    top: 6px;
    transform: none;
  }

  .timeline-content {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    margin-top: 10px;
  }

  /* ===== TEAM ===== */
  .team-card {
    padding: 22px 16px;
  }

  .team-image img {
    width: 120px;
    height: 120px;
  }

  .team-experience {
    width: 42px;
    height: 42px;
    font-size: 0.7rem;
  }
}

/* =========================================
   SMALL MOBILE (<= 480px)
========================================= */
@media (max-width: 480px) {
  .value-left-kompak {
    padding: 14px;
  }

  .value-icon-kompak {
    font-size: 24px;
  }

  .value-title-kompak {
    font-size: 1rem;
  }

  .value-desc-kompak {
    font-size: 0.85rem;
  }

  .timeline-content h4 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 13px;
  }
}
