:root {
  --primary-blue: #0a2647;
  --accent-blue: #144272;
  --soft-blue: #e1e9f0;
  --eco-green: #1f6f6d;
  --text-dark: #2d3436;
  --tosca-light: #39cfca;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/bg-1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  /* semakin kecil semakin samar */
  z-index: -1;
}

.feather {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.logo {
  height: 70px;
}

.img-icon {
  width: 100px;
}

.btn-success {
  background-color: var(--eco-green);
}

a {
  text-decoration: none !important;
  color: none;
}

/* Navbar Customization */
.navbar {
  background: var(--eco-green);
  /* background-color: #fff; */
  backdrop-filter: blur(10px);
  box-shadow: 0;
  padding: 15px 0;
  transition: 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar.scrolled .nav-link {
  color: var(--soft-blue) !important;
}

.nav-link {
  color: var(--soft-blue);
  font-size: 14px;
  padding: 5px 12px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.nav-link:focus,
.nav-link:hover {
  color: var(--tosca-light);
}

.navbar .nav-link.active {
  color: var(--tosca-light);
  font-weight: 600;
}

.dropdown-menu .nav-link {
  color: var(--text-dark);
}

/* .navbar-collapse {
    background: #fff;
    padding: 20px;
}

.navbar-collapse .nav-link {
    color: var(--text-dark);
    padding: 10px !important;
}
*/
.scrolled .navbar-toggler {
  background-color: var(--eco-green);
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a2647, rgb(20 66 114 / 84%));
    padding: 80px 30px;
    transition: 0.4s ease;
    z-index: 1050;
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-nav {
    text-align: left;
  }

  .navbar-nav .nav-link,
  .scrolled .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .navbar-collapse .dropdown-menu {
    background-color: transparent;
  }

  .navbar-collapse .align-items-center {
    align-items: unset !important;
  }

  .navbar-toggler {
    z-index: 1100;
    position: relative;
  }
}

.navbar-collapse.show .nav-link {
  animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Styling */
.hero {
  background: linear-gradient(135deg, var(--soft-blue) 0%, #ffffff 100%);
  padding: 160px 0 100px 0;
  min-height: 80vh;
  /* display: flex; */
  align-items: center;
}

.hero-title {
  font-weight: 800;
  color: var(--primary-blue);
  font-size: 3.5rem;
}

/* Icon Box / Service Card */
.icon-box {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--soft-blue);
  transition: 0.3s;
  height: 100%;
}

.icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 38, 71, 0.1);
  border-color: var(--eco-green);
}

.icon-box p {
  font-size: 14px;
}

.icon-visual {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

/* Character Animation */
.ganis-character {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.1));
  animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.footer {
  position: relative;
  background: var(--primary-blue);
  color: white;
  padding: 70px 0 30px;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0f172a, #020617);
  opacity: 0.9;
}

.footer-container {
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  height: 90px;
  object-fit: contain;
}

.footer-text p {
  opacity: 0.75;
  line-height: 1.7;
  margin-top: 10px;
  max-width: 420px;
}

/* CONTACT */
.footer-contact {
  text-align: right;
}

.footer-contact p {
  opacity: 0.8;
  margin-bottom: 8px;
}

.footer-contact i {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* DIVIDER */
.footer-divider {
  margin: 30px 0 20px;
  opacity: 0.2;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* TABLET */
@media (max-width: 992px) {
  .footer-contact {
    text-align: left;
    margin-top: 20px;
  }

  .footer-brand {
    align-items: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-logo {
    height: 70px;
  }

  .footer-text h4 {
    font-size: 18px;
  }

  .footer-text p {
    max-width: 100%;
  }

  .footer-contact {
    text-align: center;
  }
}

.btn-main {
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-main:hover {
  background-color: var(--eco-green);
  color: white;
  transform: scale(1.05);
}

.hero-slide {
  height: 95vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-slide h1 {
  /* font-size: 35px; */
  font-weight: 700;
  max-width: 800px;
}

.hero-slide p {
  font-size: 18px;
  max-width: 800px;
}

/* Pastikan indicators di atas overlay */
.corporate-indicators {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 20;
  /* HARUS lebih tinggi dari overlay */
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* Button Reset */
.corporate-indicators button {
  position: relative;
  width: 260px;
  background: transparent !important;
  border: none;
  padding: 0;
  text-align: left;
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* Hilangkan style default bootstrap */
.carousel-indicators [data-bs-target] {
  width: auto;
  height: auto;
  text-indent: 0;
  background: none;
}

/* Number */
.indicator-number {
  font-size: 20px;
  font-weight: 700;
  color: #28a745;
}

/* Title */
.indicator-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  /* pastikan putih */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Content wrapper */
.indicator-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* Progress line */
.indicator-line {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.indicator-line::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 0%;
  background: #28a745;
}

.corporate-indicators button.active .indicator-line::after {
  animation: corporateProgress 5s linear forwards;
}

@keyframes corporateProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.hero-bread {
  background: linear-gradient(135deg, var(--soft-blue) 0%, #ffffff 100%);
  padding: 160px 0 100px 0;
  min-height: 35vh;
  /* display: flex; */
  align-items: center;
}

.hero-bread-slide {
  height: 35vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

/* Background Section */
.our-value {
  /* background: #eaf4f7; */
}

/* Section Title */
.section-title {
  /* font-size: 42px; */
  font-weight: 700;
  /* letter-spacing: 3px; */
  color: #0b5e7a;
}

.section-subtitle {
  font-size: 18px;
  color: #0b5e7a;
  font-style: italic;
  margin-top: 10px;
}

/* ===============================
   CORE SERVICES SECTION
================================= */
.core-services {
  background: #eaf4f7;
}

/* Title */
.core-title {
  /* font-size: 35px; */
  font-weight: 800;
  color: #0b8f5a;
  line-height: 1.1;
}

/* Tagline */
.core-tagline {
  font-size: 20px;
  font-style: italic;
  color: #0b5e7a;
  margin: 20px 0;
}

/* Description */
.core-desc {
  font-size: 16px;
  color: #2c3e50;
  max-width: 500px;
}

/* Image circle */
.core-image-wrapper {
  width: 320px;
  height: 320px;
  margin: auto;
  border-radius: 50%;
  padding: 15px;
  background: linear-gradient(135deg, #0b5e7a, #00a86b);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.core-image-wrapper img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   SERVICE CARD
================================= */
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Gradient hover overlay */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0b5e7a, #00a86b);
  opacity: 0;
  transition: 0.4s ease;
}

.service-card:hover::after {
  opacity: 0.05;
}

/* Icon */
.service-icon {
  font-size: 60px;
  color: #00a86b;
}

/* Content */
.service-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0b5e7a;
}

.service-content p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .core-title {
    font-size: 36px;
  }

  .core-image-wrapper {
    width: 250px;
    height: 250px;
    margin-top: 30px;
  }
}

/* ===============================
   WHY TRUST SECTION
================================= */
.why-trust {
  position: relative;
  /* background: linear-gradient(135deg, #0b5e7a, #148bb0); */
  background-image: url("../images/image-2.jpg");
  color: #fff;
  overflow: hidden;
}

/* Subtle pattern overlay */
.why-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

/* Title */
.why-title {
  /* font-size: 35px; */
  font-weight: 800;
  line-height: 1.1;
}

/* Description */
.why-desc {
  margin-top: 20px;
  max-width: 480px;
  font-size: 16px;
  opacity: 0.9;
}

/* Image circle */
.why-image-wrapper {
  width: 320px;
  height: 320px;
  margin: auto;
  border-radius: 50%;
  padding: 15px;
  background: linear-gradient(135deg, #00a86b, #6dd5a3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.why-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ===============================
   TRUST CARDS
================================= */
.trust-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 30px;
  transition: 0.4s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

/* Hover premium effect */
.trust-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Floating label */
.trust-label {
  display: inline-block;
  background: #ffffff;
  color: #0b5e7a;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
}

/* Green version */
.trust-label.green {
  background: linear-gradient(135deg, #00a86b, #6dd5a3);
  color: #fff;
}

/* Text */
.trust-card p {
  font-size: 14px;
  margin: 0;
  opacity: 0.95;
}

/* ================= PREMIUM STANDARD ================= */
.standard-premium {
  /* background: #f4f7fa; */
  padding-bottom: 80px;
}

/* ===== HEADER ===== */
.premium-header {
  padding: 100px 0 0;
}

.page-badge {
  display: inline-block;
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.premium-title {
  /* font-size: 2.8rem; */
  color: #1f2937;
}

.premium-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  margin: 25px 0;
  border-radius: 10px;
}

/* ===== IMAGE ===== */
.premium-thumbnail {
  margin-bottom: 60px;
}

.image-wrapper {
  overflow: hidden;
  border-radius: 20px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); */
}

.image-wrapper img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* ===== CONTENT CARD ===== */
.premium-content .content-card {
  background: #ffffff;
  padding: 70px;
  border-radius: 20px;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1.9;
  color: #374151;
}

/* Typography Styling */
.content-card h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #111827;
}

.content-card h3 {
  margin-bottom: 10px;
  font-weight: 600;
}

.content-card p {
  margin-bottom: 0px;
}

/* Dropcap first paragraph */
/* .content-card p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    padding-right: 8px;
    color: #198754;
} */
/* Modern List */
.content-card ul {
  padding-left: 0;
  list-style: none;
}

.content-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.content-card ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #20c997;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Blockquote */
.content-card blockquote {
  border-left: 5px solid #198754;
  padding-left: 20px;
  margin: 10px 0;
  font-style: italic;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .premium-title {
    font-size: 2rem;
  }

  .premium-content .content-card {
    padding: 30px;
  }

  .premium-header {
    padding: 70px 0 40px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 34px;
  }

  .why-image-wrapper {
    width: 240px;
    height: 240px;
    margin-top: 30px;
  }
}

/* =========================
   RESPONSIVE ADJUSTMENT
========================= */
/* Tablet */
@media (max-width: 991.98px) {
  .our-value .value-item {
    padding: 22px;
  }

  .our-value .icon-box-our {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .our-value .icon-box-our .feather {
    width: 1.6rem !important;
    height: 1.6rem !important;
  }

  .our-value .value-name {
    font-size: 1.1rem;
  }

  .our-value .value-desc {
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .our-value .value-item {
    padding: 18px;
  }

  .our-value .icon-box-our {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
  }

  .our-value .icon-box-our .feather {
    width: 1.4rem !important;
    height: 1.4rem !important;
  }

  .our-value .value-name {
    font-size: 1.05rem;
  }

  .our-value .value-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .our-value .value-footer {
    font-size: 14px;
    padding: 0 10px;
  }
}

/* Extra Small (HP kecil) */
@media (max-width: 575.98px) {
  .our-value .value-item {
    padding: 15px;
  }

  .our-value .icon-box-our {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .our-value .icon-box-our .feather {
    width: 1.2rem !important;
    height: 1.2rem !important;
  }
}

/* ================= NEWS SECTION ================= */
.news-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.news-header {
  margin-bottom: 50px;
}

.news-title {
  font-size: 2rem;
  font-weight: 700;
}

.news-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  margin: 15px auto 0;
  border-radius: 10px;
}

/* ================= CARD ================= */
.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.news-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Image */
.news-image {
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-placeholder {
  background: #e9ecef;
  height: 100%;
}

/* Content */
.news-content {
  padding: 20px;
}

.news-card-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.news-excerpt {
  font-size: 0.9rem;
  color: #6c757d;
}

.content-card img {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .news-image {
    height: 180px;
  }
}

/* SECTION */
.our-value-section {
  padding: 100px 0;
  /* background: #ffffff; */
  background: url("../images/project-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.our-overlay {
  position: absolute;
  inset: 0;
  background: rgba(225, 225, 225, 0.178);
}

/* BADGE */
.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #198754;
  margin-bottom: 10px;
}

/* TITLE */
.section-title {
  font-size: 30px;
  font-weight: 700;
  /* color: #1b3c36; */
  line-height: 1.3;
}

.section-title span {
  color: #198754;
}

/* LINE */
.title-line {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #198754, #20c997);
  margin: 18px 0 20px;
  border-radius: 3px;
}

/* SUBTITLE */
.section-subtitle {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* FOOTER */
.value-footer {
  font-size: 15px;
  line-height: 1.8;
  color: #495057;
}

/* VALUE LIST */
.our-value .value-item {
  background: #f8f9f6;
  border-radius: 18px;
  padding: 20px 25px;
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid #edf1ee;
}

/* ACCENT LINE */
.our-value .value-item {
  overflow: hidden;
}

.our-value .value-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(#198754, #20c997);
}

/* HOVER */
.our-value .value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.value-name {
  font-size: 22px;
  font-weight: 700;
  color: #1b3c36;
  margin-bottom: 0px;
}

/* DESC */
.value-desc {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
}

/* ICON */
.icon-box-our {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(25, 135, 84, 0.25);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.icon-box-our svg {
  width: 26px;
  height: 26px;
  color: #198754;
}

/* ICON HOVER */
.value-item:hover .icon-box-our {
  transform: scale(1.08);
  border-color: #198754;
}

.value-intro-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  max-width: 520px;
  margin: auto;
  position: relative;
}

/* decorative background */
.value-intro-card::before {
  content: "";
  position: absolute;
  width: clamp(70px, 10vw, 120px);
  height: clamp(70px, 10vw, 120px);
  background: linear-gradient(135deg, #198754, #20c997);
  opacity: 0.08;
  border-radius: 50%;
  top: -30px;
  right: -30px;
}

.value-intro-card {
  position: relative;
  overflow: hidden;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #198754;
  background: rgba(25, 135, 84, 0.1);
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 25px;
}

/* CARD */
.product-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

/* IMAGE */
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER ZOOM */
.product-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  padding: 25px;
  color: white;
}

/* TEXT */
.product-content h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.product-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* =========================
   GRID VARIATION (5 ITEMS)
========================= */
/* CARD 1 BESAR (tengah tinggi) */
.product-card:nth-child(1) {
  grid-column: span 1;
  grid-row: span 2;
}

/* CARD 2 LEBAR ATAS */
.product-card:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}

/* CARD 3 KOTAK */
.product-card:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}

/* CARD 4 KOTAK */
.product-card:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

/* CARD 5 LEBAR BAWAH */
.product-card:nth-child(5) {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* .breadcrumb-content {
    background-color: var(--primary-blue);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    margin-right: -15px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
} */
/* SECTION BACKGROUND */
.premium-content {
  position: relative;
}

.content-card {
  background: #ffffffd9;
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* META */
.post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #6c757d;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-divider {
  width: 1px;
  height: 16px;
  background: #ddd;
}

/* CONTENT */
.post-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.post-content p {
  margin-bottom: 18px;
}

/* IMAGE */
.post-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);*/
}

.post-image-wrapper img {
  width: 100%;
  height: auto;
  transition: 0.4s;
}

.post-image-wrapper:hover img {
  transform: scale(1.05);
}

/* STICKY IMAGE */
.sticky-image {
  position: sticky;
  top: 120px;
}

/* DIVIDER */
.soft-divider {
  opacity: 0.2;
  margin: 25px 0;
}

/* // NEW  ------------------------------------------------------------------------------------ */
/* HERO */
.hero-modern {
  padding: 80px 0 60px;
  position: relative;
}

/* TITLE */
.hero-title-modern {
  font-size: 56px;
  font-weight: 700;
  color: var(--eco-green);
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, var(--eco-green), #4cc9c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  margin-top: 15px;
  color: #555;
  max-width: 500px;
}

/* SEARCH */
.search-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 500px;
}

.search-modern i {
  font-size: 20px;
  color: var(--eco-green);
  margin-left: 10px;
}

.search-modern input {
  border: none;
  box-shadow: none;
}

.search-modern input:focus {
  box-shadow: none;
}

.btn-search-modern {
  background: linear-gradient(90deg, var(--eco-green), #2e8b87);
  color: white;
  border-radius: 50px;
  padding: 8px 25px;
  font-weight: 600;
}

/* DIAGRAM */
.image-3 {
  width: 450px;
}

/* FEATURE */
/* Card Styling */
.custom-card {
  border: none;
  border-radius: 12px;
  /* Radius lebih kecil agar tegas */
  transition: all 0.3s ease;
  /* Transisi lebih cepat */
  background: #ffffff;
  overflow: hidden;
  padding: 1.25rem !important;
  /* Padding dikurangi */
}

.custom-card:hover {
  transform: translateY(-5px);
  /* Elevasi dikurangi agar tidak terlalu jauh */
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.15) !important;
}

/* Ikon diperkecil */
.icon-container {
  /* background-color: var(--tosca-light); */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.icon-container i {
  font-size: 1.4rem;
  /* Dari 2.2rem ke 1.4rem */
  color: var(--tosca-primary);
}

/* Tipografi lebih padat */
.card-title {
  color: #2d3436;
  font-weight: 700;
  font-size: 1rem;
  /* Ukuran font dipertegas */
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.card-text {
  color: #636e72;
  font-size: 0.85rem;
  /* Font diperkecil sedikit */
  line-height: 1.4;
  margin-bottom: 0;
}

/* Hover States */
/* LOGO */
.logo-modern {
  height: 80px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-title-modern {
    font-size: 40px;
  }
}

.stats-modern {
  padding: 80px 0;
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--primary-blue));
}

/* CARD */
.stat-modern-card {
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(1px);
  border-radius: 20px;
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.stat-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

/* ICON COLORS */
.bg1 {
  background: linear-gradient(135deg, #1f6f6d, #3cb7af);
}

.bg2 {
  background: linear-gradient(135deg, #ff9f43, #ff6b6b);
}

.bg3 {
  background: linear-gradient(135deg, #4dabf7, #339af0);
}

.bg4 {
  background: linear-gradient(135deg, #9775fa, #845ef7);
}

/* NUMBER */
.stat-number-modern {
  font-size: 40px;
  font-weight: 800;
  margin: 0;
  color: var(--soft-blue);
}

.stat-number-modern span {
  font-size: 22px;
  color: #3ae0db;
}

/* TITLE */
.stat-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

/* DESC */
.stat-desc {
  font-size: 13px;
  color: var(--soft-blue);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stat-modern-card {
    flex-direction: column;
    text-align: center;
  }

  .icon-circle {
    margin-bottom: 10px;
  }
}

.map-shape {
  right: 0px;
  position: absolute;
}

/* BAR CHART */
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 260px;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
}

.bar {
  height: 200px;
  width: 40px;
  background: #eee;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.bar-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(180deg, #1f6f6d, #4cc9c0);
  border-radius: 10px;
  transition: 1s;
}

/* TEXT */
.bar-value {
  font-weight: 700;
  color: var(--soft-blue);
  font-size: 14px;
}

.bar-label {
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bar-chart {
    gap: 10px;
  }

  .bar {
    width: 30px;
  }
}

/* HERO */
.hero-search {
  padding: 80px 0 40px;
}

.hero-title-2 {
  font-size: 48px;
  font-weight: 700;
  color: #1f6f6d;
  background: var(--soft-blue);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 20px;
}

/* SEARCH */
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px;
  border-radius: 50px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-box i {
  font-size: 20px;
  color: #1f6f6d;
}

.search-box input {
  border: none;
  box-shadow: none;
}

.btn-search {
  background: #1f6f6d;
  color: white;
  border-radius: 50px;
  padding: 8px 25px;
}

/* FILTER */
.btn-filter {
  border-radius: 30px;
  background: #000;
  color: white;
}

.filter-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

/* PROFILE */
.profile-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.profile-card:hover {
  transform: translateY(-8px);
}

.profile-img {
  position: relative;
}

.profile-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.btn-like {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.profile-body {
  padding: 20px;
}

.profile-tags span {
  background: #eef6f6;
  color: #1f6f6d;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
}

.btn-profile {
  margin-top: 15px;
  background: #1f6f6d;
  color: white;
  border-radius: 30px;
  width: 100%;
}

/* DASHBOARD */
.dashboard-section {
  padding: 80px 0;
}

.dashboard-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f6f6d;
}

.btn-dashboard {
  background: linear-gradient(90deg, #1f6f6d, #2e8b87);
  color: white;
  border-radius: 30px;
  padding: 10px 30px;
}

.dashboard-img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* // PROFILE  */
.profile-detail-section {
  padding: 60px 0;
}

/* SIDEBAR */
.profile-sidebar {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #eef6f6;
}

/* STATS */
.profile-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.profile-stats h5 {
  margin: 0;
  font-weight: 700;
}

.profile-stats span {
  font-size: 12px;
  color: #777;
}

/* CARD */
.profile-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* TIMELINE */
.timeline {
  list-style: none;
  padding-left: 0;
}

.timeline li {
  margin-bottom: 15px;
  border-left: 3px solid #1f6f6d;
  padding-left: 15px;
}

/* SKILLS */
.skill-tags span {
  background: #eef6f6;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
}

/* SOCIAL */
.social-links a {
  font-size: 22px;
  margin-right: 15px;
  color: #1f6f6d;
  transition: 0.3s;
}

.social-links a:hover {
  color: #0f4c4a;
}

/* CARD STYLE */
.modern-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.modern-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */
.icon-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper img {
  width: 60px;
  height: 60px;
}

/* GRADIENT COLORS */
.gradient-yellow {
  background: linear-gradient(135deg, #ffd43b, #fab005);
}

.gradient-orange {
  background: linear-gradient(135deg, #ff922b, #ff6b00);
}

.gradient-gold {
  background: linear-gradient(135deg, #fcc419, #f59f00);
}

/* BUTTON */
.btn-modern {
  margin-top: 15px;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  background: linear-gradient(135deg, #4c6ef5, #364fc7);
  color: white;
  transition: 0.3s;
}

.btn-modern:hover {
  transform: scale(1.05);
  color: white;
}

/* TEXT */
.modern-card p {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.news-content-2 {
  position: absolute;
  margin: 0px 20px;
  bottom: 20px;
  background: rgba(31, 111, 108, 0.9);
  border-radius: 10px;
  color: #fff;
  backdrop-filter: blur(4px);
}

.news-image-2 {
  height: 370px;
}

.alert-custom {
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  animation: fadeSlide 0.3s ease;
}

.alert-custom i {
  font-size: 18px;
  margin-top: 2px;
}

/* SUCCESS */
.alert-success-custom {
  background: #e8f8f0;
  color: #0f5132;
  border-color: #badbcc;
}

/* ERROR */
.alert-danger-custom {
  background: #fdecea;
  color: #842029;
  border-color: #f5c2c7;
}

/* WARNING */
.alert-warning-custom {
  background: #fff4e5;
  color: #664d03;
  border-color: #ffecb5;
}

/* INFO */
.alert-info-custom {
  background: #e7f3ff;
  color: #084298;
  border-color: #b6d4fe;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LABEL ===== */
.form-label {
  font-weight: 500;
  font-size: 14px;
  color: #555;
}

/* ===== INPUT ===== */
.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  transition: all 0.25s ease;
  font-size: 14px;
}

/* hover */
.form-control:hover {
  border-color: #999;
}

/* focus */
.form-control:focus {
  border-color: #4e73df;
  box-shadow: 0 0 0 2px rgba(78, 115, 223, 0.15);
}

/* readonly */
.form-control[readonly] {
  background-color: #f1f3f5;
  cursor: not-allowed;
}

/* ===== SELECT ===== */
select.form-control {
  cursor: pointer;
}

/* ===== MULTI SELECT ===== */
select[multiple] {
  height: 120px;
}

/* ===== BUTTON ===== */
.btn-primary {
  background: linear-gradient(135deg, #4e73df, #224abe);
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #224abe, #1a3a8a);
  transform: translateY(-1px);
}

/* ===== SECTION SPACING ===== */
.card+.card {
  margin-top: 10px;
}

/* ===== INPUT GROUP LOOK ===== */
input::placeholder {
  color: #aaa;
  font-size: 13px;
}

.select2-container .select2-selection--multiple {
  min-height: 40px !important;
  border-radius: 15px;
  border: 1px solid #ddd;
  padding: 10px 12px;
  transition: all 0.25s ease;
  font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #4e73df;
  border: none;
  border-radius: 6px;
  padding: 2px 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  margin-top: 0px !important;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-top: 0px;
}

.table {
  border-collapse: separate !important;
  border-spacing: 0 12px !important;
  margin-bottom: 0;
}

/* HEADER */
.table thead th {
  background: var(--accent-blue);
  color: #fff;
  border: none !important;
  padding: 16px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.table thead th:first-child {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.table thead th:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

/* BODY */
.table tbody tr {
  background: #fff;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

/* TD */
.table tbody td {
  padding: 18px;
  vertical-align: middle;
  border-top: none !important;
  border-bottom: none !important;
  font-size: 14px;
  color: #334155;
  background: #fff;
}

/* ROUNDED ROW */
.table tbody td:first-child {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.table tbody td:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

/* STRIPED FIX */
.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-accent-bg: #fff;
  color: inherit;
}

/* HOVER FIX */
.table-hover>tbody>tr:hover>* {
  --bs-table-accent-bg: #f8fafc;
  color: inherit;
}

/* BADGE */
.table .badge {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* BUTTON */
.table .btn {
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

/* EMPTY */
.table-empty {
  padding: 40px !important;
  text-align: center;
  color: #94a3b8;
}

/* RESPONSIVE */
.table-responsive {
  border-radius: 20px;
  /* overflow: hidden; */
}

.alumni-horizontal-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 30px;
  color: white;
  position: relative;
}

.card-photo-wrapper {
  flex-shrink: 0;
}

.card-photo {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.12);
}

.card-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 700;
  border: 4px solid rgba(255, 255, 255, 0.12);
}

.card-content {
  flex: 1;
}

.card-label {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  font-size: 11px;
}

.card-name {
  font-weight: 700;
  margin-top: 6px;
  margin-bottom: 4px;
  color: white;
}

.card-email {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.info-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 18px;
  height: 100%;
}

.info-box small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.info-box h6 {
  margin: 0;
  color: white;
  word-break: break-word;
}

@media (max-width: 768px) {
  .alumni-horizontal-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .card-photo,
  .card-photo-placeholder {
    width: 110px;
    height: 110px;
  }
}

/* MOBILE */
/* @media (max-width: 768px) {
    .table thead {
        display: none;
    }

    .table,
    .table tbody,
    .table tr,
    .table td {
        display: block;
        width: 100%;
    }

    .table tbody tr {
        margin-bottom: 16px;
        border-radius: 16px;
        overflow: hidden;
    }

    .table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        border-radius: 0 !important;
    }

    .table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: #0f172a;
        margin-right: 15px;
    }
} */
#map {
  width: 100%;
  height: 450px;
  min-height: 450px;
}

.total-alumni-badge {
  background: #2563eb;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.custom-total-label {
  background: transparent;
  border: none;
}

.visitor-widget {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
}

/* Tombol kecil */
.visitor-toggle {
  width: auto;
  padding: 10px 15px;
  height: 35px;
  margin-bottom: 10px;
  border: none;
  border-radius: 50px;
  background: var(--bs-form-valid-border-color);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: .3s;
}

.visitor-toggle span {
  display: none;
  font-size: 13px;
}

.visitor-toggle:hover {
  width: auto;
}

.visitor-toggle:hover span {
  display: inline;
}

.visitor-content {
  display: none;
  width: 185px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
}

.visitor-widget.show .visitor-content {
  display: block;
}

.visitor-title {
  background: var(--bs-form-valid-border-color);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}

.visitor-item {
  display: flex;
  justify-content: space-between;
  padding: 3px 12px;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  color: var(--bs-form-valid-border-color);
}

.visitor-item:last-child {
  border-bottom: none;
}

.visitor-item strong {
  color: var(--bs-form-valid-border-color);
  ;
}

@media(max-width:768px) {
  .visitor-content {
    width: 180px;
  }

  .visitor-item {
    font-size: 12px;
  }
}